'
+ }
+ }
+ }
+ selectedPage();
+ currentPage == 1 ? prevButton.parentNode.classList.add('disabled') : prevButton.parentNode.classList.remove('disabled');
+ currentPage == pages ? nextButton.parentNode.classList.add('disabled') : nextButton.parentNode.classList.remove('disabled');
+}
+
+function selectedPage() {
+ var pagenumLink = document.getElementById('page-num').getElementsByClassName('clickPageNumber');
+ for (var i = 0; i < pagenumLink.length; i++) {
+ if (i == currentPage - 1) {
+ pagenumLink[i].parentNode.classList.add("active");
+ } else {
+ pagenumLink[i].parentNode.classList.remove("active");
+ }
+ }
+};
+
+// paginationEvents
+function paginationEvents() {
+ var numPages = function numPages() {
+ return Math.ceil(productListData.length / itemsPerPage);
+ };
+
+ function clickPage() {
+ document.addEventListener('click', function (e) {
+ if (e.target.nodeName == "A" && e.target.classList.contains("clickPageNumber")) {
+ currentPage = e.target.textContent;
+ loadProductList(productListData, currentPage);
+ }
+ });
+ };
+
+ function pageNumbers() {
+ var pageNumber = document.getElementById('page-num');
+ pageNumber.innerHTML = "";
+ // for each page
+ for (var i = 1; i < numPages() + 1; i++) {
+ pageNumber.innerHTML += "
";
+ }
+ }
+
+ prevButton.addEventListener('click', function () {
+ if (currentPage > 1) {
+ currentPage--;
+ loadProductList(productListData, currentPage);
+ }
+ });
+
+ nextButton.addEventListener('click', function () {
+ if (currentPage < numPages()) {
+ currentPage++;
+ loadProductList(productListData, currentPage);
+ }
+ });
+
+ pageNumbers();
+ clickPage();
+ selectedPage();
+}
+
+function searchResult(data) {
+ if (data.length == 0) {
+ document.getElementById("pagination-element").style.display = "none";
+ document.getElementById("search-result-elem").classList.remove("d-none");
+ } else {
+ document.getElementById("pagination-element").style.display = "flex";
+ document.getElementById("search-result-elem").classList.add("d-none");
+ }
+
+ var pageNumber = document.getElementById('page-num');
+ pageNumber.innerHTML = "";
+ var dataPageNum = Math.ceil(data.length / itemsPerPage)
+ // for each page
+ for (var i = 1; i < dataPageNum + 1; i++) {
+ pageNumber.innerHTML += "
";
+ }
+}
+
+// category list filter
+Array.from(document.querySelectorAll('.filter-list a')).forEach(function (filteritem) {
+ filteritem.addEventListener("click", function () {
+ var filterListItem = document.querySelector(".filter-list a.active");
+ if (filterListItem) filterListItem.classList.remove("active");
+ filteritem.classList.add('active');
+
+ var filterItemValue = filteritem.querySelector(".listname").innerHTML
+ var filterData = productListData.filter(filterlist => filterlist.category === filterItemValue);
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ });
+})
+
+// Search product list
+var searchProductList = document.getElementById("searchProductList");
+searchProductList.addEventListener("keyup", function () {
+ var inputVal = searchProductList.value.toLowerCase();
+ function filterItems(arr, query) {
+ return arr.filter(function (el) {
+ return el.productTitle.toLowerCase().indexOf(query.toLowerCase()) !== -1
+ })
+ }
+ var filterData = filterItems(productListData, inputVal);
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+});
+
+
+// price range slider
+var slider = document.getElementById('product-price-range');
+if(slider){
+ noUiSlider.create(slider, {
+ start: [0, 2000], // Handle start position
+ step: 10, // Slider moves in increments of '10'
+ margin: 20, // Handles must be more than '20' apart
+ connect: true, // Display a colored bar between the handles
+ behaviour: 'tap-drag', // Move handle on tap, bar is draggable
+ range: { // Slider can select '0' to '100'
+ 'min': 0,
+ 'max': 2000
+ },
+ format: wNumb({ decimals: 0, prefix: '$ ' })
+ });
+
+ var minCostInput = document.getElementById('minCost'),
+ maxCostInput = document.getElementById('maxCost');
+
+ var filterDataAll = '';
+
+ // When the slider value changes, update the input and span
+ slider.noUiSlider.on('update', function (values, handle) {
+ var productListupdatedAll = productListData;
+
+ if (handle) {
+ maxCostInput.value = values[handle];
+
+ } else {
+ minCostInput.value = values[handle];
+ }
+
+ var maxvalue = maxCostInput.value.substr(2);
+ var minvalue = minCostInput.value.substr(2);
+ filterDataAll = productListupdatedAll.filter(
+ product => parseFloat(product.price) >= minvalue && parseFloat(product.price) <= maxvalue
+ );
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+
+ minCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+
+ maxCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+}
+
+
+// discount-filter
+var arraylist = [];
+document.querySelectorAll("#discount-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 0) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+
+ return parseFloat(listArray[0]) < 10;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+});
+
+// rating-filter
+document.querySelectorAll("#rating-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 1) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) == 1;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+});
+
+// color-filter
+document.querySelectorAll("#color-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.color) {
+ return filterlist.color.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+
+ });
+});
+
+// size-filter
+document.querySelectorAll("#size-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.size) {
+ return filterlist.size.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ });
+});
+
+document.getElementById("sort-elem").addEventListener("change", function (e) {
+ var inputVal = e.target.value
+ if (inputVal == "low_to_high") {
+ sortElementsByAsc();
+ } else if (inputVal == "high_to_low") {
+ sortElementsByDesc();
+ } else if (inputVal == "") {
+ sortElementsById()
+ }
+});
+
+// sort element ascending
+function sortElementsByAsc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+// sort element descending
+function sortElementsByDesc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x > y) {
+ return -1;
+ }
+ if (x < y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+// sort element id
+function sortElementsById() {
+ var list = productListData.sort(function (a, b) {
+ var x = parseInt(a.id);
+ var y = parseInt(b.id);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+// no sidebar page
+
+var hidingTooltipSlider = document.getElementById('slider-hide');
+if (hidingTooltipSlider){
+ noUiSlider.create(hidingTooltipSlider, {
+ range: {
+ min: 0,
+ max: 2000
+ },
+ start: [20, 800],
+ tooltips: true,
+ connect: true,
+ pips: {
+ mode: 'count',
+ values: 5,
+ density: 4
+ },
+ format: wNumb({ decimals: 2, prefix: '$ ' })
+ });
+
+ var minCostInput = document.getElementById('minCost'),
+ maxCostInput = document.getElementById('maxCost');
+
+ var filterDataAll = '';
+
+ // When the slider value changes, update the input and span
+ hidingTooltipSlider.noUiSlider.on('update', function (values, handle) {
+ var productListupdatedAll = productListData;
+
+ if (handle) {
+ maxCostInput.value = values[handle];
+
+ } else {
+ minCostInput.value = values[handle];
+ }
+
+ var maxvalue = maxCostInput.value.substr(2);
+ var minvalue = minCostInput.value.substr(2);
+ filterDataAll = productListupdatedAll.filter(
+ product => parseFloat(product.price) >= minvalue && parseFloat(product.price) <= maxvalue
+ );
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+}
+
+// choices category input
+if(document.getElementById('select-category')){
+ var productCategoryInput = new Choices(document.getElementById('select-category'), {
+ searchEnabled: false,
+ });
+
+ productCategoryInput.passedElement.element.addEventListener('change', function (event) {
+ var productCategoryValue = event.detail.value
+ if (event.detail.value) {
+ var filterData = productListData.filter(productlist => productlist.category === productCategoryValue);
+ }else {
+ var filterData = productListData;
+ }
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ }, false);
+}
+
+// select-rating
+if(document.getElementById('select-rating')){
+ var productRatingInput = new Choices(document.getElementById('select-rating'), {
+ searchEnabled: false,
+ allowHTML: true,
+ delimiter: ',',
+ editItems: true,
+ maxItemCount: 5,
+ removeItemButton: true,
+ });
+
+ productRatingInput.passedElement.element.addEventListener('change', function (event) {
+ var productRatingInputValue = productRatingInput.getValue(true);
+ if(event.detail.value == 1){
+ filterDataAll = productListData.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) == 1;
+ }
+ });
+ } else if (productRatingInputValue.length > 0) {
+ var compareval = Math.min.apply(Math, productRatingInputValue);
+ filterDataAll = productListData.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ }, false);
+}
+
+// select-discount
+if(document.getElementById('select-discount')){
+ var productDiscountInput = new Choices(document.getElementById('select-discount'), {
+ searchEnabled: false,
+ allowHTML: true,
+ delimiter: ',',
+ editItems: true,
+ maxItemCount: 5,
+ removeItemButton: true,
+ });
+
+ productDiscountInput.passedElement.element.addEventListener('change', function (event) {
+ var productDiscountInputValue = productDiscountInput.getValue(true);
+ var filterproductdata = productListData;
+ if(event.detail.value == 0){
+ filterDataAll = productListData.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) < 10;
+ }
+ });
+ } else if (productDiscountInputValue.length > 0) {
+ var compareval = Math.min.apply(Math, productDiscountInputValue);
+ filterDataAll = productListData.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ }, false);
+}
\ No newline at end of file
diff --git a/public/build/js/frontend/product-list-table.init.js b/public/build/js/frontend/product-list-table.init.js
new file mode 100644
index 0000000..ad9d97c
--- /dev/null
+++ b/public/build/js/frontend/product-list-table.init.js
@@ -0,0 +1,514 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: product list table init Js File
+*/
+
+var productListData = [{
+ 'id': 1,
+ "productImg": "../build/images/products/img-10.png",
+ "productTitle": "World's most expensive t shirt",
+ "category": "Fashion",
+ "price": "354.99",
+ "discount": "25%",
+ "rating": "4.9",
+ "stock": "Out of stock",
+ "color": ["secondary", "light", "dark"],
+ "size": ["s", "m", "l"],
+}, {
+ 'id': 2,
+ "productImg": "../build/images/products/img-15.png",
+ "productTitle": "Like Style Women Black Handbag",
+ "category": "Fashion",
+ "price": "742.00",
+ "discount": "0%",
+ "rating": "4.2",
+ "stock": "In stock",
+ "color": ["light", "dark"],
+}, {
+ 'id': 3,
+ "productImg": "../build/images/products/img-1.png",
+ "productTitle": "Black Horn Backpack For Men Bags 30 L Backpack",
+ "category": "Grocery",
+ "price": "150.99",
+ "discount": "25%",
+ "rating": "3.8",
+ "stock": "In stock",
+ "color": ["primary", "danger", "secondary"],
+ "size": ["s", "m", "l"],
+}, {
+ 'id': 4,
+ "productImg": "../build/images/products/img-7.png",
+ "productTitle": "Innovative education book",
+ "category": "Kids",
+ "price": "96.26",
+ "discount": "0%",
+ "rating": "4.7",
+ "stock": "In stock",
+}, {
+ 'id': 5,
+ "productImg": "../build/images/products/img-4.png",
+ "productTitle": "Sangria Girls Mint Green & Off-White Solid Open Toe Flats",
+ "category": "Kids",
+ "price": "96.26",
+ "discount": "75%",
+ "rating": "4.7",
+ "stock": "In stock",
+ "color": ["success", "danger", "secondary"],
+ "size": ["40", "41", "42"],
+}, {
+ 'id': 6,
+ "productImg": "../build/images/products/img-5.png",
+ "productTitle": "Lace-Up Casual Shoes For Men",
+ "category": "Fashion",
+ "price": "229.00",
+ "discount": "0%",
+ "rating": "4.0",
+ "stock": "Out of stock",
+ "color": ["danger"],
+ "size": ["40", "41", "42"],
+}, {
+ 'id': 7,
+ "productImg": "../build/images/products/img-6.png",
+ "productTitle": "Striped High Neck Casual Men Orange Sweater",
+ "category": "Fashion",
+ "price": "120.00",
+ "discount": "48%",
+ "rating": "4.8",
+ "stock": "In stock",
+ "size": ["s", "m", "l", "xl"],
+}, {
+ 'id': 8,
+ "productImg": "../build/images/products/img-9.png",
+ "productTitle": "Lace-Up Casual Shoes For Men",
+ "category": "Kids",
+ "price": "229.00",
+ "discount": "15%",
+ "rating": "2.4",
+ "stock": "In stock",
+ "color": ["light", "warning"],
+ "size": ["s", "l"],
+}, {
+ 'id': 9,
+ "productImg": "../build/images/products/img-10.png",
+ "productTitle": "Printed, Typography Men Round Neck Black T-shirt",
+ "category": "Fashion",
+ "price": "81.99",
+ "discount": "0%",
+ "rating": "4.9",
+ "stock": "In stock",
+ "color": ["dark", "light"],
+ "size": ["s", "m", "l", "xl"],
+}, {
+ 'id': 10,
+ "productImg": "../build/images/products/img-12.png",
+ "productTitle": "Carven Lounge Chair Red",
+ "category": "Furniture",
+ "price": "209.99",
+ "discount": "0%",
+ "rating": "4.1",
+ "stock": "Out of stock",
+ "color": ["secondary", "dark", "danger", "light"],
+}, {
+ 'id': 11,
+ "productImg": "../build/images/products/img-3.png",
+ "productTitle": "Ninja Pro Max Smartwatch",
+ "category": "Watches",
+ "price": "309.09",
+ "discount": "20%",
+ "rating": "3.5",
+ "stock": "In stock",
+ "color": ["secondary", "info"],
+}, {
+ 'id': 12,
+ "productImg": "../build/images/products/img-2.png",
+ "productTitle": "Opinion Striped Round Neck Green T-shirt",
+ "category": "Fashion",
+ "price": "126.99",
+ "discount": "0%",
+ "rating": "4.1",
+ "stock": "Out of stock",
+ "color": ["success"],
+ "size": ["s", "m", "l", "xl"],
+}];
+
+// product-list
+ if (document.getElementById("product-list")) {
+ var productList = new gridjs.Grid({
+ columns: [
+ {
+ name: 'Product Name',
+ data: (function (row) {
+ var num = 1;
+ if (row.color) {
+ var colorElem = '
';
+ } else {
+ var colorElem = '';
+ }
+
+ if (row.size) {
+ var sizeElem = '
';
+ }else{
+ var sizeElem = '';
+ }
+ return gridjs.html('
'+ colorElem + sizeElem);
+ }),
+ width: '400px',
+ },
+ {
+ name: 'Rate',
+ data: (function (row) {
+ return gridjs.html('
');
+ }),
+ width: '80px',
+ },
+ {
+ name: 'Price',
+ data: (function (row) {
+ var text = row.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var afterDiscount = row.price - (row.price * discount / 100);
+ if (discount > 0) {
+ var afterDiscountElem = '
'
+ } else {
+ var afterDiscountElem = '
'
+ }
+ return gridjs.html(afterDiscountElem);
+ }),
+ width: '80px',
+ },
+ {
+ name: 'Status',
+ data: (function (row) {
+ return gridjs.html(isStatus(row.stock));
+ }),
+ width: '100px',
+ }, {
+ name: 'Action',
+ width: '80px',
+ data: (function (row) {
+ return gridjs.html('
');
+ })
+ },
+ ],
+ sort: true,
+ pagination: {
+ limit: 10
+ },
+ data: productListData,
+ }).render(document.getElementById("product-list"));
+ };
+
+ function isStatus(val) {
+ switch (val) {
+ case "In stock":
+ return ('
');
+ }
+ }
+
+
+ // Search product list
+ var searchProductList = document.getElementById("searchProductList");
+ searchProductList.addEventListener("keyup", function () {
+ var inputVal = searchProductList.value.toLowerCase();
+ function filterItems(arr, query) {
+ return arr.filter(function (el) {
+ return el.productTitle.toLowerCase().indexOf(query.toLowerCase()) !== -1 || el.category.toLowerCase().indexOf(query.toLowerCase()) !== -1 || el.stock.toLowerCase().indexOf(query.toLowerCase()) !== -1|| el.price.toLowerCase().indexOf(query.toLowerCase()) !== -1
+ })
+ }
+ var filterData = filterItems(productListData, inputVal);
+ productList.updateConfig({
+ data: filterData
+ }).forceRender();
+ });
+
+ // price range slider
+ var slider = document.getElementById('product-price-range');
+ if(slider){
+ noUiSlider.create(slider, {
+ start: [0, 2000], // Handle start position
+ step: 10, // Slider moves in increments of '10'
+ margin: 20, // Handles must be more than '20' apart
+ connect: true, // Display a colored bar between the handles
+ behaviour: 'tap-drag', // Move handle on tap, bar is draggable
+ range: { // Slider can select '0' to '100'
+ 'min': 0,
+ 'max': 2000
+ },
+ format: wNumb({ decimals: 0, prefix: '$ ' })
+ });
+
+ var minCostInput = document.getElementById('minCost'),
+ maxCostInput = document.getElementById('maxCost');
+
+ var filterDataAll = '';
+
+ // When the slider value changes, update the input and span
+ slider.noUiSlider.on('update', function (values, handle) {
+ var productListupdatedAll = productListData;
+
+ if (handle) {
+ maxCostInput.value = values[handle];
+
+ } else {
+ minCostInput.value = values[handle];
+ }
+
+ var maxvalue = maxCostInput.value.substr(2);
+ var minvalue = minCostInput.value.substr(2);
+ filterDataAll = productListupdatedAll.filter(
+ product => parseFloat(product.price) >= minvalue && parseFloat(product.price) <= maxvalue
+ );
+
+ productList.updateConfig({
+ data: filterDataAll
+ }).forceRender();
+ });
+
+ minCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+
+ maxCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+ }
+
+ // color-filter
+ document.querySelectorAll("#color-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.color) {
+ return filterlist.color.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ productList.updateConfig({
+ data: filterData
+ }).forceRender();
+ });
+ });
+
+ // size-filter
+ document.querySelectorAll("#size-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.size) {
+ return filterlist.size.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ productList.updateConfig({
+ data: filterData
+ }).forceRender();
+ });
+ });
+
+
+ // discount-filter
+ var arraylist = [];
+ document.querySelectorAll("#discount-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 0) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+
+ return parseFloat(listArray[0]) < 10;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ productList.updateConfig({
+ data: filterDataAll
+ }).forceRender();
+ });
+ });
+
+
+ // rating-filter
+ document.querySelectorAll("#rating-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 1) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) == 1;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ productList.updateConfig({
+ data: filterDataAll
+ }).forceRender();
+ });
+ });
+
+
+ document.getElementById("sort-elem").addEventListener("change", function (e) {
+ var inputVal = e.target.value
+ if (inputVal == "low_to_high") {
+ sortElementsByAsc();
+ } else if (inputVal == "high_to_low") {
+ sortElementsByDesc();
+ } else if (inputVal == "") {
+ sortElementsById()
+ }
+ });
+
+ // sort element ascending
+ function sortElementsByAsc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ productList.updateConfig({
+ data: list
+ }).forceRender();
+ }
+
+ // sort element descending
+ function sortElementsByDesc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x > y) {
+ return -1;
+ }
+ if (x < y) {
+ return 1;
+ }
+ return 0;
+ })
+ productList.updateConfig({
+ data: list
+ }).forceRender();
+ }
+
+ // sort element id
+ function sortElementsById() {
+ var list = productListData.sort(function (a, b) {
+ var x = parseInt(a.id);
+ var y = parseInt(b.id);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ productList.updateConfig({
+ data: list
+ }).forceRender();
+ }
\ No newline at end of file
diff --git a/public/build/js/frontend/product-list.init.js b/public/build/js/frontend/product-list.init.js
new file mode 100644
index 0000000..163fd4b
--- /dev/null
+++ b/public/build/js/frontend/product-list.init.js
@@ -0,0 +1,751 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: product list init Js File
+*/
+
+var productListData = [{
+ 'id': 1,
+ "productImg": "../build/images/products/img-10.png",
+ "productTitle": "World's most expensive t shirt",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "354.99",
+ "discount": "25%",
+ "rating": "4.9",
+ "stock": "Out of stock",
+ "color": ["secondary", "light", "dark"],
+ "size": ["s", "m", "l"],
+},{
+ 'id': 2,
+ "productImg": "../build/images/products/img-15.png",
+ "productTitle": "Like Style Women Black Handbag",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "742.00",
+ "discount": "0%",
+ "rating": "4.2",
+ "stock": "In stock",
+ "color": ["light", "dark"],
+},{
+ 'id': 3,
+ "productImg": "../build/images/products/img-1.png",
+ "productTitle": "Black Horn Backpack For Men Bags 30 L Backpack",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Grocery",
+ "price": "150.99",
+ "discount": "25%",
+ "rating": "3.8",
+ "stock": "In stock",
+ "color": ["primary", "danger", "secondary"],
+ "size": ["s", "m", "l"],
+},{
+ 'id': 4,
+ "productImg": "../build/images/products/img-7.png",
+ "productTitle": "Innovative education book",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Kids",
+ "price": "96.26",
+ "discount": "0%",
+ "rating": "4.7",
+ "stock": "In stock",
+},{
+ 'id': 5,
+ "productImg": "../build/images/products/img-4.png",
+ "productTitle": "Sangria Girls Mint Green & Off-White Solid Open Toe Flats",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Kids",
+ "price": "96.26",
+ "discount": "75%",
+ "rating": "4.7",
+ "stock": "In stock",
+ "color": ["success", "danger", "secondary"],
+ "size": ["40", "41", "42"],
+},{
+ 'id': 6,
+ "productImg": "../build/images/products/img-5.png",
+ "productTitle": "Lace-Up Casual Shoes For Men",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "229.00",
+ "discount": "0%",
+ "rating": "4.0",
+ "stock": "In stock",
+ "color": ["danger"],
+ "size": ["40", "41", "42"],
+},{
+ 'id': 7,
+ "productImg": "../build/images/products/img-6.png",
+ "productTitle": "Striped High Neck Casual Men Orange Sweater",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "120.00",
+ "discount": "48%",
+ "rating": "4.8",
+ "stock": "In stock",
+ "size": ["s", "m", "l", "xl"],
+},{
+ 'id': 8,
+ "productImg": "../build/images/products/img-9.png",
+ "productTitle": "Lace-Up Casual Shoes For Men",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Kids",
+ "price": "229.00",
+ "discount": "15%",
+ "rating": "2.4",
+ "stock": "In stock",
+ "color": ["light", "warning"],
+ "size": ["s", "l"],
+},{
+ 'id': 9,
+ "productImg": "../build/images/products/img-10.png",
+ "productTitle": "Printed, Typography Men Round Neck Black T-shirt",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "81.99",
+ "discount": "0%",
+ "rating": "4.9",
+ "stock": "In stock",
+ "color": ["dark", "light"],
+ "size": ["s", "m", "l", "xl"],
+},{
+ 'id': 10,
+ "productImg": "../build/images/products/img-12.png",
+ "productTitle": "Carven Lounge Chair Red",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Furniture",
+ "price": "209.99",
+ "discount": "0%",
+ "rating": "4.1",
+ "stock": "In stock",
+ "color": ["secondary", "dark", "danger", "light"],
+},{
+ 'id': 11,
+ "productImg": "../build/images/products/img-3.png",
+ "productTitle": "Ninja Pro Max Smartwatch",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Watches",
+ "price": "309.09",
+ "discount": "20%",
+ "rating": "3.5",
+ "stock": "In stock",
+ "color": ["secondary", "info"],
+},{
+ 'id': 12,
+ "productImg": "../build/images/products/img-2.png",
+ "productTitle": "Opinion Striped Round Neck Green T-shirt",
+ "description": "T-Shirt house best black boys T-Shirt fully cotton material & all size available hirt fully cotton material & all size available.",
+ "category": "Fashion",
+ "price": "126.99",
+ "discount": "0%",
+ "rating": "4.1",
+ "stock": "In stock",
+ "color": ["success"],
+ "size": ["s", "m", "l", "xl"],
+}];
+
+
+var prevButton = document.getElementById('page-prev');
+var nextButton = document.getElementById('page-next');
+
+var currentPage = 1;
+var itemsPerPage = 5;
+
+loadProductList(productListData, currentPage);
+paginationEvents();
+
+function loadProductList(datas, page) {
+ var pages = Math.ceil(datas.length / itemsPerPage)
+ if (page < 1) page = 1
+ if (page > pages) page = pages
+ if (document.getElementById("product-list")) {
+ document.getElementById("product-list").innerHTML = "";
+ for (var i = (page - 1) * itemsPerPage; i < (page * itemsPerPage) && i < datas.length; i++) {
+ // Array.from(datas).forEach(function (listdata) {
+ if(datas[i]){
+ var checkinput = datas[i].wishList ? "active" : "";
+
+ var num = 1;
+ if (datas[i].color) {
+ var colorElem = '
';
+ } else {
+ var colorElem = '';
+ }
+
+ if (datas[i].size) {
+ var sizeElem = '
';
+ }else{
+ var sizeElem = '';
+ }
+
+ var text = datas[i].discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var afterDiscount = datas[i].price - (datas[i].price * discount / 100);
+ if (discount > 0) {
+ var discountElem = '
'
+ } else {
+ var discountElem = '';
+ var afterDiscountElem = '
'
+ }
+
+ if (document.getElementById("layout-noSidebar")) {
+ var layout = '
'
+ } else {
+ var layout = '
'
+ }
+
+ document.getElementById("product-list").innerHTML += '
\
+ '+discountElem+'\
+
\
+
\
+ '+layout + '\
+
\
+
\
+
\
+
\
+
\
+
\
+
\
+ '+datas[i].rating+' \
+ \
+
\
+
'+datas[i].productTitle+' \
+
'+datas[i].description+'
\
+
\
+ '+afterDiscountElem+'\
+ '+isStatus(datas[i].stock)+'\
+
\
+
\
+
\
+
\
+ '+ colorElem + '\
+ '+ sizeElem + '\
+
\
+
\
+
\
+
\
+
\
+
\
+
'
+ }
+ // });
+ }
+ }
+ selectedPage();
+ currentPage == 1 ? prevButton.parentNode.classList.add('disabled') : prevButton.parentNode.classList.remove('disabled');
+ currentPage == pages ? nextButton.parentNode.classList.add('disabled') : nextButton.parentNode.classList.remove('disabled');
+}
+
+function selectedPage() {
+ var pagenumLink = document.getElementById('page-num').getElementsByClassName('clickPageNumber');
+ for (var i = 0; i < pagenumLink.length; i++) {
+ if (i == currentPage - 1) {
+ pagenumLink[i].parentNode.classList.add("active");
+ } else {
+ pagenumLink[i].parentNode.classList.remove("active");
+ }
+ }
+};
+
+function isStatus(val) {
+ switch (val) {
+ case "In stock":
+ return ('
'+ val +' ');
+ case "Out of stock":
+ return ('
'+ val +' ');
+ }
+}
+
+
+// paginationEvents
+function paginationEvents() {
+ var numPages = function numPages() {
+ return Math.ceil(productListData.length / itemsPerPage);
+ };
+
+ function clickPage() {
+ document.addEventListener('click', function (e) {
+ if (e.target.nodeName == "A" && e.target.classList.contains("clickPageNumber")) {
+ currentPage = e.target.textContent;
+ loadProductList(productListData, currentPage);
+ }
+ });
+ };
+
+ function pageNumbers() {
+ var pageNumber = document.getElementById('page-num');
+ pageNumber.innerHTML = "";
+ // for each page
+ for (var i = 1; i < numPages() + 1; i++) {
+ pageNumber.innerHTML += "
";
+ }
+ }
+
+ prevButton.addEventListener('click', function () {
+ if (currentPage > 1) {
+ currentPage--;
+ loadProductList(productListData, currentPage);
+ }
+ });
+
+ nextButton.addEventListener('click', function () {
+ if (currentPage < numPages()) {
+ currentPage++;
+ loadProductList(productListData, currentPage);
+ }
+ });
+
+ pageNumbers();
+ clickPage();
+ selectedPage();
+}
+
+function searchResult(data) {
+ if (data.length == 0) {
+ document.getElementById("pagination-element").style.display = "none";
+ document.getElementById("search-result-elem").classList.remove("d-none");
+ } else {
+ document.getElementById("pagination-element").style.display = "flex";
+ document.getElementById("search-result-elem").classList.add("d-none");
+ }
+
+ var pageNumber = document.getElementById('page-num');
+ pageNumber.innerHTML = "";
+ var dataPageNum = Math.ceil(data.length / itemsPerPage)
+ // for each page
+ for (var i = 1; i < dataPageNum + 1; i++) {
+ pageNumber.innerHTML += "
";
+ }
+}
+
+// Search product list
+var searchProductList = document.getElementById("searchProductList");
+searchProductList.addEventListener("keyup", function () {
+ var inputVal = searchProductList.value.toLowerCase();
+ function filterItems(arr, query) {
+ return arr.filter(function (el) {
+ return el.productTitle.toLowerCase().indexOf(query.toLowerCase()) !== -1
+ })
+ }
+ var filterData = filterItems(productListData, inputVal);
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+});
+
+// category list filter
+Array.from(document.querySelectorAll('.filter-list a')).forEach(function (filteritem) {
+ filteritem.addEventListener("click", function () {
+ var filterListItem = document.querySelector(".filter-list a.active");
+ if (filterListItem) filterListItem.classList.remove("active");
+ filteritem.classList.add('active');
+
+ var filterItemValue = filteritem.querySelector(".listname").innerHTML
+ var filterData = productListData.filter(filterlist => filterlist.category === filterItemValue);
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ });
+})
+
+
+// price range slider
+var slider = document.getElementById('product-price-range');
+if(slider){
+ noUiSlider.create(slider, {
+ start: [0, 2000], // Handle start position
+ step: 10, // Slider moves in increments of '10'
+ margin: 20, // Handles must be more than '20' apart
+ connect: true, // Display a colored bar between the handles
+ behaviour: 'tap-drag', // Move handle on tap, bar is draggable
+ range: { // Slider can select '0' to '100'
+ 'min': 0,
+ 'max': 2000
+ },
+ format: wNumb({ decimals: 0, prefix: '$ ' })
+ });
+
+ var minCostInput = document.getElementById('minCost'),
+ maxCostInput = document.getElementById('maxCost');
+
+ var filterDataAll = '';
+
+ // When the slider value changes, update the input and span
+ slider.noUiSlider.on('update', function (values, handle) {
+ var productListupdatedAll = productListData;
+ if (handle) {
+ maxCostInput.value = values[handle];
+
+ } else {
+ minCostInput.value = values[handle];
+ }
+
+ var maxvalue = maxCostInput.value.substr(2);
+ var minvalue = minCostInput.value.substr(2);
+ filterDataAll = productListupdatedAll.filter(
+ product => parseFloat(product.price) >= minvalue && parseFloat(product.price) <= maxvalue
+ );
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+
+ minCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+
+ maxCostInput.addEventListener('change', function () {
+ slider.noUiSlider.set([null, this.value]);
+ });
+}
+
+
+// discount-filter
+var arraylist = [];
+document.querySelectorAll("#discount-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 0) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+
+ return parseFloat(listArray[0]) < 10;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+});
+
+// rating-filter
+document.querySelectorAll("#rating-filter .form-check").forEach(function (item) {
+ var inputVal = item.querySelector(".form-check-input").value;
+ item.querySelector(".form-check-input").addEventListener("change", function () {
+ if (item.querySelector(".form-check-input").checked) {
+ arraylist.push(inputVal);
+ } else {
+ arraylist.splice(arraylist.indexOf(inputVal), 1);
+ }
+
+ var filterproductdata = productListData;
+ if (item.querySelector(".form-check-input").checked && inputVal == 1) {
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) == 1;
+ }
+ });
+ } else if (item.querySelector(".form-check-input").checked && arraylist.length > 0) {
+ var compareval = Math.min.apply(Math, arraylist);
+ filterDataAll = filterproductdata.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+});
+
+// color-filter
+document.querySelectorAll("#color-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.color) {
+ return filterlist.color.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+
+ });
+});
+
+// size-filter
+document.querySelectorAll("#size-filter li").forEach(function (item) {
+ var inputVal = item.querySelector("input[type='radio']").value;
+ item.querySelector("input[type='radio']").addEventListener("change", function () {
+
+ var filterData = productListData.filter(function (filterlist) {
+ if (filterlist.size) {
+ return filterlist.size.some(function (g) {
+ return g == inputVal;
+ });
+ }
+ });
+
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ });
+});
+
+
+document.getElementById("sort-elem").addEventListener("change", function (e) {
+ var inputVal = e.target.value
+ if (inputVal == "low_to_high") {
+ sortElementsByAsc();
+ } else if (inputVal == "high_to_low") {
+ sortElementsByDesc();
+ } else if (inputVal == "") {
+ sortElementsById()
+ }
+});
+
+// sort element ascending
+function sortElementsByAsc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+// sort element descending
+function sortElementsByDesc() {
+ var list = productListData.sort(function (a, b) {
+ var text = a.discount;
+ var myArray = text.split("%");
+ var discount = myArray[0];
+ var x = a.price - (a.price * discount / 100);
+
+ var text1 = b.discount;
+ var myArray1 = text1.split("%");
+ var discount = myArray1[0];
+ var y = b.price - (b.price * discount / 100);
+
+ if (x > y) {
+ return -1;
+ }
+ if (x < y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+// sort element id
+function sortElementsById() {
+ var list = productListData.sort(function (a, b) {
+ var x = parseInt(a.id);
+ var y = parseInt(b.id);
+
+ if (x < y) {
+ return -1;
+ }
+ if (x > y) {
+ return 1;
+ }
+ return 0;
+ })
+ loadProductList(list, currentPage);
+}
+
+
+
+// no sidebar page
+
+var hidingTooltipSlider = document.getElementById('slider-hide');
+if (hidingTooltipSlider){
+ noUiSlider.create(hidingTooltipSlider, {
+ range: {
+ min: 0,
+ max: 2000
+ },
+ start: [20, 800],
+ tooltips: true,
+ connect: true,
+ pips: {
+ mode: 'count',
+ values: 5,
+ density: 4
+ },
+ format: wNumb({ decimals: 2, prefix: '$ ' })
+ });
+
+ var minCostInput = document.getElementById('minCost'),
+ maxCostInput = document.getElementById('maxCost');
+
+ var filterDataAll = '';
+
+ // When the slider value changes, update the input and span
+ hidingTooltipSlider.noUiSlider.on('update', function (values, handle) {
+ var productListupdatedAll = productListData;
+
+ if (handle) {
+ maxCostInput.value = values[handle];
+
+ } else {
+ minCostInput.value = values[handle];
+ }
+
+ var maxvalue = maxCostInput.value.substr(2);
+ var minvalue = minCostInput.value.substr(2);
+ filterDataAll = productListupdatedAll.filter(
+ product => parseFloat(product.price) >= minvalue && parseFloat(product.price) <= maxvalue
+ );
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ });
+}
+
+// choices category input
+if(document.getElementById('select-category')){
+ var productCategoryInput = new Choices(document.getElementById('select-category'), {
+ searchEnabled: false,
+ });
+
+ productCategoryInput.passedElement.element.addEventListener('change', function (event) {
+ var productCategoryValue = event.detail.value
+ if (event.detail.value) {
+ var filterData = productListData.filter(productlist => productlist.category === productCategoryValue);
+ }else {
+ var filterData = productListData;
+ }
+ searchResult(filterData);
+ loadProductList(filterData, currentPage);
+ }, false);
+}
+
+// select-rating
+if(document.getElementById('select-rating')){
+ var productRatingInput = new Choices(document.getElementById('select-rating'), {
+ searchEnabled: false,
+ allowHTML: true,
+ delimiter: ',',
+ editItems: true,
+ maxItemCount: 5,
+ removeItemButton: true,
+ });
+
+ productRatingInput.passedElement.element.addEventListener('change', function (event) {
+ var productRatingInputValue = productRatingInput.getValue(true);
+ if(event.detail.value == 1){
+ filterDataAll = productListData.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) == 1;
+ }
+ });
+ } else if (productRatingInputValue.length > 0) {
+ var compareval = Math.min.apply(Math, productRatingInputValue);
+ filterDataAll = productListData.filter(function (product) {
+ if (product.rating) {
+ var listArray = product.rating;
+ return parseFloat(listArray) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ }, false);
+}
+
+// select-discount
+if(document.getElementById('select-discount')){
+ var productDiscountInput = new Choices(document.getElementById('select-discount'), {
+ searchEnabled: false,
+ allowHTML: true,
+ delimiter: ',',
+ editItems: true,
+ maxItemCount: 5,
+ removeItemButton: true,
+ });
+
+ productDiscountInput.passedElement.element.addEventListener('change', function (event) {
+ var productDiscountInputValue = productDiscountInput.getValue(true);
+ var filterproductdata = productListData;
+ if(event.detail.value == 0){
+ filterDataAll = productListData.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) < 10;
+ }
+ });
+ } else if (productDiscountInputValue.length > 0) {
+ var compareval = Math.min.apply(Math, productDiscountInputValue);
+ filterDataAll = productListData.filter(function (product) {
+ if (product.discount) {
+ var listArray = product.discount.split("%");
+ return parseFloat(listArray[0]) >= compareval;
+ }
+ });
+ } else {
+ filterDataAll = productListData;
+ }
+ searchResult(filterDataAll);
+ loadProductList(filterDataAll, currentPage);
+ }, false);
+}
\ No newline at end of file
diff --git a/public/build/js/frontend/store-locator.init.js b/public/build/js/frontend/store-locator.init.js
new file mode 100644
index 0000000..07ef805
--- /dev/null
+++ b/public/build/js/frontend/store-locator.init.js
@@ -0,0 +1,88 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: store locator init Js File
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ } else {
+ console.warn('data-colors Attribute not found on:', chartId);
+ }
+ }
+}
+// world map with markers
+var vectorMapWorldMarkersColors = getChartColorsArray("world-map-markers");
+if (vectorMapWorldMarkersColors)
+ var worldemapmarkers = new jsVectorMap({
+ map: 'world_merc',
+ selector: '#world-map-markers',
+ zoomOnScroll: false,
+ zoomButtons: false,
+ selectedMarkers: [0, 2],
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapWorldMarkersColors,
+ fillOpacity: 1,
+ },
+ },
+ markersSelectable: true,
+ markers: [{
+ name: "Israel",
+ coords: [31.0461, 34.8516]
+ },
+ {
+ name: "Russia",
+ coords: [61.5240, 105.3188]
+ },
+ {
+ name: "Germany",
+ coords: [51.1657, 10.4515]
+ },
+ {
+ name: "Brazil",
+ coords: [-14.2350, -51.9253]
+ },
+ ],
+ markerStyle: {
+ initial: {
+ fill: "#038edc"
+ },
+ selected: {
+ fill: "red"
+ }
+ },
+ labels: {
+ markers: {
+ render: function (marker) {
+ return marker.name
+ }
+ }
+ }
+ })
\ No newline at end of file
diff --git a/public/build/js/frontend/trend-fashion.init.js b/public/build/js/frontend/trend-fashion.init.js
new file mode 100644
index 0000000..953222a
--- /dev/null
+++ b/public/build/js/frontend/trend-fashion.init.js
@@ -0,0 +1,91 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: trend fashion init Js File
+*/
+
+const end = new Date("Augest 16, 2025 00:00:00").getTime();
+//const end = new Date("November 09, 2020 00:00:00").getTime();
+const dayEl = document.getElementById('days');
+const hoursEl = document.getElementById('hours');
+const minutesEl = document.getElementById('minutes');
+const secondsEl = document.getElementById('seconds');
+const seconds = 1000;
+const minutes = seconds * 60;
+const hours = minutes * 60;
+const days = hours * 24;
+
+const x = setInterval(function () {
+ let now = new Date().getTime();
+ const difference = end - now;
+
+ if (difference < 0) {
+ clearInterval(x);
+ document.getElementById("done").innerHTML = "End Sales 🎉";
+ return;
+ }
+
+ dayEl.innerText = Math.floor(difference / days);
+ hoursEl.innerText = Math.floor((difference % days) / hours);
+ minutesEl.innerText = Math.floor((difference % hours) / minutes);
+ secondsEl.innerText = Math.floor((difference % minutes) / seconds);
+}, seconds);
+
+
+//top product slider
+var swiper = new Swiper(".top-Product-slider", {
+ loop: true,
+ spaceBetween: 24,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ },
+ breakpoints: {
+ 640: {
+ slidesPerView: 2,
+ },
+ 1024: {
+ slidesPerView: 3,
+ },
+ 1400: {
+ slidesPerView: 5,
+ },
+ },
+});
+
+//product load more
+var work = document.querySelector("#productList");
+var items = Array.from(work.querySelectorAll(".item"));
+var loadMore = document.getElementById("productLoadMore");
+maxItems = 10;
+loadItems = 5;
+hiddenClass = "hidden-product";
+hiddenItems = Array.from(document.querySelectorAll(".hidden-product"));
+
+items.forEach(function (item, index) {
+ if (index > maxItems - 1) {
+ item.classList.add(hiddenClass);
+ }
+});
+
+loadMore.addEventListener("click", function () {
+ [].forEach.call(document.querySelectorAll("." + hiddenClass), function (
+ item,
+ index
+ ) {
+ if (index < loadItems) {
+ item.classList.remove(hiddenClass);
+ }
+
+ if (document.querySelectorAll("." + hiddenClass).length === 0) {
+ loadMore.style.display = "none";
+ }
+ });
+});
diff --git a/public/build/js/frontend/watch-demo.init.js b/public/build/js/frontend/watch-demo.init.js
new file mode 100644
index 0000000..7b768f8
--- /dev/null
+++ b/public/build/js/frontend/watch-demo.init.js
@@ -0,0 +1,33 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: watch demo init Js File
+*/
+
+
+var swiper = new Swiper(".feedback-slider", {
+ spaceBetween: 24,
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ },
+ breakpoints: {
+ 768: {
+ slidesPerView: 2,
+ },
+ 1024: {
+ slidesPerView: 3,
+ },
+ 1500: {
+ slidesPerView: 5,
+ },
+ },
+});
\ No newline at end of file
diff --git a/public/build/js/layout.js b/public/build/js/layout.js
new file mode 100644
index 0000000..bf021d4
--- /dev/null
+++ b/public/build/js/layout.js
@@ -0,0 +1,50 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Layout Js File
+*/
+
+(function () {
+
+ 'use strict';
+
+ if (sessionStorage.getItem('defaultAttribute')) {
+
+ var attributesValue = document.documentElement.attributes;
+ var CurrentLayoutAttributes = {};
+ Object.entries(attributesValue).forEach(function(key) {
+ if (key[1] && key[1].nodeName && key[1].nodeName != "undefined") {
+ var nodeKey = key[1].nodeName;
+ CurrentLayoutAttributes[nodeKey] = key[1].nodeValue;
+ }
+ });
+ if(sessionStorage.getItem('defaultAttribute') !== JSON.stringify(CurrentLayoutAttributes)) {
+ sessionStorage.clear();
+ window.location.reload();
+ } else {
+ var isLayoutAttributes = {};
+ isLayoutAttributes['data-layout'] = sessionStorage.getItem('data-layout');
+ isLayoutAttributes['data-sidebar-size'] = sessionStorage.getItem('data-sidebar-size');
+ isLayoutAttributes['data-bs-theme'] = sessionStorage.getItem('data-bs-theme');
+ isLayoutAttributes['data-layout-width'] = sessionStorage.getItem('data-layout-width');
+ isLayoutAttributes['data-sidebar'] = sessionStorage.getItem('data-sidebar');
+ isLayoutAttributes['data-sidebar-image'] = sessionStorage.getItem('data-sidebar-image');
+ isLayoutAttributes['data-layout-direction'] = sessionStorage.getItem('data-layout-direction');
+ isLayoutAttributes['data-layout-position'] = sessionStorage.getItem('data-layout-position');
+ isLayoutAttributes['data-layout-style'] = sessionStorage.getItem('data-layout-style');
+ isLayoutAttributes['data-topbar'] = sessionStorage.getItem('data-topbar');
+ isLayoutAttributes['data-preloader'] = sessionStorage.getItem('data-preloader');
+ isLayoutAttributes['data-body-image'] = sessionStorage.getItem('data-body-image');
+
+ Object.keys(isLayoutAttributes).forEach(function (x) {
+ if (isLayoutAttributes[x] && isLayoutAttributes[x]) {
+ document.documentElement.setAttribute(x, isLayoutAttributes[x]);
+ }
+ });
+ }
+ }
+
+})();
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-area.init.js b/public/build/js/pages/apexcharts-area.init.js
new file mode 100644
index 0000000..662ab97
--- /dev/null
+++ b/public/build/js/pages/apexcharts-area.init.js
@@ -0,0 +1,1248 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Area Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic area Charts
+
+var areachartBasicColors = getChartColorsArray("area_chart_basic");
+if(areachartBasicColors){
+var options = {
+ series: [{
+ name: "STOCK ABC",
+ data: series.monthDataSeries1.prices
+ }],
+ chart: {
+ type: 'area',
+ height: 350,
+ zoom: {
+ enabled: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight'
+ },
+
+ title: {
+ text: 'Fundamental Analysis of Stocks',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ subtitle: {
+ text: 'Price Movements',
+ align: 'left'
+ },
+ labels: series.monthDataSeries1.dates,
+ xaxis: {
+ type: 'datetime',
+ },
+ yaxis: {
+ opposite: true
+ },
+ legend: {
+ horizontalAlign: 'left'
+ },
+ colors: areachartBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#area_chart_basic"), options);
+chart.render();
+}
+
+// Spline Area Charts
+var areachartSplineColors = getChartColorsArray("area_chart_spline");
+if(areachartSplineColors){
+var options = {
+ series: [{
+ name: 'series1',
+ data: [31, 40, 28, 51, 42, 109, 100]
+ }, {
+ name: 'series2',
+ data: [11, 32, 45, 32, 34, 52, 41]
+ }],
+ chart: {
+ height: 350,
+ type: 'area',
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'smooth'
+ },
+ colors: areachartSplineColors,
+ xaxis: {
+ type: 'datetime',
+ categories: ["2018-09-19T00:00:00.000Z", "2018-09-19T01:30:00.000Z", "2018-09-19T02:30:00.000Z", "2018-09-19T03:30:00.000Z", "2018-09-19T04:30:00.000Z", "2018-09-19T05:30:00.000Z", "2018-09-19T06:30:00.000Z"]
+ },
+ tooltip: {
+ x: {
+ format: 'dd/MM/yy HH:mm'
+ },
+ },
+};
+
+var chart = new ApexCharts(document.querySelector("#area_chart_spline"), options);
+chart.render();
+}
+
+// Area Chart - Datetime X - Axis
+var areachartDatetimeColors = getChartColorsArray("area_chart_datetime");
+if(areachartDatetimeColors){
+var timelinechart = {
+ series: [{
+ data: [
+ [1327359600000, 30.95],
+ [1327446000000, 31.34],
+ [1327532400000, 31.18],
+ [1327618800000, 31.05],
+ [1327878000000, 31.00],
+ [1327964400000, 30.95],
+ [1328050800000, 31.24],
+ [1328137200000, 31.29],
+ [1328223600000, 31.85],
+ [1328482800000, 31.86],
+ [1328569200000, 32.28],
+ [1328655600000, 32.10],
+ [1328742000000, 32.65],
+ [1328828400000, 32.21],
+ [1329087600000, 32.35],
+ [1329174000000, 32.44],
+ [1329260400000, 32.46],
+ [1329346800000, 32.86],
+ [1329433200000, 32.75],
+ [1329778800000, 32.54],
+ [1329865200000, 32.33],
+ [1329951600000, 32.97],
+ [1330038000000, 33.41],
+ [1330297200000, 33.27],
+ [1330383600000, 33.27],
+ [1330470000000, 32.89],
+ [1330556400000, 33.10],
+ [1330642800000, 33.73],
+ [1330902000000, 33.22],
+ [1330988400000, 31.99],
+ [1331074800000, 32.41],
+ [1331161200000, 33.05],
+ [1331247600000, 33.64],
+ [1331506800000, 33.56],
+ [1331593200000, 34.22],
+ [1331679600000, 33.77],
+ [1331766000000, 34.17],
+ [1331852400000, 33.82],
+ [1332111600000, 34.51],
+ [1332198000000, 33.16],
+ [1332284400000, 33.56],
+ [1332370800000, 33.71],
+ [1332457200000, 33.81],
+ [1332712800000, 34.40],
+ [1332799200000, 34.63],
+ [1332885600000, 34.46],
+ [1332972000000, 34.48],
+ [1333058400000, 34.31],
+ [1333317600000, 34.70],
+ [1333404000000, 34.31],
+ [1333490400000, 33.46],
+ [1333576800000, 33.59],
+ [1333922400000, 33.22],
+ [1334008800000, 32.61],
+ [1334095200000, 33.01],
+ [1334181600000, 33.55],
+ [1334268000000, 33.18],
+ [1334527200000, 32.84],
+ [1334613600000, 33.84],
+ [1334700000000, 33.39],
+ [1334786400000, 32.91],
+ [1334872800000, 33.06],
+ [1335132000000, 32.62],
+ [1335218400000, 32.40],
+ [1335304800000, 33.13],
+ [1335391200000, 33.26],
+ [1335477600000, 33.58],
+ [1335736800000, 33.55],
+ [1335823200000, 33.77],
+ [1335909600000, 33.76],
+ [1335996000000, 33.32],
+ [1336082400000, 32.61],
+ [1336341600000, 32.52],
+ [1336428000000, 32.67],
+ [1336514400000, 32.52],
+ [1336600800000, 31.92],
+ [1336687200000, 32.20],
+ [1336946400000, 32.23],
+ [1337032800000, 32.33],
+ [1337119200000, 32.36],
+ [1337205600000, 32.01],
+ [1337292000000, 31.31],
+ [1337551200000, 32.01],
+ [1337637600000, 32.01],
+ [1337724000000, 32.18],
+ [1337810400000, 31.54],
+ [1337896800000, 31.60],
+ [1338242400000, 32.05],
+ [1338328800000, 31.29],
+ [1338415200000, 31.05],
+ [1338501600000, 29.82],
+ [1338760800000, 30.31],
+ [1338847200000, 30.70],
+ [1338933600000, 31.69],
+ [1339020000000, 31.32],
+ [1339106400000, 31.65],
+ [1339365600000, 31.13],
+ [1339452000000, 31.77],
+ [1339538400000, 31.79],
+ [1339624800000, 31.67],
+ [1339711200000, 32.39],
+ [1339970400000, 32.63],
+ [1340056800000, 32.89],
+ [1340143200000, 31.99],
+ [1340229600000, 31.23],
+ [1340316000000, 31.57],
+ [1340575200000, 30.84],
+ [1340661600000, 31.07],
+ [1340748000000, 31.41],
+ [1340834400000, 31.17],
+ [1340920800000, 32.37],
+ [1341180000000, 32.19],
+ [1341266400000, 32.51],
+ [1341439200000, 32.53],
+ [1341525600000, 31.37],
+ [1341784800000, 30.43],
+ [1341871200000, 30.44],
+ [1341957600000, 30.20],
+ [1342044000000, 30.14],
+ [1342130400000, 30.65],
+ [1342389600000, 30.40],
+ [1342476000000, 30.65],
+ [1342562400000, 31.43],
+ [1342648800000, 31.89],
+ [1342735200000, 31.38],
+ [1342994400000, 30.64],
+ [1343080800000, 30.02],
+ [1343167200000, 30.33],
+ [1343253600000, 30.95],
+ [1343340000000, 31.89],
+ [1343599200000, 31.01],
+ [1343685600000, 30.88],
+ [1343772000000, 30.69],
+ [1343858400000, 30.58],
+ [1343944800000, 32.02],
+ [1344204000000, 32.14],
+ [1344290400000, 32.37],
+ [1344376800000, 32.51],
+ [1344463200000, 32.65],
+ [1344549600000, 32.64],
+ [1344808800000, 32.27],
+ [1344895200000, 32.10],
+ [1344981600000, 32.91],
+ [1345068000000, 33.65],
+ [1345154400000, 33.80],
+ [1345413600000, 33.92],
+ [1345500000000, 33.75],
+ [1345586400000, 33.84],
+ [1345672800000, 33.50],
+ [1345759200000, 32.26],
+ [1346018400000, 32.32],
+ [1346104800000, 32.06],
+ [1346191200000, 31.96],
+ [1346277600000, 31.46],
+ [1346364000000, 31.27],
+ [1346709600000, 31.43],
+ [1346796000000, 32.26],
+ [1346882400000, 32.79],
+ [1346968800000, 32.46],
+ [1347228000000, 32.13],
+ [1347314400000, 32.43],
+ [1347400800000, 32.42],
+ [1347487200000, 32.81],
+ [1347573600000, 33.34],
+ [1347832800000, 33.41],
+ [1347919200000, 32.57],
+ [1348005600000, 33.12],
+ [1348092000000, 34.53],
+ [1348178400000, 33.83],
+ [1348437600000, 33.41],
+ [1348524000000, 32.90],
+ [1348610400000, 32.53],
+ [1348696800000, 32.80],
+ [1348783200000, 32.44],
+ [1349042400000, 32.62],
+ [1349128800000, 32.57],
+ [1349215200000, 32.60],
+ [1349301600000, 32.68],
+ [1349388000000, 32.47],
+ [1349647200000, 32.23],
+ [1349733600000, 31.68],
+ [1349820000000, 31.51],
+ [1349906400000, 31.78],
+ [1349992800000, 31.94],
+ [1350252000000, 32.33],
+ [1350338400000, 33.24],
+ [1350424800000, 33.44],
+ [1350511200000, 33.48],
+ [1350597600000, 33.24],
+ [1350856800000, 33.49],
+ [1350943200000, 33.31],
+ [1351029600000, 33.36],
+ [1351116000000, 33.40],
+ [1351202400000, 34.01],
+ [1351638000000, 34.02],
+ [1351724400000, 34.36],
+ [1351810800000, 34.39],
+ [1352070000000, 34.24],
+ [1352156400000, 34.39],
+ [1352242800000, 33.47],
+ [1352329200000, 32.98],
+ [1352415600000, 32.90],
+ [1352674800000, 32.70],
+ [1352761200000, 32.54],
+ [1352847600000, 32.23],
+ [1352934000000, 32.64],
+ [1353020400000, 32.65],
+ [1353279600000, 32.92],
+ [1353366000000, 32.64],
+ [1353452400000, 32.84],
+ [1353625200000, 33.40],
+ [1353884400000, 33.30],
+ [1353970800000, 33.18],
+ [1354057200000, 33.88],
+ [1354143600000, 34.09],
+ [1354230000000, 34.61],
+ [1354489200000, 34.70],
+ [1354575600000, 35.30],
+ [1354662000000, 35.40],
+ [1354748400000, 35.14],
+ [1354834800000, 35.48],
+ [1355094000000, 35.75],
+ [1355180400000, 35.54],
+ [1355266800000, 35.96],
+ [1355353200000, 35.53],
+ [1355439600000, 37.56],
+ [1355698800000, 37.42],
+ [1355785200000, 37.49],
+ [1355871600000, 38.09],
+ [1355958000000, 37.87],
+ [1356044400000, 37.71],
+ [1356303600000, 37.53],
+ [1356476400000, 37.55],
+ [1356562800000, 37.30],
+ [1356649200000, 36.90],
+ [1356908400000, 37.68],
+ [1357081200000, 38.34],
+ [1357167600000, 37.75],
+ [1357254000000, 38.13],
+ [1357513200000, 37.94],
+ [1357599600000, 38.14],
+ [1357686000000, 38.66],
+ [1357772400000, 38.62],
+ [1357858800000, 38.09],
+ [1358118000000, 38.16],
+ [1358204400000, 38.15],
+ [1358290800000, 37.88],
+ [1358377200000, 37.73],
+ [1358463600000, 37.98],
+ [1358809200000, 37.95],
+ [1358895600000, 38.25],
+ [1358982000000, 38.10],
+ [1359068400000, 38.32],
+ [1359327600000, 38.24],
+ [1359414000000, 38.52],
+ [1359500400000, 37.94],
+ [1359586800000, 37.83],
+ [1359673200000, 38.34],
+ [1359932400000, 38.10],
+ [1360018800000, 38.51],
+ [1360105200000, 38.40],
+ [1360191600000, 38.07],
+ [1360278000000, 39.12],
+ [1360537200000, 38.64],
+ [1360623600000, 38.89],
+ [1360710000000, 38.81],
+ [1360796400000, 38.61],
+ [1360882800000, 38.63],
+ [1361228400000, 38.99],
+ [1361314800000, 38.77],
+ [1361401200000, 38.34],
+ [1361487600000, 38.55],
+ [1361746800000, 38.11],
+ [1361833200000, 38.59],
+ [1361919600000, 39.60],
+ ]
+ }],
+ chart: {
+ id: 'area-datetime',
+ type: 'area',
+ height: 320,
+ zoom: {
+ autoScaleYaxis: true
+ },
+ toolbar: {
+ show: false
+ },
+ },
+ colors: areachartDatetimeColors,
+ annotations: {
+ yaxis: [{
+ y: 30,
+ borderColor: '#999',
+ label: {
+ show: true,
+ text: 'Support',
+ style: {
+ color: "#fff",
+ background: '#e83e8c'
+ }
+ }
+ }],
+ xaxis: [{
+ x: new Date('14 Nov 2012').getTime(),
+ borderColor: '#999',
+ yAxisIndex: 0,
+ label: {
+ show: true,
+ text: 'Rally',
+ style: {
+ color: "#fff",
+ background: '#564ab1'
+ }
+ }
+ }]
+ },
+ dataLabels: {
+ enabled: false
+ },
+ markers: {
+ size: 0,
+ style: 'hollow',
+ },
+ xaxis: {
+ type: 'datetime',
+ min: new Date('01 Mar 2012').getTime(),
+ tickAmount: 6,
+ },
+ tooltip: {
+ x: {
+ format: 'dd MMM yyyy'
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shadeIntensity: 1,
+ inverseColors: false,
+ opacityFrom: 0.45,
+ opacityTo: 0.05,
+ stops: [20, 100, 100, 100]
+ },
+ },
+};
+
+var timelinechart = new ApexCharts(document.querySelector("#area_chart_datetime"), timelinechart);
+timelinechart.render();
+}
+
+// Datetime chart button
+var resetCssClasses = function (activeEl) {
+ var els = document.querySelectorAll('.timeline')
+ Array.prototype.forEach.call(els, function (el) {
+ el.classList.remove('active')
+ })
+
+ activeEl.target.classList.add('active')
+}
+
+document
+ .querySelector('#one_month')
+ .addEventListener('click', function (e) {
+ resetCssClasses(e)
+
+ timelinechart.zoomX(
+ new Date('28 Jan 2013').getTime(),
+ new Date('27 Feb 2013').getTime()
+ )
+ })
+
+document
+ .querySelector('#six_months')
+ .addEventListener('click', function (e) {
+ resetCssClasses(e)
+
+ timelinechart.zoomX(
+ new Date('27 Sep 2012').getTime(),
+ new Date('27 Feb 2013').getTime()
+ )
+ })
+
+document
+ .querySelector('#one_year')
+ .addEventListener('click', function (e) {
+ resetCssClasses(e)
+ timelinechart.zoomX(
+ new Date('27 Feb 2012').getTime(),
+ new Date('27 Feb 2013').getTime()
+ )
+ })
+
+document.querySelector('#all').addEventListener('click', function (e) {
+ resetCssClasses(e)
+
+ timelinechart.zoomX(
+ new Date('23 Jan 2012').getTime(),
+ new Date('27 Feb 2013').getTime()
+ )
+})
+
+// Area with Nagetive Values
+var areachartNegativeColors = getChartColorsArray("area_chart_negative");
+if(areachartNegativeColors){
+var options = {
+ series: [{
+ name: 'North',
+ data: [{
+ x: 1996,
+ y: 322
+ },
+ {
+ x: 1997,
+ y: 324
+ },
+ {
+ x: 1998,
+ y: 329
+ },
+ {
+ x: 1999,
+ y: 342
+ },
+ {
+ x: 2000,
+ y: 348
+ },
+ {
+ x: 2001,
+ y: 334
+ },
+ {
+ x: 2002,
+ y: 325
+ },
+ {
+ x: 2003,
+ y: 316
+ },
+ {
+ x: 2004,
+ y: 318
+ },
+ {
+ x: 2005,
+ y: 330
+ },
+ {
+ x: 2006,
+ y: 355
+ },
+ {
+ x: 2007,
+ y: 366
+ },
+ {
+ x: 2008,
+ y: 337
+ },
+ {
+ x: 2009,
+ y: 352
+ },
+ {
+ x: 2010,
+ y: 377
+ },
+ {
+ x: 2011,
+ y: 383
+ },
+ {
+ x: 2012,
+ y: 344
+ },
+ {
+ x: 2013,
+ y: 366
+ },
+ {
+ x: 2014,
+ y: 389
+ },
+ {
+ x: 2015,
+ y: 334
+ }
+ ]
+ }, {
+ name: 'South',
+ data: [{
+ x: 1996,
+ y: 162
+ },
+ {
+ x: 1997,
+ y: 90
+ },
+ {
+ x: 1998,
+ y: 50
+ },
+ {
+ x: 1999,
+ y: 77
+ },
+ {
+ x: 2000,
+ y: 35
+ },
+ {
+ x: 2001,
+ y: -45
+ },
+ {
+ x: 2002,
+ y: -88
+ },
+ {
+ x: 2003,
+ y: -120
+ },
+ {
+ x: 2004,
+ y: -156
+ },
+ {
+ x: 2005,
+ y: -123
+ },
+ {
+ x: 2006,
+ y: -88
+ },
+ {
+ x: 2007,
+ y: -66
+ },
+ {
+ x: 2008,
+ y: -45
+ },
+ {
+ x: 2009,
+ y: -29
+ },
+ {
+ x: 2010,
+ y: -45
+ },
+ {
+ x: 2011,
+ y: -88
+ },
+ {
+ x: 2012,
+ y: -132
+ },
+ {
+ x: 2013,
+ y: -146
+ },
+ {
+ x: 2014,
+ y: -169
+ },
+ {
+ x: 2015,
+ y: -184
+ }
+ ]
+ }],
+ chart: {
+ type: 'area',
+ height: 350,
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight'
+ },
+ title: {
+ text: 'Area with Negative Values',
+ align: 'left',
+
+ style: {
+ fontSize: '14px',
+ fontWeight: 500,
+ }
+ },
+ xaxis: {
+ type: 'datetime',
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false
+ }
+ },
+ colors: areachartNegativeColors,
+ yaxis: {
+ tickAmount: 4,
+ floating: false,
+
+ labels: {
+ style: {
+ colors: '#038edc',
+ },
+ offsetY: -7,
+ offsetX: 0,
+ },
+ axisBorder: {
+ show: false,
+ },
+ axisTicks: {
+ show: false
+ }
+ },
+ fill: {
+ opacity: 0.5
+ },
+ tooltip: {
+ x: {
+ format: "yyyy",
+ },
+ fixed: {
+ enabled: false,
+ position: 'topRight'
+ }
+ },
+ grid: {
+ yaxis: {
+ lines: {
+ offsetX: -30
+ }
+ },
+ padding: {
+ left: 20
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#area_chart_negative"), options);
+chart.render();
+}
+
+// Github Style - Area Charts
+var areachartMonthsColors = getChartColorsArray("area_chart-months");
+if(areachartMonthsColors){
+var options = {
+ series: [{
+ name: 'commits',
+ data: githubdata.series
+ }],
+ chart: {
+ id: 'chartyear',
+ type: 'area',
+ height: 120,
+ toolbar: {
+ show: false,
+ autoSelected: 'pan'
+ },
+ events: {
+ mounted: function (chart) {
+ var commitsEl = document.querySelector('.cmeta span.commits');
+ var commits = chart.getSeriesTotalXRange(chart.w.globals.minX, chart.w.globals.maxX)
+
+ commitsEl.innerHTML = commits
+ },
+ updated: function (chart) {
+ var commitsEl = document.querySelector('.cmeta span.commits');
+ var commits = chart.getSeriesTotalXRange(chart.w.globals.minX, chart.w.globals.maxX)
+
+ commitsEl.innerHTML = commits
+ }
+ }
+ },
+ colors: areachartMonthsColors,
+ stroke: {
+ width: 0,
+ curve: 'smooth'
+ },
+ dataLabels: {
+ enabled: false
+ },
+ fill: {
+ opacity: 1,
+ type: 'solid'
+ },
+ yaxis: {
+ show: false,
+ tickAmount: 3,
+ },
+ xaxis: {
+ type: 'datetime',
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#area_chart-months"), options);
+chart.render();
+}
+
+var areachartyearsColors = getChartColorsArray("area_chart-years");
+if(areachartyearsColors){
+var optionsYears = {
+ series: [{
+ name: 'commits',
+ data: githubdata.series
+ }],
+ chart: {
+ height: 170,
+ type: 'area',
+ toolbar: {
+ autoSelected: 'selection',
+ },
+ brush: {
+ enabled: true,
+ target: 'chartyear'
+ },
+ selection: {
+ enabled: true,
+ xaxis: {
+ min: new Date('26 Jan 2014').getTime(),
+ max: new Date('29 Mar 2015').getTime()
+ }
+ },
+ },
+ colors: areachartyearsColors,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 0,
+ curve: 'smooth'
+ },
+ fill: {
+ opacity: 1,
+ type: 'solid'
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'left'
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+};
+
+var chartYears = new ApexCharts(document.querySelector("#area_chart-years"), optionsYears);
+chartYears.render();
+}
+
+// Stacked Area Charts
+var generateDayWiseTimeSeries = function (baseval, count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var x = baseval;
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ series.push([x, y]);
+ baseval += 86400000;
+ i++;
+ }
+ return series;
+}
+
+var areachartstackedColors = getChartColorsArray("area_chart_stacked");
+
+if(areachartstackedColors){
+var options = {
+ series: [{
+ name: 'South',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'North',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 20
+ })
+ },
+ {
+ name: 'Central',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 15
+ })
+ }
+ ],
+ chart: {
+ type: 'area',
+ height: 350,
+ stacked: true,
+ toolbar: {
+ show: false
+ },
+ events: {
+ selection: function (chart, e) {
+ console.log(new Date(e.xaxis.min))
+ }
+ },
+ },
+ colors: areachartstackedColors,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'smooth'
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ opacityFrom: 0.6,
+ opacityTo: 0.8,
+ }
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'left'
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+};
+var chart = new ApexCharts(document.querySelector("#area_chart_stacked"), options);
+chart.render();
+}
+
+// Ireegular Time Series
+var ts1 = 1388534400000;
+var ts2 = 1388620800000;
+var ts3 = 1389052800000;
+
+var dataSet = [
+ [],
+ [],
+ []
+];
+
+for (var i = 0; i < 12; i++) {
+ ts1 = ts1 + 86400000;
+ var innerArr = [ts1, dataSeries[2][i].value];
+ dataSet[0].push(innerArr)
+}
+for (var i = 0; i < 18; i++) {
+ ts2 = ts2 + 86400000;
+ var innerArr = [ts2, dataSeries[1][i].value];
+ dataSet[1].push(innerArr)
+}
+for (var i = 0; i < 12; i++) {
+ ts3 = ts3 + 86400000;
+ var innerArr = [ts3, dataSeries[0][i].value];
+ dataSet[2].push(innerArr)
+}
+
+//Irregular Timeseries Chart
+var areachartirregularColors = getChartColorsArray("area_chart_irregular");
+if(areachartirregularColors){
+var options = {
+ series: [{
+ name: 'PRODUCT A',
+ data: dataSet[0]
+ }, {
+ name: 'PRODUCT B',
+ data: dataSet[1]
+ }, {
+ name: 'PRODUCT C',
+ data: dataSet[2]
+ }],
+ chart: {
+ type: 'area',
+ stacked: false,
+ height: 350,
+ zoom: {
+ enabled: false
+ },
+ toolbar: {
+ show: false,
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ markers: {
+ size: 0,
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shadeIntensity: 1,
+ inverseColors: false,
+ opacityFrom: 0.45,
+ opacityTo: 0.05,
+ stops: [20, 100, 100, 100]
+ },
+ },
+ yaxis: {
+ labels: {
+ style: {
+ colors: '#8e8da4',
+ },
+ offsetX: 0,
+ formatter: function (val) {
+ return (val / 1000000).toFixed(2);
+ },
+ },
+ axisBorder: {
+ show: false,
+ },
+ axisTicks: {
+ show: false
+ }
+ },
+ xaxis: {
+ type: 'datetime',
+ tickAmount: 8,
+ min: new Date("01/01/2014").getTime(),
+ max: new Date("01/20/2014").getTime(),
+ labels: {
+ rotate: -15,
+ rotateAlways: true,
+ formatter: function (val, timestamp) {
+ return moment(new Date(timestamp)).format("DD MMM YYYY")
+ }
+ }
+ },
+ title: {
+ text: 'Irregular Data in Time Series',
+ align: 'left',
+ offsetX: 14,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ tooltip: {
+ shared: true
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'right',
+ offsetX: -10
+ },
+ colors: areachartirregularColors
+};
+
+var chart = new ApexCharts(document.querySelector("#area_chart_irregular"), options);
+chart.render();
+}
+
+// Area Chart With Null Values Chart
+var areachartirregularColors = getChartColorsArray("area-missing-null-value");
+if(areachartirregularColors){
+var options = {
+ series: [{
+ name: 'Network',
+ data: [{
+ x: 'Dec 23 2017',
+ y: null
+ },
+ {
+ x: 'Dec 24 2017',
+ y: 44
+ },
+ {
+ x: 'Dec 25 2017',
+ y: 31
+ },
+ {
+ x: 'Dec 26 2017',
+ y: 38
+ },
+ {
+ x: 'Dec 27 2017',
+ y: null
+ },
+ {
+ x: 'Dec 28 2017',
+ y: 32
+ },
+ {
+ x: 'Dec 29 2017',
+ y: 55
+ },
+ {
+ x: 'Dec 30 2017',
+ y: 51
+ },
+ {
+ x: 'Dec 31 2017',
+ y: 67
+ },
+ {
+ x: 'Jan 01 2018',
+ y: 22
+ },
+ {
+ x: 'Jan 02 2018',
+ y: 34
+ },
+ {
+ x: 'Jan 03 2018',
+ y: null
+ },
+ {
+ x: 'Jan 04 2018',
+ y: null
+ },
+ {
+ x: 'Jan 05 2018',
+ y: 11
+ },
+ {
+ x: 'Jan 06 2018',
+ y: 4
+ },
+ {
+ x: 'Jan 07 2018',
+ y: 15,
+ },
+ {
+ x: 'Jan 08 2018',
+ y: null
+ },
+ {
+ x: 'Jan 09 2018',
+ y: 9
+ },
+ {
+ x: 'Jan 10 2018',
+ y: 34
+ },
+ {
+ x: 'Jan 11 2018',
+ y: null
+ },
+ {
+ x: 'Jan 12 2018',
+ y: null
+ },
+ {
+ x: 'Jan 13 2018',
+ y: 13
+ },
+ {
+ x: 'Jan 14 2018',
+ y: null
+ }
+ ],
+ }],
+ chart: {
+ type: 'area',
+ height: 350,
+ animations: {
+ enabled: false
+ },
+ zoom: {
+ enabled: false
+ },
+ toolbar: {
+ show: false
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight'
+ },
+ fill: {
+ opacity: 0.8,
+ type: 'pattern',
+ pattern: {
+ style: ['verticalLines', 'horizontalLines'],
+ width: 5,
+ height: 6
+ },
+ },
+ markers: {
+ size: 5,
+ hover: {
+ size: 9
+ }
+ },
+ title: {
+ text: 'Network Monitoring',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ tooltip: {
+ intersect: true,
+ shared: false
+ },
+ theme: {
+ palette: 'palette1'
+ },
+ xaxis: {
+ type: 'datetime',
+ },
+ yaxis: {
+ title: {
+ text: 'Bytes Received'
+ }
+ },
+ colors: areachartirregularColors
+};
+
+var chart = new ApexCharts(document.querySelector("#area-missing-null-value"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-bar.init.js b/public/build/js/pages/apexcharts-bar.init.js
new file mode 100644
index 0000000..c1f835d
--- /dev/null
+++ b/public/build/js/pages/apexcharts-bar.init.js
@@ -0,0 +1,786 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Bar Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic Bar chart
+var chartBarColors = getChartColorsArray("bar_chart");
+if(chartBarColors){
+var options = {
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ series: [{
+ data: [380, 430, 450, 475, 550, 584, 780, 1100, 1220, 1365]
+ }],
+ colors: chartBarColors,
+ grid: {
+ borderColor: '#f1f1f1',
+ },
+ xaxis: {
+ categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany'],
+ }
+}
+var chart = new ApexCharts(document.querySelector("#bar_chart"),options);
+chart.render();
+}
+
+// Custom DataLabels Bar
+var chartDatalabelsBarColors = getChartColorsArray("custom_datalabels_bar");
+if(chartDatalabelsBarColors){
+var options = {
+ series: [{
+ data: [400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ barHeight: '100%',
+ distributed: true,
+ horizontal: true,
+ dataLabels: {
+ position: 'bottom'
+ },
+ }
+ },
+ colors: chartDatalabelsBarColors,
+ dataLabels: {
+ enabled: true,
+ textAnchor: 'start',
+ style: {
+ colors: ['#fff']
+ },
+ formatter: function (val, opt) {
+ return opt.w.globals.labels[opt.dataPointIndex] + ": " + val
+ },
+ offsetX: 0,
+ dropShadow: {
+ enabled: false
+ }
+ },
+ stroke: {
+ width: 1,
+ colors: ['#fff']
+ },
+ xaxis: {
+ categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan',
+ 'United States', 'China', 'India'
+ ],
+ },
+ yaxis: {
+ labels: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Custom DataLabels',
+ align: 'center',
+ floating: true,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ subtitle: {
+ text: 'Category Names as DataLabels inside bars',
+ align: 'center',
+ },
+ tooltip: {
+ theme: 'dark',
+ x: {
+ show: false
+ },
+ y: {
+ title: {
+ formatter: function () {
+ return ''
+ }
+ }
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#custom_datalabels_bar"), options);
+chart.render();
+}
+
+// Stacked Bar Charts
+var chartStackedBarColors = getChartColorsArray("stacked_bar");
+if(chartStackedBarColors){
+var options = {
+ series: [{
+ name: 'Marine Sprite',
+ data: [44, 55, 41, 37, 22, 43, 21]
+ }, {
+ name: 'Striking Calf',
+ data: [53, 32, 33, 52, 13, 43, 32]
+ }, {
+ name: 'Tank Picture',
+ data: [12, 17, 11, 9, 15, 11, 20]
+ }, {
+ name: 'Bucket Slope',
+ data: [9, 7, 5, 8, 6, 9, 4]
+ }, {
+ name: 'Reborn Kid',
+ data: [25, 12, 19, 32, 25, 24, 10]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ stacked: true,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ },
+ },
+ stroke: {
+ width: 1,
+ colors: ['#fff']
+ },
+ title: {
+ text: 'Fiction Books Sales',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ categories: [2008, 2009, 2010, 2011, 2012, 2013, 2014],
+ labels: {
+ formatter: function (val) {
+ return val + "K"
+ }
+ }
+ },
+ yaxis: {
+ title: {
+ text: undefined
+ },
+ },
+ tooltip: {
+ y: {
+ formatter: function (val) {
+ return val + "K"
+ }
+ }
+ },
+ fill: {
+ opacity: 1
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'left',
+ offsetX: 40
+ },
+ colors: chartStackedBarColors
+};
+
+var chart = new ApexCharts(document.querySelector("#stacked_bar"), options);
+chart.render();
+}
+
+// Stacked Bars 100
+var chartStackedBar100Colors = getChartColorsArray("stacked_bar_100");
+if(chartStackedBar100Colors){
+var options = {
+ series: [{
+ name: 'Marine Sprite',
+ data: [44, 55, 41, 37, 22, 43, 21]
+ }, {
+ name: 'Striking Calf',
+ data: [53, 32, 33, 52, 13, 43, 32]
+ }, {
+ name: 'Tank Picture',
+ data: [12, 17, 11, 9, 15, 11, 20]
+ }, {
+ name: 'Bucket Slope',
+ data: [9, 7, 5, 8, 6, 9, 4]
+ }, {
+ name: 'Reborn Kid',
+ data: [25, 12, 19, 32, 25, 24, 10]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ stacked: true,
+ stackType: '100%',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ },
+ },
+ stroke: {
+ width: 1,
+ colors: ['#fff']
+ },
+ title: {
+ text: '100% Stacked Bar',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ categories: [2008, 2009, 2010, 2011, 2012, 2013, 2014],
+ },
+ tooltip: {
+ y: {
+ formatter: function (val) {
+ return val + "K"
+ }
+ }
+ },
+ fill: {
+ opacity: 1
+
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'left',
+ offsetX: 40
+ },
+ colors: chartStackedBar100Colors
+};
+
+var chart = new ApexCharts(document.querySelector("#stacked_bar_100"), options);
+chart.render();
+}
+
+// Bar with Negative Values
+var chartNegativeBarColors = getChartColorsArray("negative_bars");
+if(chartNegativeBarColors){
+var options = {
+ series: [{
+ name: 'Males',
+ data: [0.4, 0.65, 0.76, 0.88, 1.5, 2.1, 2.9, 3.8, 3.9, 4.2, 4, 4.3, 4.1, 4.2, 4.5,
+ 3.9, 3.5, 3
+ ]
+ },
+ {
+ name: 'Females',
+ data: [-0.8, -1.05, -1.06, -1.18, -1.4, -2.2, -2.85, -3.7, -3.96, -4.22, -4.3, -4.4,
+ -4.1, -4, -4.1, -3.4, -3.1, -2.8
+ ]
+ }
+ ],
+ chart: {
+ type: 'bar',
+ height: 360,
+ stacked: true,
+ toolbar: {
+ show: false,
+ }
+ },
+ colors: chartNegativeBarColors,
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '80%',
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 1,
+ colors: ["#fff"]
+ },
+
+ grid: {
+ xaxis: {
+ lines: {
+ show: false
+ }
+ }
+ },
+ yaxis: {
+ min: -5,
+ max: 5,
+ title: {
+ text: 'Age',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ },
+ tooltip: {
+ shared: false,
+ x: {
+ formatter: function (val) {
+ return val
+ }
+ },
+ y: {
+ formatter: function (val) {
+ return Math.abs(val) + "%"
+ }
+ }
+ },
+ title: {
+ text: 'Mauritius population pyramid 2011',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ categories: ['85+', '80-84', '75-79', '70-74', '65-69', '60-64', '55-59', '50-54',
+ '45-49', '40-44', '35-39', '30-34', '25-29', '20-24', '15-19', '10-14', '5-9',
+ '0-4'
+ ],
+ title: {
+ text: 'Percent'
+ },
+ labels: {
+ formatter: function (val) {
+ return Math.abs(Math.round(val)) + "%"
+ }
+ }
+ },
+};
+
+var chart = new ApexCharts(document.querySelector("#negative_bars"), options);
+chart.render();
+}
+
+// Bar with Markers
+var chartBarMarkersColors = getChartColorsArray("bar_markers");
+if(chartBarMarkersColors){
+var options = {
+ series: [{
+ name: 'Actual',
+ data: [{
+ x: '2011',
+ y: 12,
+ goals: [{
+ name: 'Expected',
+ value: 14,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ },
+ {
+ x: '2012',
+ y: 44,
+ goals: [{
+ name: 'Expected',
+ value: 54,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ },
+ {
+ x: '2013',
+ y: 54,
+ goals: [{
+ name: 'Expected',
+ value: 52,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ },
+ {
+ x: '2014',
+ y: 66,
+ goals: [{
+ name: 'Expected',
+ value: 65,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ },
+ {
+ x: '2015',
+ y: 81,
+ goals: [{
+ name: 'Expected',
+ value: 66,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ },
+ {
+ x: '2016',
+ y: 67,
+ goals: [{
+ name: 'Expected',
+ value: 70,
+ strokeWidth: 5,
+ strokeColor: '#564ab1'
+ }]
+ }
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ }
+ },
+ colors: chartBarMarkersColors,
+ dataLabels: {
+ formatter: function (val, opt) {
+ var goals =
+ opt.w.config.series[opt.seriesIndex].data[opt.dataPointIndex]
+ .goals
+
+ // if (goals && goals.length) {
+ // return `${val} / ${goals[0].value}`
+ // }
+ return val
+ }
+ },
+ legend: {
+ show: true,
+ showForSingleSeries: true,
+ customLegendItems: ['Actual', 'Expected'],
+ markers: {
+ fillColors: chartBarMarkersColors
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#bar_markers"), options);
+chart.render();
+}
+
+// Reversed Bar Chart
+var chartBarReversedColors = getChartColorsArray("reversed_bars");
+if(chartBarReversedColors){
+var options = {
+ series: [{
+ data: [400, 430, 448, 470, 540, 580, 690]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ toolbar: {
+ show: false,
+ }
+ },
+ annotations: {
+ xaxis: [{
+ x: 500,
+ borderColor: '#038edc',
+ label: {
+ borderColor: '#038edc',
+ style: {
+ color: '#fff',
+ background: '#038edc',
+ },
+ text: 'X annotation',
+ }
+ }],
+ yaxis: [{
+ y: 'July',
+ y2: 'September',
+ label: {
+ text: 'Y annotation'
+ }
+ }]
+ },
+ colors: chartBarReversedColors,
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ }
+ },
+ dataLabels: {
+ enabled: true
+ },
+ xaxis: {
+ categories: ['June', 'July', 'August', 'September', 'October', 'November', 'December'],
+ },
+ grid: {
+ xaxis: {
+ lines: {
+ show: true
+ }
+ }
+ },
+ yaxis: {
+ reversed: true,
+ axisTicks: {
+ show: true
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#reversed_bars"), options);
+chart.render();
+}
+
+// Patterned Charts
+var chartPatternedColors = getChartColorsArray("patterned_bars");
+if(chartPatternedColors){
+var options = {
+ series: [{
+ name: 'Marine Sprite',
+ data: [44, 55, 41, 37, 22, 43, 21]
+ }, {
+ name: 'Striking Calf',
+ data: [53, 32, 33, 52, 13, 43, 32]
+ }, {
+ name: 'Tank Picture',
+ data: [12, 17, 11, 9, 15, 11, 20]
+ }, {
+ name: 'Bucket Slope',
+ data: [9, 7, 5, 8, 6, 9, 4]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ stacked: true,
+ dropShadow: {
+ enabled: true,
+ blur: 1,
+ opacity: 0.25
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '60%',
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 2,
+ },
+ title: {
+ text: 'Compare Sales Strategy',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ categories: [2008, 2009, 2010, 2011, 2012, 2013, 2014],
+ },
+ yaxis: {
+ title: {
+ text: undefined
+ },
+ },
+ tooltip: {
+ shared: false,
+ y: {
+ formatter: function (val) {
+ return val + "K"
+ }
+ }
+ },
+ fill: {
+ type: 'pattern',
+ opacity: 1,
+ pattern: {
+ style: ['circles', 'slantedLines', 'verticalLines', 'horizontalLines'], // string or array of strings
+
+ }
+ },
+ states: {
+ hover: {
+ filter: 'none'
+ }
+ },
+ legend: {
+ position: 'right',
+ offsetY: 40
+ },
+ colors: chartPatternedColors
+};
+
+var chart = new ApexCharts(document.querySelector("#patterned_bars"), options);
+chart.render();
+}
+
+// Groups Bar Charts
+var chartGroupbarColors = getChartColorsArray("grouped_bar");
+if(chartGroupbarColors){
+var options = {
+ series: [{
+ data: [44, 55, 41, 64, 22, 43, 21]
+ }, {
+ data: [53, 32, 33, 52, 13, 44, 32]
+ }],
+ chart: {
+ type: 'bar',
+ height: 410,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ dataLabels: {
+ position: 'top',
+ },
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ offsetX: -6,
+ style: {
+ fontSize: '12px',
+ colors: ['#fff']
+ }
+ },
+ stroke: {
+ show: true,
+ width: 1,
+ colors: ['#fff']
+ },
+ tooltip: {
+ shared: true,
+ intersect: false
+ },
+ xaxis: {
+ categories: [2001, 2002, 2003, 2004, 2005, 2006, 2007],
+ },
+ colors: chartGroupbarColors
+};
+
+var chart = new ApexCharts(document.querySelector("#grouped_bar"), options);
+chart.render();
+}
+
+// Bar with Images
+
+var options = {
+ series: [{
+ name: 'coins',
+ data: [2, 4, 3, 4, 3, 5, 5, 6.5, 6, 5, 4, 5, 8, 7, 7, 8, 8, 10, 9, 9, 12, 12,
+ 11, 12, 13, 14, 16, 14, 15, 17, 19, 21
+ ]
+ }],
+ chart: {
+ type: 'bar',
+ height: 410,
+ animations: {
+ enabled: false
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '100%',
+
+ },
+ },
+ dataLabels: {
+ enabled: false,
+ },
+ stroke: {
+ colors: ["#fff"],
+ width: 0.2
+ },
+ labels: Array.apply(null, {
+ length: 39
+ }).map(function (el, index) {
+ return index + 1;
+ }),
+ yaxis: {
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false
+ },
+ labels: {
+ show: false
+ },
+ title: {
+ text: 'Weight',
+ },
+ },
+ grid: {
+ position: 'back'
+ },
+ title: {
+ text: 'Paths filled by clipped image',
+ align: 'right',
+ offsetY: 30,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ fill: {
+ type: 'image',
+ opacity: 0.87,
+ image: {
+ src: ['../build/images/small/img-4.jpg'],
+ width: 466,
+ height: 406
+ }
+ },
+};
+
+if(document.querySelector("#bar_images")){
+ var chart = new ApexCharts(document.querySelector("#bar_images"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-boxplot.init.js b/public/build/js/pages/apexcharts-boxplot.init.js
new file mode 100644
index 0000000..6d11e98
--- /dev/null
+++ b/public/build/js/pages/apexcharts-boxplot.init.js
@@ -0,0 +1,268 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Boxplot Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+var chartBoxBasicColors = getChartColorsArray("basic_box");
+if(chartBoxBasicColors){
+var options = {
+ series: [{
+ type: 'boxPlot',
+ data: [{
+ x: 'Jan 2015',
+ y: [54, 66, 69, 75, 88]
+ },
+ {
+ x: 'Jan 2016',
+ y: [43, 65, 69, 76, 81]
+ },
+ {
+ x: 'Jan 2017',
+ y: [31, 39, 45, 51, 59]
+ },
+ {
+ x: 'Jan 2018',
+ y: [39, 46, 55, 65, 71]
+ },
+ {
+ x: 'Jan 2019',
+ y: [29, 31, 35, 39, 44]
+ },
+ {
+ x: 'Jan 2020',
+ y: [41, 49, 58, 61, 67]
+ },
+ {
+ x: 'Jan 2021',
+ y: [54, 59, 66, 71, 88]
+ }
+ ]
+ }],
+ chart: {
+ type: 'boxPlot',
+ height: 350,
+ toolbar: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Basic BoxPlot Chart',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ plotOptions: {
+ boxPlot: {
+ colors: {
+ upper: chartBoxBasicColors[0],
+ lower: chartBoxBasicColors[1]
+ }
+ }
+ },
+ stroke: {
+ colors: [chartBoxBasicColors[2]]
+ },
+ };
+
+var chart = new ApexCharts(document.querySelector("#basic_box"), options);
+chart.render();
+}
+
+// Boxplot-Scatter
+var chartBoxPlotColors = getChartColorsArray("box_plot");
+if(chartBoxPlotColors){
+var options = {
+ series: [{
+ name: 'Box',
+ type: 'boxPlot',
+ data: [{
+ x: new Date('2017-01-01').getTime(),
+ y: [54, 66, 69, 75, 88]
+ },
+ {
+ x: new Date('2018-01-01').getTime(),
+ y: [43, 65, 69, 76, 81]
+ },
+ {
+ x: new Date('2019-01-01').getTime(),
+ y: [31, 39, 45, 51, 59]
+ },
+ {
+ x: new Date('2020-01-01').getTime(),
+ y: [39, 46, 55, 65, 71]
+ },
+ {
+ x: new Date('2021-01-01').getTime(),
+ y: [29, 31, 35, 39, 44]
+ }
+ ]
+ },
+ {
+ name: 'Outliers',
+ type: 'scatter',
+ data: [{
+ x: new Date('2017-01-01').getTime(),
+ y: 32
+ },
+ {
+ x: new Date('2018-01-01').getTime(),
+ y: 25
+ },
+ {
+ x: new Date('2019-01-01').getTime(),
+ y: 64
+ },
+ {
+ x: new Date('2020-01-01').getTime(),
+ y: 27
+ },
+ {
+ x: new Date('2020-01-01').getTime(),
+ y: 78
+ },
+ {
+ x: new Date('2021-01-01').getTime(),
+ y: 15
+ }
+ ]
+ }
+ ],
+ chart: {
+ type: 'boxPlot',
+ height: 350,
+ toolbar: {
+ show: false
+ }
+ },
+ colors: [chartBoxPlotColors[0], chartBoxPlotColors[1]],
+ title: {
+ text: 'BoxPlot - Scatter Chart',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ type: 'datetime',
+ tooltip: {
+ formatter: function (val) {
+ return new Date(val).getFullYear()
+ }
+ }
+ },
+ plotOptions: {
+ boxPlot: {
+ colors: {
+ upper: chartBoxPlotColors[2],
+ lower: chartBoxPlotColors[3]
+ }
+ }
+ },
+ stroke: {
+ colors: [chartBoxPlotColors[4]]
+ },
+ tooltip: {
+ shared: false,
+ intersect: true
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#box_plot"), options);
+ chart.render();
+}
+
+// box_plot_hori
+var chartBoxPlotHoriColors = getChartColorsArray("box_plot_hori");
+if (chartBoxPlotHoriColors) {
+ var options = {
+ series: [
+ {
+ data: [
+ {
+ x: 'Category A',
+ y: [54, 66, 69, 75, 88]
+ },
+ {
+ x: 'Category B',
+ y: [43, 65, 69, 76, 81]
+ },
+ {
+ x: 'Category C',
+ y: [31, 39, 45, 51, 59]
+ },
+ {
+ x: 'Category D',
+ y: [39, 46, 55, 65, 71]
+ },
+ {
+ x: 'Category E',
+ y: [29, 31, 35, 39, 44]
+ },
+ {
+ x: 'Category F',
+ y: [41, 49, 58, 61, 67]
+ },
+ {
+ x: 'Category G',
+ y: [54, 59, 66, 71, 88]
+ }
+ ]
+ }
+ ],
+ chart: {
+ type: 'boxPlot',
+ height: 350,
+ toolbar: {
+ show: false
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '50%'
+ },
+ boxPlot: {
+ colors: {
+ upper: chartBoxPlotHoriColors[0],
+ lower: chartBoxPlotHoriColors[1]
+ }
+ }
+ },
+ stroke: {
+ colors: [chartBoxPlotHoriColors[2]]
+ },
+ };
+
+ var chart = new ApexCharts(document.querySelector("#box_plot_hori"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-bubble.init.js b/public/build/js/pages/apexcharts-bubble.init.js
new file mode 100644
index 0000000..b365811
--- /dev/null
+++ b/public/build/js/pages/apexcharts-bubble.init.js
@@ -0,0 +1,189 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Bubble Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function(value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+ }
+}
+
+
+// Bubble Charts Generate Data
+function generateData(baseval, count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var x = Math.floor(Math.random() * (750 - 1 + 1)) + 1;;
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+ var z = Math.floor(Math.random() * (75 - 15 + 1)) + 15;
+
+ series.push([x, y, z]);
+ baseval += 86400000;
+ i++;
+ }
+ return series;
+}
+
+// Simple Bubble
+var chartBubbleSimpleColors = getChartColorsArray("simple_bubble");
+if (chartBubbleSimpleColors) {
+ var options = {
+ series: [{
+ name: 'Bubble1',
+ data: generateData(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Bubble2',
+ data: generateData(new Date('12 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Bubble3',
+ data: generateData(new Date('13 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Bubble4',
+ data: generateData(new Date('14 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'bubble',
+ toolbar: {
+ show: false,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ fill: {
+ opacity: 0.8
+ },
+ title: {
+ text: 'Simple Bubble Chart',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ tickAmount: 12,
+ type: 'category',
+ },
+ yaxis: {
+ max: 70
+ },
+ colors: chartBubbleSimpleColors
+ };
+
+ var chart = new ApexCharts(document.querySelector("#simple_bubble"), options);
+ chart.render();
+}
+
+// 3D Bubble
+var chartBubbleColors = getChartColorsArray("bubble_chart");
+if (chartBubbleColors) {
+ var options = {
+ series: [{
+ name: 'Product1',
+ data: generateData(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Product2',
+ data: generateData(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Product3',
+ data: generateData(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'Product4',
+ data: generateData(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'bubble',
+ toolbar: {
+ show: false,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ fill: {
+ type: 'gradient',
+ },
+ title: {
+ text: '3D Bubble Chart',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ tickAmount: 12,
+ type: 'datetime',
+ labels: {
+ rotate: 0,
+ }
+ },
+ yaxis: {
+ max: 70
+ },
+ theme: {
+ palette: 'palette2'
+ },
+ colors: chartBubbleColors
+ };
+
+ var chart = new ApexCharts(document.querySelector("#bubble_chart"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-candlestick.init.js b/public/build/js/pages/apexcharts-candlestick.init.js
new file mode 100644
index 0000000..7e0faca
--- /dev/null
+++ b/public/build/js/pages/apexcharts-candlestick.init.js
@@ -0,0 +1,988 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Candlestick Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function(value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+ }
+}
+
+
+// Basic Candlestick Charts
+var chartCandlestickBasicColors = getChartColorsArray("basic_candlestick");
+if (chartCandlestickBasicColors) {
+ var options = {
+ series: [{
+ data: [{
+ x: new Date(1538778600000),
+ y: [6629.81, 6650.5, 6623.04, 6633.33]
+ },
+ {
+ x: new Date(1538780400000),
+ y: [6632.01, 6643.59, 6620, 6630.11]
+ },
+ {
+ x: new Date(1538782200000),
+ y: [6630.71, 6648.95, 6623.34, 6635.65]
+ },
+ {
+ x: new Date(1538784000000),
+ y: [6635.65, 6651, 6629.67, 6638.24]
+ },
+ {
+ x: new Date(1538785800000),
+ y: [6638.24, 6640, 6620, 6624.47]
+ },
+ {
+ x: new Date(1538787600000),
+ y: [6624.53, 6636.03, 6621.68, 6624.31]
+ },
+ {
+ x: new Date(1538789400000),
+ y: [6624.61, 6632.2, 6617, 6626.02]
+ },
+ {
+ x: new Date(1538791200000),
+ y: [6627, 6627.62, 6584.22, 6603.02]
+ },
+ {
+ x: new Date(1538793000000),
+ y: [6605, 6608.03, 6598.95, 6604.01]
+ },
+ {
+ x: new Date(1538794800000),
+ y: [6604.5, 6614.4, 6602.26, 6608.02]
+ },
+ {
+ x: new Date(1538796600000),
+ y: [6608.02, 6610.68, 6601.99, 6608.91]
+ },
+ {
+ x: new Date(1538798400000),
+ y: [6608.91, 6618.99, 6608.01, 6612]
+ },
+ {
+ x: new Date(1538800200000),
+ y: [6612, 6615.13, 6605.09, 6612]
+ },
+ {
+ x: new Date(1538802000000),
+ y: [6612, 6624.12, 6608.43, 6622.95]
+ },
+ {
+ x: new Date(1538803800000),
+ y: [6623.91, 6623.91, 6615, 6615.67]
+ },
+ {
+ x: new Date(1538805600000),
+ y: [6618.69, 6618.74, 6610, 6610.4]
+ },
+ {
+ x: new Date(1538807400000),
+ y: [6611, 6622.78, 6610.4, 6614.9]
+ },
+ {
+ x: new Date(1538809200000),
+ y: [6614.9, 6626.2, 6613.33, 6623.45]
+ },
+ {
+ x: new Date(1538811000000),
+ y: [6623.48, 6627, 6618.38, 6620.35]
+ },
+ {
+ x: new Date(1538812800000),
+ y: [6619.43, 6620.35, 6610.05, 6615.53]
+ },
+ {
+ x: new Date(1538814600000),
+ y: [6615.53, 6617.93, 6610, 6615.19]
+ },
+ {
+ x: new Date(1538816400000),
+ y: [6615.19, 6621.6, 6608.2, 6620]
+ },
+ {
+ x: new Date(1538818200000),
+ y: [6619.54, 6625.17, 6614.15, 6620]
+ },
+ {
+ x: new Date(1538820000000),
+ y: [6620.33, 6634.15, 6617.24, 6624.61]
+ },
+ {
+ x: new Date(1538821800000),
+ y: [6625.95, 6626, 6611.66, 6617.58]
+ },
+ {
+ x: new Date(1538823600000),
+ y: [6619, 6625.97, 6595.27, 6598.86]
+ },
+ {
+ x: new Date(1538825400000),
+ y: [6598.86, 6598.88, 6570, 6587.16]
+ },
+ {
+ x: new Date(1538827200000),
+ y: [6588.86, 6600, 6580, 6593.4]
+ },
+ {
+ x: new Date(1538829000000),
+ y: [6593.99, 6598.89, 6585, 6587.81]
+ },
+ {
+ x: new Date(1538830800000),
+ y: [6587.81, 6592.73, 6567.14, 6578]
+ },
+ {
+ x: new Date(1538832600000),
+ y: [6578.35, 6581.72, 6567.39, 6579]
+ },
+ {
+ x: new Date(1538834400000),
+ y: [6579.38, 6580.92, 6566.77, 6575.96]
+ },
+ {
+ x: new Date(1538836200000),
+ y: [6575.96, 6589, 6571.77, 6588.92]
+ },
+ {
+ x: new Date(1538838000000),
+ y: [6588.92, 6594, 6577.55, 6589.22]
+ },
+ {
+ x: new Date(1538839800000),
+ y: [6589.3, 6598.89, 6589.1, 6596.08]
+ },
+ {
+ x: new Date(1538841600000),
+ y: [6597.5, 6600, 6588.39, 6596.25]
+ },
+ {
+ x: new Date(1538843400000),
+ y: [6598.03, 6600, 6588.73, 6595.97]
+ },
+ {
+ x: new Date(1538845200000),
+ y: [6595.97, 6602.01, 6588.17, 6602]
+ },
+ {
+ x: new Date(1538847000000),
+ y: [6602, 6607, 6596.51, 6599.95]
+ },
+ {
+ x: new Date(1538848800000),
+ y: [6600.63, 6601.21, 6590.39, 6591.02]
+ },
+ {
+ x: new Date(1538850600000),
+ y: [6591.02, 6603.08, 6591, 6591]
+ },
+ {
+ x: new Date(1538852400000),
+ y: [6591, 6601.32, 6585, 6592]
+ },
+ {
+ x: new Date(1538854200000),
+ y: [6593.13, 6596.01, 6590, 6593.34]
+ },
+ {
+ x: new Date(1538856000000),
+ y: [6593.34, 6604.76, 6582.63, 6593.86]
+ },
+ {
+ x: new Date(1538857800000),
+ y: [6593.86, 6604.28, 6586.57, 6600.01]
+ },
+ {
+ x: new Date(1538859600000),
+ y: [6601.81, 6603.21, 6592.78, 6596.25]
+ },
+ {
+ x: new Date(1538861400000),
+ y: [6596.25, 6604.2, 6590, 6602.99]
+ },
+ {
+ x: new Date(1538863200000),
+ y: [6602.99, 6606, 6584.99, 6587.81]
+ },
+ {
+ x: new Date(1538865000000),
+ y: [6587.81, 6595, 6583.27, 6591.96]
+ },
+ {
+ x: new Date(1538866800000),
+ y: [6591.97, 6596.07, 6585, 6588.39]
+ },
+ {
+ x: new Date(1538868600000),
+ y: [6587.6, 6598.21, 6587.6, 6594.27]
+ },
+ {
+ x: new Date(1538870400000),
+ y: [6596.44, 6601, 6590, 6596.55]
+ },
+ {
+ x: new Date(1538872200000),
+ y: [6598.91, 6605, 6596.61, 6600.02]
+ },
+ {
+ x: new Date(1538874000000),
+ y: [6600.55, 6605, 6589.14, 6593.01]
+ },
+ {
+ x: new Date(1538875800000),
+ y: [6593.15, 6605, 6592, 6603.06]
+ },
+ {
+ x: new Date(1538877600000),
+ y: [6603.07, 6604.5, 6599.09, 6603.89]
+ },
+ {
+ x: new Date(1538879400000),
+ y: [6604.44, 6604.44, 6600, 6603.5]
+ },
+ {
+ x: new Date(1538881200000),
+ y: [6603.5, 6603.99, 6597.5, 6603.86]
+ },
+ {
+ x: new Date(1538883000000),
+ y: [6603.85, 6605, 6600, 6604.07]
+ },
+ {
+ x: new Date(1538884800000),
+ y: [6604.98, 6606, 6604.07, 6606]
+ },
+ ]
+ }],
+ chart: {
+ type: 'candlestick',
+ height: 350,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ candlestick: {
+ colors: {
+ upward: chartCandlestickBasicColors[0],
+ downward: chartCandlestickBasicColors[1],
+ }
+ }
+ },
+ title: {
+ text: 'CandleStick Chart',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ yaxis: {
+ tooltip: {
+ enabled: true
+ }
+ },
+ };
+
+ var chart = new ApexCharts(document.querySelector("#basic_candlestick"), options);
+ chart.render();
+}
+
+// Candlestick Synced with Brush Chart (Combo)
+var chartCandlestickComboColors = getChartColorsArray("combo_candlestick");
+if (chartCandlestickComboColors) {
+ var options = {
+ series: [{
+ data: seriesData
+ }],
+ chart: {
+ type: 'candlestick',
+ height: 200,
+ id: 'candles',
+ toolbar: {
+ autoSelected: 'pan',
+ show: false
+ },
+ zoom: {
+ enabled: false
+ },
+ },
+ plotOptions: {
+ candlestick: {
+ colors: {
+ upward: chartCandlestickComboColors[0],
+ downward: chartCandlestickComboColors[1]
+ }
+ }
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#combo_candlestick"), options);
+ chart.render();
+}
+var chartCandlestickComboColors = getChartColorsArray("combo_candlestick_chart");
+if (chartCandlestickComboColors) {
+ var optionsBar = {
+ series: [{
+ name: 'volume',
+ data: seriesDataLinear
+ }],
+ chart: {
+ height: 150,
+ type: 'bar',
+ brush: {
+ enabled: true,
+ target: 'candles'
+ },
+ selection: {
+ enabled: true,
+ xaxis: {
+ min: new Date('20 Jan 2017').getTime(),
+ max: new Date('10 Dec 2017').getTime()
+ },
+ fill: {
+ color: '#ccc',
+ opacity: 0.4
+ },
+ stroke: {
+ color: '#0d47a1',
+ }
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ plotOptions: {
+ bar: {
+ columnWidth: '80%',
+ colors: {
+ ranges: [{
+ from: -1000,
+ to: 0,
+ color: '#f1734f'
+ }, {
+ from: 1,
+ to: 10000,
+ color: '#f7cc53'
+ }],
+
+ },
+ }
+ },
+ stroke: {
+ width: 0
+ },
+ xaxis: {
+ type: 'datetime',
+ axisBorder: {
+ offsetX: 13
+ }
+ },
+ yaxis: {
+ labels: {
+ show: false
+ }
+ }
+ };
+
+ var chartBar = new ApexCharts(document.querySelector("#combo_candlestick_chart"), optionsBar);
+ chartBar.render();
+}
+
+
+// Category X-axis
+var chartCandlestickCategoryColors = getChartColorsArray("category_candlestick");
+if (chartCandlestickCategoryColors) {
+ var options = {
+ series: [{
+ name: 'candle',
+ data: [{
+ x: new Date(1538778600000),
+ y: [6629.81, 6650.5, 6623.04, 6633.33]
+ },
+ {
+ x: new Date(1538780400000),
+ y: [6632.01, 6643.59, 6620, 6630.11]
+ },
+ {
+ x: new Date(1538782200000),
+ y: [6630.71, 6648.95, 6623.34, 6635.65]
+ },
+ {
+ x: new Date(1538784000000),
+ y: [6635.65, 6651, 6629.67, 6638.24]
+ },
+ {
+ x: new Date(1538785800000),
+ y: [6638.24, 6640, 6620, 6624.47]
+ },
+ {
+ x: new Date(1538787600000),
+ y: [6624.53, 6636.03, 6621.68, 6624.31]
+ },
+ {
+ x: new Date(1538789400000),
+ y: [6624.61, 6632.2, 6617, 6626.02]
+ },
+ {
+ x: new Date(1538791200000),
+ y: [6627, 6627.62, 6584.22, 6603.02]
+ },
+ {
+ x: new Date(1538793000000),
+ y: [6605, 6608.03, 6598.95, 6604.01]
+ },
+ {
+ x: new Date(1538794800000),
+ y: [6604.5, 6614.4, 6602.26, 6608.02]
+ },
+ {
+ x: new Date(1538796600000),
+ y: [6608.02, 6610.68, 6601.99, 6608.91]
+ },
+ {
+ x: new Date(1538798400000),
+ y: [6608.91, 6618.99, 6608.01, 6612]
+ },
+ {
+ x: new Date(1538800200000),
+ y: [6612, 6615.13, 6605.09, 6612]
+ },
+ {
+ x: new Date(1538802000000),
+ y: [6612, 6624.12, 6608.43, 6622.95]
+ },
+ {
+ x: new Date(1538803800000),
+ y: [6623.91, 6623.91, 6615, 6615.67]
+ },
+ {
+ x: new Date(1538805600000),
+ y: [6618.69, 6618.74, 6610, 6610.4]
+ },
+ {
+ x: new Date(1538807400000),
+ y: [6611, 6622.78, 6610.4, 6614.9]
+ },
+ {
+ x: new Date(1538809200000),
+ y: [6614.9, 6626.2, 6613.33, 6623.45]
+ },
+ {
+ x: new Date(1538811000000),
+ y: [6623.48, 6627, 6618.38, 6620.35]
+ },
+ {
+ x: new Date(1538812800000),
+ y: [6619.43, 6620.35, 6610.05, 6615.53]
+ },
+ {
+ x: new Date(1538814600000),
+ y: [6615.53, 6617.93, 6610, 6615.19]
+ },
+ {
+ x: new Date(1538816400000),
+ y: [6615.19, 6621.6, 6608.2, 6620]
+ },
+ {
+ x: new Date(1538818200000),
+ y: [6619.54, 6625.17, 6614.15, 6620]
+ },
+ {
+ x: new Date(1538820000000),
+ y: [6620.33, 6634.15, 6617.24, 6624.61]
+ },
+ {
+ x: new Date(1538821800000),
+ y: [6625.95, 6626, 6611.66, 6617.58]
+ },
+ {
+ x: new Date(1538823600000),
+ y: [6619, 6625.97, 6595.27, 6598.86]
+ },
+ {
+ x: new Date(1538825400000),
+ y: [6598.86, 6598.88, 6570, 6587.16]
+ },
+ {
+ x: new Date(1538827200000),
+ y: [6588.86, 6600, 6580, 6593.4]
+ },
+ {
+ x: new Date(1538829000000),
+ y: [6593.99, 6598.89, 6585, 6587.81]
+ },
+ {
+ x: new Date(1538830800000),
+ y: [6587.81, 6592.73, 6567.14, 6578]
+ },
+ {
+ x: new Date(1538832600000),
+ y: [6578.35, 6581.72, 6567.39, 6579]
+ },
+ {
+ x: new Date(1538834400000),
+ y: [6579.38, 6580.92, 6566.77, 6575.96]
+ },
+ {
+ x: new Date(1538836200000),
+ y: [6575.96, 6589, 6571.77, 6588.92]
+ },
+ {
+ x: new Date(1538838000000),
+ y: [6588.92, 6594, 6577.55, 6589.22]
+ },
+ {
+ x: new Date(1538839800000),
+ y: [6589.3, 6598.89, 6589.1, 6596.08]
+ },
+ {
+ x: new Date(1538841600000),
+ y: [6597.5, 6600, 6588.39, 6596.25]
+ },
+ {
+ x: new Date(1538843400000),
+ y: [6598.03, 6600, 6588.73, 6595.97]
+ },
+ {
+ x: new Date(1538845200000),
+ y: [6595.97, 6602.01, 6588.17, 6602]
+ },
+ {
+ x: new Date(1538847000000),
+ y: [6602, 6607, 6596.51, 6599.95]
+ },
+ {
+ x: new Date(1538848800000),
+ y: [6600.63, 6601.21, 6590.39, 6591.02]
+ },
+ {
+ x: new Date(1538850600000),
+ y: [6591.02, 6603.08, 6591, 6591]
+ },
+ {
+ x: new Date(1538852400000),
+ y: [6591, 6601.32, 6585, 6592]
+ },
+ {
+ x: new Date(1538854200000),
+ y: [6593.13, 6596.01, 6590, 6593.34]
+ },
+ {
+ x: new Date(1538856000000),
+ y: [6593.34, 6604.76, 6582.63, 6593.86]
+ },
+ {
+ x: new Date(1538857800000),
+ y: [6593.86, 6604.28, 6586.57, 6600.01]
+ },
+ {
+ x: new Date(1538859600000),
+ y: [6601.81, 6603.21, 6592.78, 6596.25]
+ },
+ {
+ x: new Date(1538861400000),
+ y: [6596.25, 6604.2, 6590, 6602.99]
+ },
+ {
+ x: new Date(1538863200000),
+ y: [6602.99, 6606, 6584.99, 6587.81]
+ },
+ {
+ x: new Date(1538865000000),
+ y: [6587.81, 6595, 6583.27, 6591.96]
+ },
+ {
+ x: new Date(1538866800000),
+ y: [6591.97, 6596.07, 6585, 6588.39]
+ },
+ {
+ x: new Date(1538868600000),
+ y: [6587.6, 6598.21, 6587.6, 6594.27]
+ },
+ {
+ x: new Date(1538870400000),
+ y: [6596.44, 6601, 6590, 6596.55]
+ },
+ {
+ x: new Date(1538872200000),
+ y: [6598.91, 6605, 6596.61, 6600.02]
+ },
+ {
+ x: new Date(1538874000000),
+ y: [6600.55, 6605, 6589.14, 6593.01]
+ },
+ {
+ x: new Date(1538875800000),
+ y: [6593.15, 6605, 6592, 6603.06]
+ },
+ {
+ x: new Date(1538877600000),
+ y: [6603.07, 6604.5, 6599.09, 6603.89]
+ },
+ {
+ x: new Date(1538879400000),
+ y: [6604.44, 6604.44, 6600, 6603.5]
+ },
+ {
+ x: new Date(1538881200000),
+ y: [6603.5, 6603.99, 6597.5, 6603.86]
+ },
+ {
+ x: new Date(1538883000000),
+ y: [6603.85, 6605, 6600, 6604.07]
+ },
+ {
+ x: new Date(1538884800000),
+ y: [6604.98, 6606, 6604.07, 6606]
+ },
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'candlestick',
+ toolbar: {
+ show: false
+ },
+ },
+ title: {
+ text: 'CandleStick Chart - Category X-axis',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ plotOptions: {
+ candlestick: {
+ colors: {
+ upward: chartCandlestickCategoryColors[0],
+ downward: chartCandlestickCategoryColors[1],
+ }
+ }
+ },
+ annotations: {
+ xaxis: [{
+ x: 'Oct 06 14:00',
+ borderColor: chartCandlestickCategoryColors[0],
+ label: {
+ borderColor: chartCandlestickCategoryColors[1],
+ style: {
+ fontSize: '12px',
+ color: '#fff',
+ background: chartCandlestickCategoryColors[1]
+ },
+ orientation: 'horizontal',
+ offsetY: 7,
+ text: 'Annotation Test'
+ }
+ }]
+ },
+ tooltip: {
+ enabled: true,
+ },
+ xaxis: {
+ type: 'category',
+ labels: {
+ formatter: function(val) {
+ return dayjs(val).format('MMM DD HH:mm')
+ }
+ }
+ },
+ yaxis: {
+ tooltip: {
+ enabled: true
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#category_candlestick"), options);
+ chart.render();
+}
+
+// Candlestick with line
+'use strict';
+
+// Candlestick with line
+var chartCandlestickLineColors = getChartColorsArray("candlestick_with_line");
+if (chartCandlestickLineColors) {
+ var options = {
+ series: [{
+ name: 'line',
+ type: 'line',
+ data: [{
+ x: new Date(1538778600000),
+ y: 6604
+ }, {
+ x: new Date(1538782200000),
+ y: 6602
+ }, {
+ x: new Date(1538814600000),
+ y: 6607
+ }, {
+ x: new Date(1538884800000),
+ y: 6620
+ }]
+ }, {
+ name: 'candle',
+ type: 'candlestick',
+ data: [{
+ x: new Date(1538778600000),
+ y: [6629.81, 6650.5, 6623.04, 6633.33]
+ }, {
+ x: new Date(1538780400000),
+ y: [6632.01, 6643.59, 6620, 6630.11]
+ }, {
+ x: new Date(1538782200000),
+ y: [6630.71, 6648.95, 6623.34, 6635.65]
+ }, {
+ x: new Date(1538784000000),
+ y: [6635.65, 6651, 6629.67, 6638.24]
+ }, {
+ x: new Date(1538785800000),
+ y: [6638.24, 6640, 6620, 6624.47]
+ }, {
+ x: new Date(1538787600000),
+ y: [6624.53, 6636.03, 6621.68, 6624.31]
+ }, {
+ x: new Date(1538789400000),
+ y: [6624.61, 6632.2, 6617, 6626.02]
+ }, {
+ x: new Date(1538791200000),
+ y: [6627, 6627.62, 6584.22, 6603.02]
+ }, {
+ x: new Date(1538793000000),
+ y: [6605, 6608.03, 6598.95, 6604.01]
+ }, {
+ x: new Date(1538794800000),
+ y: [6604.5, 6614.4, 6602.26, 6608.02]
+ }, {
+ x: new Date(1538796600000),
+ y: [6608.02, 6610.68, 6601.99, 6608.91]
+ }, {
+ x: new Date(1538798400000),
+ y: [6608.91, 6618.99, 6608.01, 6612]
+ }, {
+ x: new Date(1538800200000),
+ y: [6612, 6615.13, 6605.09, 6612]
+ }, {
+ x: new Date(1538802000000),
+ y: [6612, 6624.12, 6608.43, 6622.95]
+ }, {
+ x: new Date(1538803800000),
+ y: [6623.91, 6623.91, 6615, 6615.67]
+ }, {
+ x: new Date(1538805600000),
+ y: [6618.69, 6618.74, 6610, 6610.4]
+ }, {
+ x: new Date(1538807400000),
+ y: [6611, 6622.78, 6610.4, 6614.9]
+ }, {
+ x: new Date(1538809200000),
+ y: [6614.9, 6626.2, 6613.33, 6623.45]
+ }, {
+ x: new Date(1538811000000),
+ y: [6623.48, 6627, 6618.38, 6620.35]
+ }, {
+ x: new Date(1538812800000),
+ y: [6619.43, 6620.35, 6610.05, 6615.53]
+ }, {
+ x: new Date(1538814600000),
+ y: [6615.53, 6617.93, 6610, 6615.19]
+ }, {
+ x: new Date(1538816400000),
+ y: [6615.19, 6621.6, 6608.2, 6620]
+ }, {
+ x: new Date(1538818200000),
+ y: [6619.54, 6625.17, 6614.15, 6620]
+ }, {
+ x: new Date(1538820000000),
+ y: [6620.33, 6634.15, 6617.24, 6624.61]
+ }, {
+ x: new Date(1538821800000),
+ y: [6625.95, 6626, 6611.66, 6617.58]
+ }, {
+ x: new Date(1538823600000),
+ y: [6619, 6625.97, 6595.27, 6598.86]
+ }, {
+ x: new Date(1538825400000),
+ y: [6598.86, 6598.88, 6570, 6587.16]
+ }, {
+ x: new Date(1538827200000),
+ y: [6588.86, 6600, 6580, 6593.4]
+ }, {
+ x: new Date(1538829000000),
+ y: [6593.99, 6598.89, 6585, 6587.81]
+ }, {
+ x: new Date(1538830800000),
+ y: [6587.81, 6592.73, 6567.14, 6578]
+ }, {
+ x: new Date(1538832600000),
+ y: [6578.35, 6581.72, 6567.39, 6579]
+ }, {
+ x: new Date(1538834400000),
+ y: [6579.38, 6580.92, 6566.77, 6575.96]
+ }, {
+ x: new Date(1538836200000),
+ y: [6575.96, 6589, 6571.77, 6588.92]
+ }, {
+ x: new Date(1538838000000),
+ y: [6588.92, 6594, 6577.55, 6589.22]
+ }, {
+ x: new Date(1538839800000),
+ y: [6589.3, 6598.89, 6589.1, 6596.08]
+ }, {
+ x: new Date(1538841600000),
+ y: [6597.5, 6600, 6588.39, 6596.25]
+ }, {
+ x: new Date(1538843400000),
+ y: [6598.03, 6600, 6588.73, 6595.97]
+ }, {
+ x: new Date(1538845200000),
+ y: [6595.97, 6602.01, 6588.17, 6602]
+ }, {
+ x: new Date(1538847000000),
+ y: [6602, 6607, 6596.51, 6599.95]
+ }, {
+ x: new Date(1538848800000),
+ y: [6600.63, 6601.21, 6590.39, 6591.02]
+ }, {
+ x: new Date(1538850600000),
+ y: [6591.02, 6603.08, 6591, 6591]
+ }, {
+ x: new Date(1538852400000),
+ y: [6591, 6601.32, 6585, 6592]
+ }, {
+ x: new Date(1538854200000),
+ y: [6593.13, 6596.01, 6590, 6593.34]
+ }, {
+ x: new Date(1538856000000),
+ y: [6593.34, 6604.76, 6582.63, 6593.86]
+ }, {
+ x: new Date(1538857800000),
+ y: [6593.86, 6604.28, 6586.57, 6600.01]
+ }, {
+ x: new Date(1538859600000),
+ y: [6601.81, 6603.21, 6592.78, 6596.25]
+ }, {
+ x: new Date(1538861400000),
+ y: [6596.25, 6604.2, 6590, 6602.99]
+ }, {
+ x: new Date(1538863200000),
+ y: [6602.99, 6606, 6584.99, 6587.81]
+ }, {
+ x: new Date(1538865000000),
+ y: [6587.81, 6595, 6583.27, 6591.96]
+ }, {
+ x: new Date(1538866800000),
+ y: [6591.97, 6596.07, 6585, 6588.39]
+ }, {
+ x: new Date(1538868600000),
+ y: [6587.6, 6598.21, 6587.6, 6594.27]
+ }, {
+ x: new Date(1538870400000),
+ y: [6596.44, 6601, 6590, 6596.55]
+ }, {
+ x: new Date(1538872200000),
+ y: [6598.91, 6605, 6596.61, 6600.02]
+ }, {
+ x: new Date(1538874000000),
+ y: [6600.55, 6605, 6589.14, 6593.01]
+ }, {
+ x: new Date(1538875800000),
+ y: [6593.15, 6605, 6592, 6603.06]
+ }, {
+ x: new Date(1538877600000),
+ y: [6603.07, 6604.5, 6599.09, 6603.89]
+ }, {
+ x: new Date(1538879400000),
+ y: [6604.44, 6604.44, 6600, 6603.5]
+ }, {
+ x: new Date(1538881200000),
+ y: [6603.5, 6603.99, 6597.5, 6603.86]
+ }, {
+ x: new Date(1538883000000),
+ y: [6603.85, 6605, 6600, 6604.07]
+ }, {
+ x: new Date(1538884800000),
+ y: [6604.98, 6606, 6604.07, 6606]
+ }]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ toolbar: {
+ show: false
+ }
+ },
+ plotOptions: {
+ candlestick: {
+ colors: {
+ upward: chartCandlestickLineColors[0],
+ downward: chartCandlestickLineColors[1]
+ }
+ }
+ },
+ colors: [chartCandlestickLineColors[2], chartCandlestickLineColors[0]],
+ stroke: {
+ width: [3, 1]
+ },
+ tooltip: {
+ shared: true,
+ custom: [function (_ref) {
+ var seriesIndex = _ref.seriesIndex;
+ var dataPointIndex = _ref.dataPointIndex;
+ var w = _ref.w;
+
+ return w.globals.series[seriesIndex][dataPointIndex];
+ }, function (_ref2) {
+ var seriesIndex = _ref2.seriesIndex;
+ var dataPointIndex = _ref2.dataPointIndex;
+ var w = _ref2.w;
+
+ var o = w.globals.seriesCandleO[seriesIndex][dataPointIndex];
+ var h = w.globals.seriesCandleH[seriesIndex][dataPointIndex];
+ var l = w.globals.seriesCandleL[seriesIndex][dataPointIndex];
+ var c = w.globals.seriesCandleC[seriesIndex][dataPointIndex];
+ return '
';
+ }]
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#candlestick_with_line"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-column.init.js b/public/build/js/pages/apexcharts-column.init.js
new file mode 100644
index 0000000..56d4090
--- /dev/null
+++ b/public/build/js/pages/apexcharts-column.init.js
@@ -0,0 +1,1202 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Column Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function(value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+ }
+}
+
+
+// Basic Column Chart
+var chartColumnColors = getChartColorsArray("column_chart");
+if (chartColumnColors) {
+ var options = {
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: false,
+ columnWidth: '45%',
+ endingShape: 'rounded'
+ },
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ show: true,
+ width: 2,
+ colors: ['transparent']
+ },
+ series: [{
+ name: 'Net Profit',
+ data: [46, 57, 59, 54, 62, 58, 64, 60, 66]
+ }, {
+ name: 'Revenue',
+ data: [74, 83, 102, 97, 86, 106, 93, 114, 94]
+ }, {
+ name: 'Free Cash Flow',
+ data: [37, 42, 38, 26, 47, 50, 54, 55, 43]
+ }],
+ colors: chartColumnColors,
+ xaxis: {
+ categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'],
+ },
+ yaxis: {
+ title: {
+ text: '$ (thousands)'
+ }
+ },
+ grid: {
+ borderColor: '#f1f1f1',
+ },
+ fill: {
+ opacity: 1
+
+ },
+ tooltip: {
+ y: {
+ formatter: function(val) {
+ return "$ " + val + " thousands"
+ }
+ }
+ }
+ }
+
+ var chart = new ApexCharts(
+ document.querySelector("#column_chart"),
+ options
+ );
+
+ chart.render();
+}
+
+
+// Column with Datalabels
+var chartColumnDatatalabelColors = getChartColorsArray("column_chart_datalabel");
+if (chartColumnDatatalabelColors) {
+ var options = {
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ dataLabels: {
+ position: 'top', // top, center, bottom
+ },
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ formatter: function(val) {
+ return val + "%";
+ },
+ offsetY: -20,
+ style: {
+ fontSize: '12px',
+ colors: ["#adb5bd"]
+ }
+ },
+ series: [{
+ name: 'Inflation',
+ data: [2.5, 3.2, 5.0, 10.1, 4.2, 3.8, 3, 2.4, 4.0, 1.2, 3.5, 0.8]
+ }],
+ colors: chartColumnDatatalabelColors,
+ grid: {
+ borderColor: '#f1f1f1',
+ },
+ xaxis: {
+ categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
+ position: 'top',
+ labels: {
+ offsetY: -18,
+
+ },
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false
+ },
+ crosshairs: {
+ fill: {
+ type: 'gradient',
+ gradient: {
+ colorFrom: '#D8E3F0',
+ colorTo: '#BED1E6',
+ stops: [0, 100],
+ opacityFrom: 0.4,
+ opacityTo: 0.5,
+ }
+ }
+ },
+ tooltip: {
+ enabled: true,
+ offsetY: -35,
+
+ }
+ },
+ fill: {
+ gradient: {
+ shade: 'light',
+ type: "horizontal",
+ shadeIntensity: 0.25,
+ gradientToColors: undefined,
+ inverseColors: true,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [50, 0, 100, 100]
+ },
+ },
+ yaxis: {
+ axisBorder: {
+ show: false
+ },
+ axisTicks: {
+ show: false,
+ },
+ labels: {
+ show: false,
+ formatter: function(val) {
+ return val + "%";
+ }
+ }
+ },
+ title: {
+ text: 'Monthly Inflation in Argentina, 2002',
+ floating: true,
+ offsetY: 320,
+ align: 'center',
+ style: {
+ color: '#444'
+ },
+ style: {
+ fontWeight: 500,
+ },
+ },
+ }
+
+ var chart = new ApexCharts(
+ document.querySelector("#column_chart_datalabel"),
+ options
+ );
+
+ chart.render();
+}
+
+// Stacked Columns Charts
+var chartColumnStackedColors = getChartColorsArray("column_stacked");
+if (chartColumnStackedColors) {
+ var options = {
+ series: [{
+ name: 'PRODUCT A',
+ data: [44, 55, 41, 67, 22, 43]
+ }, {
+ name: 'PRODUCT B',
+ data: [13, 23, 20, 8, 13, 27]
+ }, {
+ name: 'PRODUCT C',
+ data: [11, 17, 15, 15, 21, 14]
+ }, {
+ name: 'PRODUCT D',
+ data: [21, 7, 25, 13, 22, 8]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ stacked: true,
+ toolbar: {
+ show: false
+ },
+ zoom: {
+ enabled: true
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ responsive: [{
+ breakpoint: 480,
+ options: {
+ legend: {
+ position: 'bottom',
+ offsetX: -10,
+ offsetY: 0
+ }
+ }
+ }],
+ plotOptions: {
+ bar: {
+ horizontal: false,
+ borderRadius: 10
+ },
+ },
+ xaxis: {
+ type: 'datetime',
+ categories: ['01/01/2011 GMT', '01/02/2011 GMT', '01/03/2011 GMT', '01/04/2011 GMT',
+ '01/05/2011 GMT', '01/06/2011 GMT'
+ ],
+ },
+ legend: {
+ position: 'right',
+ offsetY: 40
+ },
+ fill: {
+ opacity: 1
+ },
+ colors: chartColumnStackedColors,
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_stacked"), options);
+ chart.render();
+}
+
+// 100% Stacked Column Chart
+
+var chartColumnStacked100Colors = getChartColorsArray("column_stacked_chart");
+if (chartColumnStacked100Colors) {
+ var options = {
+ series: [{
+ name: 'PRODUCT A',
+ data: [44, 55, 41, 67, 22, 43, 21, 49]
+ }, {
+ name: 'PRODUCT B',
+ data: [13, 23, 20, 8, 13, 27, 33, 12]
+ }, {
+ name: 'PRODUCT C',
+ data: [11, 17, 15, 15, 21, 14, 15, 13]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ stacked: true,
+ stackType: '100%',
+ toolbar: {
+ show: false,
+ }
+ },
+ responsive: [{
+ breakpoint: 480,
+ options: {
+ legend: {
+ position: 'bottom',
+ offsetX: -10,
+ offsetY: 0
+ }
+ }
+ }],
+ xaxis: {
+ categories: ['2011 Q1', '2011 Q2', '2011 Q3', '2011 Q4', '2012 Q1', '2012 Q2',
+ '2012 Q3', '2012 Q4'
+ ],
+ },
+ fill: {
+ opacity: 1
+ },
+ legend: {
+ position: 'right',
+ offsetX: 0,
+ offsetY: 50
+ },
+ colors: chartColumnStacked100Colors,
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_stacked_chart"), options);
+ chart.render();
+}
+
+// column with Markers
+var chartColumnMarkersColors = getChartColorsArray("column_markers");
+if (chartColumnMarkersColors) {
+ var options = {
+ series: [{
+ name: 'Actual',
+ data: [{
+ x: '2011',
+ y: 1292,
+ goals: [{
+ name: 'Expected',
+ value: 1400,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2012',
+ y: 4432,
+ goals: [{
+ name: 'Expected',
+ value: 5400,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2013',
+ y: 5423,
+ goals: [{
+ name: 'Expected',
+ value: 5200,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2014',
+ y: 6653,
+ goals: [{
+ name: 'Expected',
+ value: 6500,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2015',
+ y: 8133,
+ goals: [{
+ name: 'Expected',
+ value: 6600,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2016',
+ y: 7132,
+ goals: [{
+ name: 'Expected',
+ value: 7500,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2017',
+ y: 7332,
+ goals: [{
+ name: 'Expected',
+ value: 8700,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ },
+ {
+ x: '2018',
+ y: 6553,
+ goals: [{
+ name: 'Expected',
+ value: 7300,
+ strokeWidth: 5,
+ strokeColor: '#775DD0'
+ }]
+ }
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ columnWidth: '30%'
+ }
+ },
+ colors: chartColumnMarkersColors,
+ dataLabels: {
+ enabled: false
+ },
+ legend: {
+ show: true,
+ showForSingleSeries: true,
+ customLegendItems: ['Actual', 'Expected'],
+ markers: {
+ fillColors: chartColumnMarkersColors
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_markers"), options);
+ chart.render();
+}
+
+// Column with Rotated Labels
+var chartColumnRotateLabelsColors = getChartColorsArray("column_rotated_labels");
+if (chartColumnRotateLabelsColors) {
+ var options = {
+ series: [{
+ name: 'Servings',
+ data: [44, 55, 41, 67, 22, 43, 21, 33, 45, 31, 87, 65, 35]
+ }],
+ annotations: {
+ points: [{
+ x: 'Bananas',
+ seriesIndex: 0,
+ label: {
+ borderColor: '#775DD0',
+ offsetY: 0,
+ style: {
+ color: '#fff',
+ background: '#775DD0',
+ },
+ text: 'Bananas are good',
+ }
+ }]
+ },
+ chart: {
+ height: 350,
+ type: 'bar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ borderRadius: 10,
+ columnWidth: '50%',
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 2
+ },
+ colors: chartColumnRotateLabelsColors,
+ xaxis: {
+ labels: {
+ rotate: -45
+ },
+ categories: ['Apples', 'Oranges', 'Strawberries', 'Pineapples', 'Mangoes', 'Bananas',
+ 'Blackberries', 'Pears', 'Watermelons', 'Cherries', 'Pomegranates', 'Tangerines', 'Papayas'
+ ],
+ tickPlacement: 'on'
+ },
+ yaxis: {
+ title: {
+ text: 'Servings',
+ },
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'light',
+ type: "horizontal",
+ shadeIntensity: 0.25,
+ gradientToColors: undefined,
+ inverseColors: true,
+ opacityFrom: 0.85,
+ opacityTo: 0.85,
+ stops: [50, 0, 100]
+ },
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_rotated_labels"), options);
+ chart.render();
+}
+
+// Column with Negative Values
+var chartNagetiveValuesColors = getChartColorsArray("column_nagetive_values");
+if (chartNagetiveValuesColors) {
+ var options = {
+ series: [{
+ name: 'Cash Flow',
+ data: [1.45, 5.42, 5.9, -0.42, -12.6, -18.1, -18.2, -14.16, -11.1, -6.09, 0.34, 3.88, 13.07,
+ 5.8, 2, 7.37, 8.1, 13.57, 15.75, 17.1, 19.8, -27.03, -54.4, -47.2, -43.3, -18.6, -
+ 48.6, -41.1, -39.6, -37.6, -29.4, -21.4, -2.4
+ ]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ colors: {
+ ranges: [{
+ from: -100,
+ to: -46,
+ color: chartNagetiveValuesColors[1]
+ }, {
+ from: -45,
+ to: 0,
+ color: chartNagetiveValuesColors[2]
+ }]
+ },
+ columnWidth: '80%',
+ }
+ },
+ dataLabels: {
+ enabled: false,
+ },
+ colors: chartNagetiveValuesColors[0],
+ yaxis: {
+ title: {
+ text: 'Growth',
+ },
+ labels: {
+ formatter: function(y) {
+ return y.toFixed(0) + "%";
+ }
+ }
+ },
+ xaxis: {
+ type: 'datetime',
+ categories: [
+ '2011-01-01', '2011-02-01', '2011-03-01', '2011-04-01', '2011-05-01', '2011-06-01',
+ '2011-07-01', '2011-08-01', '2011-09-01', '2011-10-01', '2011-11-01', '2011-12-01',
+ '2012-01-01', '2012-02-01', '2012-03-01', '2012-04-01', '2012-05-01', '2012-06-01',
+ '2012-07-01', '2012-08-01', '2012-09-01', '2012-10-01', '2012-11-01', '2012-12-01',
+ '2013-01-01', '2013-02-01', '2013-03-01', '2013-04-01', '2013-05-01', '2013-06-01',
+ '2013-07-01', '2013-08-01', '2013-09-01'
+ ],
+ labels: {
+ rotate: -90
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_nagetive_values"), options);
+ chart.render();
+}
+
+// Range Column Chart
+var chartRangeColors = getChartColorsArray("column_range");
+if (chartRangeColors) {
+ var options = {
+ series: [{
+ data: [{
+ x: 'Team A',
+ y: [1, 5]
+ }, {
+ x: 'Team B',
+ y: [4, 6]
+ }, {
+ x: 'Team C',
+ y: [5, 8]
+ }, {
+ x: 'Team D',
+ y: [3, 11]
+ }]
+ }, {
+ data: [{
+ x: 'Team A',
+ y: [2, 6]
+ }, {
+ x: 'Team B',
+ y: [1, 3]
+ }, {
+ x: 'Team C',
+ y: [7, 8]
+ }, {
+ x: 'Team D',
+ y: [5, 9]
+ }]
+ }],
+ chart: {
+ type: 'rangeBar',
+ height: 335,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: false
+ }
+ },
+ dataLabels: {
+ enabled: true
+ },
+ legend: {
+ show: false,
+ },
+ colors: chartRangeColors
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_range"), options);
+ chart.render();
+}
+
+
+// Dynamic Loaded Chart
+
+Apex = {
+ chart: {
+ toolbar: {
+ show: false
+ }
+ },
+ tooltip: {
+ shared: false
+ },
+ legend: {
+ show: false
+ }
+}
+
+
+var colors = getChartColorsArray("chart-year");
+
+ /**
+ * Randomize array element order in-place.
+ * Using Durstenfeld shuffle algorithm.
+ */
+ function shuffleArray(array) {
+ for (var i = array.length - 1; i > 0; i--) {
+ var j = Math.floor(Math.random() * (i + 1));
+ var temp = array[i];
+ array[i] = array[j];
+ array[j] = temp;
+ }
+ return array;
+ }
+
+ var arrayData = [{
+ y: 400,
+ quarters: [{
+ x: 'Q1',
+ y: 120
+ }, {
+ x: 'Q2',
+ y: 90
+ }, {
+ x: 'Q3',
+ y: 100
+ }, {
+ x: 'Q4',
+ y: 90
+ }]
+ }, {
+ y: 430,
+ quarters: [{
+ x: 'Q1',
+ y: 120
+ }, {
+ x: 'Q2',
+ y: 110
+ }, {
+ x: 'Q3',
+ y: 90
+ }, {
+ x: 'Q4',
+ y: 110
+ }]
+ }, {
+ y: 448,
+ quarters: [{
+ x: 'Q1',
+ y: 70
+ }, {
+ x: 'Q2',
+ y: 100
+ }, {
+ x: 'Q3',
+ y: 140
+ }, {
+ x: 'Q4',
+ y: 138
+ }]
+ }, {
+ y: 470,
+ quarters: [{
+ x: 'Q1',
+ y: 150
+ }, {
+ x: 'Q2',
+ y: 60
+ }, {
+ x: 'Q3',
+ y: 190
+ }, {
+ x: 'Q4',
+ y: 70
+ }]
+ }, {
+ y: 540,
+ quarters: [{
+ x: 'Q1',
+ y: 120
+ }, {
+ x: 'Q2',
+ y: 120
+ }, {
+ x: 'Q3',
+ y: 130
+ }, {
+ x: 'Q4',
+ y: 170
+ }]
+ }, {
+ y: 580,
+ quarters: [{
+ x: 'Q1',
+ y: 170
+ }, {
+ x: 'Q2',
+ y: 130
+ }, {
+ x: 'Q3',
+ y: 120
+ }, {
+ x: 'Q4',
+ y: 160
+ }]
+ }];
+
+ function makeData() {
+ var dataSet = shuffleArray(arrayData)
+
+ var dataYearSeries = [{
+ x: "2011",
+ y: dataSet[0].y,
+ color: colors[0],
+ quarters: dataSet[0].quarters
+ }, {
+ x: "2012",
+ y: dataSet[1].y,
+ color: colors[1],
+ quarters: dataSet[1].quarters
+ }, {
+ x: "2013",
+ y: dataSet[2].y,
+ color: colors[2],
+ quarters: dataSet[2].quarters
+ }, {
+ x: "2014",
+ y: dataSet[3].y,
+ color: colors[3],
+ quarters: dataSet[3].quarters
+ }, {
+ x: "2015",
+ y: dataSet[4].y,
+ color: colors[4],
+ quarters: dataSet[4].quarters
+ }, {
+ x: "2016",
+ y: dataSet[5].y,
+ color: colors[5],
+ quarters: dataSet[5].quarters
+ }];
+
+ return dataYearSeries
+ }
+
+ function updateQuarterChart(sourceChart, destChartIDToUpdate) {
+ var series = [];
+ var seriesIndex = 0;
+ var colors = []
+
+ if (sourceChart.w.globals.selectedDataPoints[0]) {
+ var selectedPoints = sourceChart.w.globals.selectedDataPoints;
+ for (var i = 0; i < selectedPoints[seriesIndex].length; i++) {
+ var selectedIndex = selectedPoints[seriesIndex][i];
+ var yearSeries = sourceChart.w.config.series[seriesIndex];
+ series.push({
+ name: yearSeries.data[selectedIndex].x,
+ data: yearSeries.data[selectedIndex].quarters
+ })
+ colors.push(yearSeries.data[selectedIndex].color)
+ }
+
+ if (series.length === 0) series = [{
+ data: []
+ }]
+
+ return ApexCharts.exec(destChartIDToUpdate, 'updateOptions', {
+ series: series,
+ colors: colors,
+ fill: {
+ colors: colors
+ }
+ })
+ }
+ }
+
+ var options = {
+ series: [{
+ data: makeData()
+ }],
+ chart: {
+ id: 'barYear',
+ height: 330,
+ width: '100%',
+ type: 'bar',
+ events: {
+ dataPointSelection: function(e, chart, opts) {
+ var quarterChartEl = document.querySelector("#chart-quarter");
+ var yearChartEl = document.querySelector("#chart-year");
+
+ if (opts.selectedDataPoints[0].length === 1) {
+ if (quarterChartEl.classList.contains("active")) {
+ updateQuarterChart(chart, 'barQuarter')
+ } else {
+ yearChartEl.classList.add("chart-quarter-activated")
+ quarterChartEl.classList.add("active");
+ updateQuarterChart(chart, 'barQuarter')
+ }
+ } else {
+ updateQuarterChart(chart, 'barQuarter')
+ }
+
+ if (opts.selectedDataPoints[0].length === 0) {
+ yearChartEl.classList.remove("chart-quarter-activated")
+ quarterChartEl.classList.remove("active");
+ }
+
+ },
+ updated: function(chart) {
+ updateQuarterChart(chart, 'barQuarter')
+ }
+ }
+ },
+ plotOptions: {
+ bar: {
+ distributed: true,
+ horizontal: true,
+ barHeight: '75%',
+ dataLabels: {
+ position: 'bottom'
+ }
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ textAnchor: 'start',
+ style: {
+ colors: ['#fff']
+ },
+ formatter: function(val, opt) {
+ return opt.w.globals.labels[opt.dataPointIndex]
+ },
+ offsetX: 0,
+ dropShadow: {
+ enabled: false
+ }
+ },
+
+ colors: colors,
+
+ states: {
+ normal: {
+ filter: {
+ type: 'desaturate'
+ }
+ },
+ active: {
+ allowMultipleDataPointsSelection: true,
+ filter: {
+ type: 'darken',
+ value: 1
+ }
+ }
+ },
+ tooltip: {
+ x: {
+ show: false
+ },
+ y: {
+ title: {
+ formatter: function (val, opts) {
+ return opts.w.globals.labels[opts.dataPointIndex]
+ }
+ }
+ }
+ },
+ title: {
+ text: 'Yearly Results',
+ offsetX: 15,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ subtitle: {
+ text: '(Click on bar to see details)',
+ offsetX: 15
+ },
+ yaxis: {
+ labels: {
+ show: false
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#chart-year"), options);
+chart.render();
+
+var optionsQuarter = {
+ series: [{
+ data: []
+ }],
+ chart: {
+ id: 'barQuarter',
+ height: 330,
+ width: '100%',
+ type: 'bar',
+ stacked: true
+ },
+ plotOptions: {
+ bar: {
+ columnWidth: '50%',
+ horizontal: false
+ }
+ },
+ legend: {
+ show: false
+ },
+ grid: {
+ yaxis: {
+ lines: {
+ show: false,
+ }
+ },
+ xaxis: {
+ lines: {
+ show: true,
+ }
+ }
+ },
+ yaxis: {
+ labels: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Quarterly Results',
+ offsetX: 10,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ tooltip: {
+ x: {
+ formatter: function (val, opts) {
+ return opts.w.globals.seriesNames[opts.seriesIndex]
+ }
+ },
+ y: {
+ title: {
+ formatter: function (val, opts) {
+ return opts.w.globals.labels[opts.dataPointIndex]
+ }
+ }
+ }
+ }
+};
+
+ var chartQuarter = new ApexCharts(document.querySelector("#chart-quarter"), optionsQuarter);
+ chartQuarter.render();
+ chart.addEventListener('dataPointSelection', function(e, chart, opts) {
+ var quarterChartEl = document.querySelector("#chart-quarter");
+ var yearChartEl = document.querySelector("#chart-year");
+
+ if (opts.selectedDataPoints[0].length === 1) {
+ if (quarterChartEl.classList.contains("active")) {
+ updateQuarterChart(chart, 'barQuarter')
+ } else {
+ yearChartEl.classList.add("chart-quarter-activated")
+ quarterChartEl.classList.add("active");
+ updateQuarterChart(chart, 'barQuarter')
+ }
+ } else {
+ updateQuarterChart(chart, 'barQuarter')
+ }
+
+ if (opts.selectedDataPoints[0].length === 0) {
+ yearChartEl.classList.remove("chart-quarter-activated")
+ quarterChartEl.classList.remove("active");
+ }
+
+})
+
+chart.addEventListener('updated', function (chart) {
+ updateQuarterChart(chart, 'barQuarter')
+})
+
+
+// Distributed Columns Charts
+var chartColumnDistributedColors = getChartColorsArray("column_distributed");
+if (chartColumnDistributedColors) {
+ var options = {
+ series: [{
+ data: [21, 22, 10, 28, 16, 21, 13, 30]
+ }],
+ chart: {
+ height: 350,
+ type: 'bar',
+ events: {
+ click: function (chart, w, e) {
+ // console.log(chart, w, e)
+ }
+ }
+ },
+ colors: chartColumnDistributedColors,
+ plotOptions: {
+ bar: {
+ columnWidth: '45%',
+ distributed: true,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ legend: {
+ show: false
+ },
+ xaxis: {
+ categories: [
+ ['John', 'Doe'],
+ ['Joe', 'Smith'],
+ ['Jake', 'Williams'],
+ 'Amber', ['Peter', 'Brown'],
+ ['Mary', 'Evans'],
+ ['David', 'Wilson'],
+ ['Lily', 'Roberts'],
+ ],
+ labels: {
+ style: {
+ colors: [
+ '#038edc',
+ '#51d28c',
+ '#f7cc53',
+ '#f34e4e',
+ '#564ab1',
+ '#5fd0f3',
+ ],
+ fontSize: '12px'
+ }
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#column_distributed"), options);
+ chart.render();
+}
+
+
+// column_group_labels
+var chartColumnGroupLabelsColors = getChartColorsArray("column_group_labels");
+if (chartColumnGroupLabelsColors) {
+ dayjs.extend(window.dayjs_plugin_quarterOfYear)
+ var optionsGroup = {
+ series: [{
+ name: "sales",
+ data: [{
+ x: '2020/01/01',
+ y: 400
+ }, {
+ x: '2020/04/01',
+ y: 430
+ }, {
+ x: '2020/07/01',
+ y: 448
+ }, {
+ x: '2020/10/01',
+ y: 470
+ }, {
+ x: '2021/01/01',
+ y: 540
+ }, {
+ x: '2021/04/01',
+ y: 580
+ }, {
+ x: '2021/07/01',
+ y: 690
+ }, {
+ x: '2021/10/01',
+ y: 690
+ }]
+ }],
+ chart: {
+ type: 'bar',
+ height: 350,
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: false,
+ columnWidth: '45%',
+ },
+ },
+ colors: chartColumnGroupLabelsColors,
+ xaxis: {
+ type: 'category',
+ labels: {
+ formatter: function (val) {
+ return "Q" + dayjs(val).quarter()
+ }
+ },
+ group: {
+ style: {
+ fontSize: '10px',
+ fontWeight: 700
+ },
+ groups: [
+ { title: '2020', cols: 4 },
+ { title: '2021', cols: 4 }
+ ]
+ }
+ },
+ title: {
+ text: 'Grouped Labels on the X-axis',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ tooltip: {
+ x: {
+ formatter: function (val) {
+ return "Q" + dayjs(val).quarter() + " " + dayjs(val).format("YYYY")
+ }
+ }
+ },
+ };
+
+ var chartGroup = new ApexCharts(document.querySelector("#column_group_labels"), optionsGroup);
+ chartGroup.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-heatmap.init.js b/public/build/js/pages/apexcharts-heatmap.init.js
new file mode 100644
index 0000000..b458162
--- /dev/null
+++ b/public/build/js/pages/apexcharts-heatmap.init.js
@@ -0,0 +1,544 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Heatmap Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function(value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+ }
+}
+
+// Basic Heatmap Charts
+var chartHeatMapBasicColors = getChartColorsArray("basic_heatmap");
+if (chartHeatMapBasicColors) {
+ var options = {
+ series: [{
+ name: 'Metric1',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric2',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric3',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric4',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric5',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric6',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric7',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric8',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric9',
+ data: generateData(18, {
+ min: 0,
+ max: 90
+ })
+ }
+ ],
+ chart: {
+ height: 450,
+ type: 'heatmap',
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ colors: [chartHeatMapBasicColors[0]],
+ title: {
+ text: 'HeatMap Chart (Single color)',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ stroke: {
+ colors: [chartHeatMapBasicColors[1]]
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#basic_heatmap"), options);
+ chart.render();
+}
+
+// Generate Data Script
+
+function generateData(count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var x = (i + 1).toString();
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ series.push({
+ x: x,
+ y: y
+ });
+ i++;
+ }
+ return series;
+}
+
+var data = [{
+ name: 'W1',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W2',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W3',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W4',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W5',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W6',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W7',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W8',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W9',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W10',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W11',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W12',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W13',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W14',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'W15',
+ data: generateData(8, {
+ min: 0,
+ max: 90
+ })
+ }
+]
+
+data.reverse()
+
+var colors = ["#f7cc53", "#f1734f", "#663f59", "#6a6e94", "#4e88b4", "#00a7c6", "#18d8d8", '#a9d794', '#46aF78', '#a93f55', '#8c5e58', '#2176ff', '#5fd0f3', '#74788d', '#51d28c']
+
+colors.reverse()
+
+// Multiple Series - Heatmap
+var chartHeatMapMultipleColors = getChartColorsArray("multiple_heatmap");
+if (chartHeatMapMultipleColors) {
+ var options = {
+ series: data,
+ chart: {
+ height: 450,
+ type: 'heatmap',
+ toolbar: {
+ show: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ colors: [chartHeatMapMultipleColors[0], chartHeatMapMultipleColors[1], chartHeatMapMultipleColors[2], chartHeatMapMultipleColors[3], chartHeatMapMultipleColors[4], chartHeatMapMultipleColors[5], chartHeatMapMultipleColors[6], chartHeatMapMultipleColors[7]],
+ xaxis: {
+ type: 'category',
+ categories: ['10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '01:00', '01:30']
+ },
+ title: {
+ text: 'HeatMap Chart (Different color shades for each series)',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ grid: {
+ padding: {
+ right: 20
+ }
+ },
+ stroke: {
+ colors: [chartHeatMapMultipleColors[8]]
+ }
+ };
+ var chart = new ApexCharts(document.querySelector("#multiple_heatmap"), options);
+ chart.render();
+}
+
+// Color Range
+var chartHeatMapColors = getChartColorsArray("color_heatmap");
+if (chartHeatMapColors) {
+ var options = {
+ series: [{
+ name: 'Jan',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Feb',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Mar',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Apr',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'May',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Jun',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Jul',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Aug',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ },
+ {
+ name: 'Sep',
+ data: generateData(20, {
+ min: -30,
+ max: 55
+ })
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'heatmap',
+ toolbar: {
+ show: false
+ }
+ },
+ plotOptions: {
+ heatmap: {
+ shadeIntensity: 0.5,
+ radius: 0,
+ useFillColorAsStroke: true,
+ colorScale: {
+ ranges: [{
+ from: -30,
+ to: 5,
+ name: 'Low',
+ color: chartHeatMapColors[0]
+ },
+ {
+ from: 6,
+ to: 20,
+ name: 'Medium',
+ color: chartHeatMapColors[1]
+ },
+ {
+ from: 21,
+ to: 45,
+ name: 'High',
+ color: chartHeatMapColors[2]
+ },
+ {
+ from: 46,
+ to: 55,
+ name: 'Extreme',
+ color: chartHeatMapColors[3]
+ }
+ ]
+ }
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: 1
+ },
+ title: {
+ text: 'HeatMap Chart with Color Range',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ };
+
+ var chart = new ApexCharts(document.querySelector("#color_heatmap"), options);
+ chart.render();
+}
+
+// Heatmap - Range Without Shades
+var chartHeatMapShadesColors = getChartColorsArray("shades_heatmap");
+if (chartHeatMapShadesColors) {
+ var options = {
+ series: [{
+ name: 'Metric1',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric2',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric3',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric4',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric5',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric6',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric7',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric8',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ },
+ {
+ name: 'Metric8',
+ data: generateData(20, {
+ min: 0,
+ max: 90
+ })
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'heatmap',
+ toolbar: {
+ show: false
+ }
+ },
+ stroke: {
+ width: 0
+ },
+ plotOptions: {
+ heatmap: {
+ radius: 30,
+ enableShades: false,
+ colorScale: {
+ ranges: [{
+ from: 0,
+ to: 50,
+ color: chartHeatMapShadesColors[0]
+ },
+ {
+ from: 51,
+ to: 100,
+ color: chartHeatMapShadesColors[1]
+ },
+ ],
+ },
+
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ style: {
+ colors: ['#fff']
+ }
+ },
+ xaxis: {
+ type: 'category',
+ },
+ title: {
+ text: 'Rounded (Range without Shades)',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ };
+
+ var chart = new ApexCharts(document.querySelector("#shades_heatmap"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-line.init.js b/public/build/js/pages/apexcharts-line.init.js
new file mode 100644
index 0000000..21aa4a6
--- /dev/null
+++ b/public/build/js/pages/apexcharts-line.init.js
@@ -0,0 +1,1450 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Line Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function(value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+ }
+}
+
+// Basic Line Charts
+
+var linechartBasicColors = getChartColorsArray("line_chart_basic");
+if (linechartBasicColors) {
+ var options = {
+ series: [{
+ name: "Desktops",
+ data: [10, 41, 35, 51, 49, 62, 69, 91, 148]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ zoom: {
+ enabled: false
+ },
+ toolbar: {
+ show: false
+ }
+ },
+ markers: {
+ size: 4,
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight'
+ },
+ colors: linechartBasicColors,
+ title: {
+ text: 'Product Trends by Month',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+
+ xaxis: {
+ categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'],
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_basic"), options);
+ chart.render();
+}
+
+
+// Zoomable Timeseries
+var linechartZoomColors = getChartColorsArray("line_chart_zoomable");
+if (linechartZoomColors) {
+ var options = {
+ series: [{
+ name: 'XYZ MOTORS',
+ data: [{
+ x: new Date('2018-01-12').getTime(),
+ y: 140
+ }, {
+ x: new Date('2018-01-13').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-01-14').getTime(),
+ y: 150
+ }, {
+ x: new Date('2018-01-15').getTime(),
+ y: 154
+ }, {
+ x: new Date('2018-01-16').getTime(),
+ y: 160
+ }, {
+ x: new Date('2018-01-17').getTime(),
+ y: 165
+ }, {
+ x: new Date('2018-01-18').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-01-20').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-01-21').getTime(),
+ y: 164
+ }, {
+ x: new Date('2018-01-22').getTime(),
+ y: 160
+ }, {
+ x: new Date('2018-01-23').getTime(),
+ y: 165
+ }, {
+ x: new Date('2018-01-24').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-01-25').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-01-26').getTime(),
+ y: 177
+ }, {
+ x: new Date('2018-01-27').getTime(),
+ y: 173
+ }, {
+ x: new Date('2018-01-28').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-01-29').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-01-30').getTime(),
+ y: 158
+ }, {
+ x: new Date('2018-02-01').getTime(),
+ y: 153
+ }, {
+ x: new Date('2018-02-02').getTime(),
+ y: 149
+ }, {
+ x: new Date('2018-02-03').getTime(),
+ y: 144
+ }, {
+ x: new Date('2018-02-05').getTime(),
+ y: 150
+ }, {
+ x: new Date('2018-02-06').getTime(),
+ y: 155
+ }, {
+ x: new Date('2018-02-07').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-02-08').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-02-09').getTime(),
+ y: 156
+ }, {
+ x: new Date('2018-02-11').getTime(),
+ y: 151
+ }, {
+ x: new Date('2018-02-12').getTime(),
+ y: 157
+ }, {
+ x: new Date('2018-02-13').getTime(),
+ y: 161
+ }, {
+ x: new Date('2018-02-14').getTime(),
+ y: 150
+ }, {
+ x: new Date('2018-02-15').getTime(),
+ y: 154
+ }, {
+ x: new Date('2018-02-16').getTime(),
+ y: 160
+ }, {
+ x: new Date('2018-02-17').getTime(),
+ y: 165
+ }, {
+ x: new Date('2018-02-18').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-02-20').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-02-21').getTime(),
+ y: 164
+ }, {
+ x: new Date('2018-02-22').getTime(),
+ y: 160
+ }, {
+ x: new Date('2018-02-23').getTime(),
+ y: 165
+ }, {
+ x: new Date('2018-02-24').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-02-25').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-02-26').getTime(),
+ y: 177
+ }, {
+ x: new Date('2018-02-27').getTime(),
+ y: 173
+ }, {
+ x: new Date('2018-02-28').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-02-29').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-02-30').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-03-01').getTime(),
+ y: 158
+ }, {
+ x: new Date('2018-03-02').getTime(),
+ y: 152
+ }, {
+ x: new Date('2018-03-03').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-03-05').getTime(),
+ y: 142
+ }, {
+ x: new Date('2018-03-06').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-03-07').getTime(),
+ y: 151
+ }, {
+ x: new Date('2018-03-08').getTime(),
+ y: 155
+ }, {
+ x: new Date('2018-03-09').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-03-11').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-03-12').getTime(),
+ y: 157
+ }, {
+ x: new Date('2018-03-13').getTime(),
+ y: 161
+ }, {
+ x: new Date('2018-03-14').getTime(),
+ y: 166
+ }, {
+ x: new Date('2018-03-15').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-03-16').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-03-17').getTime(),
+ y: 177
+ }, {
+ x: new Date('2018-03-18').getTime(),
+ y: 181
+ }, {
+ x: new Date('2018-03-20').getTime(),
+ y: 178
+ }, {
+ x: new Date('2018-03-21').getTime(),
+ y: 173
+ }, {
+ x: new Date('2018-03-22').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-03-23').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-03-24').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-03-25').getTime(),
+ y: 164
+ }, {
+ x: new Date('2018-03-26').getTime(),
+ y: 168
+ }, {
+ x: new Date('2018-03-27').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-03-28').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-03-29').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-03-30').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-04-01').getTime(),
+ y: 158
+ }, {
+ x: new Date('2018-04-02').getTime(),
+ y: 152
+ }, {
+ x: new Date('2018-04-03').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-04-05').getTime(),
+ y: 142
+ }, {
+ x: new Date('2018-04-06').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-04-07').getTime(),
+ y: 151
+ }, {
+ x: new Date('2018-04-08').getTime(),
+ y: 155
+ }, {
+ x: new Date('2018-04-09').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-04-11').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-04-12').getTime(),
+ y: 157
+ }, {
+ x: new Date('2018-04-13').getTime(),
+ y: 161
+ }, {
+ x: new Date('2018-04-14').getTime(),
+ y: 166
+ }, {
+ x: new Date('2018-04-15').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-04-16').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-04-17').getTime(),
+ y: 177
+ }, {
+ x: new Date('2018-04-18').getTime(),
+ y: 181
+ }, {
+ x: new Date('2018-04-20').getTime(),
+ y: 178
+ }, {
+ x: new Date('2018-04-21').getTime(),
+ y: 173
+ }, {
+ x: new Date('2018-04-22').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-04-23').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-04-24').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-04-25').getTime(),
+ y: 164
+ }, {
+ x: new Date('2018-04-26').getTime(),
+ y: 168
+ }, {
+ x: new Date('2018-04-27').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-04-28').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-04-29').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-04-30').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-05-01').getTime(),
+ y: 158
+ }, {
+ x: new Date('2018-05-02').getTime(),
+ y: 152
+ }, {
+ x: new Date('2018-05-03').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-05-04').getTime(),
+ y: 142
+ }, {
+ x: new Date('2018-05-05').getTime(),
+ y: 147
+ }, {
+ x: new Date('2018-05-07').getTime(),
+ y: 151
+ }, {
+ x: new Date('2018-05-08').getTime(),
+ y: 155
+ }, {
+ x: new Date('2018-05-09').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-05-11').getTime(),
+ y: 162
+ }, {
+ x: new Date('2018-05-12').getTime(),
+ y: 157
+ }, {
+ x: new Date('2018-05-13').getTime(),
+ y: 161
+ }, {
+ x: new Date('2018-05-14').getTime(),
+ y: 166
+ }, {
+ x: new Date('2018-05-15').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-05-16').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-05-17').getTime(),
+ y: 177
+ }, {
+ x: new Date('2018-05-18').getTime(),
+ y: 181
+ }, {
+ x: new Date('2018-05-20').getTime(),
+ y: 178
+ }, {
+ x: new Date('2018-05-21').getTime(),
+ y: 173
+ }, {
+ x: new Date('2018-05-22').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-05-23').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-05-24').getTime(),
+ y: 159
+ }, {
+ x: new Date('2018-05-25').getTime(),
+ y: 164
+ }, {
+ x: new Date('2018-05-26').getTime(),
+ y: 168
+ }, {
+ x: new Date('2018-05-27').getTime(),
+ y: 172
+ }, {
+ x: new Date('2018-05-28').getTime(),
+ y: 169
+ }, {
+ x: new Date('2018-05-29').getTime(),
+ y: 163
+ }, {
+ x: new Date('2018-05-30').getTime(),
+ y: 162
+ }, ]
+ }],
+ chart: {
+ type: 'area',
+ stacked: false,
+ height: 350,
+ zoom: {
+ type: 'x',
+ enabled: true,
+ autoScaleYaxis: true
+ },
+ toolbar: {
+ autoSelected: 'zoom'
+ }
+ },
+ colors: linechartZoomColors,
+ dataLabels: {
+ enabled: false
+ },
+ markers: {
+ size: 0,
+ },
+ title: {
+ text: 'Stock Price Movement',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shadeIntensity: 1,
+ inverseColors: false,
+ opacityFrom: 0.5,
+ opacityTo: 0,
+ stops: [0, 90, 100]
+ },
+ },
+ yaxis: {
+ showAlways: true,
+ labels: {
+ show: true,
+ formatter: function(val) {
+ return (val / 1000000).toFixed(0);
+ },
+ },
+ title: {
+ text: 'Price',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ },
+ xaxis: {
+ type: 'datetime',
+
+ },
+ tooltip: {
+ shared: false,
+ y: {
+ formatter: function(val) {
+ return (val / 1000000).toFixed(0)
+ }
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_zoomable"), options);
+ chart.render();
+}
+
+
+// Line chart datalabel
+var linechartDatalabelColors = getChartColorsArray("line_chart_datalabel");
+if (linechartDatalabelColors) {
+ var options = {
+ chart: {
+ height: 380,
+ type: 'line',
+ zoom: {
+ enabled: false
+ },
+ toolbar: {
+ show: false
+ }
+ },
+ colors: linechartDatalabelColors,
+ dataLabels: {
+ enabled: false,
+ },
+ stroke: {
+ width: [3, 3],
+ curve: 'straight'
+ },
+ series: [{
+ name: "High - 2018",
+ data: [26, 24, 32, 36, 33, 31, 33]
+ },
+ {
+ name: "Low - 2018",
+ data: [14, 11, 16, 12, 17, 13, 12]
+ }
+ ],
+ title: {
+ text: 'Average High & Low Temperature',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ grid: {
+ row: {
+ colors: ['transparent', 'transparent'], // takes an array which will be repeated on columns
+ opacity: 0.2
+ },
+ borderColor: '#f1f1f1'
+ },
+ markers: {
+ style: 'inverted',
+ size: 6
+ },
+ xaxis: {
+ categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
+ title: {
+ text: 'Month'
+ }
+ },
+ yaxis: {
+ title: {
+ text: 'Temperature'
+ },
+ min: 5,
+ max: 40
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'right',
+ floating: true,
+ offsetY: -25,
+ offsetX: -5
+ },
+ responsive: [{
+ breakpoint: 600,
+ options: {
+ chart: {
+ toolbar: {
+ show: false
+ }
+ },
+ legend: {
+ show: false
+ },
+ }
+ }]
+ }
+
+ var chart = new ApexCharts(
+ document.querySelector("#line_chart_datalabel"),
+ options
+ );
+ chart.render();
+}
+
+// Dashed line chart
+var linechartDashedColors = getChartColorsArray("line_chart_dashed");
+if (linechartDashedColors) {
+ var options = {
+ chart: {
+ height: 380,
+ type: 'line',
+ zoom: {
+ enabled: false
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ colors: linechartDashedColors,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: [3, 4, 3],
+ curve: 'straight',
+ dashArray: [0, 8, 5]
+ },
+ series: [{
+ name: "Session Duration",
+ data: [45, 52, 38, 24, 33, 26, 21, 20, 6, 8, 15, 10]
+ },
+ {
+ name: "Page Views",
+ data: [36, 42, 60, 42, 13, 18, 29, 37, 36, 51, 32, 35]
+ },
+ {
+ name: 'Total Visits',
+ data: [89, 56, 74, 98, 72, 38, 64, 46, 84, 58, 46, 49]
+ }
+ ],
+ title: {
+ text: 'Page Statistics',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ markers: {
+ size: 0,
+
+ hover: {
+ sizeOffset: 6
+ }
+ },
+ xaxis: {
+ categories: ['01 Jan', '02 Jan', '03 Jan', '04 Jan', '05 Jan', '06 Jan', '07 Jan', '08 Jan', '09 Jan',
+ '10 Jan', '11 Jan', '12 Jan'
+ ],
+ },
+ tooltip: {
+ y: [{
+ title: {
+ formatter: function(val) {
+ return val + " (mins)"
+ }
+ }
+ }, {
+ title: {
+ formatter: function(val) {
+ return val + " per session"
+ }
+ }
+ }, {
+ title: {
+ formatter: function(val) {
+ return val;
+ }
+ }
+ }]
+ },
+ grid: {
+ borderColor: '#f1f1f1',
+ }
+ }
+
+ var chart = new ApexCharts(
+ document.querySelector("#line_chart_dashed"),
+ options
+ );
+
+ chart.render();
+}
+
+
+// Line with Annotations
+
+var linechartannotationsColors = getChartColorsArray("line_chart_annotations");
+if (linechartannotationsColors) {
+ var options = {
+ series: [{
+ data: series.monthDataSeries1.prices
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ id: 'areachart-2',
+ toolbar: {
+ show: false,
+ }
+ },
+ annotations: {
+ yaxis: [{
+ y: 8200,
+ borderColor: '#038edc',
+ label: {
+ borderColor: '#038edc',
+ style: {
+ color: '#fff',
+ background: '#038edc',
+ },
+ text: 'Support',
+ }
+ }, {
+ y: 8600,
+ y2: 9000,
+ borderColor: '#f7cc53',
+ fillColor: '#f7cc53',
+ opacity: 0.2,
+ label: {
+ borderColor: '#f7cc53',
+ style: {
+ fontSize: '10px',
+ color: '#000',
+ background: '#f7cc53',
+ },
+ text: 'Y-axis range',
+ }
+ }],
+ xaxis: [{
+ x: new Date('23 Nov 2017').getTime(),
+ strokeDashArray: 0,
+ borderColor: '#564ab1',
+ label: {
+ borderColor: '#564ab1',
+ style: {
+ color: '#fff',
+ background: '#564ab1',
+ },
+ text: 'Anno Test',
+ }
+ }, {
+ x: new Date('26 Nov 2017').getTime(),
+ x2: new Date('28 Nov 2017').getTime(),
+ fillColor: '#51d28c',
+ opacity: 0.4,
+ label: {
+ borderColor: '#000',
+ style: {
+ fontSize: '10px',
+ color: '#fff',
+ background: '#000',
+ },
+ offsetY: -10,
+ text: 'X-axis range',
+ }
+ }],
+ points: [{
+ x: new Date('01 Dec 2017').getTime(),
+ y: 8607.55,
+ marker: {
+ size: 8,
+ fillColor: '#fff',
+ strokeColor: 'red',
+ radius: 2,
+ cssClass: 'apexcharts-custom-class'
+ },
+ label: {
+ borderColor: '#f34e4e',
+ offsetY: 0,
+ style: {
+ color: '#fff',
+ background: '#f34e4e',
+ },
+
+ text: 'Point Annotation',
+ }
+ }, {
+ x: new Date('08 Dec 2017').getTime(),
+ y: 9340.85,
+ marker: {
+ size: 0
+ },
+ image: {
+ path: '../build/images/logo-sm.png',
+ width: 40,
+ height: 40
+ }
+ }]
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight'
+ },
+ colors: linechartannotationsColors,
+ grid: {
+ padding: {
+ right: 30,
+ left: 20
+ }
+ },
+ title: {
+ text: 'Line with Annotations',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ labels: series.monthDataSeries1.dates,
+ xaxis: {
+ type: 'datetime',
+ },
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_annotations"), options);
+ chart.render();
+}
+
+
+
+// Brush Chart Generate series
+
+function generateDayWiseTimeSeries(baseval, count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var x = baseval;
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ series.push([x, y]);
+ baseval += 86400000;
+ i++;
+ }
+ return series;
+}
+
+var data = generateDayWiseTimeSeries(new Date('11 Feb 2017').getTime(), 185, {
+ min: 30,
+ max: 90
+})
+
+// Brush Chart
+
+var brushchartLine2Colors = getChartColorsArray("brushchart_line2");
+if (brushchartLine2Colors) {
+ var options = {
+ series: [{
+ data: data
+ }],
+ chart: {
+ id: 'chart2',
+ type: 'line',
+ height: 220,
+ toolbar: {
+ autoSelected: 'pan',
+ show: false
+ }
+ },
+ colors: brushchartLine2Colors,
+ stroke: {
+ width: 3
+ },
+ dataLabels: {
+ enabled: false
+ },
+ fill: {
+ opacity: 1,
+ },
+ markers: {
+ size: 0
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#brushchart_line2"), options);
+ chart.render();
+}
+
+var brushchartLineColors = getChartColorsArray("brushchart_line");
+if (brushchartLineColors) {
+ var optionsLine = {
+ series: [{
+ data: data
+ }],
+ chart: {
+ id: 'chart1',
+ height: 130,
+ type: 'area',
+ brush: {
+ target: 'chart2',
+ enabled: true
+ },
+ selection: {
+ enabled: true,
+ xaxis: {
+ min: new Date('19 Jun 2017').getTime(),
+ max: new Date('14 Aug 2017').getTime()
+ }
+ },
+ },
+ colors: brushchartLineColors,
+ fill: {
+ type: 'gradient',
+ gradient: {
+ opacityFrom: 0.91,
+ opacityTo: 0.1,
+ }
+ },
+ xaxis: {
+ type: 'datetime',
+ tooltip: {
+ enabled: false
+ }
+ },
+ yaxis: {
+ tickAmount: 2
+ }
+ };
+
+ var chartLine = new ApexCharts(document.querySelector("#brushchart_line"), optionsLine);
+ chartLine.render();
+}
+
+// Stepline Charts
+var steplineChartColors = getChartColorsArray("line_chart_stepline");
+if (steplineChartColors) {
+ var options = {
+ series: [{
+ data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58]
+ }],
+ chart: {
+ type: 'line',
+ height: 350,
+ toolbar: {
+ show: false
+ },
+ },
+ stroke: {
+ curve: 'stepline',
+ },
+ dataLabels: {
+ enabled: false
+ },
+ title: {
+ text: 'Stepline Chart',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ markers: {
+ hover: {
+ sizeOffset: 4
+ }
+ },
+ colors: steplineChartColors
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_stepline"), options);
+ chart.render();
+}
+
+// Gradient Line
+var lineChartGradientColors = getChartColorsArray("line_chart_gradient");
+if (lineChartGradientColors) {
+ var options = {
+ series: [{
+ name: 'Likes',
+ data: [4, 3, 10, 9, 29, 19, 22, 9, 12, 7, 19, 5, 13, 9, 17, 2, 7, 5]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ toolbar: {
+ show: false
+ },
+ },
+ stroke: {
+ width: 7,
+ curve: 'smooth'
+ },
+ xaxis: {
+ type: 'datetime',
+ categories: ['1/11/2001', '2/11/2001', '3/11/2001', '4/11/2001', '5/11/2001', '6/11/2001', '7/11/2001', '8/11/2001', '9/11/2001', '10/11/2001', '11/11/2001', '12/11/2001', '1/11/2002', '2/11/2002', '3/11/2002', '4/11/2002', '5/11/2002', '6/11/2002'],
+ tickAmount: 10,
+ },
+ title: {
+ text: 'Social Media',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'dark',
+ gradientToColors: lineChartGradientColors,
+ shadeIntensity: 1,
+ type: 'horizontal',
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 100, 100, 100]
+ },
+ },
+ markers: {
+ size: 4,
+ colors: ["#038edc"],
+ strokeColors: "#fff",
+ strokeWidth: 2,
+ hover: {
+ size: 7,
+ }
+ },
+ yaxis: {
+ min: -10,
+ max: 40,
+ title: {
+ text: 'Engagement',
+ },
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_gradient"), options);
+ chart.render();
+}
+
+// Missing Data
+var linechartMissingDataColors = getChartColorsArray("line_chart_missing_data");
+if (linechartMissingDataColors) {
+ var options = {
+ series: [{
+ name: 'Peter',
+ data: [5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9]
+ }, {
+ name: 'Johnny',
+ data: [10, 15, null, 12, null, 10, 12, 15, null, null, 12, null, 14, null, null, null]
+ }, {
+ name: 'David',
+ data: [null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ zoom: {
+ enabled: false
+ },
+ animations: {
+ enabled: false
+ }
+ },
+ stroke: {
+ width: [5, 5, 4],
+ curve: 'straight'
+ },
+ labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
+ title: {
+ text: 'Missing data (null values)',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {},
+ colors: linechartMissingDataColors
+ };
+
+ var chart = new ApexCharts(document.querySelector("#line_chart_missing_data"), options);
+ chart.render();
+}
+
+// Realtime Charts
+
+var lastDate = 0;
+var data = [];
+var TICKINTERVAL = 86400000;
+var XAXISRANGE = 777600000;
+
+function getDayWiseTimeSeries(baseval, count, yrange) {
+ var i = 0;
+ while (i < count) {
+ var x = baseval;
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ data.push({
+ 'x': x,
+ 'y': y
+ });
+ lastDate = baseval
+ baseval += TICKINTERVAL;
+ i++;
+ }
+}
+
+getDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 10, {
+ min: 10,
+ max: 90
+})
+
+function getNewSeries(baseval, yrange) {
+ var newDate = baseval + TICKINTERVAL;
+ lastDate = newDate
+
+ for (var i = 0; i < data.length - 10; i++) {
+ // IMPORTANT
+ // we reset the x and y of the data which is out of drawing area
+ // to prevent memory leaks
+ data[i].x = newDate - XAXISRANGE - TICKINTERVAL
+ data[i].y = 0
+ }
+
+ data.push({
+ x: newDate,
+ y: Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min
+ })
+}
+
+function resetData() {
+ // Alternatively, you can also reset the data at certain intervals to prevent creating a huge series
+ data = data.slice(data.length - 10, data.length);
+}
+
+
+// Realtime Charts
+
+var linechartrealtimeColors = getChartColorsArray("line_chart_realtime");
+if (linechartrealtimeColors) {
+ var options = {
+ series: [{
+ data: data.slice()
+ }],
+ chart: {
+ id: 'realtime',
+ height: 350,
+ type: 'line',
+ animations: {
+ enabled: true,
+ easing: 'linear',
+ dynamicAnimation: {
+ speed: 1000
+ }
+ },
+ toolbar: {
+ show: false
+ },
+ zoom: {
+ enabled: false
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'smooth'
+ },
+ title: {
+ text: 'Dynamic Updating Chart',
+ align: 'left',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ markers: {
+ size: 0
+ },
+ colors: linechartrealtimeColors,
+ xaxis: {
+ type: 'datetime',
+ range: XAXISRANGE,
+ },
+ yaxis: {
+ max: 100
+ },
+ legend: {
+ show: false
+ },
+ };
+
+ var charts = new ApexCharts(document.querySelector("#line_chart_realtime"), options);
+ charts.render();
+}
+
+
+window.setInterval(function () {
+ getNewSeries(lastDate, {
+ min: 10,
+ max: 90
+ })
+
+ charts.updateSeries([{
+ data: data
+ }])
+}, 1000)
+
+
+
+// Syncing Charts
+
+function generateDayWiseTimeSeriesline(baseval, count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var x = baseval;
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ series.push([x, y]);
+ baseval += 86400000;
+ i++;
+ }
+ return series;
+}
+
+var chartSyncingLine = getChartColorsArray("chart-syncing-line");
+if (chartSyncingLine) {
+ var optionsLine = {
+ series: [{
+ data: generateDayWiseTimeSeriesline(new Date('11 Feb 2017').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ }],
+ chart: {
+ id: 'fb',
+ group: 'social',
+ type: 'line',
+ height: 160,
+ toolbar: {
+ show: false
+ },
+ },
+ colors: chartSyncingLine,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight',
+ width: 3,
+ },
+ toolbar: {
+ tools: {
+ selection: false
+ }
+ },
+ markers: {
+ size: 4,
+ hover: {
+ size: 6
+ }
+ },
+ tooltip: {
+ followCursor: false,
+ x: {
+ show: false
+ },
+ marker: {
+ show: false
+ },
+ y: {
+ title: {
+ formatter: function () {
+ return ''
+ }
+ }
+ }
+ },
+ grid: {
+ clipMarkers: false
+ },
+ yaxis: {
+ tickAmount: 2
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+ var chartLine = new ApexCharts(document.querySelector("#chart-syncing-line"), optionsLine);
+ chartLine.render();
+}
+
+var chartSyncingLine2 = getChartColorsArray("chart-syncing-line2");
+if (chartSyncingLine2) {
+ var optionsLine2 = {
+ series: [{
+ data: generateDayWiseTimeSeriesline(new Date('11 Feb 2017').getTime(), 20, {
+ min: 10,
+ max: 30
+ })
+ }],
+ chart: {
+ id: 'tw',
+ group: 'social',
+ type: 'line',
+ height: 160,
+ toolbar: {
+ show: false
+ },
+ },
+ colors: chartSyncingLine2,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight',
+ width: 3,
+ },
+ toolbar: {
+ tools: {
+ selection: false
+ }
+ },
+ markers: {
+ size: 4,
+ hover: {
+ size: 6
+ }
+ },
+ tooltip: {
+ followCursor: false,
+ x: {
+ show: false
+ },
+ marker: {
+ show: false
+ },
+ y: {
+ title: {
+ formatter: function () {
+ return ''
+ }
+ }
+ }
+ },
+ grid: {
+ clipMarkers: false
+ },
+ yaxis: {
+ tickAmount: 2
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+ var chartLine2 = new ApexCharts(document.querySelector("#chart-syncing-line2"), optionsLine2);
+ chartLine2.render();
+}
+
+var chartSyncingArea = getChartColorsArray("chart-syncing-area");
+if (chartSyncingArea) {
+ var optionsArea = {
+ series: [{
+ data: generateDayWiseTimeSeriesline(new Date('11 Feb 2017').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ }],
+ chart: {
+ id: 'yt',
+ group: 'social',
+ type: 'area',
+ height: 160,
+ toolbar: {
+ show: false
+ },
+ },
+ colors: chartSyncingArea,
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ curve: 'straight',
+ width: 3,
+ },
+ toolbar: {
+ tools: {
+ selection: false
+ }
+ },
+ markers: {
+ size: 4,
+ hover: {
+ size: 6
+ }
+ },
+ tooltip: {
+ followCursor: false,
+ x: {
+ show: false
+ },
+ marker: {
+ show: false
+ },
+ y: {
+ title: {
+ formatter: function () {
+ return ''
+ }
+ }
+ }
+ },
+ grid: {
+ clipMarkers: false
+ },
+ yaxis: {
+ tickAmount: 2
+ },
+ xaxis: {
+ type: 'datetime'
+ }
+ };
+ var chartArea = new ApexCharts(document.querySelector("#chart-syncing-area"), optionsArea);
+ chartArea.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-mixed.init.js b/public/build/js/pages/apexcharts-mixed.init.js
new file mode 100644
index 0000000..ae51014
--- /dev/null
+++ b/public/build/js/pages/apexcharts-mixed.init.js
@@ -0,0 +1,370 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Mixed Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Mixed - Line Column Chart
+var chartLineColumnColors = getChartColorsArray("line_column_chart");
+if(chartLineColumnColors){
+var options = {
+ series: [{
+ name: 'Website Blog',
+ type: 'column',
+ data: [440, 505, 414, 671, 227, 413, 201, 352, 752, 320, 257, 160]
+ }, {
+ name: 'Social Media',
+ type: 'line',
+ data: [23, 42, 35, 27, 43, 22, 17, 31, 22, 22, 12, 16]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ toolbar: {
+ show: false,
+ }
+ },
+ stroke: {
+ width: [0, 4]
+ },
+ title: {
+ text: 'Traffic Sources',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ dataLabels: {
+ enabled: true,
+ enabledOnSeries: [1]
+ },
+ labels: ['01 Jan 2001', '02 Jan 2001', '03 Jan 2001', '04 Jan 2001', '05 Jan 2001', '06 Jan 2001', '07 Jan 2001', '08 Jan 2001', '09 Jan 2001', '10 Jan 2001', '11 Jan 2001', '12 Jan 2001'],
+ xaxis: {
+ type: 'datetime'
+ },
+ yaxis: [{
+ title: {
+ text: 'Website Blog',
+ style: {
+ fontWeight: 500,
+ },
+ },
+
+ }, {
+ opposite: true,
+ title: {
+ text: 'Social Media',
+ style: {
+ fontWeight: 500,
+ },
+ }
+ }],
+ colors: chartLineColumnColors
+};
+
+var chart = new ApexCharts(document.querySelector("#line_column_chart"), options);
+chart.render();
+}
+
+// Multiple Y-Axis Charts
+var chartMultiColors = getChartColorsArray("multi_chart");
+if(chartMultiColors){
+var options = {
+ series: [{
+ name: 'Income',
+ type: 'column',
+ data: [1.4, 2, 2.5, 1.5, 2.5, 2.8, 3.8, 4.6]
+ }, {
+ name: 'Cashflow',
+ type: 'column',
+ data: [1.1, 3, 3.1, 4, 4.1, 4.9, 6.5, 8.5]
+ }, {
+ name: 'Revenue',
+ type: 'line',
+ data: [20, 29, 37, 36, 44, 45, 50, 58]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ stacked: false,
+ toolbar: {
+ show: false,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ stroke: {
+ width: [1, 1, 4]
+ },
+ title: {
+ text: 'XYZ - Stock Analysis (2009 - 2016)',
+ align: 'left',
+ offsetX: 110,
+ style: {
+ fontWeight: 500,
+ },
+ },
+ xaxis: {
+ categories: [2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016],
+ },
+ yaxis: [{
+ axisTicks: {
+ show: true,
+ },
+ axisBorder: {
+ show: true,
+ color: '#038edc'
+ },
+ labels: {
+ style: {
+ colors: '#038edc',
+ }
+ },
+ title: {
+ text: "Income (thousand crores)",
+ style: {
+ color: '#038edc',
+ fontWeight: 600
+ }
+ },
+ tooltip: {
+ enabled: true
+ }
+ },
+ {
+ seriesName: 'Income',
+ opposite: true,
+ axisTicks: {
+ show: true,
+ },
+ axisBorder: {
+ show: true,
+ color: '#038edc'
+ },
+ labels: {
+ style: {
+ colors: '#038edc',
+ }
+ },
+ title: {
+ text: "Operating Cashflow (thousand crores)",
+ style: {
+ color: '#038edc',
+ fontWeight: 600
+ }
+ },
+ },
+ {
+ seriesName: 'Revenue',
+ opposite: true,
+ axisTicks: {
+ show: true,
+ },
+ axisBorder: {
+ show: true,
+ color: '#51d28c'
+ },
+ labels: {
+ style: {
+ colors: '#51d28c',
+ },
+ },
+ title: {
+ text: "Revenue (thousand crores)",
+ style: {
+ color: '#51d28c',
+ fontWeight: 600
+ }
+ }
+ },
+ ],
+ tooltip: {
+ fixed: {
+ enabled: true,
+ position: 'topLeft', // topRight, topLeft, bottomRight, bottomLeft
+ offsetY: 30,
+ offsetX: 60
+ },
+ },
+ legend: {
+ horizontalAlign: 'left',
+ offsetX: 40
+ },
+ colors: chartMultiColors
+};
+
+var chart = new ApexCharts(document.querySelector("#multi_chart"), options);
+chart.render();
+}
+
+// Line & Area Charts
+var chartLineAreaColors = getChartColorsArray("line_area_chart");
+if(chartLineAreaColors){
+var options = {
+ series: [{
+ name: 'TEAM A',
+ type: 'area',
+ data: [44, 55, 31, 47, 31, 43, 26, 41, 31, 47, 33]
+ }, {
+ name: 'TEAM B',
+ type: 'line',
+ data: [55, 69, 45, 61, 43, 54, 37, 52, 44, 61, 43]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ toolbar: {
+ show: false,
+ }
+ },
+ stroke: {
+ curve: 'smooth'
+ },
+ fill: {
+ type: 'solid',
+ opacity: [0.35, 1],
+ },
+ labels: ['Dec 01', 'Dec 02', 'Dec 03', 'Dec 04', 'Dec 05', 'Dec 06', 'Dec 07', 'Dec 08', 'Dec 09 ', 'Dec 10', 'Dec 11'],
+ markers: {
+ size: 0
+ },
+ yaxis: [{
+ title: {
+ text: 'Series A',
+ },
+ },
+ {
+ opposite: true,
+ title: {
+ text: 'Series B',
+ },
+ },
+ ],
+ tooltip: {
+ shared: true,
+ intersect: false,
+ y: {
+ formatter: function (y) {
+ if (typeof y !== "undefined") {
+ return y.toFixed(0) + " points";
+ }
+ return y;
+ }
+ }
+ },
+ colors: chartLineAreaColors
+};
+
+var chart = new ApexCharts(document.querySelector("#line_area_chart"), options);
+chart.render();
+}
+
+// Line Cloumn & Area Charts
+
+var chartLineAreaMultiColors = getChartColorsArray("line_area_charts");
+if(chartLineAreaMultiColors){
+var options = {
+ series: [{
+ name: 'TEAM A',
+ type: 'column',
+ data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]
+ }, {
+ name: 'TEAM B',
+ type: 'area',
+ data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]
+ }, {
+ name: 'TEAM C',
+ type: 'line',
+ data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]
+ }],
+ chart: {
+ height: 350,
+ type: 'line',
+ stacked: false,
+ toolbar: {
+ show: false,
+ }
+ },
+ stroke: {
+ width: [0, 2, 5],
+ curve: 'smooth'
+ },
+ plotOptions: {
+ bar: {
+ columnWidth: '50%'
+ }
+ },
+
+ fill: {
+ opacity: [0.85, 0.25, 1],
+ gradient: {
+ inverseColors: false,
+ shade: 'light',
+ type: "vertical",
+ opacityFrom: 0.85,
+ opacityTo: 0.55,
+ stops: [0, 100, 100, 100]
+ }
+ },
+ labels: ['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003',
+ '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003'
+ ],
+ markers: {
+ size: 0
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ yaxis: {
+ title: {
+ text: 'Points',
+ },
+ min: 0
+ },
+ tooltip: {
+ shared: true,
+ intersect: false,
+ y: {
+ formatter: function (y) {
+ if (typeof y !== "undefined") {
+ return y.toFixed(0) + " points";
+ }
+ return y;
+
+ }
+ }
+ },
+ colors: chartLineAreaMultiColors
+};
+
+var chart = new ApexCharts(document.querySelector("#line_area_charts"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-pie.init.js b/public/build/js/pages/apexcharts-pie.init.js
new file mode 100644
index 0000000..575d9b8
--- /dev/null
+++ b/public/build/js/pages/apexcharts-pie.init.js
@@ -0,0 +1,348 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Pie Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Simple Pie Charts
+
+var chartPieBasicColors = getChartColorsArray("simple_pie_chart");
+if(chartPieBasicColors){
+var options = {
+ series: [44, 55, 13, 43, 22],
+ chart: {
+ height: 300,
+ type: 'pie',
+ },
+ labels: ['Team A', 'Team B', 'Team C', 'Team D', 'Team E'],
+ legend: {
+ position: 'bottom'
+ },
+ dataLabels: {
+ dropShadow: {
+ enabled: false,
+ }
+ },
+ colors: chartPieBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#simple_pie_chart"), options);
+chart.render();
+}
+
+// Simple Donut Charts
+var chartDonutBasicColors = getChartColorsArray("simple_dount_chart");
+if(chartDonutBasicColors){
+var options = {
+ series: [44, 55, 41, 17, 15],
+ chart: {
+ height: 300,
+ type: 'donut',
+ },
+ legend: {
+ position: 'bottom'
+ },
+ dataLabels: {
+ dropShadow: {
+ enabled: false,
+ }
+ },
+ colors: chartDonutBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#simple_dount_chart"), options);
+chart.render();
+}
+
+// Updating Donut Charts
+var chartDonutupdatingColors = getChartColorsArray("updating_donut_chart");
+if(chartDonutupdatingColors){
+var options = {
+ series: [44, 55, 13, 33],
+ chart: {
+ height: 280,
+ type: 'donut',
+ },
+ dataLabels: {
+ enabled: false
+ },
+ legend: {
+ position: 'bottom'
+ },
+ colors: chartDonutupdatingColors
+};
+
+var upadatedonutchart = new ApexCharts(document.querySelector("#updating_donut_chart"), options);
+upadatedonutchart.render();
+
+function appendData() {
+ var arr = upadatedonutchart.w.globals.series.slice()
+ arr.push(Math.floor(Math.random() * (100 - 1 + 1)) + 1)
+ return arr;
+}
+
+function removeData() {
+ var arr = upadatedonutchart.w.globals.series.slice()
+ arr.pop()
+ return arr;
+}
+
+function randomize() {
+ return upadatedonutchart.w.globals.series.map(function () {
+ return Math.floor(Math.random() * (100 - 1 + 1)) + 1
+ })
+}
+
+function reset() {
+ return options.series
+}
+
+document.querySelector("#randomize").addEventListener("click", function () {
+ upadatedonutchart.updateSeries(randomize())
+})
+
+document.querySelector("#add").addEventListener("click", function () {
+ upadatedonutchart.updateSeries(appendData())
+})
+
+document.querySelector("#remove").addEventListener("click", function () {
+ upadatedonutchart.updateSeries(removeData())
+})
+
+document.querySelector("#reset").addEventListener("click", function () {
+ upadatedonutchart.updateSeries(reset())
+})
+}
+
+// Gradient Donut Chart
+var chartPieGradientColors = getChartColorsArray("gradient_chart");
+if(chartPieGradientColors){
+var options = {
+ series: [44, 55, 41, 17, 15],
+ chart: {
+ height: 300,
+ type: 'donut',
+ },
+ plotOptions: {
+ pie: {
+ startAngle: -90,
+ endAngle: 270
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ fill: {
+ type: 'gradient',
+ },
+ legend: {
+ formatter: function (val, opts) {
+ return val + " - " + opts.w.globals.series[opts.seriesIndex]
+ }
+ },
+ title: {
+ text: 'Gradient Donut with custom Start-angle',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ legend: {
+ position: 'bottom'
+ },
+ colors: chartPieGradientColors
+};
+
+var chart = new ApexCharts(document.querySelector("#gradient_chart"), options);
+chart.render();
+}
+
+// Pattern Donut chart
+var chartPiePatternColors = getChartColorsArray("pattern_chart");
+if(chartPiePatternColors){
+var options = {
+ series: [44, 55, 41, 17, 15],
+ chart: {
+ height: 300,
+ type: 'donut',
+ dropShadow: {
+ enabled: true,
+ color: '#111',
+ top: -1,
+ left: 3,
+ blur: 3,
+ opacity: 0.2
+ }
+ },
+ stroke: {
+ width: 0,
+ },
+ plotOptions: {
+ pie: {
+ donut: {
+ labels: {
+ show: true,
+ total: {
+ showAlways: true,
+ show: true
+ }
+ }
+ }
+ }
+ },
+ labels: ["Comedy", "Action", "SciFi", "Drama", "Horror"],
+ dataLabels: {
+ dropShadow: {
+ blur: 3,
+ opacity: 0.8
+ }
+ },
+ fill: {
+ type: 'pattern',
+ opacity: 1,
+ pattern: {
+ enabled: true,
+ style: ['verticalLines', 'squares', 'horizontalLines', 'circles', 'slantedLines'],
+ },
+ },
+ states: {
+ hover: {
+ filter: 'none'
+ }
+ },
+ theme: {
+ palette: 'palette2'
+ },
+ title: {
+ text: "Favourite Movie Type",
+ style: {
+ fontWeight: 500,
+ },
+ },
+ legend: {
+ position: 'bottom'
+ },
+ colors: chartPiePatternColors
+};
+
+var chart = new ApexCharts(document.querySelector("#pattern_chart"), options);
+chart.render();
+}
+
+// Pie Chart with Image Fill
+var chartPieImageColors = getChartColorsArray("image_pie_chart");
+if(chartPieImageColors){
+var options = {
+ series: [44, 33, 54, 45],
+ chart: {
+ height: 300,
+ type: 'pie',
+ },
+ colors: ['#93C3EE', '#E5C6A0', '#669DB5', '#94A74A'],
+ fill: {
+ type: 'image',
+ opacity: 0.85,
+ image: {
+ src: ['../build/images/small/img-1.jpg', '../build/images/small/img-2.jpg', '../build/images/small/img-3.jpg', '../build/images/small/img-4.jpg'],
+ width: 25,
+ imagedHeight: 25
+ },
+ },
+ stroke: {
+ width: 4
+ },
+ dataLabels: {
+ enabled: true,
+ style: {
+ colors: ['#111']
+ },
+ background: {
+ enabled: true,
+ foreColor: '#fff',
+ borderWidth: 0
+ }
+ },
+ legend: {
+ position: 'bottom'
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#image_pie_chart"), options);
+chart.render();
+}
+
+// monochrome_pie_chart
+var options = {
+ series: [25, 15, 44, 55, 41, 17],
+ chart: {
+ height: 300,
+ type: 'pie',
+ },
+ labels: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
+ theme: {
+ monochrome: {
+ enabled: true,
+ color: '#405189',
+ shadeTo: 'light',
+ shadeIntensity: 0.6
+ }
+ },
+
+ plotOptions: {
+ pie: {
+ dataLabels: {
+ offset: -5
+ }
+ }
+ },
+ title: {
+ text: "Monochrome Pie",
+ style: {
+ fontWeight: 500,
+ },
+ },
+ dataLabels: {
+ formatter: function (val, opts) {
+ var name = opts.w.globals.labels[opts.seriesIndex];
+ return [name, val.toFixed(1) + '%'];
+ },
+ dropShadow: {
+ enabled: false,
+ }
+ },
+ legend: {
+ show: false
+ }
+};
+
+if(document.querySelector("#monochrome_pie_chart")){
+ var chart = new ApexCharts(document.querySelector("#monochrome_pie_chart"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-polararea.init.js b/public/build/js/pages/apexcharts-polararea.init.js
new file mode 100644
index 0000000..f15f377
--- /dev/null
+++ b/public/build/js/pages/apexcharts-polararea.init.js
@@ -0,0 +1,108 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Polar Area Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic Polar Area
+var chartPolarareaBasicColors = getChartColorsArray("basic_polar_area");
+if(chartPolarareaBasicColors){
+var options = {
+ series: [14, 23, 21, 17, 15, 10, 12, 17, 21],
+ chart: {
+ type: 'polarArea',
+ width: 400,
+ },
+ labels: ['Series A', 'Series B', 'Series C', 'Series D', 'Series E', 'Series F', 'Series G', 'Series H', 'Series I'],
+ stroke: {
+ colors: ['#fff']
+ },
+ fill: {
+ opacity: 0.8
+ },
+
+ legend: {
+ position: 'bottom'
+ },
+ colors: chartPolarareaBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_polar_area"), options);
+chart.render();
+}
+// Polar-Area Monochrome Charts
+
+var options = {
+ series: [42, 47, 52, 58, 65],
+ chart: {
+ width: 400,
+ type: 'polarArea'
+ },
+ labels: ['Rose A', 'Rose B', 'Rose C', 'Rose D', 'Rose E'],
+ fill: {
+ opacity: 1
+ },
+ stroke: {
+ width: 1,
+ colors: undefined
+ },
+ yaxis: {
+ show: false
+ },
+ legend: {
+ position: 'bottom'
+ },
+ plotOptions: {
+ polarArea: {
+ rings: {
+ strokeWidth: 0
+ },
+ spokes: {
+ strokeWidth: 0
+ },
+ }
+ },
+ theme: {
+ mode: 'light',
+ palette: 'palette1',
+ monochrome: {
+ enabled: true,
+ shadeTo: 'light',
+ color: '#405189',
+ shadeIntensity: 0.6
+ }
+ }
+};
+
+if(document.querySelector("#monochrome_polar_area")){
+ var chart = new ApexCharts(document.querySelector("#monochrome_polar_area"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-radar.init.js b/public/build/js/pages/apexcharts-radar.init.js
new file mode 100644
index 0000000..2a1a3d1
--- /dev/null
+++ b/public/build/js/pages/apexcharts-radar.init.js
@@ -0,0 +1,171 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.comom
+File: Radar Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic Radar Chart
+var chartRadarBasicColors = getChartColorsArray("basic_radar");
+if(chartRadarBasicColors){
+var options = {
+ series: [{
+ name: 'Series 1',
+ data: [80, 50, 30, 40, 100, 20],
+ }],
+ chart: {
+ height: 350,
+ type: 'radar',
+ toolbar: {
+ show: false
+ }
+ },
+ colors: chartRadarBasicColors,
+ xaxis: {
+ categories: ['January', 'February', 'March', 'April', 'May', 'June']
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_radar"), options);
+chart.render();
+}
+
+// Radar Chart - Multi series
+var chartRadarMultiColors = getChartColorsArray("multi_radar");
+if(chartRadarMultiColors){
+var options = {
+ series: [{
+ name: 'Series 1',
+ data: [80, 50, 30, 40, 100, 20],
+ },
+ {
+ name: 'Series 2',
+ data: [20, 30, 40, 80, 20, 80],
+ },
+ {
+ name: 'Series 3',
+ data: [44, 76, 78, 13, 43, 10],
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'radar',
+ dropShadow: {
+ enabled: true,
+ blur: 1,
+ left: 1,
+ top: 1
+ },
+ toolbar: {
+ show: false
+ },
+ },
+ stroke: {
+ width: 2
+ },
+ fill: {
+ opacity: 0.2
+ },
+ markers: {
+ size: 0
+ },
+ colors: chartRadarMultiColors,
+ xaxis: {
+ categories: ['2014', '2015', '2016', '2017', '2018', '2019']
+ }
+};
+var chart = new ApexCharts(document.querySelector("#multi_radar"), options);
+chart.render();
+}
+
+// Polygon - Radar Charts
+var chartRadarPolyradarColors = getChartColorsArray("polygon_radar");
+if(chartRadarPolyradarColors){
+var options = {
+ series: [{
+ name: 'Series 1',
+ data: [20, 100, 40, 30, 50, 80, 33],
+ }],
+ chart: {
+ height: 350,
+ type: 'radar',
+ toolbar: {
+ show: false
+ },
+ },
+ dataLabels: {
+ enabled: true
+ },
+ plotOptions: {
+ radar: {
+ size: 140,
+
+ }
+ },
+ title: {
+ text: 'Radar with Polygon Fill',
+ style: {
+ fontWeight: 500,
+ },
+ },
+ colors: chartRadarPolyradarColors,
+ markers: {
+ size: 4,
+ colors: ['#fff'],
+ strokeColor: '#f34e4e',
+ strokeWidth: 2,
+ },
+ tooltip: {
+ y: {
+ formatter: function (val) {
+ return val
+ }
+ }
+ },
+ xaxis: {
+ categories: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
+ },
+ yaxis: {
+ tickAmount: 7,
+ labels: {
+ formatter: function (val, i) {
+ if (i % 2 === 0) {
+ return val
+ } else {
+ return ''
+ }
+ }
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#polygon_radar"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-radialbar.init.js b/public/build/js/pages/apexcharts-radialbar.init.js
new file mode 100644
index 0000000..8c15c3b
--- /dev/null
+++ b/public/build/js/pages/apexcharts-radialbar.init.js
@@ -0,0 +1,399 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Radialbar Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Radialbar Charts
+var chartRadialbarBasicColors = getChartColorsArray("basic_radialbar");
+if(chartRadialbarBasicColors){
+var options = {
+ series: [70],
+ chart: {
+ height: 350,
+ type: 'radialBar',
+ },
+ plotOptions: {
+ radialBar: {
+ hollow: {
+ size: '70%',
+ }
+ },
+ },
+ labels: ['Cricket'],
+ colors: chartRadialbarBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_radialbar"), options);
+chart.render();
+}
+
+// Multi-Radial Bar
+var chartRadialbarMultipleColors = getChartColorsArray("multiple_radialbar");
+if(chartRadialbarMultipleColors){
+var options = {
+ series: [44, 55, 67, 83],
+ chart: {
+ height: 350,
+ type: 'radialBar',
+ },
+ plotOptions: {
+ radialBar: {
+ dataLabels: {
+ name: {
+ fontSize: '22px',
+ },
+ value: {
+ fontSize: '16px',
+ },
+ total: {
+ show: true,
+ label: 'Total',
+ formatter: function (w) {
+ return 249
+ }
+ }
+ }
+ }
+ },
+ labels: ['Apples', 'Oranges', 'Bananas', 'Berries'],
+ colors: chartRadialbarMultipleColors
+};
+
+var chart = new ApexCharts(document.querySelector("#multiple_radialbar"), options);
+chart.render();
+}
+
+// Circle Chart - Custom Angle
+var chartRadialbarCircleColors = getChartColorsArray("circle_radialbar");
+if(chartRadialbarCircleColors){
+var options = {
+ series: [76, 67, 61, 55],
+ chart: {
+ height: 350,
+ type: 'radialBar',
+ },
+ plotOptions: {
+ radialBar: {
+ offsetY: 0,
+ startAngle: 0,
+ endAngle: 270,
+ hollow: {
+ margin: 5,
+ size: '30%',
+ background: 'transparent',
+ image: undefined,
+ },
+ dataLabels: {
+ name: {
+ show: false,
+ },
+ value: {
+ show: false,
+ }
+ }
+ }
+ },
+ colors: chartRadialbarCircleColors,
+ labels: ['Vimeo', 'Messenger', 'Facebook', 'LinkedIn'],
+ legend: {
+ show: true,
+ floating: true,
+ fontSize: '16px',
+ position: 'left',
+ offsetX: 160,
+ offsetY: 15,
+ labels: {
+ useSeriesColors: true,
+ },
+ markers: {
+ size: 0
+ },
+ formatter: function (seriesName, opts) {
+ return seriesName + ": " + opts.w.globals.series[opts.seriesIndex]
+ },
+ itemMargin: {
+ vertical: 3
+ }
+ },
+ responsive: [{
+ breakpoint: 480,
+ options: {
+ legend: {
+ show: false
+ }
+ }
+ }]
+};
+var chart = new ApexCharts(document.querySelector("#circle_radialbar"), options);
+chart.render();
+}
+
+// Gradient Radialbar
+var chartRadialbarGradientColors = getChartColorsArray("gradient_radialbar");
+if(chartRadialbarGradientColors){
+var options = {
+ series: [75],
+ chart: {
+ height: 350,
+ type: 'radialBar',
+ toolbar: {
+ show: false
+ }
+ },
+ plotOptions: {
+ radialBar: {
+ startAngle: -135,
+ endAngle: 225,
+ hollow: {
+ margin: 0,
+ size: '70%',
+ image: undefined,
+ imageOffsetX: 0,
+ imageOffsetY: 0,
+ position: 'front',
+ },
+ track: {
+ strokeWidth: '67%',
+ margin: 0, // margin is in pixels
+
+ },
+
+ dataLabels: {
+ show: true,
+ name: {
+ offsetY: -10,
+ show: true,
+ color: '#888',
+ fontSize: '17px'
+ },
+ value: {
+ formatter: function (val) {
+ return parseInt(val);
+ },
+ color: '#111',
+ fontSize: '36px',
+ show: true,
+ }
+ }
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'dark',
+ type: 'horizontal',
+ shadeIntensity: 0.5,
+ gradientToColors: chartRadialbarGradientColors,
+ inverseColors: true,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 100]
+ }
+ },
+ stroke: {
+ lineCap: 'round'
+ },
+ labels: ['Percent'],
+};
+
+var chart = new ApexCharts(document.querySelector("#gradient_radialbar"), options);
+chart.render();
+}
+
+// Stroked Gauge
+var chartStorkeRadialbarColors = getChartColorsArray("stroked_radialbar");
+if(chartStorkeRadialbarColors){
+var options = {
+ series: [67],
+ chart: {
+ height: 326,
+ type: 'radialBar',
+ offsetY: -10
+ },
+ plotOptions: {
+ radialBar: {
+ startAngle: -135,
+ endAngle: 135,
+ dataLabels: {
+ name: {
+ fontSize: '16px',
+ color: undefined,
+ offsetY: 120
+ },
+ value: {
+ offsetY: 76,
+ fontSize: '22px',
+ color: undefined,
+ formatter: function (val) {
+ return val + "%";
+ }
+ }
+ }
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'dark',
+ shadeIntensity: 0.15,
+ inverseColors: false,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 50, 65, 91]
+ },
+ },
+ stroke: {
+ dashArray: 4
+ },
+ labels: ['Median Ratio'],
+ colors: chartStorkeRadialbarColors
+};
+
+var chart = new ApexCharts(document.querySelector("#stroked_radialbar"), options);
+chart.render();
+}
+
+
+// Radialbars with Image
+var chartStorkeRadialbarColors = getChartColorsArray("stroked_radialbar");
+if (chartStorkeRadialbarColors) {
+ var options = {
+ series: [67],
+ chart: {
+ height: 315,
+ type: 'radialBar',
+ },
+ plotOptions: {
+ radialBar: {
+ hollow: {
+ margin: 15,
+ size: '65%',
+ image: '../build/images/comingsoon.png',
+ imageWidth: 56,
+ imageHeight: 56,
+ imageClipped: false
+ },
+ dataLabels: {
+ name: {
+ show: false,
+ color: '#fff'
+ },
+ value: {
+ show: true,
+ color: '#333',
+ offsetY: 65,
+ fontSize: '22px'
+ }
+ }
+ }
+ },
+ fill: {
+ type: 'image',
+ image: {
+ src: ['../build/images/small/img-4.jpg'],
+ }
+ },
+ stroke: {
+ lineCap: 'round'
+ },
+ labels: ['Volatility'],
+ };
+
+ var chart = new ApexCharts(document.querySelector("#radialbar_with_img"), options);
+ chart.render();
+};
+
+
+// Semi Circle
+var chartSemiRadialbarColors = getChartColorsArray("semi_radialbar");
+if(chartSemiRadialbarColors){
+var options = {
+ series: [76],
+ chart: {
+ type: 'radialBar',
+ height: 350,
+ offsetY: -20,
+ sparkline: {
+ enabled: true
+ }
+ },
+ plotOptions: {
+ radialBar: {
+ startAngle: -90,
+ endAngle: 90,
+ track: {
+ background: "#e7e7e7",
+ strokeWidth: '97%',
+ margin: 5, // margin is in pixels
+ dropShadow: {
+ enabled: true,
+ top: 2,
+ left: 0,
+ color: '#999',
+ opacity: 1,
+ blur: 2
+ }
+ },
+ dataLabels: {
+ name: {
+ show: false
+ },
+ value: {
+ offsetY: -2,
+ fontSize: '22px'
+ }
+ }
+ }
+ },
+ grid: {
+ padding: {
+ top: -10
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'light',
+ shadeIntensity: 0.4,
+ inverseColors: false,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [0, 50, 53, 91]
+ },
+ },
+ labels: ['Average Results'],
+ colors: chartSemiRadialbarColors
+};
+
+var chart = new ApexCharts(document.querySelector("#semi_radialbar"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-scatter.init.js b/public/build/js/pages/apexcharts-scatter.init.js
new file mode 100644
index 0000000..086a7a9
--- /dev/null
+++ b/public/build/js/pages/apexcharts-scatter.init.js
@@ -0,0 +1,359 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Scatter Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic Scatter Charts
+var chartScatterBasicColors = getChartColorsArray("basic_scatter");
+if(chartScatterBasicColors){
+var options = {
+ series: [{
+ name: "SAMPLE A",
+ data: [
+ [16.4, 5.4],
+ [21.7, 2],
+ [25.4, 3],
+ [19, 2],
+ [10.9, 1],
+ [13.6, 3.2],
+ [10.9, 7.4],
+ [10.9, 0],
+ [10.9, 8.2],
+ [16.4, 0],
+ [16.4, 1.8],
+ [13.6, 0.3],
+ [13.6, 0],
+ [29.9, 0],
+ [27.1, 2.3],
+ [16.4, 0],
+ [13.6, 3.7],
+ [10.9, 5.2],
+ [16.4, 6.5],
+ [10.9, 0],
+ [24.5, 7.1],
+ [10.9, 0],
+ [8.1, 4.7],
+ [19, 0],
+ [21.7, 1.8],
+ [27.1, 0],
+ [24.5, 0],
+ [27.1, 0],
+ [29.9, 1.5],
+ [27.1, 0.8],
+ [22.1, 2]
+ ]
+ }, {
+ name: "SAMPLE B",
+ data: [
+ [36.4, 13.4],
+ [1.7, 11],
+ [5.4, 8],
+ [9, 17],
+ [1.9, 4],
+ [3.6, 12.2],
+ [1.9, 14.4],
+ [1.9, 9],
+ [1.9, 13.2],
+ [1.4, 7],
+ [6.4, 8.8],
+ [3.6, 4.3],
+ [1.6, 10],
+ [9.9, 2],
+ [7.1, 15],
+ [1.4, 0],
+ [3.6, 13.7],
+ [1.9, 15.2],
+ [6.4, 16.5],
+ [0.9, 10],
+ [4.5, 17.1],
+ [10.9, 10],
+ [0.1, 14.7],
+ [9, 10],
+ [12.7, 11.8],
+ [2.1, 10],
+ [2.5, 10],
+ [27.1, 10],
+ [2.9, 11.5],
+ [7.1, 10.8],
+ [2.1, 12]
+ ]
+ }, {
+ name: "SAMPLE C",
+ data: [
+ [21.7, 3],
+ [23.6, 3.5],
+ [24.6, 3],
+ [29.9, 3],
+ [21.7, 20],
+ [23, 2],
+ [10.9, 3],
+ [28, 4],
+ [27.1, 0.3],
+ [16.4, 4],
+ [13.6, 0],
+ [19, 5],
+ [22.4, 3],
+ [24.5, 3],
+ [32.6, 3],
+ [27.1, 4],
+ [29.6, 6],
+ [31.6, 8],
+ [21.6, 5],
+ [20.9, 4],
+ [22.4, 0],
+ [32.6, 10.3],
+ [29.7, 20.8],
+ [24.5, 0.8],
+ [21.4, 0],
+ [21.7, 6.9],
+ [28.6, 7.7],
+ [15.4, 0],
+ [18.1, 0],
+ [33.4, 0],
+ [16.4, 0]
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'scatter',
+ zoom: {
+ enabled: true,
+ type: 'xy'
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ xaxis: {
+ tickAmount: 10,
+ labels: {
+ formatter: function (val) {
+ return parseFloat(val).toFixed(1)
+ }
+ }
+ },
+ yaxis: {
+ tickAmount: 7
+ },
+ colors: chartScatterBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_scatter"), options);
+chart.render();
+}
+
+// Dtaetime - Scatter Charts
+
+function generateDayWiseTimeSeries(baseval, count, yrange) {
+ var i = 0;
+ var series = [];
+ while (i < count) {
+ var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
+
+ series.push([baseval, y]);
+ baseval += 86400000;
+ i++;
+ }
+ return series;
+}
+
+var chartScatterDateTimeColors = getChartColorsArray("datetime_scatter");
+if(chartScatterDateTimeColors){
+var options = {
+ series: [{
+ name: 'TEAM 1',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'TEAM 2',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 20, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'TEAM 3',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 30, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'TEAM 4',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 10, {
+ min: 10,
+ max: 60
+ })
+ },
+ {
+ name: 'TEAM 5',
+ data: generateDayWiseTimeSeries(new Date('11 Feb 2017 GMT').getTime(), 30, {
+ min: 10,
+ max: 60
+ })
+ },
+ ],
+ chart: {
+ height: 350,
+ type: 'scatter',
+ zoom: {
+ type: 'xy'
+ },
+ toolbar: {
+ show: false,
+ }
+ },
+ dataLabels: {
+ enabled: false
+ },
+ grid: {
+ xaxis: {
+ lines: {
+ show: true
+ }
+ },
+ yaxis: {
+ lines: {
+ show: true
+ }
+ },
+ },
+ xaxis: {
+ type: 'datetime',
+ },
+ yaxis: {
+ max: 70
+ },
+ colors: chartScatterDateTimeColors
+};
+
+var chart = new ApexCharts(document.querySelector("#datetime_scatter"), options);
+chart.render();
+}
+
+// Scatter - Images Charts
+var chartScatterImagesColors = getChartColorsArray("images_scatter");
+if(chartScatterImagesColors){
+var options = {
+ series: [{
+ name: 'User A',
+ data: [
+ [16.4, 5.4],
+ [21.7, 4],
+ [25.4, 3],
+ [19, 2],
+ [10.9, 1],
+ [13.6, 3.2],
+ [10.9, 7],
+ [10.9, 8.2],
+ [16.4, 4],
+ [13.6, 4.3],
+ [13.6, 12],
+ [29.9, 3],
+ [10.9, 5.2],
+ [16.4, 6.5],
+ [10.9, 8],
+ [24.5, 7.1],
+ [10.9, 7],
+ [8.1, 4.7],
+ ]
+ }, {
+ name: 'User B',
+ data: [
+ [6.4, 5.4],
+ [11.7, 4],
+ [15.4, 3],
+ [9, 2],
+ [10.9, 11],
+ [20.9, 7],
+ [12.9, 8.2],
+ [6.4, 14],
+ [11.6, 12]
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'scatter',
+ animations: {
+ enabled: false,
+ },
+ zoom: {
+ enabled: false,
+ },
+ toolbar: {
+ show: false
+ }
+ },
+ colors: chartScatterImagesColors,
+ xaxis: {
+ tickAmount: 10,
+ min: 0,
+ max: 40
+ },
+ yaxis: {
+ tickAmount: 7
+ },
+ markers: {
+ size: 20
+ },
+ fill: {
+ type: 'image',
+ opacity: 1,
+ image: {
+ src: ['../build/images/users/avatar-1.jpg', '../build/images/users/avatar-2.jpg'],
+ width: 40,
+ height: 40
+ }
+ },
+ legend: {
+ labels: {
+ useSeriesColors: true
+ },
+ markers: {
+ customHTML: [
+ function () {
+ return ''
+ },
+ function () {
+ return ''
+ }
+ ]
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#images_scatter"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-timeline.init.js b/public/build/js/pages/apexcharts-timeline.init.js
new file mode 100644
index 0000000..3008d8d
--- /dev/null
+++ b/public/build/js/pages/apexcharts-timeline.init.js
@@ -0,0 +1,640 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Timeline Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+
+// Basic Timeline Charts
+var chartTimelineBasicColors = getChartColorsArray("basic_timeline");
+if(chartTimelineBasicColors){
+var options = {
+ series: [{
+ data: [{
+ x: 'Code',
+ y: [
+ new Date('2019-03-02').getTime(),
+ new Date('2019-03-04').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-04').getTime(),
+ new Date('2019-03-08').getTime()
+ ]
+ },
+ {
+ x: 'Validation',
+ y: [
+ new Date('2019-03-08').getTime(),
+ new Date('2019-03-12').getTime()
+ ]
+ },
+ {
+ x: 'Deployment',
+ y: [
+ new Date('2019-03-12').getTime(),
+ new Date('2019-03-18').getTime()
+ ]
+ }
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'rangeBar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true
+ }
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ colors: chartTimelineBasicColors
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_timeline"), options);
+chart.render();
+}
+
+
+// Different Color For Each Bar
+var chartTimelineColors = getChartColorsArray("color_timeline");
+if(chartTimelineColors){
+var options = {
+ series: [{
+ data: [{
+ x: 'Analysis',
+ y: [
+ new Date('2019-02-27').getTime(),
+ new Date('2019-03-04').getTime()
+ ],
+ fillColor: chartTimelineColors[0]
+ },
+ {
+ x: 'Design',
+ y: [
+ new Date('2019-03-04').getTime(),
+ new Date('2019-03-08').getTime()
+ ],
+ fillColor: chartTimelineColors[1]
+ },
+ {
+ x: 'Coding',
+ y: [
+ new Date('2019-03-07').getTime(),
+ new Date('2019-03-10').getTime()
+ ],
+ fillColor: chartTimelineColors[2]
+ },
+ {
+ x: 'Testing',
+ y: [
+ new Date('2019-03-08').getTime(),
+ new Date('2019-03-12').getTime()
+ ],
+ fillColor: chartTimelineColors[3]
+ },
+ {
+ x: 'Deployment',
+ y: [
+ new Date('2019-03-12').getTime(),
+ new Date('2019-03-17').getTime()
+ ],
+ fillColor: chartTimelineColors[4]
+ }
+ ]
+ }],
+ chart: {
+ height: 350,
+ type: 'rangeBar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ distributed: true,
+ dataLabels: {
+ hideOverflowingLabels: false
+ }
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ formatter: function (val, opts) {
+ var label = opts.w.globals.labels[opts.dataPointIndex]
+ var a = moment(val[0])
+ var b = moment(val[1])
+ var diff = b.diff(a, 'days')
+ return label + ': ' + diff + (diff > 1 ? ' days' : ' day')
+ },
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ yaxis: {
+ show: true
+ },
+
+};
+
+var chart = new ApexCharts(document.querySelector("#color_timeline"), options);
+chart.render();
+}
+
+// Multi Series Timeline
+var chartTimelineMultiSeriesColors = getChartColorsArray("multi_series");
+if(chartTimelineMultiSeriesColors){
+var options = {
+ series: [{
+ name: 'Bob',
+ data: [{
+ x: 'Design',
+ y: [
+ new Date('2019-03-05').getTime(),
+ new Date('2019-03-08').getTime()
+ ]
+ },
+ {
+ x: 'Code',
+ y: [
+ new Date('2019-03-08').getTime(),
+ new Date('2019-03-11').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-11').getTime(),
+ new Date('2019-03-16').getTime()
+ ]
+ }
+ ]
+ },
+ {
+ name: 'Joe',
+ data: [{
+ x: 'Design',
+ y: [
+ new Date('2019-03-02').getTime(),
+ new Date('2019-03-05').getTime()
+ ]
+ },
+ {
+ x: 'Code',
+ y: [
+ new Date('2019-03-06').getTime(),
+ new Date('2019-03-09').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-10').getTime(),
+ new Date('2019-03-19').getTime()
+ ]
+ }
+ ]
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'rangeBar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ formatter: function (val) {
+ var a = moment(val[0])
+ var b = moment(val[1])
+ var diff = b.diff(a, 'days')
+ return diff + (diff > 1 ? ' days' : ' day')
+ }
+ },
+ fill: {
+ type: 'gradient',
+ gradient: {
+ shade: 'light',
+ type: 'vertical',
+ shadeIntensity: 0.25,
+ gradientToColors: undefined,
+ inverseColors: true,
+ opacityFrom: 1,
+ opacityTo: 1,
+ stops: [50, 0, 100, 100]
+ }
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ legend: {
+ position: 'top'
+ },
+ colors: chartTimelineMultiSeriesColors
+};
+
+var chart = new ApexCharts(document.querySelector("#multi_series"), options);
+chart.render();
+}
+
+// Advanced Timeline (Multiple Range)
+var chartTimelineAdvancedColors = getChartColorsArray("advanced_timeline");
+if(chartTimelineAdvancedColors){
+var options = {
+ series: [{
+ name: 'Bob',
+ data: [{
+ x: 'Design',
+ y: [
+ new Date('2019-03-05').getTime(),
+ new Date('2019-03-08').getTime()
+ ]
+ },
+ {
+ x: 'Code',
+ y: [
+ new Date('2019-03-02').getTime(),
+ new Date('2019-03-05').getTime()
+ ]
+ },
+ {
+ x: 'Code',
+ y: [
+ new Date('2019-03-05').getTime(),
+ new Date('2019-03-07').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-03').getTime(),
+ new Date('2019-03-09').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-08').getTime(),
+ new Date('2019-03-11').getTime()
+ ]
+ },
+ {
+ x: 'Validation',
+ y: [
+ new Date('2019-03-11').getTime(),
+ new Date('2019-03-16').getTime()
+ ]
+ },
+ {
+ x: 'Design',
+ y: [
+ new Date('2019-03-01').getTime(),
+ new Date('2019-03-03').getTime()
+ ]
+ }
+ ]
+ },
+ {
+ name: 'Joe',
+ data: [{
+ x: 'Design',
+ y: [
+ new Date('2019-03-02').getTime(),
+ new Date('2019-03-05').getTime()
+ ]
+ },
+ {
+ x: 'Test',
+ y: [
+ new Date('2019-03-06').getTime(),
+ new Date('2019-03-16').getTime()
+ ]
+ },
+ {
+ x: 'Code',
+ y: [
+ new Date('2019-03-03').getTime(),
+ new Date('2019-03-07').getTime()
+ ]
+ },
+ {
+ x: 'Deployment',
+ y: [
+ new Date('2019-03-20').getTime(),
+ new Date('2019-03-22').getTime()
+ ]
+ },
+ {
+ x: 'Design',
+ y: [
+ new Date('2019-03-10').getTime(),
+ new Date('2019-03-16').getTime()
+ ]
+ }
+ ]
+ },
+ {
+ name: 'Dan',
+ data: [{
+ x: 'Code',
+ y: [
+ new Date('2019-03-10').getTime(),
+ new Date('2019-03-17').getTime()
+ ]
+ },
+ {
+ x: 'Validation',
+ y: [
+ new Date('2019-03-05').getTime(),
+ new Date('2019-03-09').getTime()
+ ]
+ },
+ ]
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'rangeBar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '80%'
+ }
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ stroke: {
+ width: 1
+ },
+ fill: {
+ type: 'solid',
+ opacity: 0.6
+ },
+ legend: {
+ position: 'top',
+ horizontalAlign: 'left'
+ },
+ colors: chartTimelineAdvancedColors
+};
+
+var chart = new ApexCharts(document.querySelector("#advanced_timeline"), options);
+chart.render();
+}
+
+// Multiple series � Group rows
+var chartMultiSeriesGroupColors = getChartColorsArray("multi_series_group");
+ if (chartMultiSeriesGroupColors) {
+ var options = {
+ series: [
+ // George Washington
+ {
+ name: 'George Washington',
+ data: [
+ {
+ x: 'President',
+ y: [
+ new Date(1789, 3, 30).getTime(),
+ new Date(1797, 2, 4).getTime()
+ ]
+ },
+ ]
+ },
+ // John Adams
+ {
+ name: 'John Adams',
+ data: [
+ {
+ x: 'President',
+ y: [
+ new Date(1797, 2, 4).getTime(),
+ new Date(1801, 2, 4).getTime()
+ ]
+ },
+ {
+ x: 'Vice President',
+ y: [
+ new Date(1789, 3, 21).getTime(),
+ new Date(1797, 2, 4).getTime()
+ ]
+ }
+ ]
+ },
+ // Thomas Jefferson
+ {
+ name: 'Thomas Jefferson',
+ data: [
+ {
+ x: 'President',
+ y: [
+ new Date(1801, 2, 4).getTime(),
+ new Date(1809, 2, 4).getTime()
+ ]
+ },
+ {
+ x: 'Vice President',
+ y: [
+ new Date(1797, 2, 4).getTime(),
+ new Date(1801, 2, 4).getTime()
+ ]
+ },
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1790, 2, 22).getTime(),
+ new Date(1793, 11, 31).getTime()
+ ]
+ }
+ ]
+ },
+ // Aaron Burr
+ {
+ name: 'Aaron Burr',
+ data: [
+ {
+ x: 'Vice President',
+ y: [
+ new Date(1801, 2, 4).getTime(),
+ new Date(1805, 2, 4).getTime()
+ ]
+ }
+ ]
+ },
+ // George Clinton
+ {
+ name: 'George Clinton',
+ data: [
+ {
+ x: 'Vice President',
+ y: [
+ new Date(1805, 2, 4).getTime(),
+ new Date(1812, 3, 20).getTime()
+ ]
+ }
+ ]
+ },
+ // John Jay
+ {
+ name: 'John Jay',
+ data: [
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1789, 8, 25).getTime(),
+ new Date(1790, 2, 22).getTime()
+ ]
+ }
+ ]
+ },
+ // Edmund Randolph
+ {
+ name: 'Edmund Randolph',
+ data: [
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1794, 0, 2).getTime(),
+ new Date(1795, 7, 20).getTime()
+ ]
+ }
+ ]
+ },
+ // Timothy Pickering
+ {
+ name: 'Timothy Pickering',
+ data: [
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1795, 7, 20).getTime(),
+ new Date(1800, 4, 12).getTime()
+ ]
+ }
+ ]
+ },
+ // Charles Lee
+ {
+ name: 'Charles Lee',
+ data: [
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1800, 4, 13).getTime(),
+ new Date(1800, 5, 5).getTime()
+ ]
+ }
+ ]
+ },
+ // John Marshall
+ {
+ name: 'John Marshall',
+ data: [
+ {
+ x: 'Secretary of State',
+ y: [
+ new Date(1800, 5, 13).getTime(),
+ new Date(1801, 2, 4).getTime()
+ ]
+ }
+ ]
+ }
+ ],
+ chart: {
+ height: 350,
+ type: 'rangeBar',
+ toolbar: {
+ show: false,
+ }
+ },
+ plotOptions: {
+ bar: {
+ horizontal: true,
+ barHeight: '35%',
+ rangeBarGroupRows: true
+ }
+ },
+ colors: chartMultiSeriesGroupColors,
+ fill: {
+ type: 'solid'
+ },
+ xaxis: {
+ type: 'datetime'
+ },
+ legend: {
+ position: 'right'
+ },
+ tooltip: {
+ custom: function (opts) {
+ const fromYear = new Date(opts.y1).getFullYear()
+ const toYear = new Date(opts.y2).getFullYear()
+ const values = opts.ctx.rangeBar.getTooltipValues(opts)
+
+ return (
+ '
'
+ )
+ }
+ }
+ };
+
+ var chart = new ApexCharts(document.querySelector("#multi_series_group"), options);
+ chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/apexcharts-treemap.init.js b/public/build/js/pages/apexcharts-treemap.init.js
new file mode 100644
index 0000000..7df991e
--- /dev/null
+++ b/public/build/js/pages/apexcharts-treemap.init.js
@@ -0,0 +1,389 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Treemaps Chart init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ }
+}
+
+
+// Basic Treemaps
+var chartTreemapBasicColors = getChartColorsArray("basic_treemap");
+if(chartTreemapBasicColors){
+var options = {
+ series: [{
+ data: [{
+ x: 'New Delhi',
+ y: 218
+ },
+ {
+ x: 'Kolkata',
+ y: 149
+ },
+ {
+ x: 'Mumbai',
+ y: 184
+ },
+ {
+ x: 'Ahmedabad',
+ y: 55
+ },
+ {
+ x: 'Bangaluru',
+ y: 84
+ },
+ {
+ x: 'Pune',
+ y: 31
+ },
+ {
+ x: 'Chennai',
+ y: 70
+ },
+ {
+ x: 'Jaipur',
+ y: 30
+ },
+ {
+ x: 'Surat',
+ y: 44
+ },
+ {
+ x: 'Hyderabad',
+ y: 68
+ },
+ {
+ x: 'Lucknow',
+ y: 28
+ },
+ {
+ x: 'Indore',
+ y: 19
+ },
+ {
+ x: 'Kanpur',
+ y: 29
+ }
+ ]
+ }],
+ legend: {
+ show: false
+ },
+ chart: {
+ height: 350,
+ type: 'treemap',
+ toolbar: {
+ show: false
+ }
+ },
+ colors: chartTreemapBasicColors,
+ title: {
+ text: 'Basic Treemap',
+ style: {
+ fontWeight: 500,
+ }
+ },
+};
+
+var chart = new ApexCharts(document.querySelector("#basic_treemap"), options);
+chart.render();
+}
+
+// Multi - Dimensional Treemap
+var chartTreemapMultiColors = getChartColorsArray("multi_treemap");
+if(chartTreemapMultiColors){
+var options = {
+ series: [{
+ name: 'Desktops',
+ data: [{
+ x: 'ABC',
+ y: 10
+ },
+ {
+ x: 'DEF',
+ y: 60
+ },
+ {
+ x: 'XYZ',
+ y: 41
+ }
+ ]
+ },
+ {
+ name: 'Mobile',
+ data: [{
+ x: 'ABCD',
+ y: 10
+ },
+ {
+ x: 'DEFG',
+ y: 20
+ },
+ {
+ x: 'WXYZ',
+ y: 51
+ },
+ {
+ x: 'PQR',
+ y: 30
+ },
+ {
+ x: 'MNO',
+ y: 20
+ },
+ {
+ x: 'CDE',
+ y: 30
+ }
+ ]
+ }
+ ],
+ legend: {
+ show: false
+ },
+ chart: {
+ height: 350,
+ type: 'treemap',
+ toolbar: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Multi-dimensional Treemap',
+ align: 'center',
+ style: {
+ fontWeight: 500,
+ }
+ },
+ colors: chartTreemapMultiColors
+};
+
+var chart = new ApexCharts(document.querySelector("#multi_treemap"), options);
+chart.render();
+}
+
+// Distributed Treemap
+
+var chartTreemapDistributedColors = getChartColorsArray("distributed_treemap");
+if(chartTreemapDistributedColors){
+var options = {
+ series: [{
+ data: [{
+ x: 'New Delhi',
+ y: 218
+ },
+ {
+ x: 'Kolkata',
+ y: 149
+ },
+ {
+ x: 'Mumbai',
+ y: 184
+ },
+ {
+ x: 'Ahmedabad',
+ y: 55
+ },
+ {
+ x: 'Bangaluru',
+ y: 84
+ },
+ {
+ x: 'Pune',
+ y: 31
+ },
+ {
+ x: 'Chennai',
+ y: 70
+ },
+ {
+ x: 'Jaipur',
+ y: 30
+ },
+ {
+ x: 'Surat',
+ y: 44
+ },
+ {
+ x: 'Hyderabad',
+ y: 68
+ },
+ {
+ x: 'Lucknow',
+ y: 28
+ },
+ {
+ x: 'Indore',
+ y: 19
+ },
+ {
+ x: 'Kanpur',
+ y: 29
+ }
+ ]
+ }],
+ legend: {
+ show: false
+ },
+ chart: {
+ height: 350,
+ type: 'treemap',
+ toolbar: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Distibuted Treemap (different color for each cell)',
+ align: 'center',
+ style: {
+ fontWeight: 500,
+ }
+ },
+ colors: chartTreemapDistributedColors,
+ plotOptions: {
+ treemap: {
+ distributed: true,
+ enableShades: false
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#distributed_treemap"), options);
+chart.render();
+}
+
+// Color Range Treemaps
+var chartTreemapRangeColors = getChartColorsArray("color_range_treemap");
+if(chartTreemapRangeColors){
+var options = {
+ series: [{
+ data: [{
+ x: 'INTC',
+ y: 1.2
+ },
+ {
+ x: 'GS',
+ y: 0.4
+ },
+ {
+ x: 'CVX',
+ y: -1.4
+ },
+ {
+ x: 'GE',
+ y: 2.7
+ },
+ {
+ x: 'CAT',
+ y: -0.3
+ },
+ {
+ x: 'RTX',
+ y: 5.1
+ },
+ {
+ x: 'CSCO',
+ y: -2.3
+ },
+ {
+ x: 'JNJ',
+ y: 2.1
+ },
+ {
+ x: 'PG',
+ y: 0.3
+ },
+ {
+ x: 'TRV',
+ y: 0.12
+ },
+ {
+ x: 'MMM',
+ y: -2.31
+ },
+ {
+ x: 'NKE',
+ y: 3.98
+ },
+ {
+ x: 'IYT',
+ y: 1.67
+ }
+ ]
+ }],
+ legend: {
+ show: false
+ },
+ chart: {
+ height: 350,
+ type: 'treemap',
+ toolbar: {
+ show: false
+ }
+ },
+ title: {
+ text: 'Treemap with Color scale',
+ style: {
+ fontWeight: 500,
+ }
+ },
+ dataLabels: {
+ enabled: true,
+ style: {
+ fontSize: '12px',
+ },
+ formatter: function (text, op) {
+ return [text, op.value]
+ },
+ offsetY: -4
+ },
+ plotOptions: {
+ treemap: {
+ enableShades: true,
+ shadeIntensity: 0.5,
+ reverseNegativeShade: true,
+ colorScale: {
+ ranges: [{
+ from: -6,
+ to: 0,
+ color: chartTreemapRangeColors[0]
+ },
+ {
+ from: 0.001,
+ to: 6,
+ color: chartTreemapRangeColors[1]
+ }
+ ]
+ }
+ }
+ }
+};
+
+var chart = new ApexCharts(document.querySelector("#color_range_treemap"), options);
+chart.render();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/bootstrap-icons.init.js b/public/build/js/pages/bootstrap-icons.init.js
new file mode 100644
index 0000000..a226ad1
--- /dev/null
+++ b/public/build/js/pages/bootstrap-icons.init.js
@@ -0,0 +1,1882 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Bootstrap Icons init js
+*/
+
+var icons = {
+ "123": 63103,
+ "alarm-fill": 61697,
+ "alarm": 61698,
+ "align-bottom": 61699,
+ "align-center": 61700,
+ "align-end": 61701,
+ "align-middle": 61702,
+ "align-start": 61703,
+ "align-top": 61704,
+ "alt": 61705,
+ "app-indicator": 61706,
+ "app": 61707,
+ "archive-fill": 61708,
+ "archive": 61709,
+ "arrow-90deg-down": 61710,
+ "arrow-90deg-left": 61711,
+ "arrow-90deg-right": 61712,
+ "arrow-90deg-up": 61713,
+ "arrow-bar-down": 61714,
+ "arrow-bar-left": 61715,
+ "arrow-bar-right": 61716,
+ "arrow-bar-up": 61717,
+ "arrow-clockwise": 61718,
+ "arrow-counterclockwise": 61719,
+ "arrow-down-circle-fill": 61720,
+ "arrow-down-circle": 61721,
+ "arrow-down-left-circle-fill": 61722,
+ "arrow-down-left-circle": 61723,
+ "arrow-down-left-square-fill": 61724,
+ "arrow-down-left-square": 61725,
+ "arrow-down-left": 61726,
+ "arrow-down-right-circle-fill": 61727,
+ "arrow-down-right-circle": 61728,
+ "arrow-down-right-square-fill": 61729,
+ "arrow-down-right-square": 61730,
+ "arrow-down-right": 61731,
+ "arrow-down-short": 61732,
+ "arrow-down-square-fill": 61733,
+ "arrow-down-square": 61734,
+ "arrow-down-up": 61735,
+ "arrow-down": 61736,
+ "arrow-left-circle-fill": 61737,
+ "arrow-left-circle": 61738,
+ "arrow-left-right": 61739,
+ "arrow-left-short": 61740,
+ "arrow-left-square-fill": 61741,
+ "arrow-left-square": 61742,
+ "arrow-left": 61743,
+ "arrow-repeat": 61744,
+ "arrow-return-left": 61745,
+ "arrow-return-right": 61746,
+ "arrow-right-circle-fill": 61747,
+ "arrow-right-circle": 61748,
+ "arrow-right-short": 61749,
+ "arrow-right-square-fill": 61750,
+ "arrow-right-square": 61751,
+ "arrow-right": 61752,
+ "arrow-up-circle-fill": 61753,
+ "arrow-up-circle": 61754,
+ "arrow-up-left-circle-fill": 61755,
+ "arrow-up-left-circle": 61756,
+ "arrow-up-left-square-fill": 61757,
+ "arrow-up-left-square": 61758,
+ "arrow-up-left": 61759,
+ "arrow-up-right-circle-fill": 61760,
+ "arrow-up-right-circle": 61761,
+ "arrow-up-right-square-fill": 61762,
+ "arrow-up-right-square": 61763,
+ "arrow-up-right": 61764,
+ "arrow-up-short": 61765,
+ "arrow-up-square-fill": 61766,
+ "arrow-up-square": 61767,
+ "arrow-up": 61768,
+ "arrows-angle-contract": 61769,
+ "arrows-angle-expand": 61770,
+ "arrows-collapse": 61771,
+ "arrows-expand": 61772,
+ "arrows-fullscreen": 61773,
+ "arrows-move": 61774,
+ "aspect-ratio-fill": 61775,
+ "aspect-ratio": 61776,
+ "asterisk": 61777,
+ "at": 61778,
+ "award-fill": 61779,
+ "award": 61780,
+ "back": 61781,
+ "backspace-fill": 61782,
+ "backspace-reverse-fill": 61783,
+ "backspace-reverse": 61784,
+ "backspace": 61785,
+ "badge-3d-fill": 61786,
+ "badge-3d": 61787,
+ "badge-4k-fill": 61788,
+ "badge-4k": 61789,
+ "badge-8k-fill": 61790,
+ "badge-8k": 61791,
+ "badge-ad-fill": 61792,
+ "badge-ad": 61793,
+ "badge-ar-fill": 61794,
+ "badge-ar": 61795,
+ "badge-cc-fill": 61796,
+ "badge-cc": 61797,
+ "badge-hd-fill": 61798,
+ "badge-hd": 61799,
+ "badge-tm-fill": 61800,
+ "badge-tm": 61801,
+ "badge-vo-fill": 61802,
+ "badge-vo": 61803,
+ "badge-vr-fill": 61804,
+ "badge-vr": 61805,
+ "badge-wc-fill": 61806,
+ "badge-wc": 61807,
+ "bag-check-fill": 61808,
+ "bag-check": 61809,
+ "bag-dash-fill": 61810,
+ "bag-dash": 61811,
+ "bag-fill": 61812,
+ "bag-plus-fill": 61813,
+ "bag-plus": 61814,
+ "bag-x-fill": 61815,
+ "bag-x": 61816,
+ "bag": 61817,
+ "bar-chart-fill": 61818,
+ "bar-chart-line-fill": 61819,
+ "bar-chart-line": 61820,
+ "bar-chart-steps": 61821,
+ "bar-chart": 61822,
+ "basket-fill": 61823,
+ "basket": 61824,
+ "basket2-fill": 61825,
+ "basket2": 61826,
+ "basket3-fill": 61827,
+ "basket3": 61828,
+ "battery-charging": 61829,
+ "battery-full": 61830,
+ "battery-half": 61831,
+ "battery": 61832,
+ "bell-fill": 61833,
+ "bell": 61834,
+ "bezier": 61835,
+ "bezier2": 61836,
+ "bicycle": 61837,
+ "binoculars-fill": 61838,
+ "binoculars": 61839,
+ "blockquote-left": 61840,
+ "blockquote-right": 61841,
+ "book-fill": 61842,
+ "book-half": 61843,
+ "book": 61844,
+ "bookmark-check-fill": 61845,
+ "bookmark-check": 61846,
+ "bookmark-dash-fill": 61847,
+ "bookmark-dash": 61848,
+ "bookmark-fill": 61849,
+ "bookmark-heart-fill": 61850,
+ "bookmark-heart": 61851,
+ "bookmark-plus-fill": 61852,
+ "bookmark-plus": 61853,
+ "bookmark-star-fill": 61854,
+ "bookmark-star": 61855,
+ "bookmark-x-fill": 61856,
+ "bookmark-x": 61857,
+ "bookmark": 61858,
+ "bookmarks-fill": 61859,
+ "bookmarks": 61860,
+ "bookshelf": 61861,
+ "bootstrap-fill": 61862,
+ "bootstrap-reboot": 61863,
+ "bootstrap": 61864,
+ "border-all": 61865,
+ "border-bottom": 61866,
+ "border-center": 61867,
+ "border-inner": 61868,
+ "border-left": 61869,
+ "border-middle": 61870,
+ "border-outer": 61871,
+ "border-right": 61872,
+ "border-style": 61873,
+ "border-top": 61874,
+ "border-width": 61875,
+ "border": 61876,
+ "bounding-box-circles": 61877,
+ "bounding-box": 61878,
+ "box-arrow-down-left": 61879,
+ "box-arrow-down-right": 61880,
+ "box-arrow-down": 61881,
+ "box-arrow-in-down-left": 61882,
+ "box-arrow-in-down-right": 61883,
+ "box-arrow-in-down": 61884,
+ "box-arrow-in-left": 61885,
+ "box-arrow-in-right": 61886,
+ "box-arrow-in-up-left": 61887,
+ "box-arrow-in-up-right": 61888,
+ "box-arrow-in-up": 61889,
+ "box-arrow-left": 61890,
+ "box-arrow-right": 61891,
+ "box-arrow-up-left": 61892,
+ "box-arrow-up-right": 61893,
+ "box-arrow-up": 61894,
+ "box-seam": 61895,
+ "box": 61896,
+ "braces": 61897,
+ "bricks": 61898,
+ "briefcase-fill": 61899,
+ "briefcase": 61900,
+ "brightness-alt-high-fill": 61901,
+ "brightness-alt-high": 61902,
+ "brightness-alt-low-fill": 61903,
+ "brightness-alt-low": 61904,
+ "brightness-high-fill": 61905,
+ "brightness-high": 61906,
+ "brightness-low-fill": 61907,
+ "brightness-low": 61908,
+ "broadcast-pin": 61909,
+ "broadcast": 61910,
+ "brush-fill": 61911,
+ "brush": 61912,
+ "bucket-fill": 61913,
+ "bucket": 61914,
+ "bug-fill": 61915,
+ "bug": 61916,
+ "building": 61917,
+ "bullseye": 61918,
+ "calculator-fill": 61919,
+ "calculator": 61920,
+ "calendar-check-fill": 61921,
+ "calendar-check": 61922,
+ "calendar-date-fill": 61923,
+ "calendar-date": 61924,
+ "calendar-day-fill": 61925,
+ "calendar-day": 61926,
+ "calendar-event-fill": 61927,
+ "calendar-event": 61928,
+ "calendar-fill": 61929,
+ "calendar-minus-fill": 61930,
+ "calendar-minus": 61931,
+ "calendar-month-fill": 61932,
+ "calendar-month": 61933,
+ "calendar-plus-fill": 61934,
+ "calendar-plus": 61935,
+ "calendar-range-fill": 61936,
+ "calendar-range": 61937,
+ "calendar-week-fill": 61938,
+ "calendar-week": 61939,
+ "calendar-x-fill": 61940,
+ "calendar-x": 61941,
+ "calendar": 61942,
+ "calendar2-check-fill": 61943,
+ "calendar2-check": 61944,
+ "calendar2-date-fill": 61945,
+ "calendar2-date": 61946,
+ "calendar2-day-fill": 61947,
+ "calendar2-day": 61948,
+ "calendar2-event-fill": 61949,
+ "calendar2-event": 61950,
+ "calendar2-fill": 61951,
+ "calendar2-minus-fill": 61952,
+ "calendar2-minus": 61953,
+ "calendar2-month-fill": 61954,
+ "calendar2-month": 61955,
+ "calendar2-plus-fill": 61956,
+ "calendar2-plus": 61957,
+ "calendar2-range-fill": 61958,
+ "calendar2-range": 61959,
+ "calendar2-week-fill": 61960,
+ "calendar2-week": 61961,
+ "calendar2-x-fill": 61962,
+ "calendar2-x": 61963,
+ "calendar2": 61964,
+ "calendar3-event-fill": 61965,
+ "calendar3-event": 61966,
+ "calendar3-fill": 61967,
+ "calendar3-range-fill": 61968,
+ "calendar3-range": 61969,
+ "calendar3-week-fill": 61970,
+ "calendar3-week": 61971,
+ "calendar3": 61972,
+ "calendar4-event": 61973,
+ "calendar4-range": 61974,
+ "calendar4-week": 61975,
+ "calendar4": 61976,
+ "camera-fill": 61977,
+ "camera-reels-fill": 61978,
+ "camera-reels": 61979,
+ "camera-video-fill": 61980,
+ "camera-video-off-fill": 61981,
+ "camera-video-off": 61982,
+ "camera-video": 61983,
+ "camera": 61984,
+ "camera2": 61985,
+ "capslock-fill": 61986,
+ "capslock": 61987,
+ "card-checklist": 61988,
+ "card-heading": 61989,
+ "card-image": 61990,
+ "card-list": 61991,
+ "card-text": 61992,
+ "caret-down-fill": 61993,
+ "caret-down-square-fill": 61994,
+ "caret-down-square": 61995,
+ "caret-down": 61996,
+ "caret-left-fill": 61997,
+ "caret-left-square-fill": 61998,
+ "caret-left-square": 61999,
+ "caret-left": 62000,
+ "caret-right-fill": 62001,
+ "caret-right-square-fill": 62002,
+ "caret-right-square": 62003,
+ "caret-right": 62004,
+ "caret-up-fill": 62005,
+ "caret-up-square-fill": 62006,
+ "caret-up-square": 62007,
+ "caret-up": 62008,
+ "cart-check-fill": 62009,
+ "cart-check": 62010,
+ "cart-dash-fill": 62011,
+ "cart-dash": 62012,
+ "cart-fill": 62013,
+ "cart-plus-fill": 62014,
+ "cart-plus": 62015,
+ "cart-x-fill": 62016,
+ "cart-x": 62017,
+ "cart": 62018,
+ "cart2": 62019,
+ "cart3": 62020,
+ "cart4": 62021,
+ "cash-stack": 62022,
+ "cash": 62023,
+ "cast": 62024,
+ "chat-dots-fill": 62025,
+ "chat-dots": 62026,
+ "chat-fill": 62027,
+ "chat-left-dots-fill": 62028,
+ "chat-left-dots": 62029,
+ "chat-left-fill": 62030,
+ "chat-left-quote-fill": 62031,
+ "chat-left-quote": 62032,
+ "chat-left-text-fill": 62033,
+ "chat-left-text": 62034,
+ "chat-left": 62035,
+ "chat-quote-fill": 62036,
+ "chat-quote": 62037,
+ "chat-right-dots-fill": 62038,
+ "chat-right-dots": 62039,
+ "chat-right-fill": 62040,
+ "chat-right-quote-fill": 62041,
+ "chat-right-quote": 62042,
+ "chat-right-text-fill": 62043,
+ "chat-right-text": 62044,
+ "chat-right": 62045,
+ "chat-square-dots-fill": 62046,
+ "chat-square-dots": 62047,
+ "chat-square-fill": 62048,
+ "chat-square-quote-fill": 62049,
+ "chat-square-quote": 62050,
+ "chat-square-text-fill": 62051,
+ "chat-square-text": 62052,
+ "chat-square": 62053,
+ "chat-text-fill": 62054,
+ "chat-text": 62055,
+ "chat": 62056,
+ "check-all": 62057,
+ "check-circle-fill": 62058,
+ "check-circle": 62059,
+ "check-square-fill": 62060,
+ "check-square": 62061,
+ "check": 62062,
+ "check2-all": 62063,
+ "check2-circle": 62064,
+ "check2-square": 62065,
+ "check2": 62066,
+ "chevron-bar-contract": 62067,
+ "chevron-bar-down": 62068,
+ "chevron-bar-expand": 62069,
+ "chevron-bar-left": 62070,
+ "chevron-bar-right": 62071,
+ "chevron-bar-up": 62072,
+ "chevron-compact-down": 62073,
+ "chevron-compact-left": 62074,
+ "chevron-compact-right": 62075,
+ "chevron-compact-up": 62076,
+ "chevron-contract": 62077,
+ "chevron-double-down": 62078,
+ "chevron-double-left": 62079,
+ "chevron-double-right": 62080,
+ "chevron-double-up": 62081,
+ "chevron-down": 62082,
+ "chevron-expand": 62083,
+ "chevron-left": 62084,
+ "chevron-right": 62085,
+ "chevron-up": 62086,
+ "circle-fill": 62087,
+ "circle-half": 62088,
+ "circle-square": 62089,
+ "circle": 62090,
+ "clipboard-check": 62091,
+ "clipboard-data": 62092,
+ "clipboard-minus": 62093,
+ "clipboard-plus": 62094,
+ "clipboard-x": 62095,
+ "clipboard": 62096,
+ "clock-fill": 62097,
+ "clock-history": 62098,
+ "clock": 62099,
+ "cloud-arrow-down-fill": 62100,
+ "cloud-arrow-down": 62101,
+ "cloud-arrow-up-fill": 62102,
+ "cloud-arrow-up": 62103,
+ "cloud-check-fill": 62104,
+ "cloud-check": 62105,
+ "cloud-download-fill": 62106,
+ "cloud-download": 62107,
+ "cloud-drizzle-fill": 62108,
+ "cloud-drizzle": 62109,
+ "cloud-fill": 62110,
+ "cloud-fog-fill": 62111,
+ "cloud-fog": 62112,
+ "cloud-fog2-fill": 62113,
+ "cloud-fog2": 62114,
+ "cloud-hail-fill": 62115,
+ "cloud-hail": 62116,
+ "cloud-haze-1": 62117,
+ "cloud-haze-fill": 62118,
+ "cloud-haze": 62119,
+ "cloud-haze2-fill": 62120,
+ "cloud-lightning-fill": 62121,
+ "cloud-lightning-rain-fill": 62122,
+ "cloud-lightning-rain": 62123,
+ "cloud-lightning": 62124,
+ "cloud-minus-fill": 62125,
+ "cloud-minus": 62126,
+ "cloud-moon-fill": 62127,
+ "cloud-moon": 62128,
+ "cloud-plus-fill": 62129,
+ "cloud-plus": 62130,
+ "cloud-rain-fill": 62131,
+ "cloud-rain-heavy-fill": 62132,
+ "cloud-rain-heavy": 62133,
+ "cloud-rain": 62134,
+ "cloud-slash-fill": 62135,
+ "cloud-slash": 62136,
+ "cloud-sleet-fill": 62137,
+ "cloud-sleet": 62138,
+ "cloud-snow-fill": 62139,
+ "cloud-snow": 62140,
+ "cloud-sun-fill": 62141,
+ "cloud-sun": 62142,
+ "cloud-upload-fill": 62143,
+ "cloud-upload": 62144,
+ "cloud": 62145,
+ "clouds-fill": 62146,
+ "clouds": 62147,
+ "cloudy-fill": 62148,
+ "cloudy": 62149,
+ "code-slash": 62150,
+ "code-square": 62151,
+ "code": 62152,
+ "collection-fill": 62153,
+ "collection-play-fill": 62154,
+ "collection-play": 62155,
+ "collection": 62156,
+ "columns-gap": 62157,
+ "columns": 62158,
+ "command": 62159,
+ "compass-fill": 62160,
+ "compass": 62161,
+ "cone-striped": 62162,
+ "cone": 62163,
+ "controller": 62164,
+ "cpu-fill": 62165,
+ "cpu": 62166,
+ "credit-card-2-back-fill": 62167,
+ "credit-card-2-back": 62168,
+ "credit-card-2-front-fill": 62169,
+ "credit-card-2-front": 62170,
+ "credit-card-fill": 62171,
+ "credit-card": 62172,
+ "crop": 62173,
+ "cup-fill": 62174,
+ "cup-straw": 62175,
+ "cup": 62176,
+ "cursor-fill": 62177,
+ "cursor-text": 62178,
+ "cursor": 62179,
+ "dash-circle-dotted": 62180,
+ "dash-circle-fill": 62181,
+ "dash-circle": 62182,
+ "dash-square-dotted": 62183,
+ "dash-square-fill": 62184,
+ "dash-square": 62185,
+ "dash": 62186,
+ "diagram-2-fill": 62187,
+ "diagram-2": 62188,
+ "diagram-3-fill": 62189,
+ "diagram-3": 62190,
+ "diamond-fill": 62191,
+ "diamond-half": 62192,
+ "diamond": 62193,
+ "dice-1-fill": 62194,
+ "dice-1": 62195,
+ "dice-2-fill": 62196,
+ "dice-2": 62197,
+ "dice-3-fill": 62198,
+ "dice-3": 62199,
+ "dice-4-fill": 62200,
+ "dice-4": 62201,
+ "dice-5-fill": 62202,
+ "dice-5": 62203,
+ "dice-6-fill": 62204,
+ "dice-6": 62205,
+ "disc-fill": 62206,
+ "disc": 62207,
+ "discord": 62208,
+ "display-fill": 62209,
+ "display": 62210,
+ "distribute-horizontal": 62211,
+ "distribute-vertical": 62212,
+ "door-closed-fill": 62213,
+ "door-closed": 62214,
+ "door-open-fill": 62215,
+ "door-open": 62216,
+ "dot": 62217,
+ "download": 62218,
+ "droplet-fill": 62219,
+ "droplet-half": 62220,
+ "droplet": 62221,
+ "earbuds": 62222,
+ "easel-fill": 62223,
+ "easel": 62224,
+ "egg-fill": 62225,
+ "egg-fried": 62226,
+ "egg": 62227,
+ "eject-fill": 62228,
+ "eject": 62229,
+ "emoji-angry-fill": 62230,
+ "emoji-angry": 62231,
+ "emoji-dizzy-fill": 62232,
+ "emoji-dizzy": 62233,
+ "emoji-expressionless-fill": 62234,
+ "emoji-expressionless": 62235,
+ "emoji-frown-fill": 62236,
+ "emoji-frown": 62237,
+ "emoji-heart-eyes-fill": 62238,
+ "emoji-heart-eyes": 62239,
+ "emoji-laughing-fill": 62240,
+ "emoji-laughing": 62241,
+ "emoji-neutral-fill": 62242,
+ "emoji-neutral": 62243,
+ "emoji-smile-fill": 62244,
+ "emoji-smile-upside-down-fill": 62245,
+ "emoji-smile-upside-down": 62246,
+ "emoji-smile": 62247,
+ "emoji-sunglasses-fill": 62248,
+ "emoji-sunglasses": 62249,
+ "emoji-wink-fill": 62250,
+ "emoji-wink": 62251,
+ "envelope-fill": 62252,
+ "envelope-open-fill": 62253,
+ "envelope-open": 62254,
+ "envelope": 62255,
+ "eraser-fill": 62256,
+ "eraser": 62257,
+ "exclamation-circle-fill": 62258,
+ "exclamation-circle": 62259,
+ "exclamation-diamond-fill": 62260,
+ "exclamation-diamond": 62261,
+ "exclamation-octagon-fill": 62262,
+ "exclamation-octagon": 62263,
+ "exclamation-square-fill": 62264,
+ "exclamation-square": 62265,
+ "exclamation-triangle-fill": 62266,
+ "exclamation-triangle": 62267,
+ "exclamation": 62268,
+ "exclude": 62269,
+ "eye-fill": 62270,
+ "eye-slash-fill": 62271,
+ "eye-slash": 62272,
+ "eye": 62273,
+ "eyedropper": 62274,
+ "eyeglasses": 62275,
+ "facebook": 62276,
+ "file-arrow-down-fill": 62277,
+ "file-arrow-down": 62278,
+ "file-arrow-up-fill": 62279,
+ "file-arrow-up": 62280,
+ "file-bar-graph-fill": 62281,
+ "file-bar-graph": 62282,
+ "file-binary-fill": 62283,
+ "file-binary": 62284,
+ "file-break-fill": 62285,
+ "file-break": 62286,
+ "file-check-fill": 62287,
+ "file-check": 62288,
+ "file-code-fill": 62289,
+ "file-code": 62290,
+ "file-diff-fill": 62291,
+ "file-diff": 62292,
+ "file-earmark-arrow-down-fill": 62293,
+ "file-earmark-arrow-down": 62294,
+ "file-earmark-arrow-up-fill": 62295,
+ "file-earmark-arrow-up": 62296,
+ "file-earmark-bar-graph-fill": 62297,
+ "file-earmark-bar-graph": 62298,
+ "file-earmark-binary-fill": 62299,
+ "file-earmark-binary": 62300,
+ "file-earmark-break-fill": 62301,
+ "file-earmark-break": 62302,
+ "file-earmark-check-fill": 62303,
+ "file-earmark-check": 62304,
+ "file-earmark-code-fill": 62305,
+ "file-earmark-code": 62306,
+ "file-earmark-diff-fill": 62307,
+ "file-earmark-diff": 62308,
+ "file-earmark-easel-fill": 62309,
+ "file-earmark-easel": 62310,
+ "file-earmark-excel-fill": 62311,
+ "file-earmark-excel": 62312,
+ "file-earmark-fill": 62313,
+ "file-earmark-font-fill": 62314,
+ "file-earmark-font": 62315,
+ "file-earmark-image-fill": 62316,
+ "file-earmark-image": 62317,
+ "file-earmark-lock-fill": 62318,
+ "file-earmark-lock": 62319,
+ "file-earmark-lock2-fill": 62320,
+ "file-earmark-lock2": 62321,
+ "file-earmark-medical-fill": 62322,
+ "file-earmark-medical": 62323,
+ "file-earmark-minus-fill": 62324,
+ "file-earmark-minus": 62325,
+ "file-earmark-music-fill": 62326,
+ "file-earmark-music": 62327,
+ "file-earmark-person-fill": 62328,
+ "file-earmark-person": 62329,
+ "file-earmark-play-fill": 62330,
+ "file-earmark-play": 62331,
+ "file-earmark-plus-fill": 62332,
+ "file-earmark-plus": 62333,
+ "file-earmark-post-fill": 62334,
+ "file-earmark-post": 62335,
+ "file-earmark-ppt-fill": 62336,
+ "file-earmark-ppt": 62337,
+ "file-earmark-richtext-fill": 62338,
+ "file-earmark-richtext": 62339,
+ "file-earmark-ruled-fill": 62340,
+ "file-earmark-ruled": 62341,
+ "file-earmark-slides-fill": 62342,
+ "file-earmark-slides": 62343,
+ "file-earmark-spreadsheet-fill": 62344,
+ "file-earmark-spreadsheet": 62345,
+ "file-earmark-text-fill": 62346,
+ "file-earmark-text": 62347,
+ "file-earmark-word-fill": 62348,
+ "file-earmark-word": 62349,
+ "file-earmark-x-fill": 62350,
+ "file-earmark-x": 62351,
+ "file-earmark-zip-fill": 62352,
+ "file-earmark-zip": 62353,
+ "file-earmark": 62354,
+ "file-easel-fill": 62355,
+ "file-easel": 62356,
+ "file-excel-fill": 62357,
+ "file-excel": 62358,
+ "file-fill": 62359,
+ "file-font-fill": 62360,
+ "file-font": 62361,
+ "file-image-fill": 62362,
+ "file-image": 62363,
+ "file-lock-fill": 62364,
+ "file-lock": 62365,
+ "file-lock2-fill": 62366,
+ "file-lock2": 62367,
+ "file-medical-fill": 62368,
+ "file-medical": 62369,
+ "file-minus-fill": 62370,
+ "file-minus": 62371,
+ "file-music-fill": 62372,
+ "file-music": 62373,
+ "file-person-fill": 62374,
+ "file-person": 62375,
+ "file-play-fill": 62376,
+ "file-play": 62377,
+ "file-plus-fill": 62378,
+ "file-plus": 62379,
+ "file-post-fill": 62380,
+ "file-post": 62381,
+ "file-ppt-fill": 62382,
+ "file-ppt": 62383,
+ "file-richtext-fill": 62384,
+ "file-richtext": 62385,
+ "file-ruled-fill": 62386,
+ "file-ruled": 62387,
+ "file-slides-fill": 62388,
+ "file-slides": 62389,
+ "file-spreadsheet-fill": 62390,
+ "file-spreadsheet": 62391,
+ "file-text-fill": 62392,
+ "file-text": 62393,
+ "file-word-fill": 62394,
+ "file-word": 62395,
+ "file-x-fill": 62396,
+ "file-x": 62397,
+ "file-zip-fill": 62398,
+ "file-zip": 62399,
+ "file": 62400,
+ "files-alt": 62401,
+ "files": 62402,
+ "film": 62403,
+ "filter-circle-fill": 62404,
+ "filter-circle": 62405,
+ "filter-left": 62406,
+ "filter-right": 62407,
+ "filter-square-fill": 62408,
+ "filter-square": 62409,
+ "filter": 62410,
+ "flag-fill": 62411,
+ "flag": 62412,
+ "flower1": 62413,
+ "flower2": 62414,
+ "flower3": 62415,
+ "folder-check": 62416,
+ "folder-fill": 62417,
+ "folder-minus": 62418,
+ "folder-plus": 62419,
+ "folder-symlink-fill": 62420,
+ "folder-symlink": 62421,
+ "folder-x": 62422,
+ "folder": 62423,
+ "folder2-open": 62424,
+ "folder2": 62425,
+ "fonts": 62426,
+ "forward-fill": 62427,
+ "forward": 62428,
+ "front": 62429,
+ "fullscreen-exit": 62430,
+ "fullscreen": 62431,
+ "funnel-fill": 62432,
+ "funnel": 62433,
+ "gear-fill": 62434,
+ "gear-wide-connected": 62435,
+ "gear-wide": 62436,
+ "gear": 62437,
+ "gem": 62438,
+ "geo-alt-fill": 62439,
+ "geo-alt": 62440,
+ "geo-fill": 62441,
+ "geo": 62442,
+ "gift-fill": 62443,
+ "gift": 62444,
+ "github": 62445,
+ "globe": 62446,
+ "globe2": 62447,
+ "google": 62448,
+ "graph-down": 62449,
+ "graph-up": 62450,
+ "grid-1x2-fill": 62451,
+ "grid-1x2": 62452,
+ "grid-3x2-gap-fill": 62453,
+ "grid-3x2-gap": 62454,
+ "grid-3x2": 62455,
+ "grid-3x3-gap-fill": 62456,
+ "grid-3x3-gap": 62457,
+ "grid-3x3": 62458,
+ "grid-fill": 62459,
+ "grid": 62460,
+ "grip-horizontal": 62461,
+ "grip-vertical": 62462,
+ "hammer": 62463,
+ "hand-index-fill": 62464,
+ "hand-index-thumb-fill": 62465,
+ "hand-index-thumb": 62466,
+ "hand-index": 62467,
+ "hand-thumbs-down-fill": 62468,
+ "hand-thumbs-down": 62469,
+ "hand-thumbs-up-fill": 62470,
+ "hand-thumbs-up": 62471,
+ "handbag-fill": 62472,
+ "handbag": 62473,
+ "hash": 62474,
+ "hdd-fill": 62475,
+ "hdd-network-fill": 62476,
+ "hdd-network": 62477,
+ "hdd-rack-fill": 62478,
+ "hdd-rack": 62479,
+ "hdd-stack-fill": 62480,
+ "hdd-stack": 62481,
+ "hdd": 62482,
+ "headphones": 62483,
+ "headset": 62484,
+ "heart-fill": 62485,
+ "heart-half": 62486,
+ "heart": 62487,
+ "heptagon-fill": 62488,
+ "heptagon-half": 62489,
+ "heptagon": 62490,
+ "hexagon-fill": 62491,
+ "hexagon-half": 62492,
+ "hexagon": 62493,
+ "hourglass-bottom": 62494,
+ "hourglass-split": 62495,
+ "hourglass-top": 62496,
+ "hourglass": 62497,
+ "house-door-fill": 62498,
+ "house-door": 62499,
+ "house-fill": 62500,
+ "house": 62501,
+ "hr": 62502,
+ "hurricane": 62503,
+ "image-alt": 62504,
+ "image-fill": 62505,
+ "image": 62506,
+ "images": 62507,
+ "inbox-fill": 62508,
+ "inbox": 62509,
+ "inboxes-fill": 62510,
+ "inboxes": 62511,
+ "info-circle-fill": 62512,
+ "info-circle": 62513,
+ "info-square-fill": 62514,
+ "info-square": 62515,
+ "info": 62516,
+ "input-cursor-text": 62517,
+ "input-cursor": 62518,
+ "instagram": 62519,
+ "intersect": 62520,
+ "journal-album": 62521,
+ "journal-arrow-down": 62522,
+ "journal-arrow-up": 62523,
+ "journal-bookmark-fill": 62524,
+ "journal-bookmark": 62525,
+ "journal-check": 62526,
+ "journal-code": 62527,
+ "journal-medical": 62528,
+ "journal-minus": 62529,
+ "journal-plus": 62530,
+ "journal-richtext": 62531,
+ "journal-text": 62532,
+ "journal-x": 62533,
+ "journal": 62534,
+ "journals": 62535,
+ "joystick": 62536,
+ "justify-left": 62537,
+ "justify-right": 62538,
+ "justify": 62539,
+ "kanban-fill": 62540,
+ "kanban": 62541,
+ "key-fill": 62542,
+ "key": 62543,
+ "keyboard-fill": 62544,
+ "keyboard": 62545,
+ "ladder": 62546,
+ "lamp-fill": 62547,
+ "lamp": 62548,
+ "laptop-fill": 62549,
+ "laptop": 62550,
+ "layer-backward": 62551,
+ "layer-forward": 62552,
+ "layers-fill": 62553,
+ "layers-half": 62554,
+ "layers": 62555,
+ "layout-sidebar-inset-reverse": 62556,
+ "layout-sidebar-inset": 62557,
+ "layout-sidebar-reverse": 62558,
+ "layout-sidebar": 62559,
+ "layout-split": 62560,
+ "layout-text-sidebar-reverse": 62561,
+ "layout-text-sidebar": 62562,
+ "layout-text-window-reverse": 62563,
+ "layout-text-window": 62564,
+ "layout-three-columns": 62565,
+ "layout-wtf": 62566,
+ "life-preserver": 62567,
+ "lightbulb-fill": 62568,
+ "lightbulb-off-fill": 62569,
+ "lightbulb-off": 62570,
+ "lightbulb": 62571,
+ "lightning-charge-fill": 62572,
+ "lightning-charge": 62573,
+ "lightning-fill": 62574,
+ "lightning": 62575,
+ "link-45deg": 62576,
+ "link": 62577,
+ "linkedin": 62578,
+ "list-check": 62579,
+ "list-nested": 62580,
+ "list-ol": 62581,
+ "list-stars": 62582,
+ "list-task": 62583,
+ "list-ul": 62584,
+ "list": 62585,
+ "lock-fill": 62586,
+ "lock": 62587,
+ "mailbox": 62588,
+ "mailbox2": 62589,
+ "map-fill": 62590,
+ "map": 62591,
+ "markdown-fill": 62592,
+ "markdown": 62593,
+ "mask": 62594,
+ "megaphone-fill": 62595,
+ "megaphone": 62596,
+ "menu-app-fill": 62597,
+ "menu-app": 62598,
+ "menu-button-fill": 62599,
+ "menu-button-wide-fill": 62600,
+ "menu-button-wide": 62601,
+ "menu-button": 62602,
+ "menu-down": 62603,
+ "menu-up": 62604,
+ "mic-fill": 62605,
+ "mic-mute-fill": 62606,
+ "mic-mute": 62607,
+ "mic": 62608,
+ "minecart-loaded": 62609,
+ "minecart": 62610,
+ "moisture": 62611,
+ "moon-fill": 62612,
+ "moon-stars-fill": 62613,
+ "moon-stars": 62614,
+ "moon": 62615,
+ "mouse-fill": 62616,
+ "mouse": 62617,
+ "mouse2-fill": 62618,
+ "mouse2": 62619,
+ "mouse3-fill": 62620,
+ "mouse3": 62621,
+ "music-note-beamed": 62622,
+ "music-note-list": 62623,
+ "music-note": 62624,
+ "music-player-fill": 62625,
+ "music-player": 62626,
+ "newspaper": 62627,
+ "node-minus-fill": 62628,
+ "node-minus": 62629,
+ "node-plus-fill": 62630,
+ "node-plus": 62631,
+ "nut-fill": 62632,
+ "nut": 62633,
+ "octagon-fill": 62634,
+ "octagon-half": 62635,
+ "octagon": 62636,
+ "option": 62637,
+ "outlet": 62638,
+ "paint-bucket": 62639,
+ "palette-fill": 62640,
+ "palette": 62641,
+ "palette2": 62642,
+ "paperclip": 62643,
+ "paragraph": 62644,
+ "patch-check-fill": 62645,
+ "patch-check": 62646,
+ "patch-exclamation-fill": 62647,
+ "patch-exclamation": 62648,
+ "patch-minus-fill": 62649,
+ "patch-minus": 62650,
+ "patch-plus-fill": 62651,
+ "patch-plus": 62652,
+ "patch-question-fill": 62653,
+ "patch-question": 62654,
+ "pause-btn-fill": 62655,
+ "pause-btn": 62656,
+ "pause-circle-fill": 62657,
+ "pause-circle": 62658,
+ "pause-fill": 62659,
+ "pause": 62660,
+ "peace-fill": 62661,
+ "peace": 62662,
+ "pen-fill": 62663,
+ "pen": 62664,
+ "pencil-fill": 62665,
+ "pencil-square": 62666,
+ "pencil": 62667,
+ "pentagon-fill": 62668,
+ "pentagon-half": 62669,
+ "pentagon": 62670,
+ "people-fill": 62671,
+ "people": 62672,
+ "percent": 62673,
+ "person-badge-fill": 62674,
+ "person-badge": 62675,
+ "person-bounding-box": 62676,
+ "person-check-fill": 62677,
+ "person-check": 62678,
+ "person-circle": 62679,
+ "person-dash-fill": 62680,
+ "person-dash": 62681,
+ "person-fill": 62682,
+ "person-lines-fill": 62683,
+ "person-plus-fill": 62684,
+ "person-plus": 62685,
+ "person-square": 62686,
+ "person-x-fill": 62687,
+ "person-x": 62688,
+ "person": 62689,
+ "phone-fill": 62690,
+ "phone-landscape-fill": 62691,
+ "phone-landscape": 62692,
+ "phone-vibrate-fill": 62693,
+ "phone-vibrate": 62694,
+ "phone": 62695,
+ "pie-chart-fill": 62696,
+ "pie-chart": 62697,
+ "pin-angle-fill": 62698,
+ "pin-angle": 62699,
+ "pin-fill": 62700,
+ "pin": 62701,
+ "pip-fill": 62702,
+ "pip": 62703,
+ "play-btn-fill": 62704,
+ "play-btn": 62705,
+ "play-circle-fill": 62706,
+ "play-circle": 62707,
+ "play-fill": 62708,
+ "play": 62709,
+ "plug-fill": 62710,
+ "plug": 62711,
+ "plus-circle-dotted": 62712,
+ "plus-circle-fill": 62713,
+ "plus-circle": 62714,
+ "plus-square-dotted": 62715,
+ "plus-square-fill": 62716,
+ "plus-square": 62717,
+ "plus": 62718,
+ "power": 62719,
+ "printer-fill": 62720,
+ "printer": 62721,
+ "puzzle-fill": 62722,
+ "puzzle": 62723,
+ "question-circle-fill": 62724,
+ "question-circle": 62725,
+ "question-diamond-fill": 62726,
+ "question-diamond": 62727,
+ "question-octagon-fill": 62728,
+ "question-octagon": 62729,
+ "question-square-fill": 62730,
+ "question-square": 62731,
+ "question": 62732,
+ "rainbow": 62733,
+ "receipt-cutoff": 62734,
+ "receipt": 62735,
+ "reception-0": 62736,
+ "reception-1": 62737,
+ "reception-2": 62738,
+ "reception-3": 62739,
+ "reception-4": 62740,
+ "record-btn-fill": 62741,
+ "record-btn": 62742,
+ "record-circle-fill": 62743,
+ "record-circle": 62744,
+ "record-fill": 62745,
+ "record": 62746,
+ "record2-fill": 62747,
+ "record2": 62748,
+ "reply-all-fill": 62749,
+ "reply-all": 62750,
+ "reply-fill": 62751,
+ "reply": 62752,
+ "rss-fill": 62753,
+ "rss": 62754,
+ "rulers": 62755,
+ "save-fill": 62756,
+ "save": 62757,
+ "save2-fill": 62758,
+ "save2": 62759,
+ "scissors": 62760,
+ "screwdriver": 62761,
+ "search": 62762,
+ "segmented-nav": 62763,
+ "server": 62764,
+ "share-fill": 62765,
+ "share": 62766,
+ "shield-check": 62767,
+ "shield-exclamation": 62768,
+ "shield-fill-check": 62769,
+ "shield-fill-exclamation": 62770,
+ "shield-fill-minus": 62771,
+ "shield-fill-plus": 62772,
+ "shield-fill-x": 62773,
+ "shield-fill": 62774,
+ "shield-lock-fill": 62775,
+ "shield-lock": 62776,
+ "shield-minus": 62777,
+ "shield-plus": 62778,
+ "shield-shaded": 62779,
+ "shield-slash-fill": 62780,
+ "shield-slash": 62781,
+ "shield-x": 62782,
+ "shield": 62783,
+ "shift-fill": 62784,
+ "shift": 62785,
+ "shop-window": 62786,
+ "shop": 62787,
+ "shuffle": 62788,
+ "signpost-2-fill": 62789,
+ "signpost-2": 62790,
+ "signpost-fill": 62791,
+ "signpost-split-fill": 62792,
+ "signpost-split": 62793,
+ "signpost": 62794,
+ "sim-fill": 62795,
+ "sim": 62796,
+ "skip-backward-btn-fill": 62797,
+ "skip-backward-btn": 62798,
+ "skip-backward-circle-fill": 62799,
+ "skip-backward-circle": 62800,
+ "skip-backward-fill": 62801,
+ "skip-backward": 62802,
+ "skip-end-btn-fill": 62803,
+ "skip-end-btn": 62804,
+ "skip-end-circle-fill": 62805,
+ "skip-end-circle": 62806,
+ "skip-end-fill": 62807,
+ "skip-end": 62808,
+ "skip-forward-btn-fill": 62809,
+ "skip-forward-btn": 62810,
+ "skip-forward-circle-fill": 62811,
+ "skip-forward-circle": 62812,
+ "skip-forward-fill": 62813,
+ "skip-forward": 62814,
+ "skip-start-btn-fill": 62815,
+ "skip-start-btn": 62816,
+ "skip-start-circle-fill": 62817,
+ "skip-start-circle": 62818,
+ "skip-start-fill": 62819,
+ "skip-start": 62820,
+ "slack": 62821,
+ "slash-circle-fill": 62822,
+ "slash-circle": 62823,
+ "slash-square-fill": 62824,
+ "slash-square": 62825,
+ "slash": 62826,
+ "sliders": 62827,
+ "smartwatch": 62828,
+ "snow": 62829,
+ "snow2": 62830,
+ "snow3": 62831,
+ "sort-alpha-down-alt": 62832,
+ "sort-alpha-down": 62833,
+ "sort-alpha-up-alt": 62834,
+ "sort-alpha-up": 62835,
+ "sort-down-alt": 62836,
+ "sort-down": 62837,
+ "sort-numeric-down-alt": 62838,
+ "sort-numeric-down": 62839,
+ "sort-numeric-up-alt": 62840,
+ "sort-numeric-up": 62841,
+ "sort-up-alt": 62842,
+ "sort-up": 62843,
+ "soundwave": 62844,
+ "speaker-fill": 62845,
+ "speaker": 62846,
+ "speedometer": 62847,
+ "speedometer2": 62848,
+ "spellcheck": 62849,
+ "square-fill": 62850,
+ "square-half": 62851,
+ "square": 62852,
+ "stack": 62853,
+ "star-fill": 62854,
+ "star-half": 62855,
+ "star": 62856,
+ "stars": 62857,
+ "stickies-fill": 62858,
+ "stickies": 62859,
+ "sticky-fill": 62860,
+ "sticky": 62861,
+ "stop-btn-fill": 62862,
+ "stop-btn": 62863,
+ "stop-circle-fill": 62864,
+ "stop-circle": 62865,
+ "stop-fill": 62866,
+ "stop": 62867,
+ "stoplights-fill": 62868,
+ "stoplights": 62869,
+ "stopwatch-fill": 62870,
+ "stopwatch": 62871,
+ "subtract": 62872,
+ "suit-club-fill": 62873,
+ "suit-club": 62874,
+ "suit-diamond-fill": 62875,
+ "suit-diamond": 62876,
+ "suit-heart-fill": 62877,
+ "suit-heart": 62878,
+ "suit-spade-fill": 62879,
+ "suit-spade": 62880,
+ "sun-fill": 62881,
+ "sun": 62882,
+ "sunglasses": 62883,
+ "sunrise-fill": 62884,
+ "sunrise": 62885,
+ "sunset-fill": 62886,
+ "sunset": 62887,
+ "symmetry-horizontal": 62888,
+ "symmetry-vertical": 62889,
+ "table": 62890,
+ "tablet-fill": 62891,
+ "tablet-landscape-fill": 62892,
+ "tablet-landscape": 62893,
+ "tablet": 62894,
+ "tag-fill": 62895,
+ "tag": 62896,
+ "tags-fill": 62897,
+ "tags": 62898,
+ "telegram": 62899,
+ "telephone-fill": 62900,
+ "telephone-forward-fill": 62901,
+ "telephone-forward": 62902,
+ "telephone-inbound-fill": 62903,
+ "telephone-inbound": 62904,
+ "telephone-minus-fill": 62905,
+ "telephone-minus": 62906,
+ "telephone-outbound-fill": 62907,
+ "telephone-outbound": 62908,
+ "telephone-plus-fill": 62909,
+ "telephone-plus": 62910,
+ "telephone-x-fill": 62911,
+ "telephone-x": 62912,
+ "telephone": 62913,
+ "terminal-fill": 62914,
+ "terminal": 62915,
+ "text-center": 62916,
+ "text-indent-left": 62917,
+ "text-indent-right": 62918,
+ "text-left": 62919,
+ "text-paragraph": 62920,
+ "text-right": 62921,
+ "textarea-resize": 62922,
+ "textarea-t": 62923,
+ "textarea": 62924,
+ "thermometer-half": 62925,
+ "thermometer-high": 62926,
+ "thermometer-low": 62927,
+ "thermometer-snow": 62928,
+ "thermometer-sun": 62929,
+ "thermometer": 62930,
+ "three-dots-vertical": 62931,
+ "three-dots": 62932,
+ "toggle-off": 62933,
+ "toggle-on": 62934,
+ "toggle2-off": 62935,
+ "toggle2-on": 62936,
+ "toggles": 62937,
+ "toggles2": 62938,
+ "tools": 62939,
+ "tornado": 62940,
+ "trash-fill": 62941,
+ "trash": 62942,
+ "trash2-fill": 62943,
+ "trash2": 62944,
+ "tree-fill": 62945,
+ "tree": 62946,
+ "triangle-fill": 62947,
+ "triangle-half": 62948,
+ "triangle": 62949,
+ "trophy-fill": 62950,
+ "trophy": 62951,
+ "tropical-storm": 62952,
+ "truck-flatbed": 62953,
+ "truck": 62954,
+ "tsunami": 62955,
+ "tv-fill": 62956,
+ "tv": 62957,
+ "twitch": 62958,
+ "twitter": 62959,
+ "type-bold": 62960,
+ "type-h1": 62961,
+ "type-h2": 62962,
+ "type-h3": 62963,
+ "type-italic": 62964,
+ "type-strikethrough": 62965,
+ "type-underline": 62966,
+ "type": 62967,
+ "ui-checks-grid": 62968,
+ "ui-checks": 62969,
+ "ui-radios-grid": 62970,
+ "ui-radios": 62971,
+ "umbrella-fill": 62972,
+ "umbrella": 62973,
+ "union": 62974,
+ "unlock-fill": 62975,
+ "unlock": 62976,
+ "upc-scan": 62977,
+ "upc": 62978,
+ "upload": 62979,
+ "vector-pen": 62980,
+ "view-list": 62981,
+ "view-stacked": 62982,
+ "vinyl-fill": 62983,
+ "vinyl": 62984,
+ "voicemail": 62985,
+ "volume-down-fill": 62986,
+ "volume-down": 62987,
+ "volume-mute-fill": 62988,
+ "volume-mute": 62989,
+ "volume-off-fill": 62990,
+ "volume-off": 62991,
+ "volume-up-fill": 62992,
+ "volume-up": 62993,
+ "vr": 62994,
+ "wallet-fill": 62995,
+ "wallet": 62996,
+ "wallet2": 62997,
+ "watch": 62998,
+ "water": 62999,
+ "whatsapp": 63000,
+ "wifi-1": 63001,
+ "wifi-2": 63002,
+ "wifi-off": 63003,
+ "wifi": 63004,
+ "wind": 63005,
+ "window-dock": 63006,
+ "window-sidebar": 63007,
+ "window": 63008,
+ "wrench": 63009,
+ "x-circle-fill": 63010,
+ "x-circle": 63011,
+ "x-diamond-fill": 63012,
+ "x-diamond": 63013,
+ "x-octagon-fill": 63014,
+ "x-octagon": 63015,
+ "x-square-fill": 63016,
+ "x-square": 63017,
+ "x": 63018,
+ "youtube": 63019,
+ "zoom-in": 63020,
+ "zoom-out": 63021,
+ "bank": 63022,
+ "bank2": 63023,
+ "bell-slash-fill": 63024,
+ "bell-slash": 63025,
+ "cash-coin": 63026,
+ "check-lg": 63027,
+ "coin": 63028,
+ "currency-bitcoin": 63029,
+ "currency-dollar": 63030,
+ "currency-euro": 63031,
+ "currency-exchange": 63032,
+ "currency-pound": 63033,
+ "currency-yen": 63034,
+ "dash-lg": 63035,
+ "exclamation-lg": 63036,
+ "file-earmark-pdf-fill": 63037,
+ "file-earmark-pdf": 63038,
+ "file-pdf-fill": 63039,
+ "file-pdf": 63040,
+ "gender-ambiguous": 63041,
+ "gender-female": 63042,
+ "gender-male": 63043,
+ "gender-trans": 63044,
+ "headset-vr": 63045,
+ "info-lg": 63046,
+ "mastodon": 63047,
+ "messenger": 63048,
+ "piggy-bank-fill": 63049,
+ "piggy-bank": 63050,
+ "pin-map-fill": 63051,
+ "pin-map": 63052,
+ "plus-lg": 63053,
+ "question-lg": 63054,
+ "recycle": 63055,
+ "reddit": 63056,
+ "safe-fill": 63057,
+ "safe2-fill": 63058,
+ "safe2": 63059,
+ "sd-card-fill": 63060,
+ "sd-card": 63061,
+ "skype": 63062,
+ "slash-lg": 63063,
+ "translate": 63064,
+ "x-lg": 63065,
+ "safe": 63066,
+ "apple": 63067,
+ "microsoft": 63069,
+ "windows": 63070,
+ "behance": 63068,
+ "dribbble": 63071,
+ "line": 63072,
+ "medium": 63073,
+ "paypal": 63074,
+ "pinterest": 63075,
+ "signal": 63076,
+ "snapchat": 63077,
+ "spotify": 63078,
+ "stack-overflow": 63079,
+ "strava": 63080,
+ "wordpress": 63081,
+ "vimeo": 63082,
+ "activity": 63083,
+ "easel2-fill": 63084,
+ "easel2": 63085,
+ "easel3-fill": 63086,
+ "easel3": 63087,
+ "fan": 63088,
+ "fingerprint": 63089,
+ "graph-down-arrow": 63090,
+ "graph-up-arrow": 63091,
+ "hypnotize": 63092,
+ "magic": 63093,
+ "person-rolodex": 63094,
+ "person-video": 63095,
+ "person-video2": 63096,
+ "person-video3": 63097,
+ "person-workspace": 63098,
+ "radioactive": 63099,
+ "webcam-fill": 63100,
+ "webcam": 63101,
+ "yin-yang": 63102,
+ "bandaid-fill": 63104,
+ "bandaid": 63105,
+ "bluetooth": 63106,
+ "body-text": 63107,
+ "boombox": 63108,
+ "boxes": 63109,
+ "dpad-fill": 63110,
+ "dpad": 63111,
+ "ear-fill": 63112,
+ "ear": 63113,
+ "envelope-check-1": 63114,
+ "envelope-check-fill": 63115,
+ "envelope-check": 63116,
+ "envelope-dash-1": 63117,
+ "envelope-dash-fill": 63118,
+ "envelope-dash": 63119,
+ "envelope-exclamation-1": 63120,
+ "envelope-exclamation-fill": 63121,
+ "envelope-exclamation": 63122,
+ "envelope-plus-fill": 63123,
+ "envelope-plus": 63124,
+ "envelope-slash-1": 63125,
+ "envelope-slash-fill": 63126,
+ "envelope-slash": 63127,
+ "envelope-x-1": 63128,
+ "envelope-x-fill": 63129,
+ "envelope-x": 63130,
+ "explicit-fill": 63131,
+ "explicit": 63132,
+ "git": 63133,
+ "infinity": 63134,
+ "list-columns-reverse": 63135,
+ "list-columns": 63136,
+ "meta": 63137,
+ "mortorboard-fill": 63138,
+ "mortorboard": 63139,
+ "nintendo-switch": 63140,
+ "pc-display-horizontal": 63141,
+ "pc-display": 63142,
+ "pc-horizontal": 63143,
+ "pc": 63144,
+ "playstation": 63145,
+ "plus-slash-minus": 63146,
+ "projector-fill": 63147,
+ "projector": 63148,
+ "qr-code-scan": 63149,
+ "qr-code": 63150,
+ "quora": 63151,
+ "quote": 63152,
+ "robot": 63153,
+ "send-check-fill": 63154,
+ "send-check": 63155,
+ "send-dash-fill": 63156,
+ "send-dash": 63157,
+ "send-exclamation-1": 63158,
+ "send-exclamation-fill": 63159,
+ "send-exclamation": 63160,
+ "send-fill": 63161,
+ "send-plus-fill": 63162,
+ "send-plus": 63163,
+ "send-slash-fill": 63164,
+ "send-slash": 63165,
+ "send-x-fill": 63166,
+ "send-x": 63167,
+ "send": 63168,
+ "steam": 63169,
+ "terminal-dash-1": 63170,
+ "terminal-dash": 63171,
+ "terminal-plus": 63172,
+ "terminal-split": 63173,
+ "ticket-detailed-fill": 63174,
+ "ticket-detailed": 63175,
+ "ticket-fill": 63176,
+ "ticket-perforated-fill": 63177,
+ "ticket-perforated": 63178,
+ "ticket": 63179,
+ "tiktok": 63180,
+ "window-dash": 63181,
+ "window-desktop": 63182,
+ "window-fullscreen": 63183,
+ "window-plus": 63184,
+ "window-split": 63185,
+ "window-stack": 63186,
+ "window-x": 63187,
+ "xbox": 63188,
+ "ethernet": 63189,
+ "hdmi-fill": 63190,
+ "hdmi": 63191,
+ "usb-c-fill": 63192,
+ "usb-c": 63193,
+ "usb-fill": 63194,
+ "usb-plug-fill": 63195,
+ "usb-plug": 63196,
+ "usb-symbol": 63197,
+ "usb": 63198,
+ "boombox-fill": 63199,
+ "displayport-1": 63200,
+ "displayport": 63201,
+ "gpu-card": 63202,
+ "memory": 63203,
+ "modem-fill": 63204,
+ "modem": 63205,
+ "motherboard-fill": 63206,
+ "motherboard": 63207,
+ "optical-audio-fill": 63208,
+ "optical-audio": 63209,
+ "pci-card": 63210,
+ "router-fill": 63211,
+ "router": 63212,
+ "ssd-fill": 63213,
+ "ssd": 63214,
+ "thunderbolt-fill": 63215,
+ "thunderbolt": 63216,
+ "usb-drive-fill": 63217,
+ "usb-drive": 63218,
+ "usb-micro-fill": 63219,
+ "usb-micro": 63220,
+ "usb-mini-fill": 63221,
+ "usb-mini": 63222,
+ "cloud-haze2": 63223,
+ "device-hdd-fill": 63224,
+ "device-hdd": 63225,
+ "device-ssd-fill": 63226,
+ "device-ssd": 63227,
+ "displayport-fill": 63228,
+ "mortarboard-fill": 63229,
+ "mortarboard": 63230,
+ "terminal-x": 63231,
+ "arrow-through-heart-fill": 63232,
+ "arrow-through-heart": 63233,
+ "badge-sd-fill": 63234,
+ "badge-sd": 63235,
+ "bag-heart-fill": 63236,
+ "bag-heart": 63237,
+ "balloon-fill": 63238,
+ "balloon-heart-fill": 63239,
+ "balloon-heart": 63240,
+ "balloon": 63241,
+ "box2-fill": 63242,
+ "box2-heart-fill": 63243,
+ "box2-heart": 63244,
+ "box2": 63245,
+ "braces-asterisk": 63246,
+ "calendar-heart-fill": 63247,
+ "calendar-heart": 63248,
+ "calendar2-heart-fill": 63249,
+ "calendar2-heart": 63250,
+ "chat-heart-fill": 63251,
+ "chat-heart": 63252,
+ "chat-left-heart-fill": 63253,
+ "chat-left-heart": 63254,
+ "chat-right-heart-fill": 63255,
+ "chat-right-heart": 63256,
+ "chat-square-heart-fill": 63257,
+ "chat-square-heart": 63258,
+ "clipboard-check-fill": 63259,
+ "clipboard-data-fill": 63260,
+ "clipboard-fill": 63261,
+ "clipboard-heart-fill": 63262,
+ "clipboard-heart": 63263,
+ "clipboard-minus-fill": 63264,
+ "clipboard-plus-fill": 63265,
+ "clipboard-pulse": 63266,
+ "clipboard-x-fill": 63267,
+ "clipboard2-check-fill": 63268,
+ "clipboard2-check": 63269,
+ "clipboard2-data-fill": 63270,
+ "clipboard2-data": 63271,
+ "clipboard2-fill": 63272,
+ "clipboard2-heart-fill": 63273,
+ "clipboard2-heart": 63274,
+ "clipboard2-minus-fill": 63275,
+ "clipboard2-minus": 63276,
+ "clipboard2-plus-fill": 63277,
+ "clipboard2-plus": 63278,
+ "clipboard2-pulse-fill": 63279,
+ "clipboard2-pulse": 63280,
+ "clipboard2-x-fill": 63281,
+ "clipboard2-x": 63282,
+ "clipboard2": 63283,
+ "emoji-kiss-fill": 63284,
+ "emoji-kiss": 63285,
+ "envelope-heart-fill": 63286,
+ "envelope-heart": 63287,
+ "envelope-open-heart-fill": 63288,
+ "envelope-open-heart": 63289,
+ "envelope-paper-fill": 63290,
+ "envelope-paper-heart-fill": 63291,
+ "envelope-paper-heart": 63292,
+ "envelope-paper": 63293,
+ "filetype-aac": 63294,
+ "filetype-ai": 63295,
+ "filetype-bmp": 63296,
+ "filetype-cs": 63297,
+ "filetype-css": 63298,
+ "filetype-csv": 63299,
+ "filetype-doc": 63300,
+ "filetype-docx": 63301,
+ "filetype-exe": 63302,
+ "filetype-gif": 63303,
+ "filetype-heic": 63304,
+ "filetype-html": 63305,
+ "filetype-java": 63306,
+ "filetype-jpg": 63307,
+ "filetype-js": 63308,
+ "filetype-jsx": 63309,
+ "filetype-key": 63310,
+ "filetype-m4p": 63311,
+ "filetype-md": 63312,
+ "filetype-mdx": 63313,
+ "filetype-mov": 63314,
+ "filetype-mp3": 63315,
+ "filetype-mp4": 63316,
+ "filetype-otf": 63317,
+ "filetype-pdf": 63318,
+ "filetype-php": 63319,
+ "filetype-png": 63320,
+ "filetype-ppt-1": 63321,
+ "filetype-ppt": 63322,
+ "filetype-psd": 63323,
+ "filetype-py": 63324,
+ "filetype-raw": 63325,
+ "filetype-rb": 63326,
+ "filetype-sass": 63327,
+ "filetype-scss": 63328,
+ "filetype-sh": 63329,
+ "filetype-svg": 63330,
+ "filetype-tiff": 63331,
+ "filetype-tsx": 63332,
+ "filetype-ttf": 63333,
+ "filetype-txt": 63334,
+ "filetype-wav": 63335,
+ "filetype-woff": 63336,
+ "filetype-xls-1": 63337,
+ "filetype-xls": 63338,
+ "filetype-xml": 63339,
+ "filetype-yml": 63340,
+ "heart-arrow": 63341,
+ "heart-pulse-fill": 63342,
+ "heart-pulse": 63343,
+ "heartbreak-fill": 63344,
+ "heartbreak": 63345,
+ "hearts": 63346,
+ "hospital-fill": 63347,
+ "hospital": 63348,
+ "house-heart-fill": 63349,
+ "house-heart": 63350,
+ "incognito": 63351,
+ "magnet-fill": 63352,
+ "magnet": 63353,
+ "person-heart": 63354,
+ "person-hearts": 63355,
+ "phone-flip": 63356,
+ "plugin": 63357,
+ "postage-fill": 63358,
+ "postage-heart-fill": 63359,
+ "postage-heart": 63360,
+ "postage": 63361,
+ "postcard-fill": 63362,
+ "postcard-heart-fill": 63363,
+ "postcard-heart": 63364,
+ "postcard": 63365,
+ "search-heart-fill": 63366,
+ "search-heart": 63367,
+ "sliders2-vertical": 63368,
+ "sliders2": 63369,
+ "trash3-fill": 63370,
+ "trash3": 63371,
+ "valentine": 63372,
+ "valentine2": 63373,
+ "wrench-adjustable-circle-fill": 63374,
+ "wrench-adjustable-circle": 63375,
+ "wrench-adjustable": 63376,
+ "filetype-json": 63377,
+ "filetype-pptx": 63378,
+ "filetype-xlsx": 63379,
+ "1-circle-1": 63380,
+ "1-circle-fill-1": 63381,
+ "1-circle-fill": 63382,
+ "1-circle": 63383,
+ "1-square-fill": 63384,
+ "1-square": 63385,
+ "2-circle-1": 63386,
+ "2-circle-fill-1": 63387,
+ "2-circle-fill": 63388,
+ "2-circle": 63389,
+ "2-square-fill": 63390,
+ "2-square": 63391,
+ "3-circle-1": 63392,
+ "3-circle-fill-1": 63393,
+ "3-circle-fill": 63394,
+ "3-circle": 63395,
+ "3-square-fill": 63396,
+ "3-square": 63397,
+ "4-circle-1": 63398,
+ "4-circle-fill-1": 63399,
+ "4-circle-fill": 63400,
+ "4-circle": 63401,
+ "4-square-fill": 63402,
+ "4-square": 63403,
+ "5-circle-1": 63404,
+ "5-circle-fill-1": 63405,
+ "5-circle-fill": 63406,
+ "5-circle": 63407,
+ "5-square-fill": 63408,
+ "5-square": 63409,
+ "6-circle-1": 63410,
+ "6-circle-fill-1": 63411,
+ "6-circle-fill": 63412,
+ "6-circle": 63413,
+ "6-square-fill": 63414,
+ "6-square": 63415,
+ "7-circle-1": 63416,
+ "7-circle-fill-1": 63417,
+ "7-circle-fill": 63418,
+ "7-circle": 63419,
+ "7-square-fill": 63420,
+ "7-square": 63421,
+ "8-circle-1": 63422,
+ "8-circle-fill-1": 63423,
+ "8-circle-fill": 63424,
+ "8-circle": 63425,
+ "8-square-fill": 63426,
+ "8-square": 63427,
+ "9-circle-1": 63428,
+ "9-circle-fill-1": 63429,
+ "9-circle-fill": 63430,
+ "9-circle": 63431,
+ "9-square-fill": 63432,
+ "9-square": 63433,
+ "airplane-engines-fill": 63434,
+ "airplane-engines": 63435,
+ "airplane-fill": 63436,
+ "airplane": 63437,
+ "alexa": 63438,
+ "alipay": 63439,
+ "android": 63440,
+ "android2": 63441,
+ "box-fill": 63442,
+ "box-seam-fill": 63443,
+ "browser-chrome": 63444,
+ "browser-edge": 63445,
+ "browser-firefox": 63446,
+ "browser-safari": 63447,
+ "c-circle-1": 63448,
+ "c-circle-fill-1": 63449,
+ "c-circle-fill": 63450,
+ "c-circle": 63451,
+ "c-square-fill": 63452,
+ "c-square": 63453,
+ "capsule-pill": 63454,
+ "capsule": 63455,
+ "car-front-fill": 63456,
+ "car-front": 63457,
+ "cassette-fill": 63458,
+ "cassette": 63459,
+ "cc-circle-1": 63460,
+ "cc-circle-fill-1": 63461,
+ "cc-circle-fill": 63462,
+ "cc-circle": 63463,
+ "cc-square-fill": 63464,
+ "cc-square": 63465,
+ "cup-hot-fill": 63466,
+ "cup-hot": 63467,
+ "currency-rupee": 63468,
+ "dropbox": 63469,
+ "escape": 63470,
+ "fast-forward-btn-fill": 63471,
+ "fast-forward-btn": 63472,
+ "fast-forward-circle-fill": 63473,
+ "fast-forward-circle": 63474,
+ "fast-forward-fill": 63475,
+ "fast-forward": 63476,
+ "filetype-sql": 63477,
+ "fire": 63478,
+ "google-play": 63479,
+ "h-circle-1": 63480,
+ "h-circle-fill-1": 63481,
+ "h-circle-fill": 63482,
+ "h-circle": 63483,
+ "h-square-fill": 63484,
+ "h-square": 63485,
+ "indent": 63486,
+ "lungs-fill": 63487,
+ "lungs": 63488,
+ "microsoft-teams": 63489,
+ "p-circle-1": 63490,
+ "p-circle-fill-1": 63491,
+ "p-circle-fill": 63492,
+ "p-circle": 63493,
+ "p-square-fill": 63494,
+ "p-square": 63495,
+ "pass-fill": 63496,
+ "pass": 63497,
+ "prescription": 63498,
+ "prescription2": 63499,
+ "r-circle-1": 63500,
+ "r-circle-fill-1": 63501,
+ "r-circle-fill": 63502,
+ "r-circle": 63503,
+ "r-square-fill": 63504,
+ "r-square": 63505,
+ "repeat-1": 63506,
+ "repeat": 63507,
+ "rewind-btn-fill": 63508,
+ "rewind-btn": 63509,
+ "rewind-circle-fill": 63510,
+ "rewind-circle": 63511,
+ "rewind-fill": 63512,
+ "rewind": 63513,
+ "train-freight-front-fill": 63514,
+ "train-freight-front": 63515,
+ "train-front-fill": 63516,
+ "train-front": 63517,
+ "train-lightrail-front-fill": 63518,
+ "train-lightrail-front": 63519,
+ "truck-front-fill": 63520,
+ "truck-front": 63521,
+ "ubuntu": 63522,
+ "unindent": 63523,
+ "unity": 63524,
+ "universal-access-circle": 63525,
+ "universal-access": 63526,
+ "virus": 63527,
+ "virus2": 63528,
+ "wechat": 63529,
+ "yelp": 63530,
+ "sign-stop-fill": 63531,
+ "sign-stop-lights-fill": 63532,
+ "sign-stop-lights": 63533,
+ "sign-stop": 63534,
+ "sign-turn-left-fill": 63535,
+ "sign-turn-left": 63536,
+ "sign-turn-right-fill": 63537,
+ "sign-turn-right": 63538,
+ "sign-turn-slight-left-fill": 63539,
+ "sign-turn-slight-left": 63540,
+ "sign-turn-slight-right-fill": 63541,
+ "sign-turn-slight-right": 63542,
+ "sign-yield-fill": 63543,
+ "sign-yield": 63544,
+ "ev-station-fill": 63545,
+ "ev-station": 63546,
+ "fuel-pump-diesel-fill": 63547,
+ "fuel-pump-diesel": 63548,
+ "fuel-pump-fill": 63549,
+ "fuel-pump": 63550
+}
+
+var keys = Object.keys(icons);
+loadIconList(keys);
+
+function loadIconList(datas){
+ var icons = '';
+ var arr = Array.from(datas);
+ for (let index = 0; index < arr.length; index++) {
+ icons+='
\
+ '+arr[index]+'\
+
'
+ }
+ document.getElementById("iconList").innerHTML = icons;
+};
+
+
+
+
diff --git a/public/build/js/pages/card.init.js b/public/build/js/pages/card.init.js
new file mode 100644
index 0000000..a3e5d1e
--- /dev/null
+++ b/public/build/js/pages/card.init.js
@@ -0,0 +1,70 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Card init js
+*/
+
+var Portlet = function() {
+ el = document.querySelector('.card a[data-toggle="reload"]');
+ if (el) {
+ el.addEventListener("click", function(ev) {
+ ev.preventDefault();
+ var $portlet = el.closest(".card");
+ insertEl =
+ '
';
+ $portlet.children[1].insertAdjacentHTML("beforeend", insertEl);
+ var $pd = $portlet.getElementsByClassName("card-preloader")[0];
+ setTimeout(function() {
+ $pd.remove();
+ }, 500 + 300 * (Math.random() * 5));
+ });
+ }
+};
+
+Portlet();
+
+var growingLoader = function() {
+ element = document.querySelector('.card a[data-toggle="growing-reload"]');
+ if (element) {
+ element.addEventListener("click", function(ev) {
+ ev.preventDefault();
+ var $portlet = element.closest(".card");
+ insertEl =
+ '
';
+ $portlet.children[1].insertAdjacentHTML("beforeend", insertEl);
+ var $pd = $portlet.getElementsByClassName("card-preloader")[0];
+ setTimeout(function() {
+ $pd.remove();
+ }, 500 + 300 * (Math.random() * 5));
+ });
+ }
+};
+growingLoader();
+
+var customLoader = function() {
+ customLoader1 = document.querySelector(
+ '.card a[data-toggle="customer-loader"]'
+ );
+ if (customLoader1) {
+ customLoader1.addEventListener("click", function(elem) {
+ elem.preventDefault();
+ var $portlet = customLoader1.closest(".card");
+ insertEl =
+ '
';
+ $portlet.children[1].insertAdjacentHTML("beforeend", insertEl);
+ var $pd = $portlet.getElementsByClassName("card-preloader")[0];
+ setTimeout(function() {
+ $pd.remove();
+ }, 500 + 300 * (Math.random() * 5));
+ });
+ }
+};
+
+customLoader();
+
+//card-remove Js
+function delthis(id) {
+ document.getElementById(id).remove();
+}
\ No newline at end of file
diff --git a/public/build/js/pages/coming-soon.init.js b/public/build/js/pages/coming-soon.init.js
new file mode 100644
index 0000000..094dfce
--- /dev/null
+++ b/public/build/js/pages/coming-soon.init.js
@@ -0,0 +1,54 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.comom
+File: Coming soon Init Js File
+*/
+document.addEventListener('DOMContentLoaded', function () {
+ var mainArray = Array.from(document.querySelectorAll(".countdownlist"))
+ mainArray.forEach(function (item) {
+ var countdownVal = item.getAttribute("data-countdown")
+
+ // Set the date we're counting down to
+ var countDownDate = new Date(countdownVal).getTime();
+
+ // Update the count down every 1 second
+ var countDown = setInterval(function () {
+ // Get today's date and time
+ var currentTime = new Date().getTime();
+ // Find the distance between currentTime and the count down date
+ var distance = countDownDate - currentTime;
+
+
+ // Time calculations for days, hours, minutes and seconds
+ var days = Math.floor(distance / (1000 * 60 * 60 * 24));
+ var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
+ var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
+ var seconds = Math.floor((distance % (1000 * 60)) / 1000);
+
+ var countDownBlock = '
' +
+ '
Days
' + '
' + days + '
' +
+ '
' +
+ '
' +
+ '
Hours
' + '
' + hours + '
' +
+ '
' +
+ '
' +
+ '
Minutes
' + '
' + minutes + '
' +
+ '
' +
+ '
' +
+ '
Seconds
' + '
' + seconds + '
' +
+ '
';
+
+ // Output the result in an element with id="countDownBlock"
+ if (item) {
+ item.innerHTML = countDownBlock;
+ }
+ // If the count down is over, write some text
+ if (distance < 0) {
+ clearInterval(countDown);
+ item.innerHTML = '
The countdown has ended!
';
+ }
+ }, 1000);
+ })
+});
\ No newline at end of file
diff --git a/public/build/js/pages/dashboard-ecommerce.init.js b/public/build/js/pages/dashboard-ecommerce.init.js
new file mode 100644
index 0000000..4ab49e6
--- /dev/null
+++ b/public/build/js/pages/dashboard-ecommerce.init.js
@@ -0,0 +1,247 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Ecommerce Dashboard init js
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(
+ newValue
+ );
+ if (color) return color;
+ else return newValue;
+ } else {
+ var val = value.split(",");
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(
+ document.documentElement
+ ).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ } else {
+ console.warn('data-colors atributes not found on', chartId);
+ }
+ }
+}
+
+var linechartcustomerColors = getChartColorsArray("customer_impression_charts");
+if (linechartcustomerColors) {
+ var options = {
+ series: [{
+ name: "Orders",
+ type: "area",
+ data: [34, 65, 46, 68, 49, 61, 42, 44, 78, 52, 63, 67],
+ },
+ {
+ name: "Earnings",
+ type: "bar",
+ data: [
+ 89.25, 98.58, 68.74, 108.87, 77.54, 84.03, 51.24, 28.57, 92.57, 42.36,
+ 88.51, 36.57,
+ ],
+ },
+ {
+ name: "Refunds",
+ type: "line",
+ data: [8, 12, 7, 17, 21, 11, 5, 9, 7, 29, 12, 35],
+ },
+ ],
+ chart: {
+ height: 310,
+ type: "line",
+ toolbar: {
+ show: false,
+ },
+ },
+ stroke: {
+ curve: "straight",
+ dashArray: [0, 0, 8],
+ width: [0.1, 0, 2],
+ },
+ fill: {
+ opacity: [0.03, 0.9, 1],
+ },
+ markers: {
+ size: [0, 0, 0],
+ strokeWidth: 2,
+ hover: {
+ size: 4,
+ },
+ },
+ xaxis: {
+ categories: [
+ "Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "May",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dec",
+ ],
+ axisTicks: {
+ show: false,
+ },
+ axisBorder: {
+ show: false,
+ },
+ },
+ grid: {
+ show: true,
+ xaxis: {
+ lines: {
+ show: true,
+ },
+ },
+ yaxis: {
+ lines: {
+ show: false,
+ },
+ },
+ padding: {
+ top: 0,
+ right: -2,
+ bottom: 15,
+ left: 10,
+ },
+ },
+ legend: {
+ show: true,
+ horizontalAlign: "center",
+ offsetX: 0,
+ offsetY: -5,
+ markers: {
+ width: 9,
+ height: 9,
+ radius: 6,
+ },
+ itemMargin: {
+ horizontal: 10,
+ vertical: 0,
+ },
+ },
+ plotOptions: {
+ bar: {
+ columnWidth: "20%",
+ barHeight: "100%",
+ borderRadius: [8],
+ },
+ },
+ colors: linechartcustomerColors,
+ tooltip: {
+ shared: true,
+ y: [{
+ formatter: function (y) {
+ if (typeof y !== "undefined") {
+ return y.toFixed(0);
+ }
+ return y;
+ },
+ },
+ {
+ formatter: function (y) {
+ if (typeof y !== "undefined") {
+ return "$" + y.toFixed(2) + "k";
+ }
+ return y;
+ },
+ },
+ {
+ formatter: function (y) {
+ if (typeof y !== "undefined") {
+ return y.toFixed(0) + " Sales";
+ }
+ return y;
+ },
+ },
+ ],
+ },
+ };
+ var chart = new ApexCharts(
+ document.querySelector("#customer_impression_charts"),
+ options
+ );
+ chart.render();
+}
+
+// Simple Donut Charts
+var chartDonutBasicColors = getChartColorsArray("#store-visits-source");
+if (chartDonutBasicColors) {
+ var options = {
+ series: [44, 55, 41, 17, 15],
+ labels: ["Direct", "Social", "Email", "Other", "Referrals"],
+ chart: {
+ height: 333,
+ type: "donut",
+ },
+ legend: {
+ position: "bottom",
+ },
+ stroke: {
+ show: false
+ },
+ dataLabels: {
+ dropShadow: {
+ enabled: false,
+ },
+ },
+ colors: chartDonutBasicColors,
+ };
+
+ var chart = new ApexCharts(
+ document.querySelector("#store-visits-source"),
+ options
+ );
+ chart.render();
+}
+
+var swiper = new Swiper(".selling-product", {
+ slidesPerView: "auto",
+ spaceBetween: 15,
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+});
+
+function currentTime() {
+ var ampm = new Date().getHours() >= 12 ? "pm" : "am";
+ var hour =
+ new Date().getHours() > 12 ?
+ new Date().getHours() % 12 :
+ new Date().getHours();
+ var minute =
+ new Date().getMinutes() < 10 ?
+ "0" + new Date().getMinutes() :
+ new Date().getMinutes();
+ if (hour < 10) {
+ return "0" + hour + ":" + minute + " " + ampm;
+ } else {
+ return hour + ":" + minute + " " + ampm;
+ }
+}
+
+setInterval(currentTime, 1000);
\ No newline at end of file
diff --git a/public/build/js/pages/datatables.init.js b/public/build/js/pages/datatables.init.js
new file mode 100644
index 0000000..2ab084a
--- /dev/null
+++ b/public/build/js/pages/datatables.init.js
@@ -0,0 +1,110 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: datatables init js
+*/
+
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#example',);
+});
+
+
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#scroll-vertical', {
+ "scrollY": "210px",
+ "scrollCollapse": true,
+ "paging": false
+ });
+
+});
+
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#scroll-horizontal', {
+ "scrollX": true
+ });
+});
+
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#alternative-pagination', {
+ "pagingType": "full_numbers"
+ });
+});
+
+$(document).ready(function() {
+ var t = $('#add-rows').DataTable();
+ var counter = 1;
+
+ $('#addRow').on( 'click', function () {
+ t.row.add( [
+ counter +'.1',
+ counter +'.2',
+ counter +'.3',
+ counter +'.4',
+ counter +'.5',
+ counter +'.6',
+ counter +'.7',
+ counter +'.8',
+ counter +'.9',
+ counter +'.10',
+ counter +'.11',
+ counter +'.12'
+ ] ).draw( false );
+
+ counter++;
+ } );
+
+ // Automatically add a first row of data
+ $('#addRow').click();
+});
+
+
+$(document).ready(function() {
+ $('#example').DataTable();
+});
+
+//fixed header
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#fixed-header', {
+ "fixedHeader": true
+ });
+
+});
+
+//modal data datables
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#model-datatables', {
+ responsive: {
+ details: {
+ display: $.fn.dataTable.Responsive.display.modal( {
+ header: function ( row ) {
+ var data = row.data();
+ return 'Details for '+data[0]+' '+data[1];
+ }
+ } ),
+ renderer: $.fn.dataTable.Responsive.renderer.tableAll( {
+ tableClass: 'table'
+ } )
+ }
+ }
+ });
+
+});
+
+//buttons exmples
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#buttons-datatables', {
+ dom: 'Bfrtip',
+ buttons: [
+ 'copy', 'csv', 'excel', 'print', 'pdf'
+ ]
+ });
+});
+
+//buttons exmples
+document.addEventListener('DOMContentLoaded', function () {
+ let table = new DataTable('#ajax-datatables', {
+ "ajax": '../build/json/datatable.json'
+ });
+});
\ No newline at end of file
diff --git a/public/build/js/pages/flag-input.init.js b/public/build/js/pages/flag-input.init.js
new file mode 100644
index 0000000..90c73fc
--- /dev/null
+++ b/public/build/js/pages/flag-input.init.js
@@ -0,0 +1,135 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: flag input Js File
+*/
+(function () {
+ ("use strict");
+ var url = "../build/json/";
+ var countryListData = '';
+ var getJSON = function (jsonurl, callback) {
+ var xhr = new XMLHttpRequest();
+ xhr.open("GET", url + jsonurl, true);
+ xhr.responseType = "json";
+ xhr.onload = function () {
+ var status = xhr.status;
+ if (status === 200) {
+ callback(null, xhr.response);
+ } else {
+ callback(status, xhr.response);
+ }
+ };
+ xhr.send();
+ };
+ // get json
+ getJSON("country-list.json", function (err, data) {
+ if (err !== null) {
+ console.log("Something went wrong: " + err);
+ } else {
+ countryListData = data;
+ loadCountryListData(countryListData);
+ }
+ });
+ function loadCountryListData(datas) {
+ var mainArray = Array.from(document.querySelectorAll("[data-input-flag]"))
+ var flags = '';
+ var arr = Array.from(datas);
+ for (let index = 0; index < arr.length; index++) {
+ flags += '
\
+ \
+ \
+
'+ arr[index]['countryName'] + '
' + arr[index]['countryCode'] + ' \
+
\
+ ';
+ }
+ for (let i = 0; i < mainArray.length; i++) {
+ mainArray[i].querySelector(".dropdown-menu-list").innerHTML = '';
+ mainArray[i].querySelector(".dropdown-menu-list").innerHTML = flags;
+ countryListClickEvent(mainArray[i]);
+ }
+ };
+ function countryListClickEvent(item) {
+ if (item.querySelector(".country-flagimg")) {
+ var countryFlagImg = item.querySelector(".country-flagimg").getAttribute('src');
+ }
+ Array.from(item.querySelectorAll(".dropdown-menu li")).forEach(function (subitem) {
+ var optionFlagImg = subitem.querySelector(".options-flagimg").getAttribute("src");
+ subitem.addEventListener("click", function () {
+ var optionCodeNo = subitem.querySelector(".countrylist-codeno").innerHTML;
+ if (item.querySelector("button")) {
+ item.querySelector("button img").setAttribute("src", optionFlagImg);
+ if (item.querySelector("button span")) {
+ item.querySelector("button span").innerHTML = optionCodeNo;
+ }
+ }
+ });
+ if (countryFlagImg == optionFlagImg) {
+ subitem.classList.add("active");
+ }
+ });
+ // data option flag img with name
+ Array.from(document.querySelectorAll("[data-option-flag-img-name]")).forEach(function (item) {
+ var flagImg = getComputedStyle(item.querySelector(".flag-input")).backgroundImage;
+ var countryFlagImg = flagImg.substring(
+ flagImg.indexOf("/as") + 1,
+ flagImg.lastIndexOf('"')
+ );
+ Array.from(item.querySelectorAll(".dropdown-menu li")).forEach(function (subitem) {
+ var optionFlagImg = subitem.querySelector(".options-flagimg").getAttribute("src");
+ subitem.addEventListener("click", function () {
+ var optionCountryName = subitem.querySelector(".country-name").innerHTML;
+ item.querySelector(".flag-input").style.backgroundImage = "url(" + optionFlagImg + ")";
+ item.querySelector(".flag-input").value = optionCountryName;
+ });
+ if (countryFlagImg == optionFlagImg) {
+ subitem.classList.add("active");
+ item.querySelector(".flag-input").value = subitem.querySelector(".country-name").innerHTML;
+ }
+ });
+ });
+ // data option flag img with name
+ Array.from(document.querySelectorAll("[data-option-flag-name]")).forEach(function (item) {
+ var countryName = item.querySelector(".flag-input").value;
+ Array.from(item.querySelectorAll(".dropdown-menu li")).forEach(function (subitem) {
+ var optionCountryName = subitem.querySelector(".country-name").innerHTML;
+ subitem.addEventListener("click", function () {
+ item.querySelector(".flag-input").value = optionCountryName;
+ });
+ if (countryName == optionCountryName) {
+ subitem.classList.add("active");
+ item.querySelector(".flag-input").value = subitem.querySelector(".country-name").innerHTML;
+ }
+ });
+ });
+ };
+ //Search bar
+ Array.from(document.querySelectorAll("[data-input-flag]")).forEach(function (item) {
+ var searchInput = item.querySelector(".search-countryList");
+ if (searchInput) {
+ searchInput.addEventListener("keyup", function () {
+ var inputVal = searchInput.value.toLowerCase();
+ function filterItems(arr, query) {
+ return arr.filter(function (el) {
+ return (el.countryName.toLowerCase().indexOf(query.toLowerCase()) !== -1 || el.countryCode.indexOf(query) !== -1)
+ })
+ }
+ var filterData = filterItems(countryListData, inputVal);
+ setTimeout(function () {
+ item.querySelector(".dropdown-menu-list").innerHTML = '';
+ Array.from(filterData).forEach(function (listData) {
+ item.querySelector(".dropdown-menu-list").innerHTML +=
+ '
\
+ \
+ \
+
'+ listData.countryName + '
' + listData.countryCode + ' \
+
\
+ ';
+ });
+ countryListClickEvent(item);
+ }, 350);
+ });
+ };
+ });
+})();
\ No newline at end of file
diff --git a/public/build/js/pages/form-advanced.init.js b/public/build/js/pages/form-advanced.init.js
new file mode 100644
index 0000000..6c1654f
--- /dev/null
+++ b/public/build/js/pages/form-advanced.init.js
@@ -0,0 +1,102 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form Advanced Js File
+*/
+
+// multiselect
+
+var multiSelectBasic = document.getElementById("multiselect-basic");
+if (multiSelectBasic) {
+ multi(multiSelectBasic, {
+ enable_search: false
+ });
+}
+
+var multiSelectHeader = document.getElementById("multiselect-header");
+if (multiSelectHeader) {
+ multi(multiSelectHeader, {
+ non_selected_header: "Cars",
+ selected_header: "Favorite Cars"
+ });
+}
+
+var multiSelectOptGroup = document.getElementById("multiselect-optiongroup");
+if (multiSelectOptGroup) {
+ multi(multiSelectOptGroup, {
+ enable_search: true
+ });
+}
+
+// Autocomplete
+var autoCompleteFruit = new autoComplete({
+ selector: "#autoCompleteFruit",
+ placeHolder: "Search for Fruits...",
+ data: {
+ src: ["Apple", "Banana", "Blueberry", "Cherry", "Coconut", "Kiwi", "Lemon", "Lime", "Mango", "Orange"],
+ cache: true
+ },
+ resultsList: {
+ element: function element(list, data) {
+ if (!data.results.length) {
+ // Create "No Results" message element
+ var message = document.createElement("div");
+ // Add class to the created element
+ message.setAttribute("class", "no_result");
+ // Add message text content
+ message.innerHTML = "
Found No Results for \"" + data.query + "\" ";
+ // Append message element to the results list
+ list.prepend(message);
+ }
+ },
+ noResults: true
+ },
+ resultItem: {
+ highlight: true
+ },
+ events: {
+ input: {
+ selection: function selection(event) {
+ var selection = event.detail.selection.value;
+ autoCompleteFruit.input.value = selection;
+ }
+ }
+ }
+});
+
+var autoCompleteCars = new autoComplete({
+ selector: "#autoCompleteCars",
+ placeHolder: "Search for Cars...",
+ data: {
+ src: ["Chevrolet", "Fiat", "Ford", "Honda", "Hyundai", "Hyundai", "Kia", "Mahindra", "Maruti", "Mitsubishi", "MG", "Nissan", "Renault", "Skoda", "Tata", "Toyato", "Volkswagen"],
+ cache: true
+ },
+ resultsList: {
+ element: function element(list, data) {
+ if (!data.results.length) {
+ // Create "No Results" message element
+ var message = document.createElement("div");
+ // Add class to the created element
+ message.setAttribute("class", "no_result");
+ // Add message text content
+ message.innerHTML = "
Found No Results for \"" + data.query + "\" ";
+ // Append message element to the results list
+ list.prepend(message);
+ }
+ },
+ noResults: true
+ },
+ resultItem: {
+ highlight: true
+ },
+ events: {
+ input: {
+ selection: function selection(event) {
+ var selection = event.detail.selection.value;
+ autoCompleteCars.input.value = selection;
+ }
+ }
+ }
+});
\ No newline at end of file
diff --git a/public/build/js/pages/form-editor.init.js b/public/build/js/pages/form-editor.init.js
new file mode 100644
index 0000000..afa8129
--- /dev/null
+++ b/public/build/js/pages/form-editor.init.js
@@ -0,0 +1,23 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form editor Js File
+*/
+
+// ckeditor
+
+var ckClassicEditor = document.querySelectorAll(".ckeditor-classic")
+if (ckClassicEditor) {
+ Array.from(ckClassicEditor).forEach(function () {
+ ClassicEditor
+ .create(document.querySelector('.ckeditor-classic'))
+ .then(function (editor) {
+ editor.ui.view.editable.element.style.height = '200px';
+ })
+ .catch(function (error) {
+ console.error(error);
+ });
+ });
+}
\ No newline at end of file
diff --git a/public/build/js/pages/form-file-upload.init.js b/public/build/js/pages/form-file-upload.init.js
new file mode 100644
index 0000000..e83f9a8
--- /dev/null
+++ b/public/build/js/pages/form-file-upload.init.js
@@ -0,0 +1,21 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form file upload Js File
+*/
+
+// Dropzone
+var dropzonePreviewNode = document.querySelector("#dropzone-preview-list");
+dropzonePreviewNode.id = "";
+if(dropzonePreviewNode){
+ var previewTemplate = dropzonePreviewNode.parentNode.innerHTML;
+ dropzonePreviewNode.parentNode.removeChild(dropzonePreviewNode);
+ var dropzone = new Dropzone(".dropzone", {
+ url: 'https://httpbin.org/post',
+ method: "post",
+ previewTemplate: previewTemplate,
+ previewsContainer: "#dropzone-preview",
+ });
+}
\ No newline at end of file
diff --git a/public/build/js/pages/form-input-spin.init.js b/public/build/js/pages/form-input-spin.init.js
new file mode 100644
index 0000000..7465e9a
--- /dev/null
+++ b/public/build/js/pages/form-input-spin.init.js
@@ -0,0 +1,48 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form input spin Js File
+*/
+
+// input spin
+isData();
+
+function isData() {
+ var plus = document.getElementsByClassName('plus');
+ var minus = document.getElementsByClassName('minus');
+ var product = document.getElementsByClassName("product");
+
+ if (plus) {
+ Array.from(plus).forEach(function (e) {
+ e.addEventListener('click', function (event) {
+ // if(event.target.previousElementSibling.value )
+ if (parseInt(e.previousElementSibling.value) < event.target.previousElementSibling.getAttribute('max')) {
+ event.target.previousElementSibling.value++;
+ if (product) {
+ Array.from(product).forEach(function (x) {
+ updateQuantity(event.target);
+ })
+ }
+
+ }
+ });
+ });
+ }
+
+ if (minus) {
+ Array.from(minus).forEach(function (e) {
+ e.addEventListener('click', function (event) {
+ if (parseInt(e.nextElementSibling.value) > event.target.nextElementSibling.getAttribute('min')) {
+ event.target.nextElementSibling.value--;
+ if (product) {
+ Array.from(product).forEach(function (x) {
+ updateQuantity(event.target);
+ })
+ }
+ }
+ });
+ });
+ }
+}
\ No newline at end of file
diff --git a/public/build/js/pages/form-masks.init.js b/public/build/js/pages/form-masks.init.js
new file mode 100644
index 0000000..1a2352d
--- /dev/null
+++ b/public/build/js/pages/form-masks.init.js
@@ -0,0 +1,82 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form masks Js File
+*/
+
+if (document.querySelector("#cleave-date")) {
+ var cleaveDate = new Cleave('#cleave-date', {
+ date: true,
+ delimiter: '-',
+ datePattern: ['d', 'm', 'Y']
+ });
+}
+
+if (document.querySelector("#cleave-date-format")) {
+ var cleaveDateFormat = new Cleave('#cleave-date-format', {
+ date: true,
+ datePattern: ['m', 'y']
+ });
+}
+
+if (document.querySelector("#cleave-time")) {
+ var cleaveTime = new Cleave('#cleave-time', {
+ time: true,
+ timePattern: ['h', 'm', 's']
+ });
+}
+
+if (document.querySelector("#cleave-time-format")) {
+ var cleaveTimeFormat = new Cleave('#cleave-time-format', {
+ time: true,
+ timePattern: ['h', 'm']
+ });
+}
+
+if (document.querySelector("#cleave-numeral")) {
+ var cleaveNumeral = new Cleave('#cleave-numeral', {
+ numeral: true,
+ numeralThousandsGroupStyle: 'thousand'
+ });
+}
+
+if (document.querySelector("#cleave-ccard")) {
+ var cleaveBlocks = new Cleave('#cleave-ccard', {
+ blocks: [4, 4, 4, 4],
+ uppercase: true
+ });
+}
+
+if (document.querySelector("#cleave-delimiter")) {
+ var cleaveDelimiter = new Cleave('#cleave-delimiter', {
+ delimiter: '·',
+ blocks: [3, 3, 3],
+ uppercase: true
+ });
+}
+
+if (document.querySelector("#cleave-delimiters")) {
+ var cleaveDelimiters = new Cleave('#cleave-delimiters', {
+ delimiters: ['.', '.', '-'],
+ blocks: [3, 3, 3, 2],
+ uppercase: true
+ });
+}
+
+if (document.querySelector("#cleave-prefix")) {
+ var cleavePrefix = new Cleave('#cleave-prefix', {
+ prefix: 'PREFIX',
+ delimiter: '-',
+ blocks: [6, 4, 4, 4],
+ uppercase: true
+ });
+}
+
+if (document.querySelector("#cleave-phone")) {
+ var cleaveBlocks = new Cleave('#cleave-phone', {
+ delimiters: ['(', ')', '-'],
+ blocks: [0, 3, 3, 4]
+ });
+}
\ No newline at end of file
diff --git a/public/build/js/pages/form-pickers.init.js b/public/build/js/pages/form-pickers.init.js
new file mode 100644
index 0000000..deae8b7
--- /dev/null
+++ b/public/build/js/pages/form-pickers.init.js
@@ -0,0 +1,272 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form pickers Js File
+*/
+
+// colorpickers
+
+// classic color picker
+var classicPickrDemo = document.querySelectorAll(".classic-colorpicker");
+if (classicPickrDemo)
+ Array.from(classicPickrDemo).forEach(function () {
+ Pickr.create({
+ el: ".classic-colorpicker",
+ theme: "classic", // or 'monolith', or 'nano'
+ default: "#405189",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ "rgba(0, 188, 212, 0.7)",
+ "rgba(0, 150, 136, 0.75)",
+ "rgba(76, 175, 80, 0.8)",
+ "rgba(139, 195, 74, 0.85)",
+ "rgba(205, 220, 57, 0.9)",
+ "rgba(255, 235, 59, 0.95)",
+ "rgba(255, 193, 7, 1)",
+ ],
+
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ hex: true,
+ rgba: true,
+ hsva: true,
+ input: true,
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// monolith color picker
+var monolithColorPickr = document.querySelectorAll(".monolith-colorpicker");
+if (monolithColorPickr)
+ Array.from(monolithColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".monolith-colorpicker",
+ theme: "monolith",
+ default: "#0ab39c",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ ],
+ defaultRepresentation: "HEXA",
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ hex: false,
+ rgba: false,
+ hsva: false,
+ input: true,
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// nano color picker
+var nanoColorPickr = document.querySelectorAll(".nano-colorpicker");
+if (nanoColorPickr)
+ Array.from(nanoColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".nano-colorpicker",
+ theme: "nano",
+ default: "#3577f1",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ ],
+ defaultRepresentation: "HEXA",
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ hex: false,
+ rgba: false,
+ hsva: false,
+ input: true,
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// demo color picker
+var demoColorPickr = document.querySelectorAll(".colorpicker-demo");
+if (demoColorPickr)
+ Array.from(demoColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".colorpicker-demo",
+ theme: "monolith",
+ default: "#405189",
+ components: {
+ // Main components
+ preview: true,
+ // Input / output Options
+ interaction: {
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// color picker opacity & hue
+var opacityHueColorPickr = document.querySelectorAll(".colorpicker-opacity-hue");
+if (opacityHueColorPickr)
+ Array.from(opacityHueColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".colorpicker-opacity-hue",
+ theme: "monolith",
+ default: "#0ab39c",
+
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// color picker swatches
+var swatcherColorPickr = document.querySelectorAll(".colorpicker-switch");
+if (swatcherColorPickr)
+ Array.from(swatcherColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".colorpicker-switch",
+ theme: "monolith",
+ default: "#3577f1",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ ],
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// color picker input
+var inputColorPickr = document.querySelectorAll(".colorpicker-input");
+if (inputColorPickr)
+ Array.from(inputColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".colorpicker-input",
+ theme: "monolith",
+ default: "#f7b84b",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ ],
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ input: true,
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
+
+// color picker Format
+var formatColorPickr = document.querySelectorAll(".colorpicker-format");
+if (formatColorPickr)
+ Array.from(formatColorPickr).forEach(function () {
+ Pickr.create({
+ el: ".colorpicker-format",
+ theme: "monolith",
+ default: "#f06548",
+ swatches: [
+ "rgba(244, 67, 54, 1)",
+ "rgba(233, 30, 99, 0.95)",
+ "rgba(156, 39, 176, 0.9)",
+ "rgba(103, 58, 183, 0.85)",
+ "rgba(63, 81, 181, 0.8)",
+ "rgba(33, 150, 243, 0.75)",
+ "rgba(3, 169, 244, 0.7)",
+ ],
+ components: {
+ // Main components
+ preview: true,
+ opacity: true,
+ hue: true,
+
+ // Input / output Options
+ interaction: {
+ hex: true,
+ rgba: true,
+ hsva: true,
+ input: true,
+ clear: true,
+ save: true,
+ },
+ },
+ });
+ });
\ No newline at end of file
diff --git a/public/build/js/pages/form-validation.init.js b/public/build/js/pages/form-validation.init.js
new file mode 100644
index 0000000..18cac99
--- /dev/null
+++ b/public/build/js/pages/form-validation.init.js
@@ -0,0 +1,27 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form validation Js File
+*/
+
+// Example starter JavaScript for disabling form submissions if there are invalid fields
+(function () {
+ 'use strict';
+ window.addEventListener('load', function () {
+ // Fetch all the forms we want to apply custom Bootstrap validation styles to
+ var forms = document.getElementsByClassName('needs-validation');
+ // Loop over them and prevent submission
+ if (forms)
+ var validation = Array.prototype.filter.call(forms, function (form) {
+ form.addEventListener('submit', function (event) {
+ if (form.checkValidity() === false) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ form.classList.add('was-validated');
+ }, false);
+ });
+ }, false);
+})();
\ No newline at end of file
diff --git a/public/build/js/pages/form-wizard.init.js b/public/build/js/pages/form-wizard.init.js
new file mode 100644
index 0000000..2b8f64f
--- /dev/null
+++ b/public/build/js/pages/form-wizard.init.js
@@ -0,0 +1,78 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Form wizard Js File
+*/
+
+// user profile img file upload
+if (document.querySelector("#profile-img-file-input"))
+ document.querySelector("#profile-img-file-input").addEventListener("change", function () {
+ var preview = document.querySelector(".user-profile-image");
+ var file = document.querySelector(".profile-img-file-input").files[0];
+ var reader = new FileReader();
+
+ reader.addEventListener("load", function () {
+ preview.src = reader.result;
+ }, false);
+
+ if (file)
+ reader.readAsDataURL(file);
+ });
+
+if (document.querySelectorAll(".form-steps"))
+ Array.from(document.querySelectorAll(".form-steps")).forEach(function (form) {
+
+ // next tab
+ if (form.querySelectorAll(".nexttab"))
+ Array.from(form.querySelectorAll(".nexttab")).forEach(function (nextButton) {
+ var tabEl = form.querySelectorAll('button[data-bs-toggle="pill"]');
+ Array.from(tabEl).forEach(function (item) {
+ item.addEventListener('show.bs.tab', function (event) {
+ event.target.classList.add('done');
+ });
+ });
+ nextButton.addEventListener("click", function () {
+ var nextTab = nextButton.getAttribute('data-nexttab');
+ document.getElementById(nextTab).click();
+ });
+ });
+
+ //Pervies tab
+ if (form.querySelectorAll(".previestab"))
+ Array.from(form.querySelectorAll(".previestab")).forEach(function (prevButton) {
+
+ prevButton.addEventListener("click", function () {
+ var prevTab = prevButton.getAttribute('data-previous');
+ var totalDone = prevButton.closest("form").querySelectorAll(".custom-nav .done").length;
+ for (var i = totalDone - 1; i < totalDone; i++) {
+ (prevButton.closest("form").querySelectorAll(".custom-nav .done")[i]) ? prevButton.closest("form").querySelectorAll(".custom-nav .done")[i].classList.remove('done'): '';
+ }
+ document.getElementById(prevTab).click();
+ });
+ });
+
+ // Step number click
+ var tabButtons = form.querySelectorAll('button[data-bs-toggle="pill"]');
+ if (tabButtons)
+ Array.from(tabButtons).forEach(function (button, i) {
+ button.setAttribute("data-position", i);
+ button.addEventListener("click", function () {
+ var getProgressBar = button.getAttribute("data-progressbar");
+ if (getProgressBar) {
+ var totalLength = document.getElementById("custom-progress-bar").querySelectorAll("li").length - 1;
+ var current = i;
+ var percent = (current / totalLength) * 100;
+ document.getElementById("custom-progress-bar").querySelector('.progress-bar').style.width = percent + "%";
+ }
+ (form.querySelectorAll(".custom-nav .done").length > 0) ?
+ Array.from(form.querySelectorAll(".custom-nav .done")).forEach(function (doneTab) {
+ doneTab.classList.remove('done');
+ }): '';
+ for (var j = 0; j <= i; j++) {
+ tabButtons[j].classList.contains('active') ? tabButtons[j].classList.remove('done') : tabButtons[j].classList.add('done');
+ }
+ });
+ });
+ });
\ No newline at end of file
diff --git a/public/build/js/pages/gmaps.init.js b/public/build/js/pages/gmaps.init.js
new file mode 100644
index 0000000..dca3b7f
--- /dev/null
+++ b/public/build/js/pages/gmaps.init.js
@@ -0,0 +1,78 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Gmaps init Js File
+*/
+
+var map;
+document.addEventListener("DOMContentLoaded", function (event) {
+ // Markers
+ if (document.getElementById('gmaps-markers')) {
+ map = new GMaps({
+ div: '#gmaps-markers',
+ lat: -12.043333,
+ lng: -77.028333
+ });
+ map.addMarker({
+ lat: -12.043333,
+ lng: -77.03,
+ title: 'Lima',
+ details: {
+ database_id: 42,
+ author: 'HPNeo'
+ },
+ click: function (e) {
+ if (console.log)
+ console.log(e);
+ alert('You clicked in this marker');
+ }
+ });
+ }
+
+ // Overlays
+ if (document.getElementById('gmaps-overlay')) {
+ map = new GMaps({
+ div: '#gmaps-overlay',
+ lat: -12.043333,
+ lng: -77.028333
+ });
+ map.drawOverlay({
+ lat: map.getCenter().lat(),
+ lng: map.getCenter().lng(),
+ content: '
',
+ verticalAlign: 'top',
+ horizontalAlign: 'center'
+ });
+ }
+
+ //panorama
+ if (document.getElementById('panorama'))
+ map = GMaps.createPanorama({
+ el: '#panorama',
+ lat: 42.3455,
+ lng: -71.0983
+ });
+
+ //Map type
+ if (document.getElementById('gmaps-types')) {
+ map = new GMaps({
+ div: '#gmaps-types',
+ lat: -12.043333,
+ lng: -77.028333,
+ mapTypeControlOptions: {
+ mapTypeIds: ["hybrid", "roadmap", "satellite", "terrain", "osm"]
+ }
+ });
+ map.addMapType("osm", {
+ getTileUrl: function (coord, zoom) {
+ return "https://a.tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
+ },
+ tileSize: new google.maps.Size(256, 256),
+ name: "OpenStreetMap",
+ maxZoom: 18
+ });
+ map.setMapTypeId("osm");
+ }
+});
\ No newline at end of file
diff --git a/public/build/js/pages/gridjs.init.js b/public/build/js/pages/gridjs.init.js
new file mode 100644
index 0000000..770ee43
--- /dev/null
+++ b/public/build/js/pages/gridjs.init.js
@@ -0,0 +1,353 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: grid Js File
+*/
+
+// Basic Table
+if (document.getElementById("table-gridjs"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'ID',
+ width: '80px',
+ formatter: (function (cell) {
+ return gridjs.html('
' + cell + ' ');
+ })
+ },
+ {
+ name: 'Name',
+ width: '150px',
+ },
+ {
+ name: 'Email',
+ width: '220px',
+ formatter: (function (cell) {
+ return gridjs.html('
' + cell + ' ');
+ })
+ },
+ {
+ name: 'Position',
+ width: '250px',
+ },
+ {
+ name: 'Company',
+ width: '180px',
+ },
+ {
+ name: 'Country',
+ width: '180px',
+ },
+ {
+ name: 'Actions',
+ width: '150px',
+ formatter: (function (cell) {
+ return gridjs.html("
" +
+ "Details" +
+ " ");
+ })
+ },
+ ],
+ pagination: {
+ limit: 5
+ },
+ sort: true,
+ search: true,
+ data: [
+ ["01", "Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["02", "Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["03", "Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["04", "Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["05", "Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["06", "Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["07", "Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["08", "Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["09", "Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["10", "Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-gridjs"));
+
+// card Table
+if (document.getElementById("table-card"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '150px',
+ },{
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ }, {
+ name: 'Country',
+ width: '150px',
+ }],
+ sort: true,
+ pagination: {
+ limit: 5
+ },
+ data: [
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-card"));
+
+
+// pagination Table
+if (document.getElementById("table-pagination"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'ID',
+ width: '120px',
+ formatter: (function (cell) {
+ return gridjs.html('
' + cell + ' ');
+ })
+ }, {
+ name: 'Name',
+ width: '150px',
+ }, {
+ name: 'Date',
+ width: '180px',
+ }, {
+ name: 'Total',
+ width: '120px',
+ }, {
+ name: 'Status',
+ width: '120px',
+ },
+ {
+ name: 'Actions',
+ width: '100px',
+ formatter: (function (cell) {
+ return gridjs.html("
" +
+ "Details" +
+ " ");
+ })
+ },
+ ],
+ pagination: {
+ limit: 5
+ },
+
+ data: [
+ ["#VL2111", "Jonathan", "07 Oct, 2021", "$24.05", "Paid", ],
+ ["#VL2110", "Harold", "07 Oct, 2021", "$26.15", "Paid"],
+ ["#VL2109", "Shannon", "06 Oct, 2021", "$21.25", "Refund"],
+ ["#VL2108", "Robert", "05 Oct, 2021", "$25.03", "Paid"],
+ ["#VL2107", "Noel", "05 Oct, 2021", "$22.61", "Paid"],
+ ["#VL2106", "Traci", "04 Oct, 2021", "$24.05", "Paid"],
+ ["#VL2105", "Kerry", "04 Oct, 2021", "$26.15", "Paid"],
+ ["#VL2104", "Patsy", "04 Oct, 2021", "$21.25", "Refund"],
+ ["#VL2103", "Cathy", "03 Oct, 2021", "$22.61", "Paid"],
+ ["#VL2102", "Tyrone", "03 Oct, 2021", "$25.03", "Paid"],
+ ]
+ }).render(document.getElementById("table-pagination"));
+
+// search Table
+if (document.getElementById("table-search"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '150px',
+ }, {
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ }, {
+ name: 'Country',
+ width: '150px',
+ }],
+ pagination: {
+ limit: 5
+ },
+ search: true,
+ data: [
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-search"));
+
+// Sorting Table
+if (document.getElementById("table-sorting"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '150px',
+ }, {
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ }, {
+ name: 'Country',
+ width: '150px',
+ }],
+ pagination: {
+ limit: 5
+ },
+ sort: true,
+ data: [
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-sorting"));
+
+
+// Loading State Table
+if (document.getElementById("table-loading-state"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '150px',
+ }, {
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ }, {
+ name: 'Country',
+ width: '150px',
+ }],
+ pagination: {
+ limit: 5
+ },
+ sort: true,
+ data: function () {
+ return new Promise(function (resolve) {
+ setTimeout(function () {
+ resolve([
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"]
+ ])
+ }, 2000);
+ });
+ }
+ }).render(document.getElementById("table-loading-state"));
+
+
+// Fixed Header
+if (document.getElementById("table-fixed-header"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '150px',
+ }, {
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ }, {
+ name: 'Country',
+ width: '150px',
+ }],
+ sort: true,
+ pagination: true,
+ fixedHeader: true,
+ height: '400px',
+ data: [
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-fixed-header"));
+
+
+// Hidden Columns
+if (document.getElementById("table-hidden-column"))
+ new gridjs.Grid({
+ columns: [{
+ name: 'Name',
+ width: '120px',
+ }, {
+ name: 'Email',
+ width: '250px',
+ }, {
+ name: 'Position',
+ width: '250px',
+ }, {
+ name: 'Company',
+ width: '250px',
+ },
+ {
+ name: 'Country',
+ hidden: true
+ },
+ ],
+ pagination: {
+ limit: 5
+ },
+ sort: true,
+ data: [
+ ["Jonathan", "jonathan@example.com", "Senior Implementation Architect", "Hauck Inc", "Holy See"],
+ ["Harold", "harold@example.com", "Forward Creative Coordinator", "Metz Inc", "Iran"],
+ ["Shannon", "shannon@example.com", "Legacy Functionality Associate", "Zemlak Group", "South Georgia"],
+ ["Robert", "robert@example.com", "Product Accounts Technician", "Hoeger", "San Marino"],
+ ["Noel", "noel@example.com", "Customer Data Director", "Howell - Rippin", "Germany"],
+ ["Traci", "traci@example.com", "Corporate Identity Director", "Koelpin - Goldner", "Vanuatu"],
+ ["Kerry", "kerry@example.com", "Lead Applications Associate", "Feeney, Langworth and Tremblay", "Niger"],
+ ["Patsy", "patsy@example.com", "Dynamic Assurance Director", "Streich Group", "Niue"],
+ ["Cathy", "cathy@example.com", "Customer Data Director", "Ebert, Schamberger and Johnston", "Mexico"],
+ ["Tyrone", "tyrone@example.com", "Senior Response Liaison", "Raynor, Rolfson and Daugherty", "Qatar"],
+ ]
+ }).render(document.getElementById("table-hidden-column"));
\ No newline at end of file
diff --git a/public/build/js/pages/leaflet-map.init.js b/public/build/js/pages/leaflet-map.init.js
new file mode 100644
index 0000000..a8b8f5e
--- /dev/null
+++ b/public/build/js/pages/leaflet-map.init.js
@@ -0,0 +1,192 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Leaflet init js
+*/
+
+// leaflet-map
+var mymap = L.map('leaflet-map').setView([51.505, -0.09], 13);
+
+L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
+ maxZoom: 18,
+ attribution: 'Map data ©
OpenStreetMap contributors, ' +
+ '
CC-BY-SA , ' +
+ 'Imagery ©
Mapbox ',
+ id: 'mapbox/streets-v11',
+ tileSize: 512,
+ zoomOffset: -1
+}).addTo(mymap);
+
+// leaflet-map-marker
+var markermap = L.map('leaflet-map-marker').setView([51.505, -0.09], 13);
+
+L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
+ maxZoom: 18,
+ attribution: 'Map data ©
OpenStreetMap contributors, ' +
+ '
CC-BY-SA , ' +
+ 'Imagery ©
Mapbox ',
+ id: 'mapbox/streets-v11',
+ tileSize: 512,
+ zoomOffset: -1
+}).addTo(markermap);
+
+L.marker([51.5, -0.09]).addTo(markermap);
+
+L.circle([51.508, -0.11], {
+ color: '#0ab39c',
+ fillColor: '#0ab39c',
+ fillOpacity: 0.5,
+ radius: 500
+}).addTo(markermap);
+
+L.polygon([
+ [51.509, -0.08],
+ [51.503, -0.06],
+ [51.51, -0.047]
+], {
+ color: '#405189',
+ fillColor: '#405189',
+}).addTo(markermap);
+
+
+// Working with popups
+var popupmap = L.map('leaflet-map-popup').setView([51.505, -0.09], 13);
+
+L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
+ maxZoom: 18,
+ attribution: 'Map data ©
OpenStreetMap contributors, ' +
+ '
CC-BY-SA , ' +
+ 'Imagery ©
Mapbox ',
+ id: 'mapbox/streets-v11',
+ tileSize: 512,
+ zoomOffset: -1
+}).addTo(popupmap);
+
+L.marker([51.5, -0.09]).addTo(popupmap)
+ .bindPopup("
Hello world! I am a popup.").openPopup();
+
+L.circle([51.508, -0.11], 500, {
+ color: '#f06548',
+ fillColor: '#f06548',
+ fillOpacity: 0.5
+}).addTo(popupmap).bindPopup("I am a circle.");
+
+L.polygon([
+ [51.509, -0.08],
+ [51.503, -0.06],
+ [51.51, -0.047]
+], {
+ color: '#405189',
+ fillColor: '#405189',
+}).addTo(popupmap).bindPopup("I am a polygon.");
+
+var popup = L.popup();
+
+// leaflet-map-custom-icons
+var customiconsmap = L.map('leaflet-map-custom-icons').setView([51.5, -0.09], 13);
+
+L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
+ attribution: '©
OpenStreetMap contributors'
+}).addTo(customiconsmap);
+
+var LeafIcon = L.Icon.extend({
+ options: {
+ iconSize: [45, 45],
+ iconAnchor: [22, 94],
+ popupAnchor: [-3, -76]
+ }
+});
+
+var greenIcon = new LeafIcon({
+ iconUrl: '../build/images/logo-sm.png'
+});
+
+L.marker([51.5, -0.09], {
+ icon: greenIcon
+}).addTo(customiconsmap);
+
+// Interactive Choropleth Map
+var interactivemap = L.map('leaflet-map-interactive-map').setView([37.8, -96], 4);
+
+L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
+ maxZoom: 18,
+ attribution: 'Map data ©
OpenStreetMap contributors, ' +
+ '
CC-BY-SA , ' +
+ 'Imagery ©
Mapbox ',
+ id: 'mapbox/light-v9',
+ tileSize: 512,
+ zoomOffset: -1
+}).addTo(interactivemap);
+
+// get color depending on population density value
+function getColor(d) {
+ return d > 1000 ? '#405189' :
+ d > 500 ? '#516194' :
+ d > 200 ? '#63719E' :
+ d > 100 ? '#7480A9' :
+ d > 50 ? '#8590B4' :
+ d > 20 ? '#97A0BF' :
+ d > 10 ? '#A8B0C9' :
+ '#A8B0C9';
+}
+
+function style(feature) {
+ return {
+ weight: 2,
+ opacity: 1,
+ color: 'white',
+ dashArray: '3',
+ fillOpacity: 0.7,
+ fillColor: getColor(feature.properties.density)
+ };
+}
+
+var geojson = L.geoJson(statesData, {
+ style: style,
+}).addTo(interactivemap);
+
+// leaflet-map-group-control
+var cities = L.layerGroup();
+
+L.marker([39.61, -105.02]).bindPopup('This is Littleton, CO.').addTo(cities),
+ L.marker([39.74, -104.99]).bindPopup('This is Denver, CO.').addTo(cities),
+ L.marker([39.73, -104.8]).bindPopup('This is Aurora, CO.').addTo(cities),
+ L.marker([39.77, -105.23]).bindPopup('This is Golden, CO.').addTo(cities);
+
+
+var mbAttr = 'Map data ©
OpenStreetMap contributors, ' +
+ '
CC-BY-SA , ' +
+ 'Imagery ©
Mapbox ',
+ mbUrl = 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw';
+
+var grayscale = L.tileLayer(mbUrl, {
+ id: 'mapbox/light-v9',
+ tileSize: 512,
+ zoomOffset: -1,
+ attribution: mbAttr
+ }),
+ streets = L.tileLayer(mbUrl, {
+ id: 'mapbox/streets-v11',
+ tileSize: 512,
+ zoomOffset: -1,
+ attribution: mbAttr
+ });
+
+var layergroupcontrolmap = L.map('leaflet-map-group-control', {
+ center: [39.73, -104.99],
+ zoom: 10,
+ layers: [streets, cities]
+});
+
+var baseLayers = {
+ "Grayscale": grayscale,
+ "Streets": streets
+};
+
+var overlays = {
+ "Cities": cities
+};
+
+L.control.layers(baseLayers, overlays).addTo(layergroupcontrolmap);
\ No newline at end of file
diff --git a/public/build/js/pages/leaflet-us-states.js b/public/build/js/pages/leaflet-us-states.js
new file mode 100644
index 0000000..7f6af2f
--- /dev/null
+++ b/public/build/js/pages/leaflet-us-states.js
@@ -0,0 +1,54 @@
+var statesData = {"type":"FeatureCollection","features":[
+{"type":"Feature","id":"01","properties":{"name":"Alabama","density":94.65},"geometry":{"type":"Polygon","coordinates":[[[-87.359296,35.00118],[-85.606675,34.984749],[-85.431413,34.124869],[-85.184951,32.859696],[-85.069935,32.580372],[-84.960397,32.421541],[-85.004212,32.322956],[-84.889196,32.262709],[-85.058981,32.13674],[-85.053504,32.01077],[-85.141136,31.840985],[-85.042551,31.539753],[-85.113751,31.27686],[-85.004212,31.003013],[-85.497137,30.997536],[-87.600282,30.997536],[-87.633143,30.86609],[-87.408589,30.674397],[-87.446927,30.510088],[-87.37025,30.427934],[-87.518128,30.280057],[-87.655051,30.247195],[-87.90699,30.411504],[-87.934375,30.657966],[-88.011052,30.685351],[-88.10416,30.499135],[-88.137022,30.318396],[-88.394438,30.367688],[-88.471115,31.895754],[-88.241084,33.796253],[-88.098683,34.891641],[-88.202745,34.995703],[-87.359296,35.00118]]]}},
+{"type":"Feature","id":"02","properties":{"name":"Alaska","density":1.264},"geometry":{"type":"MultiPolygon","coordinates":[[[[-131.602021,55.117982],[-131.569159,55.28229],[-131.355558,55.183705],[-131.38842,55.01392],[-131.645836,55.035827],[-131.602021,55.117982]]],[[[-131.832052,55.42469],[-131.645836,55.304197],[-131.749898,55.128935],[-131.832052,55.189182],[-131.832052,55.42469]]],[[[-132.976733,56.437924],[-132.735747,56.459832],[-132.631685,56.421493],[-132.664547,56.273616],[-132.878148,56.240754],[-133.069841,56.333862],[-132.976733,56.437924]]],[[[-133.595627,56.350293],[-133.162949,56.317431],[-133.05341,56.125739],[-132.620732,55.912138],[-132.472854,55.780691],[-132.4619,55.671152],[-132.357838,55.649245],[-132.341408,55.506844],[-132.166146,55.364444],[-132.144238,55.238474],[-132.029222,55.276813],[-131.97993,55.178228],[-131.958022,54.789365],[-132.029222,54.701734],[-132.308546,54.718165],[-132.385223,54.915335],[-132.483808,54.898904],[-132.686455,55.046781],[-132.746701,54.997489],[-132.916486,55.046781],[-132.889102,54.898904],[-132.73027,54.937242],[-132.626209,54.882473],[-132.675501,54.679826],[-132.867194,54.701734],[-133.157472,54.95915],[-133.239626,55.090597],[-133.223195,55.22752],[-133.453227,55.216566],[-133.453227,55.320628],[-133.277964,55.331582],[-133.102702,55.42469],[-133.17938,55.588998],[-133.387503,55.62186],[-133.420365,55.884753],[-133.497042,56.0162],[-133.639442,55.923092],[-133.694212,56.070969],[-133.546335,56.142169],[-133.666827,56.311955],[-133.595627,56.350293]]],[[[-133.738027,55.556137],[-133.546335,55.490413],[-133.414888,55.572568],[-133.283441,55.534229],[-133.420365,55.386352],[-133.633966,55.430167],[-133.738027,55.556137]]],[[[-133.907813,56.930849],[-134.050213,57.029434],[-133.885905,57.095157],[-133.343688,57.002049],[-133.102702,57.007526],[-132.932917,56.82131],[-132.620732,56.667956],[-132.653593,56.55294],[-132.817901,56.492694],[-133.042456,56.520078],[-133.201287,56.448878],[-133.420365,56.492694],[-133.66135,56.448878],[-133.710643,56.684386],[-133.688735,56.837741],[-133.869474,56.843218],[-133.907813,56.930849]]],[[[-134.115936,56.48174],[-134.25286,56.558417],[-134.400737,56.722725],[-134.417168,56.848695],[-134.296675,56.908941],[-134.170706,56.848695],[-134.143321,56.952757],[-133.748981,56.772017],[-133.710643,56.596755],[-133.847566,56.574848],[-133.935197,56.377678],[-133.836612,56.322908],[-133.957105,56.092877],[-134.110459,56.142169],[-134.132367,55.999769],[-134.230952,56.070969],[-134.291198,56.350293],[-134.115936,56.48174]]],[[[-134.636246,56.28457],[-134.669107,56.169554],[-134.806031,56.235277],[-135.178463,56.67891],[-135.413971,56.810356],[-135.331817,56.914418],[-135.424925,57.166357],[-135.687818,57.369004],[-135.419448,57.566174],[-135.298955,57.48402],[-135.063447,57.418296],[-134.849846,57.407343],[-134.844369,57.248511],[-134.636246,56.728202],[-134.636246,56.28457]]],[[[-134.712923,58.223407],[-134.373353,58.14673],[-134.176183,58.157683],[-134.187137,58.081006],[-133.902336,57.807159],[-134.099505,57.850975],[-134.148798,57.757867],[-133.935197,57.615466],[-133.869474,57.363527],[-134.083075,57.297804],[-134.154275,57.210173],[-134.499322,57.029434],[-134.603384,57.034911],[-134.6472,57.226604],[-134.575999,57.341619],[-134.608861,57.511404],[-134.729354,57.719528],[-134.707446,57.829067],[-134.784123,58.097437],[-134.91557,58.212453],[-134.953908,58.409623],[-134.712923,58.223407]]],[[[-135.857603,57.330665],[-135.715203,57.330665],[-135.567326,57.149926],[-135.633049,57.023957],[-135.857603,56.996572],[-135.824742,57.193742],[-135.857603,57.330665]]],[[[-136.279328,58.206976],[-135.978096,58.201499],[-135.780926,58.28913],[-135.496125,58.168637],[-135.64948,58.037191],[-135.59471,57.987898],[-135.45231,58.135776],[-135.107263,58.086483],[-134.91557,57.976944],[-135.025108,57.779775],[-134.937477,57.763344],[-134.822462,57.500451],[-135.085355,57.462112],[-135.572802,57.675713],[-135.556372,57.456635],[-135.709726,57.369004],[-135.890465,57.407343],[-136.000004,57.544266],[-136.208128,57.637374],[-136.366959,57.829067],[-136.569606,57.916698],[-136.558652,58.075529],[-136.421728,58.130299],[-136.377913,58.267222],[-136.279328,58.206976]]],[[[-147.079854,60.200582],[-147.501579,59.948643],[-147.53444,59.850058],[-147.874011,59.784335],[-147.80281,59.937689],[-147.435855,60.09652],[-147.205824,60.271782],[-147.079854,60.200582]]],[[[-147.561825,60.578491],[-147.616594,60.370367],[-147.758995,60.156767],[-147.956165,60.227967],[-147.791856,60.474429],[-147.561825,60.578491]]],[[[-147.786379,70.245291],[-147.682318,70.201475],[-147.162008,70.15766],[-146.888161,70.185044],[-146.510252,70.185044],[-146.099482,70.146706],[-145.858496,70.168614],[-145.622988,70.08646],[-145.195787,69.993352],[-144.620708,69.971444],[-144.461877,70.026213],[-144.078491,70.059075],[-143.914183,70.130275],[-143.497935,70.141229],[-143.503412,70.091936],[-143.25695,70.119321],[-142.747594,70.042644],[-142.402547,69.916674],[-142.079408,69.856428],[-142.008207,69.801659],[-141.712453,69.790705],[-141.433129,69.697597],[-141.378359,69.63735],[-141.208574,69.686643],[-141.00045,69.648304],[-141.00045,60.304644],[-140.53491,60.22249],[-140.474664,60.310121],[-139.987216,60.184151],[-139.696939,60.342983],[-139.088998,60.359413],[-139.198537,60.091043],[-139.045183,59.997935],[-138.700135,59.910304],[-138.623458,59.767904],[-137.604747,59.242118],[-137.445916,58.908024],[-137.265177,59.001132],[-136.827022,59.159963],[-136.580559,59.16544],[-136.465544,59.285933],[-136.476498,59.466672],[-136.301236,59.466672],[-136.25742,59.625503],[-135.945234,59.663842],[-135.479694,59.800766],[-135.025108,59.565257],[-135.068924,59.422857],[-134.959385,59.280456],[-134.701969,59.247595],[-134.378829,59.033994],[-134.400737,58.973748],[-134.25286,58.858732],[-133.842089,58.727285],[-133.173903,58.152206],[-133.075318,57.998852],[-132.867194,57.845498],[-132.560485,57.505928],[-132.253777,57.21565],[-132.368792,57.095157],[-132.05113,57.051341],[-132.127807,56.876079],[-131.870391,56.804879],[-131.837529,56.602232],[-131.580113,56.613186],[-131.087188,56.405062],[-130.78048,56.366724],[-130.621648,56.268139],[-130.468294,56.240754],[-130.424478,56.142169],[-130.101339,56.114785],[-130.002754,55.994292],[-130.150631,55.769737],[-130.128724,55.583521],[-129.986323,55.276813],[-130.095862,55.200136],[-130.336847,54.920812],[-130.687372,54.718165],[-130.785957,54.822227],[-130.917403,54.789365],[-131.010511,54.997489],[-130.983126,55.08512],[-131.092665,55.189182],[-130.862634,55.298721],[-130.928357,55.337059],[-131.158389,55.200136],[-131.284358,55.287767],[-131.426759,55.238474],[-131.843006,55.457552],[-131.700606,55.698537],[-131.963499,55.616383],[-131.974453,55.49589],[-132.182576,55.588998],[-132.226392,55.704014],[-132.083991,55.829984],[-132.127807,55.955953],[-132.324977,55.851892],[-132.522147,56.076446],[-132.642639,56.032631],[-132.719317,56.218847],[-132.527624,56.339339],[-132.341408,56.339339],[-132.396177,56.487217],[-132.297592,56.67891],[-132.450946,56.673433],[-132.768609,56.837741],[-132.993164,57.034911],[-133.51895,57.177311],[-133.507996,57.577128],[-133.677781,57.62642],[-133.639442,57.790728],[-133.814705,57.834544],[-134.072121,58.053622],[-134.143321,58.168637],[-134.586953,58.206976],[-135.074401,58.502731],[-135.282525,59.192825],[-135.38111,59.033994],[-135.337294,58.891593],[-135.140124,58.617746],[-135.189417,58.573931],[-135.05797,58.349376],[-135.085355,58.201499],[-135.277048,58.234361],[-135.430402,58.398669],[-135.633049,58.426053],[-135.91785,58.382238],[-135.912373,58.617746],[-136.087635,58.814916],[-136.246466,58.75467],[-136.876314,58.962794],[-136.931084,58.902547],[-136.586036,58.836824],[-136.317666,58.672516],[-136.213604,58.667039],[-136.180743,58.535592],[-136.043819,58.382238],[-136.388867,58.294607],[-136.591513,58.349376],[-136.59699,58.212453],[-136.859883,58.316515],[-136.947514,58.393192],[-137.111823,58.393192],[-137.566409,58.590362],[-137.900502,58.765624],[-137.933364,58.869686],[-138.11958,59.02304],[-138.634412,59.132579],[-138.919213,59.247595],[-139.417615,59.379041],[-139.746231,59.505011],[-139.718846,59.641934],[-139.625738,59.598119],[-139.5162,59.68575],[-139.625738,59.88292],[-139.488815,59.992458],[-139.554538,60.041751],[-139.801,59.833627],[-140.315833,59.696704],[-140.92925,59.745996],[-141.444083,59.871966],[-141.46599,59.970551],[-141.706976,59.948643],[-141.964392,60.019843],[-142.539471,60.085566],[-142.873564,60.091043],[-143.623905,60.036274],[-143.892275,59.997935],[-144.231845,60.140336],[-144.65357,60.206059],[-144.785016,60.29369],[-144.834309,60.441568],[-145.124586,60.430614],[-145.223171,60.299167],[-145.738004,60.474429],[-145.820158,60.551106],[-146.351421,60.408706],[-146.608837,60.238921],[-146.718376,60.397752],[-146.608837,60.485383],[-146.455483,60.463475],[-145.951604,60.578491],[-146.017328,60.666122],[-146.252836,60.622307],[-146.345944,60.737322],[-146.565022,60.753753],[-146.784099,61.044031],[-146.866253,60.972831],[-147.172962,60.934492],[-147.271547,60.972831],[-147.375609,60.879723],[-147.758995,60.912584],[-147.775426,60.808523],[-148.032842,60.781138],[-148.153334,60.819476],[-148.065703,61.005692],[-148.175242,61.000215],[-148.350504,60.803046],[-148.109519,60.737322],[-148.087611,60.594922],[-147.939734,60.441568],[-148.027365,60.277259],[-148.219058,60.332029],[-148.273827,60.249875],[-148.087611,60.217013],[-147.983549,59.997935],[-148.251919,59.95412],[-148.399797,59.997935],[-148.635305,59.937689],[-148.755798,59.986981],[-149.067984,59.981505],[-149.05703,60.063659],[-149.204907,60.008889],[-149.287061,59.904827],[-149.418508,59.997935],[-149.582816,59.866489],[-149.511616,59.806242],[-149.741647,59.729565],[-149.949771,59.718611],[-150.031925,59.61455],[-150.25648,59.521442],[-150.409834,59.554303],[-150.579619,59.444764],[-150.716543,59.450241],[-151.001343,59.225687],[-151.308052,59.209256],[-151.406637,59.280456],[-151.592853,59.159963],[-151.976239,59.253071],[-151.888608,59.422857],[-151.636669,59.483103],[-151.47236,59.472149],[-151.423068,59.537872],[-151.127313,59.669319],[-151.116359,59.778858],[-151.505222,59.63098],[-151.828361,59.718611],[-151.8667,59.778858],[-151.702392,60.030797],[-151.423068,60.211536],[-151.379252,60.359413],[-151.297098,60.386798],[-151.264237,60.545629],[-151.406637,60.720892],[-151.06159,60.786615],[-150.404357,61.038554],[-150.245526,60.939969],[-150.042879,60.912584],[-149.741647,61.016646],[-150.075741,61.15357],[-150.207187,61.257632],[-150.47008,61.246678],[-150.656296,61.29597],[-150.711066,61.252155],[-151.023251,61.180954],[-151.165652,61.044031],[-151.477837,61.011169],[-151.800977,60.852338],[-151.833838,60.748276],[-152.080301,60.693507],[-152.13507,60.578491],[-152.310332,60.507291],[-152.392486,60.304644],[-152.732057,60.173197],[-152.567748,60.069136],[-152.704672,59.915781],[-153.022334,59.888397],[-153.049719,59.691227],[-153.345474,59.620026],[-153.438582,59.702181],[-153.586459,59.548826],[-153.761721,59.543349],[-153.72886,59.433811],[-154.117723,59.368087],[-154.1944,59.066856],[-153.750768,59.050425],[-153.400243,58.968271],[-153.301658,58.869686],[-153.444059,58.710854],[-153.679567,58.612269],[-153.898645,58.606793],[-153.920553,58.519161],[-154.062953,58.4863],[-153.99723,58.376761],[-154.145107,58.212453],[-154.46277,58.059098],[-154.643509,58.059098],[-154.818771,58.004329],[-154.988556,58.015283],[-155.120003,57.955037],[-155.081664,57.872883],[-155.328126,57.829067],[-155.377419,57.708574],[-155.547204,57.785251],[-155.73342,57.549743],[-156.045606,57.566174],[-156.023698,57.440204],[-156.209914,57.473066],[-156.34136,57.418296],[-156.34136,57.248511],[-156.549484,56.985618],[-156.883577,56.952757],[-157.157424,56.832264],[-157.20124,56.766541],[-157.376502,56.859649],[-157.672257,56.607709],[-157.754411,56.67891],[-157.918719,56.657002],[-157.957058,56.514601],[-158.126843,56.459832],[-158.32949,56.48174],[-158.488321,56.339339],[-158.208997,56.295524],[-158.510229,55.977861],[-159.375585,55.873799],[-159.616571,55.594475],[-159.676817,55.654722],[-159.643955,55.829984],[-159.813741,55.857368],[-160.027341,55.791645],[-160.060203,55.720445],[-160.394296,55.605429],[-160.536697,55.473983],[-160.580512,55.567091],[-160.668143,55.457552],[-160.865313,55.528752],[-161.232268,55.358967],[-161.506115,55.364444],[-161.467776,55.49589],[-161.588269,55.62186],[-161.697808,55.517798],[-161.686854,55.408259],[-162.053809,55.074166],[-162.179779,55.15632],[-162.218117,55.03035],[-162.470057,55.052258],[-162.508395,55.249428],[-162.661749,55.293244],[-162.716519,55.222043],[-162.579595,55.134412],[-162.645319,54.997489],[-162.847965,54.926289],[-163.00132,55.079643],[-163.187536,55.090597],[-163.220397,55.03035],[-163.034181,54.942719],[-163.373752,54.800319],[-163.14372,54.76198],[-163.138243,54.696257],[-163.329936,54.74555],[-163.587352,54.614103],[-164.085754,54.61958],[-164.332216,54.531949],[-164.354124,54.466226],[-164.638925,54.389548],[-164.847049,54.416933],[-164.918249,54.603149],[-164.710125,54.663395],[-164.551294,54.88795],[-164.34317,54.893427],[-163.894061,55.041304],[-163.532583,55.046781],[-163.39566,54.904381],[-163.291598,55.008443],[-163.313505,55.128935],[-163.105382,55.183705],[-162.880827,55.183705],[-162.579595,55.446598],[-162.245502,55.682106],[-161.807347,55.89023],[-161.292514,55.983338],[-161.078914,55.939523],[-160.87079,55.999769],[-160.816021,55.912138],[-160.931036,55.813553],[-160.805067,55.736876],[-160.766728,55.857368],[-160.509312,55.868322],[-160.438112,55.791645],[-160.27928,55.76426],[-160.273803,55.857368],[-160.536697,55.939523],[-160.558604,55.994292],[-160.383342,56.251708],[-160.147834,56.399586],[-159.830171,56.541986],[-159.326293,56.667956],[-158.959338,56.848695],[-158.784076,56.782971],[-158.641675,56.810356],[-158.701922,56.925372],[-158.658106,57.034911],[-158.378782,57.264942],[-157.995396,57.41282],[-157.688688,57.609989],[-157.705118,57.719528],[-157.458656,58.497254],[-157.07527,58.705377],[-157.119086,58.869686],[-158.039212,58.634177],[-158.32949,58.661562],[-158.40069,58.760147],[-158.564998,58.803962],[-158.619768,58.913501],[-158.767645,58.864209],[-158.860753,58.694424],[-158.701922,58.480823],[-158.893615,58.387715],[-159.0634,58.420577],[-159.392016,58.760147],[-159.616571,58.929932],[-159.731586,58.929932],[-159.808264,58.803962],[-159.906848,58.782055],[-160.054726,58.886116],[-160.235465,58.902547],[-160.317619,59.072332],[-160.854359,58.88064],[-161.33633,58.743716],[-161.374669,58.667039],[-161.752577,58.552023],[-161.938793,58.656085],[-161.769008,58.776578],[-161.829255,59.061379],[-161.955224,59.36261],[-161.703285,59.48858],[-161.911409,59.740519],[-162.092148,59.88292],[-162.234548,60.091043],[-162.448149,60.178674],[-162.502918,59.997935],[-162.760334,59.959597],[-163.171105,59.844581],[-163.66403,59.795289],[-163.9324,59.806242],[-164.162431,59.866489],[-164.189816,60.02532],[-164.386986,60.074613],[-164.699171,60.29369],[-164.962064,60.337506],[-165.268773,60.578491],[-165.060649,60.68803],[-165.016834,60.890677],[-165.175665,60.846861],[-165.197573,60.972831],[-165.120896,61.076893],[-165.323543,61.170001],[-165.34545,61.071416],[-165.591913,61.109754],[-165.624774,61.279539],[-165.816467,61.301447],[-165.920529,61.416463],[-165.915052,61.558863],[-166.106745,61.49314],[-166.139607,61.630064],[-165.904098,61.662925],[-166.095791,61.81628],[-165.756221,61.827233],[-165.756221,62.013449],[-165.674067,62.139419],[-165.044219,62.539236],[-164.912772,62.659728],[-164.819664,62.637821],[-164.874433,62.807606],[-164.633448,63.097884],[-164.425324,63.212899],[-164.036462,63.262192],[-163.73523,63.212899],[-163.313505,63.037637],[-163.039658,63.059545],[-162.661749,63.22933],[-162.272887,63.486746],[-162.075717,63.514131],[-162.026424,63.448408],[-161.555408,63.448408],[-161.13916,63.503177],[-160.766728,63.771547],[-160.766728,63.837271],[-160.952944,64.08921],[-160.974852,64.237087],[-161.26513,64.395918],[-161.374669,64.532842],[-161.078914,64.494503],[-160.79959,64.609519],[-160.783159,64.719058],[-161.144637,64.921705],[-161.413007,64.762873],[-161.664946,64.790258],[-161.900455,64.702627],[-162.168825,64.680719],[-162.234548,64.620473],[-162.541257,64.532842],[-162.634365,64.384965],[-162.787719,64.324718],[-162.858919,64.49998],[-163.045135,64.538319],[-163.176582,64.401395],[-163.253259,64.467119],[-163.598306,64.565704],[-164.304832,64.560227],[-164.80871,64.450688],[-165.000403,64.434257],[-165.411174,64.49998],[-166.188899,64.576658],[-166.391546,64.636904],[-166.484654,64.735489],[-166.413454,64.872412],[-166.692778,64.987428],[-166.638008,65.113398],[-166.462746,65.179121],[-166.517516,65.337952],[-166.796839,65.337952],[-167.026871,65.381768],[-167.47598,65.414629],[-167.711489,65.496784],[-168.072967,65.578938],[-168.105828,65.682999],[-167.541703,65.819923],[-166.829701,66.049954],[-166.3313,66.186878],[-166.046499,66.110201],[-165.756221,66.09377],[-165.690498,66.203309],[-165.86576,66.21974],[-165.88219,66.312848],[-165.186619,66.466202],[-164.403417,66.581218],[-163.981692,66.592172],[-163.751661,66.553833],[-163.872153,66.389525],[-163.828338,66.274509],[-163.915969,66.192355],[-163.768091,66.060908],[-163.494244,66.082816],[-163.149197,66.060908],[-162.749381,66.088293],[-162.634365,66.039001],[-162.371472,66.028047],[-162.14144,66.077339],[-161.840208,66.02257],[-161.549931,66.241647],[-161.341807,66.252601],[-161.199406,66.208786],[-161.128206,66.334755],[-161.528023,66.395002],[-161.911409,66.345709],[-161.87307,66.510017],[-162.174302,66.68528],[-162.502918,66.740049],[-162.601503,66.89888],[-162.344087,66.937219],[-162.015471,66.778388],[-162.075717,66.652418],[-161.916886,66.553833],[-161.571838,66.438817],[-161.489684,66.55931],[-161.884024,66.718141],[-161.714239,67.002942],[-161.851162,67.052235],[-162.240025,66.991988],[-162.639842,67.008419],[-162.700088,67.057712],[-162.902735,67.008419],[-163.740707,67.128912],[-163.757138,67.254881],[-164.009077,67.534205],[-164.211724,67.638267],[-164.534863,67.725898],[-165.192096,67.966884],[-165.493328,68.059992],[-165.794559,68.081899],[-166.243668,68.246208],[-166.681824,68.339316],[-166.703731,68.372177],[-166.375115,68.42147],[-166.227238,68.574824],[-166.216284,68.881533],[-165.329019,68.859625],[-164.255539,68.930825],[-163.976215,68.985595],[-163.532583,69.138949],[-163.110859,69.374457],[-163.023228,69.609966],[-162.842489,69.812613],[-162.470057,69.982398],[-162.311225,70.108367],[-161.851162,70.311014],[-161.779962,70.256245],[-161.396576,70.239814],[-160.837928,70.343876],[-160.487404,70.453415],[-159.649432,70.792985],[-159.33177,70.809416],[-159.298908,70.760123],[-158.975769,70.798462],[-158.658106,70.787508],[-158.033735,70.831323],[-157.420318,70.979201],[-156.812377,71.285909],[-156.565915,71.351633],[-156.522099,71.296863],[-155.585543,71.170894],[-155.508865,71.083263],[-155.832005,70.968247],[-155.979882,70.96277],[-155.974405,70.809416],[-155.503388,70.858708],[-155.476004,70.940862],[-155.262403,71.017539],[-155.191203,70.973724],[-155.032372,71.148986],[-154.566832,70.990155],[-154.643509,70.869662],[-154.353231,70.8368],[-154.183446,70.7656],[-153.931507,70.880616],[-153.487874,70.886093],[-153.235935,70.924431],[-152.589656,70.886093],[-152.26104,70.842277],[-152.419871,70.606769],[-151.817408,70.546523],[-151.773592,70.486276],[-151.187559,70.382214],[-151.182082,70.431507],[-150.760358,70.49723],[-150.355064,70.491753],[-150.349588,70.436984],[-150.114079,70.431507],[-149.867617,70.508184],[-149.462323,70.519138],[-149.177522,70.486276],[-148.78866,70.404122],[-148.607921,70.420553],[-148.350504,70.305537],[-148.202627,70.349353],[-147.961642,70.316491],[-147.786379,70.245291]]],[[[-152.94018,58.026237],[-152.945657,57.982421],[-153.290705,58.048145],[-153.044242,58.305561],[-152.819688,58.327469],[-152.666333,58.562977],[-152.496548,58.354853],[-152.354148,58.426053],[-152.080301,58.311038],[-152.080301,58.152206],[-152.480117,58.130299],[-152.655379,58.059098],[-152.94018,58.026237]]],[[[-153.958891,57.538789],[-153.67409,57.670236],[-153.931507,57.69762],[-153.936983,57.812636],[-153.723383,57.889313],[-153.570028,57.834544],[-153.548121,57.719528],[-153.46049,57.796205],[-153.455013,57.96599],[-153.268797,57.889313],[-153.235935,57.998852],[-153.071627,57.933129],[-152.874457,57.933129],[-152.721103,57.993375],[-152.469163,57.889313],[-152.469163,57.599035],[-152.151501,57.620943],[-152.359625,57.42925],[-152.74301,57.505928],[-152.60061,57.379958],[-152.710149,57.275896],[-152.907319,57.325188],[-152.912796,57.128019],[-153.214027,57.073249],[-153.312612,56.991095],[-153.498828,57.067772],[-153.695998,56.859649],[-153.849352,56.837741],[-154.013661,56.744633],[-154.073907,56.969187],[-154.303938,56.848695],[-154.314892,56.919895],[-154.523016,56.991095],[-154.539447,57.193742],[-154.742094,57.275896],[-154.627078,57.511404],[-154.227261,57.659282],[-153.980799,57.648328],[-153.958891,57.538789]]],[[[-154.53397,56.602232],[-154.742094,56.399586],[-154.807817,56.432447],[-154.53397,56.602232]]],[[[-155.634835,55.923092],[-155.476004,55.912138],[-155.530773,55.704014],[-155.793666,55.731399],[-155.837482,55.802599],[-155.634835,55.923092]]],[[[-159.890418,55.28229],[-159.950664,55.068689],[-160.257373,54.893427],[-160.109495,55.161797],[-160.005433,55.134412],[-159.890418,55.28229]]],[[[-160.520266,55.358967],[-160.33405,55.358967],[-160.339527,55.249428],[-160.525743,55.128935],[-160.690051,55.211089],[-160.794113,55.134412],[-160.854359,55.320628],[-160.79959,55.380875],[-160.520266,55.358967]]],[[[-162.256456,54.981058],[-162.234548,54.893427],[-162.349564,54.838658],[-162.437195,54.931766],[-162.256456,54.981058]]],[[[-162.415287,63.634624],[-162.563165,63.536039],[-162.612457,63.62367],[-162.415287,63.634624]]],[[[-162.80415,54.488133],[-162.590549,54.449795],[-162.612457,54.367641],[-162.782242,54.373118],[-162.80415,54.488133]]],[[[-165.548097,54.29644],[-165.476897,54.181425],[-165.630251,54.132132],[-165.685021,54.252625],[-165.548097,54.29644]]],[[[-165.73979,54.15404],[-166.046499,54.044501],[-166.112222,54.121178],[-165.980775,54.219763],[-165.73979,54.15404]]],[[[-166.364161,60.359413],[-166.13413,60.397752],[-166.084837,60.326552],[-165.88219,60.342983],[-165.685021,60.277259],[-165.646682,59.992458],[-165.750744,59.89935],[-166.00816,59.844581],[-166.062929,59.745996],[-166.440838,59.855535],[-166.6161,59.850058],[-166.994009,59.992458],[-167.125456,59.992458],[-167.344534,60.074613],[-167.421211,60.206059],[-167.311672,60.238921],[-166.93924,60.206059],[-166.763978,60.310121],[-166.577762,60.321075],[-166.495608,60.392275],[-166.364161,60.359413]]],[[[-166.375115,54.01164],[-166.210807,53.934962],[-166.5449,53.748746],[-166.539423,53.715885],[-166.117699,53.852808],[-166.112222,53.776131],[-166.282007,53.683023],[-166.555854,53.622777],[-166.583239,53.529669],[-166.878994,53.431084],[-167.13641,53.425607],[-167.306195,53.332499],[-167.623857,53.250345],[-167.793643,53.337976],[-167.459549,53.442038],[-167.355487,53.425607],[-167.103548,53.513238],[-167.163794,53.611823],[-167.021394,53.715885],[-166.807793,53.666592],[-166.785886,53.732316],[-167.015917,53.754223],[-167.141887,53.825424],[-167.032348,53.945916],[-166.643485,54.017116],[-166.561331,53.880193],[-166.375115,54.01164]]],[[[-168.790446,53.157237],[-168.40706,53.34893],[-168.385152,53.431084],[-168.237275,53.524192],[-168.007243,53.568007],[-167.886751,53.518715],[-167.842935,53.387268],[-168.270136,53.244868],[-168.500168,53.036744],[-168.686384,52.965544],[-168.790446,53.157237]]],[[[-169.74891,52.894344],[-169.705095,52.795759],[-169.962511,52.790282],[-169.989896,52.856005],[-169.74891,52.894344]]],[[[-170.148727,57.221127],[-170.28565,57.128019],[-170.313035,57.221127],[-170.148727,57.221127]]],[[[-170.669036,52.697174],[-170.603313,52.604066],[-170.789529,52.538343],[-170.816914,52.636928],[-170.669036,52.697174]]],[[[-171.742517,63.716778],[-170.94836,63.5689],[-170.488297,63.69487],[-170.280174,63.683916],[-170.093958,63.612716],[-170.044665,63.492223],[-169.644848,63.4265],[-169.518879,63.366254],[-168.99857,63.338869],[-168.686384,63.295053],[-168.856169,63.147176],[-169.108108,63.180038],[-169.376478,63.152653],[-169.513402,63.08693],[-169.639372,62.939052],[-169.831064,63.075976],[-170.055619,63.169084],[-170.263743,63.180038],[-170.362328,63.2841],[-170.866206,63.415546],[-171.101715,63.421023],[-171.463193,63.306007],[-171.73704,63.366254],[-171.852055,63.486746],[-171.742517,63.716778]]],[[[-172.432611,52.390465],[-172.41618,52.275449],[-172.607873,52.253542],[-172.569535,52.352127],[-172.432611,52.390465]]],[[[-173.626584,52.14948],[-173.495138,52.105664],[-173.122706,52.111141],[-173.106275,52.07828],[-173.549907,52.028987],[-173.626584,52.14948]]],[[[-174.322156,52.280926],[-174.327632,52.379511],[-174.185232,52.41785],[-173.982585,52.319265],[-174.059262,52.226157],[-174.179755,52.231634],[-174.141417,52.127572],[-174.333109,52.116618],[-174.738403,52.007079],[-174.968435,52.039941],[-174.902711,52.116618],[-174.656249,52.105664],[-174.322156,52.280926]]],[[[-176.469116,51.853725],[-176.288377,51.870156],[-176.288377,51.744186],[-176.518409,51.760617],[-176.80321,51.61274],[-176.912748,51.80991],[-176.792256,51.815386],[-176.775825,51.963264],[-176.627947,51.968741],[-176.627947,51.859202],[-176.469116,51.853725]]],[[[-177.153734,51.946833],[-177.044195,51.897541],[-177.120872,51.727755],[-177.274226,51.678463],[-177.279703,51.782525],[-177.153734,51.946833]]],[[[-178.123152,51.919448],[-177.953367,51.913971],[-177.800013,51.793479],[-177.964321,51.651078],[-178.123152,51.919448]]],[[[-187.107557,52.992929],[-187.293773,52.927205],[-187.304726,52.823143],[-188.90491,52.762897],[-188.642017,52.927205],[-188.642017,53.003883],[-187.107557,52.992929]]]]}},
+{"type":"Feature","id":"04","properties":{"name":"Arizona","density":57.05},"geometry":{"type":"Polygon","coordinates":[[[-109.042503,37.000263],[-109.04798,31.331629],[-111.074448,31.331629],[-112.246513,31.704061],[-114.815198,32.492741],[-114.72209,32.717295],[-114.524921,32.755634],[-114.470151,32.843265],[-114.524921,33.029481],[-114.661844,33.034958],[-114.727567,33.40739],[-114.524921,33.54979],[-114.497536,33.697668],[-114.535874,33.933176],[-114.415382,34.108438],[-114.256551,34.174162],[-114.136058,34.305608],[-114.333228,34.448009],[-114.470151,34.710902],[-114.634459,34.87521],[-114.634459,35.00118],[-114.574213,35.138103],[-114.596121,35.324319],[-114.678275,35.516012],[-114.738521,36.102045],[-114.371566,36.140383],[-114.251074,36.01989],[-114.152489,36.025367],[-114.048427,36.195153],[-114.048427,37.000263],[-110.499369,37.00574],[-109.042503,37.000263]]]}},
+{"type":"Feature","id":"05","properties":{"name":"Arkansas","density":56.43},"geometry":{"type":"Polygon","coordinates":[[[-94.473842,36.501861],[-90.152536,36.496384],[-90.064905,36.304691],[-90.218259,36.184199],[-90.377091,35.997983],[-89.730812,35.997983],[-89.763673,35.811767],[-89.911551,35.756997],[-89.944412,35.603643],[-90.130628,35.439335],[-90.114197,35.198349],[-90.212782,35.023087],[-90.311367,34.995703],[-90.251121,34.908072],[-90.409952,34.831394],[-90.481152,34.661609],[-90.585214,34.617794],[-90.568783,34.420624],[-90.749522,34.365854],[-90.744046,34.300131],[-90.952169,34.135823],[-90.891923,34.026284],[-91.072662,33.867453],[-91.231493,33.560744],[-91.056231,33.429298],[-91.143862,33.347144],[-91.089093,33.13902],[-91.16577,33.002096],[-93.608485,33.018527],[-94.041164,33.018527],[-94.041164,33.54979],[-94.183564,33.593606],[-94.380734,33.544313],[-94.484796,33.637421],[-94.430026,35.395519],[-94.616242,36.501861],[-94.473842,36.501861]]]}},
+{"type":"Feature","id":"06","properties":{"name":"California","density":241.7},"geometry":{"type":"Polygon","coordinates":[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}},
+{"type":"Feature","id":"08","properties":{"name":"Colorado","density":49.33},"geometry":{"type":"Polygon","coordinates":[[[-107.919731,41.003906],[-105.728954,40.998429],[-104.053011,41.003906],[-102.053927,41.003906],[-102.053927,40.001626],[-102.042974,36.994786],[-103.001438,37.000263],[-104.337812,36.994786],[-106.868158,36.994786],[-107.421329,37.000263],[-109.042503,37.000263],[-109.042503,38.166851],[-109.058934,38.27639],[-109.053457,39.125316],[-109.04798,40.998429],[-107.919731,41.003906]]]}},
+{"type":"Feature","id":"09","properties":{"name":"Connecticut","density":739.1},"geometry":{"type":"Polygon","coordinates":[[[-73.053528,42.039048],[-71.799309,42.022617],[-71.799309,42.006186],[-71.799309,41.414677],[-71.859555,41.321569],[-71.947186,41.338],[-72.385341,41.261322],[-72.905651,41.28323],[-73.130205,41.146307],[-73.371191,41.102491],[-73.655992,40.987475],[-73.727192,41.102491],[-73.48073,41.21203],[-73.55193,41.294184],[-73.486206,42.050002],[-73.053528,42.039048]]]}},
+{"type":"Feature","id":"10","properties":{"name":"Delaware","density":464.3},"geometry":{"type":"Polygon","coordinates":[[[-75.414089,39.804456],[-75.507197,39.683964],[-75.611259,39.61824],[-75.589352,39.459409],[-75.441474,39.311532],[-75.403136,39.065069],[-75.189535,38.807653],[-75.09095,38.796699],[-75.047134,38.451652],[-75.693413,38.462606],[-75.786521,39.722302],[-75.616736,39.831841],[-75.414089,39.804456]]]}},
+{"type":"Feature","id":"11","properties":{"name":"District of Columbia","density":10065},"geometry":{"type":"Polygon","coordinates":[[[-77.035264,38.993869],[-76.909294,38.895284],[-77.040741,38.791222],[-77.117418,38.933623],[-77.035264,38.993869]]]}},
+{"type":"Feature","id":"12","properties":{"name":"Florida","density":353.4},"geometry":{"type":"Polygon","coordinates":[[[-85.497137,30.997536],[-85.004212,31.003013],[-84.867289,30.712735],[-83.498053,30.647012],[-82.216449,30.570335],[-82.167157,30.356734],[-82.046664,30.362211],[-82.002849,30.564858],[-82.041187,30.751074],[-81.948079,30.827751],[-81.718048,30.745597],[-81.444201,30.707258],[-81.383954,30.27458],[-81.257985,29.787132],[-80.967707,29.14633],[-80.524075,28.461713],[-80.589798,28.41242],[-80.56789,28.094758],[-80.381674,27.738757],[-80.091397,27.021277],[-80.03115,26.796723],[-80.036627,26.566691],[-80.146166,25.739673],[-80.239274,25.723243],[-80.337859,25.465826],[-80.304997,25.383672],[-80.49669,25.197456],[-80.573367,25.241272],[-80.759583,25.164595],[-81.077246,25.120779],[-81.170354,25.224841],[-81.126538,25.378195],[-81.351093,25.821827],[-81.526355,25.903982],[-81.679709,25.843735],[-81.800202,26.090198],[-81.833064,26.292844],[-82.041187,26.517399],[-82.09048,26.665276],[-82.057618,26.878877],[-82.172634,26.917216],[-82.145249,26.791246],[-82.249311,26.758384],[-82.566974,27.300601],[-82.692943,27.437525],[-82.391711,27.837342],[-82.588881,27.815434],[-82.720328,27.689464],[-82.851774,27.886634],[-82.676512,28.434328],[-82.643651,28.888914],[-82.764143,28.998453],[-82.802482,29.14633],[-82.994175,29.179192],[-83.218729,29.420177],[-83.399469,29.518762],[-83.410422,29.66664],[-83.536392,29.721409],[-83.640454,29.885717],[-84.02384,30.104795],[-84.357933,30.055502],[-84.341502,29.902148],[-84.451041,29.929533],[-84.867289,29.743317],[-85.310921,29.699501],[-85.299967,29.80904],[-85.404029,29.940487],[-85.924338,30.236241],[-86.29677,30.362211],[-86.630863,30.395073],[-86.910187,30.373165],[-87.518128,30.280057],[-87.37025,30.427934],[-87.446927,30.510088],[-87.408589,30.674397],[-87.633143,30.86609],[-87.600282,30.997536],[-85.497137,30.997536]]]}},
+{"type":"Feature","id":"13","properties":{"name":"Georgia","density":169.5},"geometry":{"type":"Polygon","coordinates":[[[-83.109191,35.00118],[-83.322791,34.787579],[-83.339222,34.683517],[-83.005129,34.469916],[-82.901067,34.486347],[-82.747713,34.26727],[-82.714851,34.152254],[-82.55602,33.94413],[-82.325988,33.81816],[-82.194542,33.631944],[-81.926172,33.462159],[-81.937125,33.347144],[-81.761863,33.160928],[-81.493493,33.007573],[-81.42777,32.843265],[-81.416816,32.629664],[-81.279893,32.558464],[-81.121061,32.290094],[-81.115584,32.120309],[-80.885553,32.032678],[-81.132015,31.693108],[-81.175831,31.517845],[-81.279893,31.364491],[-81.290846,31.20566],[-81.400385,31.13446],[-81.444201,30.707258],[-81.718048,30.745597],[-81.948079,30.827751],[-82.041187,30.751074],[-82.002849,30.564858],[-82.046664,30.362211],[-82.167157,30.356734],[-82.216449,30.570335],[-83.498053,30.647012],[-84.867289,30.712735],[-85.004212,31.003013],[-85.113751,31.27686],[-85.042551,31.539753],[-85.141136,31.840985],[-85.053504,32.01077],[-85.058981,32.13674],[-84.889196,32.262709],[-85.004212,32.322956],[-84.960397,32.421541],[-85.069935,32.580372],[-85.184951,32.859696],[-85.431413,34.124869],[-85.606675,34.984749],[-84.319594,34.990226],[-83.618546,34.984749],[-83.109191,35.00118]]]}},
+{"type":"Feature","id":"15","properties":{"name":"Hawaii","density":214.1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.634835,18.948267],[-155.881297,19.035898],[-155.919636,19.123529],[-155.886774,19.348084],[-156.062036,19.73147],[-155.925113,19.857439],[-155.826528,20.032702],[-155.897728,20.147717],[-155.87582,20.26821],[-155.596496,20.12581],[-155.284311,20.021748],[-155.092618,19.868393],[-155.092618,19.736947],[-154.807817,19.523346],[-154.983079,19.348084],[-155.295265,19.26593],[-155.514342,19.134483],[-155.634835,18.948267]]],[[[-156.587823,21.029505],[-156.472807,20.892581],[-156.324929,20.952827],[-156.00179,20.793996],[-156.051082,20.651596],[-156.379699,20.580396],[-156.445422,20.60778],[-156.461853,20.783042],[-156.631638,20.821381],[-156.697361,20.919966],[-156.587823,21.029505]]],[[[-156.982162,21.210244],[-157.080747,21.106182],[-157.310779,21.106182],[-157.239579,21.221198],[-156.982162,21.210244]]],[[[-157.951581,21.697691],[-157.842042,21.462183],[-157.896811,21.325259],[-158.110412,21.303352],[-158.252813,21.582676],[-158.126843,21.588153],[-157.951581,21.697691]]],[[[-159.468693,22.228955],[-159.353678,22.218001],[-159.298908,22.113939],[-159.33177,21.966061],[-159.446786,21.872953],[-159.764448,21.987969],[-159.726109,22.152277],[-159.468693,22.228955]]]]}},
+{"type":"Feature","id":"16","properties":{"name":"Idaho","density":19.15},"geometry":{"type":"Polygon","coordinates":[[[-116.04751,49.000239],[-116.04751,47.976051],[-115.724371,47.696727],[-115.718894,47.42288],[-115.527201,47.302388],[-115.324554,47.258572],[-115.302646,47.187372],[-114.930214,46.919002],[-114.886399,46.809463],[-114.623506,46.705401],[-114.612552,46.639678],[-114.322274,46.645155],[-114.464674,46.272723],[-114.492059,46.037214],[-114.387997,45.88386],[-114.568736,45.774321],[-114.497536,45.670259],[-114.546828,45.560721],[-114.333228,45.456659],[-114.086765,45.593582],[-113.98818,45.703121],[-113.807441,45.604536],[-113.834826,45.522382],[-113.736241,45.330689],[-113.571933,45.128042],[-113.45144,45.056842],[-113.456917,44.865149],[-113.341901,44.782995],[-113.133778,44.772041],[-113.002331,44.448902],[-112.887315,44.394132],[-112.783254,44.48724],[-112.471068,44.481763],[-112.241036,44.569394],[-112.104113,44.520102],[-111.868605,44.563917],[-111.819312,44.509148],[-111.616665,44.547487],[-111.386634,44.75561],[-111.227803,44.580348],[-111.047063,44.476286],[-111.047063,42.000709],[-112.164359,41.995232],[-114.04295,41.995232],[-117.027882,42.000709],[-117.027882,43.830007],[-116.896436,44.158624],[-116.97859,44.240778],[-117.170283,44.257209],[-117.241483,44.394132],[-117.038836,44.750133],[-116.934774,44.782995],[-116.830713,44.930872],[-116.847143,45.02398],[-116.732128,45.144473],[-116.671881,45.319735],[-116.463758,45.61549],[-116.545912,45.752413],[-116.78142,45.823614],[-116.918344,45.993399],[-116.92382,46.168661],[-117.055267,46.343923],[-117.038836,46.426077],[-117.044313,47.762451],[-117.033359,49.000239],[-116.04751,49.000239]]]}},
+{"type":"Feature","id":"17","properties":{"name":"Illinois","density":231.5},"geometry":{"type":"Polygon","coordinates":[[[-90.639984,42.510065],[-88.788778,42.493634],[-87.802929,42.493634],[-87.83579,42.301941],[-87.682436,42.077386],[-87.523605,41.710431],[-87.529082,39.34987],[-87.63862,39.169131],[-87.512651,38.95553],[-87.49622,38.780268],[-87.62219,38.637868],[-87.655051,38.506421],[-87.83579,38.292821],[-87.950806,38.27639],[-87.923421,38.15042],[-88.000098,38.101128],[-88.060345,37.865619],[-88.027483,37.799896],[-88.15893,37.657496],[-88.065822,37.482234],[-88.476592,37.389126],[-88.514931,37.285064],[-88.421823,37.153617],[-88.547792,37.071463],[-88.914747,37.224817],[-89.029763,37.213863],[-89.183118,37.038601],[-89.133825,36.983832],[-89.292656,36.994786],[-89.517211,37.279587],[-89.435057,37.34531],[-89.517211,37.537003],[-89.517211,37.690357],[-89.84035,37.903958],[-89.949889,37.88205],[-90.059428,38.013497],[-90.355183,38.216144],[-90.349706,38.374975],[-90.179921,38.632391],[-90.207305,38.725499],[-90.10872,38.845992],[-90.251121,38.917192],[-90.470199,38.961007],[-90.585214,38.867899],[-90.661891,38.928146],[-90.727615,39.256762],[-91.061708,39.470363],[-91.368417,39.727779],[-91.494386,40.034488],[-91.50534,40.237135],[-91.417709,40.379535],[-91.401278,40.560274],[-91.121954,40.669813],[-91.09457,40.823167],[-90.963123,40.921752],[-90.946692,41.097014],[-91.111001,41.239415],[-91.045277,41.414677],[-90.656414,41.463969],[-90.344229,41.589939],[-90.311367,41.743293],[-90.179921,41.809016],[-90.141582,42.000709],[-90.168967,42.126679],[-90.393521,42.225264],[-90.420906,42.329326],[-90.639984,42.510065]]]}},
+{"type":"Feature","id":"18","properties":{"name":"Indiana","density":181.7},"geometry":{"type":"Polygon","coordinates":[[[-85.990061,41.759724],[-84.807042,41.759724],[-84.807042,41.694001],[-84.801565,40.500028],[-84.817996,39.103408],[-84.894673,39.059592],[-84.812519,38.785745],[-84.987781,38.780268],[-85.173997,38.68716],[-85.431413,38.730976],[-85.42046,38.533806],[-85.590245,38.451652],[-85.655968,38.325682],[-85.83123,38.27639],[-85.924338,38.024451],[-86.039354,37.958727],[-86.263908,38.051835],[-86.302247,38.166851],[-86.521325,38.040881],[-86.504894,37.931343],[-86.729448,37.893004],[-86.795172,37.991589],[-87.047111,37.893004],[-87.129265,37.788942],[-87.381204,37.93682],[-87.512651,37.903958],[-87.600282,37.975158],[-87.682436,37.903958],[-87.934375,37.893004],[-88.027483,37.799896],[-88.060345,37.865619],[-88.000098,38.101128],[-87.923421,38.15042],[-87.950806,38.27639],[-87.83579,38.292821],[-87.655051,38.506421],[-87.62219,38.637868],[-87.49622,38.780268],[-87.512651,38.95553],[-87.63862,39.169131],[-87.529082,39.34987],[-87.523605,41.710431],[-87.42502,41.644708],[-87.118311,41.644708],[-86.822556,41.759724],[-85.990061,41.759724]]]}},
+{"type":"Feature","id":"19","properties":{"name":"Iowa","density":54.81},"geometry":{"type":"Polygon","coordinates":[[[-91.368417,43.501391],[-91.215062,43.501391],[-91.204109,43.353514],[-91.056231,43.254929],[-91.176724,43.134436],[-91.143862,42.909881],[-91.067185,42.75105],[-90.711184,42.636034],[-90.639984,42.510065],[-90.420906,42.329326],[-90.393521,42.225264],[-90.168967,42.126679],[-90.141582,42.000709],[-90.179921,41.809016],[-90.311367,41.743293],[-90.344229,41.589939],[-90.656414,41.463969],[-91.045277,41.414677],[-91.111001,41.239415],[-90.946692,41.097014],[-90.963123,40.921752],[-91.09457,40.823167],[-91.121954,40.669813],[-91.401278,40.560274],[-91.417709,40.379535],[-91.527248,40.412397],[-91.729895,40.615043],[-91.833957,40.609566],[-93.257961,40.582182],[-94.632673,40.571228],[-95.7664,40.587659],[-95.881416,40.719105],[-95.826646,40.976521],[-95.925231,41.201076],[-95.919754,41.453015],[-96.095016,41.540646],[-96.122401,41.67757],[-96.062155,41.798063],[-96.127878,41.973325],[-96.264801,42.039048],[-96.44554,42.488157],[-96.631756,42.707235],[-96.544125,42.855112],[-96.511264,43.052282],[-96.434587,43.123482],[-96.560556,43.222067],[-96.527695,43.397329],[-96.582464,43.479483],[-96.451017,43.501391],[-91.368417,43.501391]]]}},
+{"type":"Feature","id":"20","properties":{"name":"Kansas","density":35.09},"geometry":{"type":"Polygon","coordinates":[[[-101.90605,40.001626],[-95.306337,40.001626],[-95.207752,39.908518],[-94.884612,39.831841],[-95.109167,39.541563],[-94.983197,39.442978],[-94.824366,39.20747],[-94.610765,39.158177],[-94.616242,37.000263],[-100.087706,37.000263],[-102.042974,36.994786],[-102.053927,40.001626],[-101.90605,40.001626]]]}},
+{"type":"Feature","id":"21","properties":{"name":"Kentucky","density":110},"geometry":{"type":"Polygon","coordinates":[[[-83.903347,38.769315],[-83.678792,38.632391],[-83.519961,38.703591],[-83.142052,38.626914],[-83.032514,38.725499],[-82.890113,38.758361],[-82.846298,38.588575],[-82.731282,38.561191],[-82.594358,38.424267],[-82.621743,38.123036],[-82.50125,37.931343],[-82.342419,37.783465],[-82.293127,37.668449],[-82.101434,37.553434],[-81.969987,37.537003],[-82.353373,37.268633],[-82.720328,37.120755],[-82.720328,37.044078],[-82.868205,36.978355],[-82.879159,36.890724],[-83.070852,36.852385],[-83.136575,36.742847],[-83.673316,36.600446],[-83.689746,36.584015],[-84.544149,36.594969],[-85.289013,36.627831],[-85.486183,36.616877],[-86.592525,36.655216],[-87.852221,36.633308],[-88.071299,36.677123],[-88.054868,36.496384],[-89.298133,36.507338],[-89.418626,36.496384],[-89.363857,36.622354],[-89.215979,36.578538],[-89.133825,36.983832],[-89.183118,37.038601],[-89.029763,37.213863],[-88.914747,37.224817],[-88.547792,37.071463],[-88.421823,37.153617],[-88.514931,37.285064],[-88.476592,37.389126],[-88.065822,37.482234],[-88.15893,37.657496],[-88.027483,37.799896],[-87.934375,37.893004],[-87.682436,37.903958],[-87.600282,37.975158],[-87.512651,37.903958],[-87.381204,37.93682],[-87.129265,37.788942],[-87.047111,37.893004],[-86.795172,37.991589],[-86.729448,37.893004],[-86.504894,37.931343],[-86.521325,38.040881],[-86.302247,38.166851],[-86.263908,38.051835],[-86.039354,37.958727],[-85.924338,38.024451],[-85.83123,38.27639],[-85.655968,38.325682],[-85.590245,38.451652],[-85.42046,38.533806],[-85.431413,38.730976],[-85.173997,38.68716],[-84.987781,38.780268],[-84.812519,38.785745],[-84.894673,39.059592],[-84.817996,39.103408],[-84.43461,39.103408],[-84.231963,38.895284],[-84.215533,38.807653],[-83.903347,38.769315]]]}},
+{"type":"Feature","id":"22","properties":{"name":"Louisiana","density":105},"geometry":{"type":"Polygon","coordinates":[[[-93.608485,33.018527],[-91.16577,33.002096],[-91.072662,32.887081],[-91.143862,32.843265],[-91.154816,32.640618],[-91.006939,32.514649],[-90.985031,32.218894],[-91.105524,31.988862],[-91.341032,31.846462],[-91.401278,31.621907],[-91.499863,31.643815],[-91.516294,31.27686],[-91.636787,31.265906],[-91.565587,31.068736],[-91.636787,30.997536],[-89.747242,30.997536],[-89.845827,30.66892],[-89.681519,30.449842],[-89.643181,30.285534],[-89.522688,30.181472],[-89.818443,30.044549],[-89.84035,29.945964],[-89.599365,29.88024],[-89.495303,30.039072],[-89.287179,29.88024],[-89.30361,29.754271],[-89.424103,29.699501],[-89.648657,29.748794],[-89.621273,29.655686],[-89.69795,29.513285],[-89.506257,29.387316],[-89.199548,29.348977],[-89.09001,29.2011],[-89.002379,29.179192],[-89.16121,29.009407],[-89.336472,29.042268],[-89.484349,29.217531],[-89.851304,29.310638],[-89.851304,29.480424],[-90.032043,29.425654],[-90.021089,29.283254],[-90.103244,29.151807],[-90.23469,29.129899],[-90.333275,29.277777],[-90.563307,29.283254],[-90.645461,29.129899],[-90.798815,29.086084],[-90.963123,29.179192],[-91.09457,29.190146],[-91.220539,29.436608],[-91.445094,29.546147],[-91.532725,29.529716],[-91.620356,29.73784],[-91.883249,29.710455],[-91.888726,29.836425],[-92.146142,29.715932],[-92.113281,29.622824],[-92.31045,29.535193],[-92.617159,29.579009],[-92.97316,29.715932],[-93.2251,29.776178],[-93.767317,29.726886],[-93.838517,29.688547],[-93.926148,29.787132],[-93.690639,30.143133],[-93.767317,30.334826],[-93.696116,30.438888],[-93.728978,30.575812],[-93.630393,30.679874],[-93.526331,30.93729],[-93.542762,31.15089],[-93.816609,31.556184],[-93.822086,31.775262],[-94.041164,31.994339],[-94.041164,33.018527],[-93.608485,33.018527]]]}},
+{"type":"Feature","id":"23","properties":{"name":"Maine","density":43.04},"geometry":{"type":"Polygon","coordinates":[[[-70.703921,43.057759],[-70.824413,43.128959],[-70.807983,43.227544],[-70.966814,43.34256],[-71.032537,44.657025],[-71.08183,45.303304],[-70.649151,45.440228],[-70.720352,45.511428],[-70.556043,45.664782],[-70.386258,45.735983],[-70.41912,45.796229],[-70.260289,45.889337],[-70.309581,46.064599],[-70.210996,46.327492],[-70.057642,46.415123],[-69.997395,46.694447],[-69.225147,47.461219],[-69.044408,47.428357],[-69.033454,47.242141],[-68.902007,47.176418],[-68.578868,47.285957],[-68.376221,47.285957],[-68.233821,47.357157],[-67.954497,47.198326],[-67.790188,47.066879],[-67.779235,45.944106],[-67.801142,45.675736],[-67.456095,45.604536],[-67.505388,45.48952],[-67.417757,45.379982],[-67.488957,45.281397],[-67.346556,45.128042],[-67.16034,45.160904],[-66.979601,44.804903],[-67.187725,44.646072],[-67.308218,44.706318],[-67.406803,44.596779],[-67.549203,44.624164],[-67.565634,44.531056],[-67.75185,44.54201],[-68.047605,44.328409],[-68.118805,44.476286],[-68.222867,44.48724],[-68.173574,44.328409],[-68.403606,44.251732],[-68.458375,44.377701],[-68.567914,44.311978],[-68.82533,44.311978],[-68.830807,44.459856],[-68.984161,44.426994],[-68.956777,44.322932],[-69.099177,44.103854],[-69.071793,44.043608],[-69.258008,43.923115],[-69.444224,43.966931],[-69.553763,43.840961],[-69.707118,43.82453],[-69.833087,43.720469],[-69.986442,43.742376],[-70.030257,43.851915],[-70.254812,43.676653],[-70.194565,43.567114],[-70.358873,43.528776],[-70.369827,43.435668],[-70.556043,43.320652],[-70.703921,43.057759]]]}},
+{"type":"Feature","id":"24","properties":{"name":"Maryland","density":596.3},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.994645,37.95325],[-76.016553,37.95325],[-76.043938,37.95325],[-75.994645,37.95325]]],[[[-79.477979,39.722302],[-75.786521,39.722302],[-75.693413,38.462606],[-75.047134,38.451652],[-75.244304,38.029928],[-75.397659,38.013497],[-75.671506,37.95325],[-75.885106,37.909435],[-75.879629,38.073743],[-75.961783,38.139466],[-75.846768,38.210667],[-76.000122,38.374975],[-76.049415,38.303775],[-76.257538,38.320205],[-76.328738,38.500944],[-76.263015,38.500944],[-76.257538,38.736453],[-76.191815,38.829561],[-76.279446,39.147223],[-76.169907,39.333439],[-76.000122,39.366301],[-75.972737,39.557994],[-76.098707,39.536086],[-76.104184,39.437501],[-76.367077,39.311532],[-76.443754,39.196516],[-76.460185,38.906238],[-76.55877,38.769315],[-76.514954,38.539283],[-76.383508,38.380452],[-76.399939,38.259959],[-76.317785,38.139466],[-76.3616,38.057312],[-76.591632,38.216144],[-76.920248,38.292821],[-77.018833,38.446175],[-77.205049,38.358544],[-77.276249,38.479037],[-77.128372,38.632391],[-77.040741,38.791222],[-76.909294,38.895284],[-77.035264,38.993869],[-77.117418,38.933623],[-77.248864,39.026731],[-77.456988,39.076023],[-77.456988,39.223901],[-77.566527,39.306055],[-77.719881,39.322485],[-77.834897,39.601809],[-78.004682,39.601809],[-78.174467,39.694917],[-78.267575,39.61824],[-78.431884,39.623717],[-78.470222,39.514178],[-78.765977,39.585379],[-78.963147,39.437501],[-79.094593,39.470363],[-79.291763,39.300578],[-79.488933,39.20747],[-79.477979,39.722302]]]]}},
+{"type":"Feature","id":"25","properties":{"name":"Massachusetts","density":840.2},"geometry":{"type":"Polygon","coordinates":[[[-70.917521,42.887974],[-70.818936,42.871543],[-70.780598,42.696281],[-70.824413,42.55388],[-70.983245,42.422434],[-70.988722,42.269079],[-70.769644,42.247172],[-70.638197,42.08834],[-70.660105,41.962371],[-70.550566,41.929509],[-70.539613,41.814493],[-70.260289,41.715908],[-69.937149,41.809016],[-70.008349,41.672093],[-70.484843,41.5516],[-70.660105,41.546123],[-70.764167,41.639231],[-70.928475,41.611847],[-70.933952,41.540646],[-71.120168,41.496831],[-71.196845,41.67757],[-71.22423,41.710431],[-71.328292,41.781632],[-71.383061,42.01714],[-71.530939,42.01714],[-71.799309,42.006186],[-71.799309,42.022617],[-73.053528,42.039048],[-73.486206,42.050002],[-73.508114,42.08834],[-73.267129,42.745573],[-72.456542,42.729142],[-71.29543,42.696281],[-71.185891,42.789389],[-70.917521,42.887974]]]}},
+{"type":"Feature","id":"26","properties":{"name":"Michigan","density":173.9},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.454238,41.732339],[-84.807042,41.694001],[-84.807042,41.759724],[-85.990061,41.759724],[-86.822556,41.759724],[-86.619909,41.891171],[-86.482986,42.115725],[-86.357016,42.252649],[-86.263908,42.444341],[-86.209139,42.718189],[-86.231047,43.013943],[-86.526801,43.594499],[-86.433693,43.813577],[-86.499417,44.07647],[-86.269385,44.34484],[-86.220093,44.569394],[-86.252954,44.689887],[-86.088646,44.73918],[-86.066738,44.903488],[-85.809322,44.947303],[-85.612152,45.128042],[-85.628583,44.766564],[-85.524521,44.750133],[-85.393075,44.930872],[-85.387598,45.237581],[-85.305444,45.314258],[-85.031597,45.363551],[-85.119228,45.577151],[-84.938489,45.75789],[-84.713934,45.768844],[-84.461995,45.653829],[-84.215533,45.637398],[-84.09504,45.494997],[-83.908824,45.484043],[-83.596638,45.352597],[-83.4871,45.358074],[-83.317314,45.144473],[-83.454238,45.029457],[-83.322791,44.88158],[-83.273499,44.711795],[-83.333745,44.339363],[-83.536392,44.246255],[-83.585684,44.054562],[-83.82667,43.988839],[-83.958116,43.758807],[-83.908824,43.671176],[-83.667839,43.589022],[-83.481623,43.714992],[-83.262545,43.972408],[-82.917498,44.070993],[-82.747713,43.994316],[-82.643651,43.851915],[-82.539589,43.435668],[-82.523158,43.227544],[-82.413619,42.975605],[-82.517681,42.614127],[-82.681989,42.559357],[-82.687466,42.690804],[-82.797005,42.652465],[-82.922975,42.351234],[-83.125621,42.236218],[-83.185868,42.006186],[-83.437807,41.814493],[-83.454238,41.732339]]],[[[-85.508091,45.730506],[-85.49166,45.610013],[-85.623106,45.588105],[-85.568337,45.75789],[-85.508091,45.730506]]],[[[-87.589328,45.095181],[-87.742682,45.199243],[-87.649574,45.341643],[-87.885083,45.363551],[-87.791975,45.500474],[-87.781021,45.675736],[-87.989145,45.796229],[-88.10416,45.922199],[-88.531362,46.020784],[-88.662808,45.987922],[-89.09001,46.135799],[-90.119674,46.338446],[-90.229213,46.508231],[-90.415429,46.568478],[-90.026566,46.672539],[-89.851304,46.793032],[-89.413149,46.842325],[-89.128348,46.990202],[-88.996902,46.995679],[-88.887363,47.099741],[-88.575177,47.247618],[-88.416346,47.373588],[-88.180837,47.455742],[-87.956283,47.384542],[-88.350623,47.077833],[-88.443731,46.973771],[-88.438254,46.787555],[-88.246561,46.929956],[-87.901513,46.908048],[-87.633143,46.809463],[-87.392158,46.535616],[-87.260711,46.486323],[-87.008772,46.530139],[-86.948526,46.469893],[-86.696587,46.437031],[-86.159846,46.667063],[-85.880522,46.68897],[-85.508091,46.678016],[-85.256151,46.754694],[-85.064458,46.760171],[-85.02612,46.480847],[-84.82895,46.442508],[-84.63178,46.486323],[-84.549626,46.4206],[-84.418179,46.502754],[-84.127902,46.530139],[-84.122425,46.179615],[-83.990978,46.031737],[-83.793808,45.993399],[-83.7719,46.091984],[-83.580208,46.091984],[-83.476146,45.987922],[-83.563777,45.911245],[-84.111471,45.976968],[-84.374364,45.933153],[-84.659165,46.053645],[-84.741319,45.944106],[-84.70298,45.850998],[-84.82895,45.872906],[-85.015166,46.00983],[-85.338305,46.091984],[-85.502614,46.097461],[-85.661445,45.966014],[-85.924338,45.933153],[-86.209139,45.960537],[-86.324155,45.905768],[-86.351539,45.796229],[-86.663725,45.703121],[-86.647294,45.834568],[-86.784218,45.861952],[-86.838987,45.725029],[-87.069019,45.719552],[-87.17308,45.659305],[-87.326435,45.423797],[-87.611236,45.122565],[-87.589328,45.095181]]],[[[-88.805209,47.976051],[-89.057148,47.850082],[-89.188594,47.833651],[-89.177641,47.937713],[-88.547792,48.173221],[-88.668285,48.008913],[-88.805209,47.976051]]]]}},
+{"type":"Feature","id":"27","properties":{"name":"Minnesota","density":67.14},"geometry":{"type":"Polygon","coordinates":[[[-92.014696,46.705401],[-92.091373,46.749217],[-92.29402,46.667063],[-92.29402,46.075553],[-92.354266,46.015307],[-92.639067,45.933153],[-92.869098,45.719552],[-92.885529,45.577151],[-92.770513,45.566198],[-92.644544,45.440228],[-92.75956,45.286874],[-92.737652,45.117088],[-92.808852,44.750133],[-92.545959,44.569394],[-92.337835,44.552964],[-92.233773,44.443425],[-91.927065,44.333886],[-91.877772,44.202439],[-91.592971,44.032654],[-91.43414,43.994316],[-91.242447,43.775238],[-91.269832,43.616407],[-91.215062,43.501391],[-91.368417,43.501391],[-96.451017,43.501391],[-96.451017,45.297827],[-96.681049,45.412843],[-96.856311,45.604536],[-96.582464,45.818137],[-96.560556,45.933153],[-96.598895,46.332969],[-96.719387,46.437031],[-96.801542,46.656109],[-96.785111,46.924479],[-96.823449,46.968294],[-96.856311,47.609096],[-97.053481,47.948667],[-97.130158,48.140359],[-97.16302,48.545653],[-97.097296,48.682577],[-97.228743,49.000239],[-95.152983,49.000239],[-95.152983,49.383625],[-94.955813,49.372671],[-94.824366,49.295994],[-94.69292,48.775685],[-94.588858,48.715438],[-94.260241,48.699007],[-94.221903,48.649715],[-93.838517,48.627807],[-93.794701,48.518268],[-93.466085,48.545653],[-93.466085,48.589469],[-93.208669,48.644238],[-92.984114,48.62233],[-92.726698,48.540176],[-92.655498,48.436114],[-92.50762,48.447068],[-92.370697,48.222514],[-92.304974,48.315622],[-92.053034,48.359437],[-92.009219,48.266329],[-91.713464,48.200606],[-91.713464,48.112975],[-91.565587,48.041775],[-91.264355,48.080113],[-91.083616,48.178698],[-90.837154,48.238944],[-90.749522,48.091067],[-90.579737,48.123929],[-90.377091,48.091067],[-90.141582,48.112975],[-89.873212,47.987005],[-89.615796,48.008913],[-89.637704,47.954144],[-89.971797,47.828174],[-90.437337,47.729589],[-90.738569,47.625527],[-91.171247,47.368111],[-91.357463,47.20928],[-91.642264,47.028541],[-92.091373,46.787555],[-92.014696,46.705401]]]}},
+{"type":"Feature","id":"28","properties":{"name":"Mississippi","density":63.50},"geometry":{"type":"Polygon","coordinates":[[[-88.471115,34.995703],[-88.202745,34.995703],[-88.098683,34.891641],[-88.241084,33.796253],[-88.471115,31.895754],[-88.394438,30.367688],[-88.503977,30.323872],[-88.744962,30.34578],[-88.843547,30.411504],[-89.084533,30.367688],[-89.418626,30.252672],[-89.522688,30.181472],[-89.643181,30.285534],[-89.681519,30.449842],[-89.845827,30.66892],[-89.747242,30.997536],[-91.636787,30.997536],[-91.565587,31.068736],[-91.636787,31.265906],[-91.516294,31.27686],[-91.499863,31.643815],[-91.401278,31.621907],[-91.341032,31.846462],[-91.105524,31.988862],[-90.985031,32.218894],[-91.006939,32.514649],[-91.154816,32.640618],[-91.143862,32.843265],[-91.072662,32.887081],[-91.16577,33.002096],[-91.089093,33.13902],[-91.143862,33.347144],[-91.056231,33.429298],[-91.231493,33.560744],[-91.072662,33.867453],[-90.891923,34.026284],[-90.952169,34.135823],[-90.744046,34.300131],[-90.749522,34.365854],[-90.568783,34.420624],[-90.585214,34.617794],[-90.481152,34.661609],[-90.409952,34.831394],[-90.251121,34.908072],[-90.311367,34.995703],[-88.471115,34.995703]]]}},
+{"type":"Feature","id":"29","properties":{"name":"Missouri","density":87.26},"geometry":{"type":"Polygon","coordinates":[[[-91.833957,40.609566],[-91.729895,40.615043],[-91.527248,40.412397],[-91.417709,40.379535],[-91.50534,40.237135],[-91.494386,40.034488],[-91.368417,39.727779],[-91.061708,39.470363],[-90.727615,39.256762],[-90.661891,38.928146],[-90.585214,38.867899],[-90.470199,38.961007],[-90.251121,38.917192],[-90.10872,38.845992],[-90.207305,38.725499],[-90.179921,38.632391],[-90.349706,38.374975],[-90.355183,38.216144],[-90.059428,38.013497],[-89.949889,37.88205],[-89.84035,37.903958],[-89.517211,37.690357],[-89.517211,37.537003],[-89.435057,37.34531],[-89.517211,37.279587],[-89.292656,36.994786],[-89.133825,36.983832],[-89.215979,36.578538],[-89.363857,36.622354],[-89.418626,36.496384],[-89.484349,36.496384],[-89.539119,36.496384],[-89.533642,36.249922],[-89.730812,35.997983],[-90.377091,35.997983],[-90.218259,36.184199],[-90.064905,36.304691],[-90.152536,36.496384],[-94.473842,36.501861],[-94.616242,36.501861],[-94.616242,37.000263],[-94.610765,39.158177],[-94.824366,39.20747],[-94.983197,39.442978],[-95.109167,39.541563],[-94.884612,39.831841],[-95.207752,39.908518],[-95.306337,40.001626],[-95.552799,40.264519],[-95.7664,40.587659],[-94.632673,40.571228],[-93.257961,40.582182],[-91.833957,40.609566]]]}},
+{"type":"Feature","id":"30","properties":{"name":"Montana","density":6.858},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,49.000239],[-104.042057,47.861036],[-104.047534,45.944106],[-104.042057,44.996596],[-104.058488,44.996596],[-105.91517,45.002073],[-109.080842,45.002073],[-111.05254,45.002073],[-111.047063,44.476286],[-111.227803,44.580348],[-111.386634,44.75561],[-111.616665,44.547487],[-111.819312,44.509148],[-111.868605,44.563917],[-112.104113,44.520102],[-112.241036,44.569394],[-112.471068,44.481763],[-112.783254,44.48724],[-112.887315,44.394132],[-113.002331,44.448902],[-113.133778,44.772041],[-113.341901,44.782995],[-113.456917,44.865149],[-113.45144,45.056842],[-113.571933,45.128042],[-113.736241,45.330689],[-113.834826,45.522382],[-113.807441,45.604536],[-113.98818,45.703121],[-114.086765,45.593582],[-114.333228,45.456659],[-114.546828,45.560721],[-114.497536,45.670259],[-114.568736,45.774321],[-114.387997,45.88386],[-114.492059,46.037214],[-114.464674,46.272723],[-114.322274,46.645155],[-114.612552,46.639678],[-114.623506,46.705401],[-114.886399,46.809463],[-114.930214,46.919002],[-115.302646,47.187372],[-115.324554,47.258572],[-115.527201,47.302388],[-115.718894,47.42288],[-115.724371,47.696727],[-116.04751,47.976051],[-116.04751,49.000239],[-111.50165,48.994762],[-109.453274,49.000239],[-104.047534,49.000239]]]}},
+{"type":"Feature","id":"31","properties":{"name":"Nebraska","density":23.97},"geometry":{"type":"Polygon","coordinates":[[[-103.324578,43.002989],[-101.626726,42.997512],[-98.499393,42.997512],[-98.466531,42.94822],[-97.951699,42.767481],[-97.831206,42.866066],[-97.688806,42.844158],[-97.217789,42.844158],[-96.692003,42.657942],[-96.626279,42.515542],[-96.44554,42.488157],[-96.264801,42.039048],[-96.127878,41.973325],[-96.062155,41.798063],[-96.122401,41.67757],[-96.095016,41.540646],[-95.919754,41.453015],[-95.925231,41.201076],[-95.826646,40.976521],[-95.881416,40.719105],[-95.7664,40.587659],[-95.552799,40.264519],[-95.306337,40.001626],[-101.90605,40.001626],[-102.053927,40.001626],[-102.053927,41.003906],[-104.053011,41.003906],[-104.053011,43.002989],[-103.324578,43.002989]]]}},
+{"type":"Feature","id":"32","properties":{"name":"Nevada","density":24.80},"geometry":{"type":"Polygon","coordinates":[[[-117.027882,42.000709],[-114.04295,41.995232],[-114.048427,37.000263],[-114.048427,36.195153],[-114.152489,36.025367],[-114.251074,36.01989],[-114.371566,36.140383],[-114.738521,36.102045],[-114.678275,35.516012],[-114.596121,35.324319],[-114.574213,35.138103],[-114.634459,35.00118],[-115.85034,35.970598],[-116.540435,36.501861],[-117.498899,37.21934],[-118.71478,38.101128],[-120.001861,38.999346],[-119.996384,40.264519],[-120.001861,41.995232],[-118.698349,41.989755],[-117.027882,42.000709]]]}},
+{"type":"Feature","id":"33","properties":{"name":"New Hampshire","density":147},"geometry":{"type":"Polygon","coordinates":[[[-71.08183,45.303304],[-71.032537,44.657025],[-70.966814,43.34256],[-70.807983,43.227544],[-70.824413,43.128959],[-70.703921,43.057759],[-70.818936,42.871543],[-70.917521,42.887974],[-71.185891,42.789389],[-71.29543,42.696281],[-72.456542,42.729142],[-72.544173,42.80582],[-72.533219,42.953697],[-72.445588,43.008466],[-72.456542,43.150867],[-72.379864,43.572591],[-72.204602,43.769761],[-72.116971,43.994316],[-72.02934,44.07647],[-72.034817,44.322932],[-71.700724,44.41604],[-71.536416,44.585825],[-71.629524,44.750133],[-71.4926,44.914442],[-71.503554,45.013027],[-71.361154,45.270443],[-71.131122,45.243058],[-71.08183,45.303304]]]}},
+{"type":"Feature","id":"34","properties":{"name":"New Jersey","density":1189 },"geometry":{"type":"Polygon","coordinates":[[[-74.236547,41.14083],[-73.902454,40.998429],[-74.022947,40.708151],[-74.187255,40.642428],[-74.274886,40.489074],[-74.001039,40.412397],[-73.979131,40.297381],[-74.099624,39.760641],[-74.411809,39.360824],[-74.614456,39.245808],[-74.795195,38.993869],[-74.888303,39.158177],[-75.178581,39.240331],[-75.534582,39.459409],[-75.55649,39.607286],[-75.561967,39.629194],[-75.507197,39.683964],[-75.414089,39.804456],[-75.145719,39.88661],[-75.129289,39.963288],[-74.82258,40.127596],[-74.773287,40.215227],[-75.058088,40.417874],[-75.069042,40.543843],[-75.195012,40.576705],[-75.205966,40.691721],[-75.052611,40.866983],[-75.134765,40.971045],[-74.882826,41.179168],[-74.828057,41.288707],[-74.69661,41.359907],[-74.236547,41.14083]]]}},
+{"type":"Feature","id":"35","properties":{"name":"New Mexico","density":17.16},"geometry":{"type":"Polygon","coordinates":[[[-107.421329,37.000263],[-106.868158,36.994786],[-104.337812,36.994786],[-103.001438,37.000263],[-103.001438,36.501861],[-103.039777,36.501861],[-103.045254,34.01533],[-103.067161,33.002096],[-103.067161,31.999816],[-106.616219,31.999816],[-106.643603,31.901231],[-106.528588,31.786216],[-108.210008,31.786216],[-108.210008,31.331629],[-109.04798,31.331629],[-109.042503,37.000263],[-107.421329,37.000263]]]}},
+{"type":"Feature","id":"36","properties":{"name":"New York","density":412.3},"geometry":{"type":"Polygon","coordinates":[[[-73.343806,45.013027],[-73.332852,44.804903],[-73.387622,44.618687],[-73.294514,44.437948],[-73.321898,44.246255],[-73.436914,44.043608],[-73.349283,43.769761],[-73.404052,43.687607],[-73.245221,43.523299],[-73.278083,42.833204],[-73.267129,42.745573],[-73.508114,42.08834],[-73.486206,42.050002],[-73.55193,41.294184],[-73.48073,41.21203],[-73.727192,41.102491],[-73.655992,40.987475],[-73.22879,40.905321],[-73.141159,40.965568],[-72.774204,40.965568],[-72.587988,40.998429],[-72.28128,41.157261],[-72.259372,41.042245],[-72.100541,40.992952],[-72.467496,40.845075],[-73.239744,40.625997],[-73.562884,40.582182],[-73.776484,40.593136],[-73.935316,40.543843],[-74.022947,40.708151],[-73.902454,40.998429],[-74.236547,41.14083],[-74.69661,41.359907],[-74.740426,41.431108],[-74.89378,41.436584],[-75.074519,41.60637],[-75.052611,41.754247],[-75.173104,41.869263],[-75.249781,41.863786],[-75.35932,42.000709],[-79.76278,42.000709],[-79.76278,42.252649],[-79.76278,42.269079],[-79.149363,42.55388],[-79.050778,42.690804],[-78.853608,42.783912],[-78.930285,42.953697],[-79.012439,42.986559],[-79.072686,43.260406],[-78.486653,43.375421],[-77.966344,43.369944],[-77.75822,43.34256],[-77.533665,43.233021],[-77.391265,43.276836],[-76.958587,43.271359],[-76.695693,43.34256],[-76.41637,43.523299],[-76.235631,43.528776],[-76.230154,43.802623],[-76.137046,43.961454],[-76.3616,44.070993],[-76.312308,44.196962],[-75.912491,44.366748],[-75.764614,44.514625],[-75.282643,44.848718],[-74.828057,45.018503],[-74.148916,44.991119],[-73.343806,45.013027]]]}},
+{"type":"Feature","id":"37","properties":{"name":"North Carolina","density":198.2},"geometry":{"type":"Polygon","coordinates":[[[-80.978661,36.562108],[-80.294043,36.545677],[-79.510841,36.5402],[-75.868676,36.551154],[-75.75366,36.151337],[-76.032984,36.189676],[-76.071322,36.140383],[-76.410893,36.080137],[-76.460185,36.025367],[-76.68474,36.008937],[-76.673786,35.937736],[-76.399939,35.987029],[-76.3616,35.943213],[-76.060368,35.992506],[-75.961783,35.899398],[-75.781044,35.937736],[-75.715321,35.696751],[-75.775568,35.581735],[-75.89606,35.570781],[-76.147999,35.324319],[-76.482093,35.313365],[-76.536862,35.14358],[-76.394462,34.973795],[-76.279446,34.940933],[-76.493047,34.661609],[-76.673786,34.694471],[-76.991448,34.667086],[-77.210526,34.60684],[-77.555573,34.415147],[-77.82942,34.163208],[-77.971821,33.845545],[-78.179944,33.916745],[-78.541422,33.851022],[-79.675149,34.80401],[-80.797922,34.820441],[-80.781491,34.935456],[-80.934845,35.105241],[-81.038907,35.044995],[-81.044384,35.149057],[-82.276696,35.198349],[-82.550543,35.160011],[-82.764143,35.066903],[-83.109191,35.00118],[-83.618546,34.984749],[-84.319594,34.990226],[-84.29221,35.225734],[-84.09504,35.247642],[-84.018363,35.41195],[-83.7719,35.559827],[-83.498053,35.565304],[-83.251591,35.718659],[-82.994175,35.773428],[-82.775097,35.997983],[-82.638174,36.063706],[-82.610789,35.965121],[-82.216449,36.156814],[-82.03571,36.118475],[-81.909741,36.304691],[-81.723525,36.353984],[-81.679709,36.589492],[-80.978661,36.562108]]]}},
+{"type":"Feature","id":"38","properties":{"name":"North Dakota","density":9.916},"geometry":{"type":"Polygon","coordinates":[[[-97.228743,49.000239],[-97.097296,48.682577],[-97.16302,48.545653],[-97.130158,48.140359],[-97.053481,47.948667],[-96.856311,47.609096],[-96.823449,46.968294],[-96.785111,46.924479],[-96.801542,46.656109],[-96.719387,46.437031],[-96.598895,46.332969],[-96.560556,45.933153],[-104.047534,45.944106],[-104.042057,47.861036],[-104.047534,49.000239],[-97.228743,49.000239]]]}},
+{"type":"Feature","id":"39","properties":{"name":"Ohio","density":281.9},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,41.978802],[-80.518598,40.636951],[-80.666475,40.582182],[-80.595275,40.472643],[-80.600752,40.319289],[-80.737675,40.078303],[-80.830783,39.711348],[-81.219646,39.388209],[-81.345616,39.344393],[-81.455155,39.410117],[-81.57017,39.267716],[-81.685186,39.273193],[-81.811156,39.0815],[-81.783771,38.966484],[-81.887833,38.873376],[-82.03571,39.026731],[-82.221926,38.785745],[-82.172634,38.632391],[-82.293127,38.577622],[-82.331465,38.446175],[-82.594358,38.424267],[-82.731282,38.561191],[-82.846298,38.588575],[-82.890113,38.758361],[-83.032514,38.725499],[-83.142052,38.626914],[-83.519961,38.703591],[-83.678792,38.632391],[-83.903347,38.769315],[-84.215533,38.807653],[-84.231963,38.895284],[-84.43461,39.103408],[-84.817996,39.103408],[-84.801565,40.500028],[-84.807042,41.694001],[-83.454238,41.732339],[-83.065375,41.595416],[-82.933929,41.513262],[-82.835344,41.589939],[-82.616266,41.431108],[-82.479343,41.381815],[-82.013803,41.513262],[-81.739956,41.485877],[-81.444201,41.672093],[-81.011523,41.852832],[-80.518598,41.978802],[-80.518598,41.978802]]]}},
+{"type":"Feature","id":"40","properties":{"name":"Oklahoma","density":55.22},"geometry":{"type":"Polygon","coordinates":[[[-100.087706,37.000263],[-94.616242,37.000263],[-94.616242,36.501861],[-94.430026,35.395519],[-94.484796,33.637421],[-94.868182,33.74696],[-94.966767,33.861976],[-95.224183,33.960561],[-95.289906,33.87293],[-95.547322,33.878407],[-95.602092,33.933176],[-95.8376,33.834591],[-95.936185,33.889361],[-96.149786,33.840068],[-96.346956,33.686714],[-96.423633,33.774345],[-96.631756,33.845545],[-96.850834,33.845545],[-96.922034,33.960561],[-97.173974,33.736006],[-97.256128,33.861976],[-97.371143,33.823637],[-97.458774,33.905791],[-97.694283,33.982469],[-97.869545,33.851022],[-97.946222,33.987946],[-98.088623,34.004376],[-98.170777,34.113915],[-98.36247,34.157731],[-98.488439,34.064623],[-98.570593,34.146777],[-98.767763,34.135823],[-98.986841,34.223454],[-99.189488,34.2125],[-99.260688,34.404193],[-99.57835,34.415147],[-99.698843,34.382285],[-99.923398,34.573978],[-100.000075,34.563024],[-100.000075,36.501861],[-101.812942,36.501861],[-103.001438,36.501861],[-103.001438,37.000263],[-102.042974,36.994786],[-100.087706,37.000263]]]}},
+{"type":"Feature","id":"41","properties":{"name":"Oregon","density":40.33},"geometry":{"type":"Polygon","coordinates":[[[-123.211348,46.174138],[-123.11824,46.185092],[-122.904639,46.08103],[-122.811531,45.960537],[-122.762239,45.659305],[-122.247407,45.549767],[-121.809251,45.708598],[-121.535404,45.725029],[-121.217742,45.670259],[-121.18488,45.604536],[-120.637186,45.746937],[-120.505739,45.697644],[-120.209985,45.725029],[-119.963522,45.823614],[-119.525367,45.911245],[-119.125551,45.933153],[-118.988627,45.998876],[-116.918344,45.993399],[-116.78142,45.823614],[-116.545912,45.752413],[-116.463758,45.61549],[-116.671881,45.319735],[-116.732128,45.144473],[-116.847143,45.02398],[-116.830713,44.930872],[-116.934774,44.782995],[-117.038836,44.750133],[-117.241483,44.394132],[-117.170283,44.257209],[-116.97859,44.240778],[-116.896436,44.158624],[-117.027882,43.830007],[-117.027882,42.000709],[-118.698349,41.989755],[-120.001861,41.995232],[-121.037003,41.995232],[-122.378853,42.011663],[-123.233256,42.006186],[-124.213628,42.000709],[-124.356029,42.115725],[-124.432706,42.438865],[-124.416275,42.663419],[-124.553198,42.838681],[-124.454613,43.002989],[-124.383413,43.271359],[-124.235536,43.55616],[-124.169813,43.8081],[-124.060274,44.657025],[-124.076705,44.772041],[-123.97812,45.144473],[-123.939781,45.659305],[-123.994551,45.944106],[-123.945258,46.113892],[-123.545441,46.261769],[-123.370179,46.146753],[-123.211348,46.174138]]]}},
+{"type":"Feature","id":"42","properties":{"name":"Pennsylvania","density":284.3},"geometry":{"type":"Polygon","coordinates":[[[-79.76278,42.252649],[-79.76278,42.000709],[-75.35932,42.000709],[-75.249781,41.863786],[-75.173104,41.869263],[-75.052611,41.754247],[-75.074519,41.60637],[-74.89378,41.436584],[-74.740426,41.431108],[-74.69661,41.359907],[-74.828057,41.288707],[-74.882826,41.179168],[-75.134765,40.971045],[-75.052611,40.866983],[-75.205966,40.691721],[-75.195012,40.576705],[-75.069042,40.543843],[-75.058088,40.417874],[-74.773287,40.215227],[-74.82258,40.127596],[-75.129289,39.963288],[-75.145719,39.88661],[-75.414089,39.804456],[-75.616736,39.831841],[-75.786521,39.722302],[-79.477979,39.722302],[-80.518598,39.722302],[-80.518598,40.636951],[-80.518598,41.978802],[-80.518598,41.978802],[-80.332382,42.033571],[-79.76278,42.269079],[-79.76278,42.252649]]]}},
+{"type":"Feature","id":"44","properties":{"name":"Rhode Island","density":1006 },"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.196845,41.67757],[-71.120168,41.496831],[-71.317338,41.474923],[-71.196845,41.67757]]],[[[-71.530939,42.01714],[-71.383061,42.01714],[-71.328292,41.781632],[-71.22423,41.710431],[-71.344723,41.726862],[-71.448785,41.578985],[-71.481646,41.370861],[-71.859555,41.321569],[-71.799309,41.414677],[-71.799309,42.006186],[-71.530939,42.01714]]]]}},
+{"type":"Feature","id":"45","properties":{"name":"South Carolina","density":155.4},"geometry":{"type":"Polygon","coordinates":[[[-82.764143,35.066903],[-82.550543,35.160011],[-82.276696,35.198349],[-81.044384,35.149057],[-81.038907,35.044995],[-80.934845,35.105241],[-80.781491,34.935456],[-80.797922,34.820441],[-79.675149,34.80401],[-78.541422,33.851022],[-78.716684,33.80173],[-78.935762,33.637421],[-79.149363,33.380005],[-79.187701,33.171881],[-79.357487,33.007573],[-79.582041,33.007573],[-79.631334,32.887081],[-79.866842,32.755634],[-79.998289,32.613234],[-80.206412,32.552987],[-80.430967,32.399633],[-80.452875,32.328433],[-80.660998,32.246279],[-80.885553,32.032678],[-81.115584,32.120309],[-81.121061,32.290094],[-81.279893,32.558464],[-81.416816,32.629664],[-81.42777,32.843265],[-81.493493,33.007573],[-81.761863,33.160928],[-81.937125,33.347144],[-81.926172,33.462159],[-82.194542,33.631944],[-82.325988,33.81816],[-82.55602,33.94413],[-82.714851,34.152254],[-82.747713,34.26727],[-82.901067,34.486347],[-83.005129,34.469916],[-83.339222,34.683517],[-83.322791,34.787579],[-83.109191,35.00118],[-82.764143,35.066903]]]}},
+{"type":"Feature","id":"46","properties":{"name":"South Dakota","density":98.07},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,45.944106],[-96.560556,45.933153],[-96.582464,45.818137],[-96.856311,45.604536],[-96.681049,45.412843],[-96.451017,45.297827],[-96.451017,43.501391],[-96.582464,43.479483],[-96.527695,43.397329],[-96.560556,43.222067],[-96.434587,43.123482],[-96.511264,43.052282],[-96.544125,42.855112],[-96.631756,42.707235],[-96.44554,42.488157],[-96.626279,42.515542],[-96.692003,42.657942],[-97.217789,42.844158],[-97.688806,42.844158],[-97.831206,42.866066],[-97.951699,42.767481],[-98.466531,42.94822],[-98.499393,42.997512],[-101.626726,42.997512],[-103.324578,43.002989],[-104.053011,43.002989],[-104.058488,44.996596],[-104.042057,44.996596],[-104.047534,45.944106]]]}},
+{"type":"Feature","id":"47","properties":{"name":"Tennessee","density":88.08},"geometry":{"type":"Polygon","coordinates":[[[-88.054868,36.496384],[-88.071299,36.677123],[-87.852221,36.633308],[-86.592525,36.655216],[-85.486183,36.616877],[-85.289013,36.627831],[-84.544149,36.594969],[-83.689746,36.584015],[-83.673316,36.600446],[-81.679709,36.589492],[-81.723525,36.353984],[-81.909741,36.304691],[-82.03571,36.118475],[-82.216449,36.156814],[-82.610789,35.965121],[-82.638174,36.063706],[-82.775097,35.997983],[-82.994175,35.773428],[-83.251591,35.718659],[-83.498053,35.565304],[-83.7719,35.559827],[-84.018363,35.41195],[-84.09504,35.247642],[-84.29221,35.225734],[-84.319594,34.990226],[-85.606675,34.984749],[-87.359296,35.00118],[-88.202745,34.995703],[-88.471115,34.995703],[-90.311367,34.995703],[-90.212782,35.023087],[-90.114197,35.198349],[-90.130628,35.439335],[-89.944412,35.603643],[-89.911551,35.756997],[-89.763673,35.811767],[-89.730812,35.997983],[-89.533642,36.249922],[-89.539119,36.496384],[-89.484349,36.496384],[-89.418626,36.496384],[-89.298133,36.507338],[-88.054868,36.496384]]]}},
+{"type":"Feature","id":"48","properties":{"name":"Texas","density":98.07},"geometry":{"type":"Polygon","coordinates":[[[-101.812942,36.501861],[-100.000075,36.501861],[-100.000075,34.563024],[-99.923398,34.573978],[-99.698843,34.382285],[-99.57835,34.415147],[-99.260688,34.404193],[-99.189488,34.2125],[-98.986841,34.223454],[-98.767763,34.135823],[-98.570593,34.146777],[-98.488439,34.064623],[-98.36247,34.157731],[-98.170777,34.113915],[-98.088623,34.004376],[-97.946222,33.987946],[-97.869545,33.851022],[-97.694283,33.982469],[-97.458774,33.905791],[-97.371143,33.823637],[-97.256128,33.861976],[-97.173974,33.736006],[-96.922034,33.960561],[-96.850834,33.845545],[-96.631756,33.845545],[-96.423633,33.774345],[-96.346956,33.686714],[-96.149786,33.840068],[-95.936185,33.889361],[-95.8376,33.834591],[-95.602092,33.933176],[-95.547322,33.878407],[-95.289906,33.87293],[-95.224183,33.960561],[-94.966767,33.861976],[-94.868182,33.74696],[-94.484796,33.637421],[-94.380734,33.544313],[-94.183564,33.593606],[-94.041164,33.54979],[-94.041164,33.018527],[-94.041164,31.994339],[-93.822086,31.775262],[-93.816609,31.556184],[-93.542762,31.15089],[-93.526331,30.93729],[-93.630393,30.679874],[-93.728978,30.575812],[-93.696116,30.438888],[-93.767317,30.334826],[-93.690639,30.143133],[-93.926148,29.787132],[-93.838517,29.688547],[-94.002825,29.68307],[-94.523134,29.546147],[-94.70935,29.622824],[-94.742212,29.787132],[-94.873659,29.672117],[-94.966767,29.699501],[-95.016059,29.557101],[-94.911997,29.496854],[-94.895566,29.310638],[-95.081782,29.113469],[-95.383014,28.867006],[-95.985477,28.604113],[-96.045724,28.647929],[-96.226463,28.582205],[-96.23194,28.642452],[-96.478402,28.598636],[-96.593418,28.724606],[-96.664618,28.697221],[-96.401725,28.439805],[-96.593418,28.357651],[-96.774157,28.406943],[-96.801542,28.226204],[-97.026096,28.039988],[-97.256128,27.694941],[-97.404005,27.333463],[-97.513544,27.360848],[-97.540929,27.229401],[-97.425913,27.262263],[-97.480682,26.99937],[-97.557359,26.988416],[-97.562836,26.840538],[-97.469728,26.758384],[-97.442344,26.457153],[-97.332805,26.353091],[-97.30542,26.161398],[-97.217789,25.991613],[-97.524498,25.887551],[-97.650467,26.018997],[-97.885976,26.06829],[-98.198161,26.057336],[-98.466531,26.221644],[-98.669178,26.238075],[-98.822533,26.369522],[-99.030656,26.413337],[-99.173057,26.539307],[-99.266165,26.840538],[-99.446904,27.021277],[-99.424996,27.174632],[-99.50715,27.33894],[-99.479765,27.48134],[-99.605735,27.640172],[-99.709797,27.656603],[-99.879582,27.799003],[-99.934351,27.979742],[-100.082229,28.14405],[-100.29583,28.280974],[-100.399891,28.582205],[-100.498476,28.66436],[-100.629923,28.905345],[-100.673738,29.102515],[-100.799708,29.244915],[-101.013309,29.370885],[-101.062601,29.458516],[-101.259771,29.535193],[-101.413125,29.754271],[-101.851281,29.803563],[-102.114174,29.792609],[-102.338728,29.869286],[-102.388021,29.765225],[-102.629006,29.732363],[-102.809745,29.524239],[-102.919284,29.190146],[-102.97953,29.184669],[-103.116454,28.987499],[-103.280762,28.982022],[-103.527224,29.135376],[-104.146119,29.381839],[-104.266611,29.513285],[-104.507597,29.639255],[-104.677382,29.924056],[-104.688336,30.181472],[-104.858121,30.389596],[-104.896459,30.570335],[-105.005998,30.685351],[-105.394861,30.855136],[-105.602985,31.085167],[-105.77277,31.167321],[-105.953509,31.364491],[-106.205448,31.468553],[-106.38071,31.731446],[-106.528588,31.786216],[-106.643603,31.901231],[-106.616219,31.999816],[-103.067161,31.999816],[-103.067161,33.002096],[-103.045254,34.01533],[-103.039777,36.501861],[-103.001438,36.501861],[-101.812942,36.501861]]]}},
+{"type":"Feature","id":"49","properties":{"name":"Utah","density":34.30},"geometry":{"type":"Polygon","coordinates":[[[-112.164359,41.995232],[-111.047063,42.000709],[-111.047063,40.998429],[-109.04798,40.998429],[-109.053457,39.125316],[-109.058934,38.27639],[-109.042503,38.166851],[-109.042503,37.000263],[-110.499369,37.00574],[-114.048427,37.000263],[-114.04295,41.995232],[-112.164359,41.995232]]]}},
+{"type":"Feature","id":"50","properties":{"name":"Vermont","density":67.73},"geometry":{"type":"Polygon","coordinates":[[[-71.503554,45.013027],[-71.4926,44.914442],[-71.629524,44.750133],[-71.536416,44.585825],[-71.700724,44.41604],[-72.034817,44.322932],[-72.02934,44.07647],[-72.116971,43.994316],[-72.204602,43.769761],[-72.379864,43.572591],[-72.456542,43.150867],[-72.445588,43.008466],[-72.533219,42.953697],[-72.544173,42.80582],[-72.456542,42.729142],[-73.267129,42.745573],[-73.278083,42.833204],[-73.245221,43.523299],[-73.404052,43.687607],[-73.349283,43.769761],[-73.436914,44.043608],[-73.321898,44.246255],[-73.294514,44.437948],[-73.387622,44.618687],[-73.332852,44.804903],[-73.343806,45.013027],[-72.308664,45.002073],[-71.503554,45.013027]]]}},
+{"type":"Feature","id":"51","properties":{"name":"Virginia","density":204.5},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.397659,38.013497],[-75.244304,38.029928],[-75.375751,37.860142],[-75.512674,37.799896],[-75.594828,37.569865],[-75.802952,37.197433],[-75.972737,37.120755],[-76.027507,37.257679],[-75.939876,37.564388],[-75.671506,37.95325],[-75.397659,38.013497]]],[[[-76.016553,37.95325],[-75.994645,37.95325],[-76.043938,37.95325],[-76.016553,37.95325]]],[[[-78.349729,39.464886],[-77.82942,39.130793],[-77.719881,39.322485],[-77.566527,39.306055],[-77.456988,39.223901],[-77.456988,39.076023],[-77.248864,39.026731],[-77.117418,38.933623],[-77.040741,38.791222],[-77.128372,38.632391],[-77.248864,38.588575],[-77.325542,38.446175],[-77.281726,38.342113],[-77.013356,38.374975],[-76.964064,38.216144],[-76.613539,38.15042],[-76.514954,38.024451],[-76.235631,37.887527],[-76.3616,37.608203],[-76.246584,37.389126],[-76.383508,37.285064],[-76.399939,37.159094],[-76.273969,37.082417],[-76.410893,36.961924],[-76.619016,37.120755],[-76.668309,37.065986],[-76.48757,36.95097],[-75.994645,36.923586],[-75.868676,36.551154],[-79.510841,36.5402],[-80.294043,36.545677],[-80.978661,36.562108],[-81.679709,36.589492],[-83.673316,36.600446],[-83.136575,36.742847],[-83.070852,36.852385],[-82.879159,36.890724],[-82.868205,36.978355],[-82.720328,37.044078],[-82.720328,37.120755],[-82.353373,37.268633],[-81.969987,37.537003],[-81.986418,37.454849],[-81.849494,37.285064],[-81.679709,37.20291],[-81.55374,37.208387],[-81.362047,37.339833],[-81.225123,37.235771],[-80.967707,37.290541],[-80.513121,37.482234],[-80.474782,37.421987],[-80.29952,37.509618],[-80.294043,37.690357],[-80.184505,37.849189],[-79.998289,37.997066],[-79.921611,38.177805],[-79.724442,38.364021],[-79.647764,38.594052],[-79.477979,38.457129],[-79.313671,38.413313],[-79.209609,38.495467],[-78.996008,38.851469],[-78.870039,38.763838],[-78.404499,39.169131],[-78.349729,39.464886]]]]}},
+{"type":"Feature","id":"53","properties":{"name":"Washington","density":102.6},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.033359,49.000239],[-117.044313,47.762451],[-117.038836,46.426077],[-117.055267,46.343923],[-116.92382,46.168661],[-116.918344,45.993399],[-118.988627,45.998876],[-119.125551,45.933153],[-119.525367,45.911245],[-119.963522,45.823614],[-120.209985,45.725029],[-120.505739,45.697644],[-120.637186,45.746937],[-121.18488,45.604536],[-121.217742,45.670259],[-121.535404,45.725029],[-121.809251,45.708598],[-122.247407,45.549767],[-122.762239,45.659305],[-122.811531,45.960537],[-122.904639,46.08103],[-123.11824,46.185092],[-123.211348,46.174138],[-123.370179,46.146753],[-123.545441,46.261769],[-123.72618,46.300108],[-123.874058,46.239861],[-124.065751,46.327492],[-124.027412,46.464416],[-123.895966,46.535616],[-124.098612,46.74374],[-124.235536,47.285957],[-124.31769,47.357157],[-124.427229,47.740543],[-124.624399,47.88842],[-124.706553,48.184175],[-124.597014,48.381345],[-124.394367,48.288237],[-123.983597,48.162267],[-123.704273,48.167744],[-123.424949,48.118452],[-123.162056,48.167744],[-123.036086,48.080113],[-122.800578,48.08559],[-122.636269,47.866512],[-122.515777,47.882943],[-122.493869,47.587189],[-122.422669,47.318818],[-122.324084,47.346203],[-122.422669,47.576235],[-122.395284,47.800789],[-122.230976,48.030821],[-122.362422,48.123929],[-122.373376,48.288237],[-122.471961,48.468976],[-122.422669,48.600422],[-122.488392,48.753777],[-122.647223,48.775685],[-122.795101,48.8907],[-122.756762,49.000239],[-117.033359,49.000239]]],[[[-122.718423,48.310145],[-122.586977,48.35396],[-122.608885,48.151313],[-122.767716,48.227991],[-122.718423,48.310145]]],[[[-123.025132,48.583992],[-122.915593,48.715438],[-122.767716,48.556607],[-122.811531,48.419683],[-123.041563,48.458022],[-123.025132,48.583992]]]]}},
+{"type":"Feature","id":"54","properties":{"name":"West Virginia","density":77.06},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,40.636951],[-80.518598,39.722302],[-79.477979,39.722302],[-79.488933,39.20747],[-79.291763,39.300578],[-79.094593,39.470363],[-78.963147,39.437501],[-78.765977,39.585379],[-78.470222,39.514178],[-78.431884,39.623717],[-78.267575,39.61824],[-78.174467,39.694917],[-78.004682,39.601809],[-77.834897,39.601809],[-77.719881,39.322485],[-77.82942,39.130793],[-78.349729,39.464886],[-78.404499,39.169131],[-78.870039,38.763838],[-78.996008,38.851469],[-79.209609,38.495467],[-79.313671,38.413313],[-79.477979,38.457129],[-79.647764,38.594052],[-79.724442,38.364021],[-79.921611,38.177805],[-79.998289,37.997066],[-80.184505,37.849189],[-80.294043,37.690357],[-80.29952,37.509618],[-80.474782,37.421987],[-80.513121,37.482234],[-80.967707,37.290541],[-81.225123,37.235771],[-81.362047,37.339833],[-81.55374,37.208387],[-81.679709,37.20291],[-81.849494,37.285064],[-81.986418,37.454849],[-81.969987,37.537003],[-82.101434,37.553434],[-82.293127,37.668449],[-82.342419,37.783465],[-82.50125,37.931343],[-82.621743,38.123036],[-82.594358,38.424267],[-82.331465,38.446175],[-82.293127,38.577622],[-82.172634,38.632391],[-82.221926,38.785745],[-82.03571,39.026731],[-81.887833,38.873376],[-81.783771,38.966484],[-81.811156,39.0815],[-81.685186,39.273193],[-81.57017,39.267716],[-81.455155,39.410117],[-81.345616,39.344393],[-81.219646,39.388209],[-80.830783,39.711348],[-80.737675,40.078303],[-80.600752,40.319289],[-80.595275,40.472643],[-80.666475,40.582182],[-80.518598,40.636951]]]}},
+{"type":"Feature","id":"55","properties":{"name":"Wisconsin","density":105.2},"geometry":{"type":"Polygon","coordinates":[[[-90.415429,46.568478],[-90.229213,46.508231],[-90.119674,46.338446],[-89.09001,46.135799],[-88.662808,45.987922],[-88.531362,46.020784],[-88.10416,45.922199],[-87.989145,45.796229],[-87.781021,45.675736],[-87.791975,45.500474],[-87.885083,45.363551],[-87.649574,45.341643],[-87.742682,45.199243],[-87.589328,45.095181],[-87.627666,44.974688],[-87.819359,44.95278],[-87.983668,44.722749],[-88.043914,44.563917],[-87.928898,44.536533],[-87.775544,44.640595],[-87.611236,44.837764],[-87.403112,44.914442],[-87.238804,45.166381],[-87.03068,45.22115],[-87.047111,45.089704],[-87.189511,44.969211],[-87.468835,44.552964],[-87.545512,44.322932],[-87.540035,44.158624],[-87.644097,44.103854],[-87.737205,43.8793],[-87.704344,43.687607],[-87.791975,43.561637],[-87.912467,43.249452],[-87.885083,43.002989],[-87.76459,42.783912],[-87.802929,42.493634],[-88.788778,42.493634],[-90.639984,42.510065],[-90.711184,42.636034],[-91.067185,42.75105],[-91.143862,42.909881],[-91.176724,43.134436],[-91.056231,43.254929],[-91.204109,43.353514],[-91.215062,43.501391],[-91.269832,43.616407],[-91.242447,43.775238],[-91.43414,43.994316],[-91.592971,44.032654],[-91.877772,44.202439],[-91.927065,44.333886],[-92.233773,44.443425],[-92.337835,44.552964],[-92.545959,44.569394],[-92.808852,44.750133],[-92.737652,45.117088],[-92.75956,45.286874],[-92.644544,45.440228],[-92.770513,45.566198],[-92.885529,45.577151],[-92.869098,45.719552],[-92.639067,45.933153],[-92.354266,46.015307],[-92.29402,46.075553],[-92.29402,46.667063],[-92.091373,46.749217],[-92.014696,46.705401],[-91.790141,46.694447],[-91.09457,46.864232],[-90.837154,46.95734],[-90.749522,46.88614],[-90.886446,46.754694],[-90.55783,46.584908],[-90.415429,46.568478]]]}},
+{"type":"Feature","id":"56","properties":{"name":"Wyoming","density":5.851},"geometry":{"type":"Polygon","coordinates":[[[-109.080842,45.002073],[-105.91517,45.002073],[-104.058488,44.996596],[-104.053011,43.002989],[-104.053011,41.003906],[-105.728954,40.998429],[-107.919731,41.003906],[-109.04798,40.998429],[-111.047063,40.998429],[-111.047063,42.000709],[-111.047063,44.476286],[-111.05254,45.002073],[-109.080842,45.002073]]]}},
+{"type":"Feature","id":"72","properties":{"name":"Puerto Rico","density":1082 },"geometry":{"type":"Polygon","coordinates":[[[-66.448338,17.984326],[-66.771478,18.006234],[-66.924832,17.929556],[-66.985078,17.973372],[-67.209633,17.956941],[-67.154863,18.19245],[-67.269879,18.362235],[-67.094617,18.515589],[-66.957694,18.488204],[-66.409999,18.488204],[-65.840398,18.433435],[-65.632274,18.367712],[-65.626797,18.203403],[-65.730859,18.186973],[-65.834921,18.017187],[-66.234737,17.929556],[-66.448338,17.984326]]]}}
+]};
diff --git a/public/build/js/pages/listjs.init.js b/public/build/js/pages/listjs.init.js
new file mode 100644
index 0000000..ddef972
--- /dev/null
+++ b/public/build/js/pages/listjs.init.js
@@ -0,0 +1,455 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: list Js File
+*/
+
+var checkAll = document.getElementById("checkAll");
+if (checkAll) {
+ checkAll.onclick = function () {
+ var checkboxes = document.querySelectorAll('.form-check-all input[type="checkbox"]');
+ if (checkAll.checked == true) {
+ Array.from(checkboxes).forEach(function (checkbox) {
+ checkbox.checked = true;
+ checkbox.closest("tr").classList.add("table-active");
+ });
+ } else {
+ Array.from(checkboxes).forEach(function (checkbox) {
+ checkbox.checked = false;
+ checkbox.closest("tr").classList.remove("table-active");
+ });
+ }
+ };
+}
+
+var perPage = 8;
+var editlist = false;
+
+//Table
+var options = {
+ valueNames: [
+ "id",
+ "customer_name",
+ "email",
+ "date",
+ "phone",
+ "status",
+ ],
+ page: perPage,
+ pagination: true,
+ plugins: [
+ ListPagination({
+ left: 2,
+ right: 2
+ })
+ ]
+};
+// Init list
+if (document.getElementById("customerList"))
+ var customerList = new List("customerList", options).on("updated", function (list) {
+ list.matchingItems.length == 0 ?
+ (document.getElementsByClassName("noresult")[0].style.display = "block") :
+ (document.getElementsByClassName("noresult")[0].style.display = "none");
+ var isFirst = list.i == 1;
+ var isLast = list.i > list.matchingItems.length - list.page;
+ // make the Prev and Nex buttons disabled on first and last pages accordingly
+ (document.querySelector(".pagination-prev.disabled")) ? document.querySelector(".pagination-prev.disabled").classList.remove("disabled") : '';
+ (document.querySelector(".pagination-next.disabled")) ? document.querySelector(".pagination-next.disabled").classList.remove("disabled") : '';
+ if (isFirst) {
+ document.querySelector(".pagination-prev").classList.add("disabled");
+ }
+ if (isLast) {
+ document.querySelector(".pagination-next").classList.add("disabled");
+ }
+ if (list.matchingItems.length <= perPage) {
+ document.querySelector(".pagination-wrap").style.display = "none";
+ } else {
+ document.querySelector(".pagination-wrap").style.display = "flex";
+ }
+
+ if (list.matchingItems.length == perPage) {
+ document.querySelector(".pagination.listjs-pagination").firstElementChild.children[0].click()
+ }
+
+ if (list.matchingItems.length > 0) {
+ document.getElementsByClassName("noresult")[0].style.display = "none";
+ } else {
+ document.getElementsByClassName("noresult")[0].style.display = "block";
+ }
+ });
+
+const xhttp = new XMLHttpRequest();
+xhttp.onload = function () {
+ var json_records = JSON.parse(this.responseText);
+ Array.from(json_records).forEach(raw => {
+ customerList.add({
+ id: '
#VZ' + raw.id + " ",
+ customer_name: raw.customer_name,
+ email: raw.email,
+ date: raw.date,
+ phone: raw.phone,
+ status: isStatus(raw.status)
+ });
+ customerList.sort('id', { order: "desc" });
+ refreshCallbacks();
+ });
+ customerList.remove("id", '
#VZ2101 ');
+}
+xhttp.open("GET", "../build/json/table-customer-list.json");
+xhttp.send();
+
+isCount = new DOMParser().parseFromString(
+ customerList.items.slice(-1)[0]._values.id,
+ "text/html"
+);
+
+var isValue = isCount.body.firstElementChild.innerHTML;
+
+var idField = document.getElementById("id-field"),
+ customerNameField = document.getElementById("customername-field"),
+ emailField = document.getElementById("email-field"),
+ dateField = document.getElementById("date-field"),
+ phoneField = document.getElementById("phone-field"),
+ statusField = document.getElementById("status-field"),
+ addBtn = document.getElementById("add-btn"),
+ editBtn = document.getElementById("edit-btn"),
+ removeBtns = document.getElementsByClassName("remove-item-btn"),
+ editBtns = document.getElementsByClassName("edit-item-btn");
+refreshCallbacks();
+//filterContact("All");
+
+function filterContact(isValue) {
+ var values_status = isValue;
+ customerList.filter(function (data) {
+ var statusFilter = false;
+ matchData = new DOMParser().parseFromString(
+ data.values().status,
+ "text/html"
+ );
+ var status = matchData.body.firstElementChild.innerHTML;
+ if (status == "All" || values_status == "All") {
+ statusFilter = true;
+ } else {
+ statusFilter = status == values_status;
+ }
+ return statusFilter;
+ });
+
+ customerList.update();
+}
+
+function updateList() {
+ var values_status = document.querySelector("input[name=status]:checked").value;
+ data = userList.filter(function (item) {
+ var statusFilter = false;
+
+ if (values_status == "All") {
+ statusFilter = true;
+ } else {
+ statusFilter = item.values().sts == values_status;
+ console.log(statusFilter, "statusFilter");
+ }
+ return statusFilter;
+ });
+ userList.update();
+}
+
+if (document.getElementById("showModal")) {
+ document.getElementById("showModal").addEventListener("show.bs.modal", function (e) {
+ if (e.relatedTarget.classList.contains("edit-item-btn")) {
+ document.getElementById("exampleModalLabel").innerHTML = "Edit Customer";
+ document.getElementById("showModal").querySelector(".modal-footer").style.display = "block";
+ document.getElementById("add-btn").innerHTML = "Update";
+ } else if (e.relatedTarget.classList.contains("add-btn")) {
+ document.getElementById("exampleModalLabel").innerHTML = "Add Customer";
+ document.getElementById("showModal").querySelector(".modal-footer").style.display = "block";
+ document.getElementById("add-btn").innerHTML = "Add Customer";
+ } else {
+ document.getElementById("exampleModalLabel").innerHTML = "List Customer";
+ document.getElementById("showModal").querySelector(".modal-footer").style.display = "none";
+ }
+ });
+ ischeckboxcheck();
+
+ document.getElementById("showModal").addEventListener("hidden.bs.modal", function () {
+ clearFields();
+ });
+}
+document.querySelector("#customerList").addEventListener("click", function () {
+ ischeckboxcheck();
+});
+
+var table = document.getElementById("customerTable");
+// save all tr
+var tr = table.getElementsByTagName("tr");
+var trlist = table.querySelectorAll(".list tr");
+
+var count = 11;
+
+// Fetch all the forms we want to apply custom Bootstrap validation styles to
+var forms = document.querySelectorAll('.tablelist-form')
+
+// Loop over them and prevent submission
+Array.prototype.slice.call(forms).forEach(function (form) {
+ form.addEventListener('submit', function (event) {
+ if (!form.checkValidity()) {
+ event.preventDefault();
+ event.stopPropagation();
+ } else {
+ event.preventDefault();
+ if (
+ customerNameField.value !== "" &&
+ emailField.value !== "" &&
+ dateField.value !== "" &&
+ phoneField.value !== "" && !editlist
+ ) {
+ customerList.add({
+ id: '
#VZ' + count + " ",
+ customer_name: customerNameField.value,
+ email: emailField.value,
+ date: dateField.value,
+ phone: phoneField.value,
+ status: isStatus(statusField.value),
+ });
+ customerList.sort('id', { order: "desc" });
+ document.getElementById("close-modal").click();
+ refreshCallbacks();
+ clearFields();
+ filterContact("All");
+ count++;
+ Swal.fire({
+ position: 'center',
+ icon: 'success',
+ title: 'Customer inserted successfully!',
+ showConfirmButton: false,
+ timer: 2000,
+ showCloseButton: true
+ });
+ }else if (
+ customerNameField.value !== "" &&
+ emailField.value !== "" &&
+ dateField.value !== "" &&
+ phoneField.value !== "" && editlist
+ ){
+ var editValues = customerList.get({
+ id: idField.value,
+ });
+ Array.from(editValues).forEach(function (x) {
+ isid = new DOMParser().parseFromString(x._values.id, "text/html");
+ var selectedid = isid.body.firstElementChild.innerHTML;
+ if (selectedid == itemId) {
+ x.values({
+ id: '
' + idField.value + " ",
+ customer_name: customerNameField.value,
+ email: emailField.value,
+ date: dateField.value,
+ phone: phoneField.value,
+ status: isStatus(statusField.value),
+ });
+ }
+ });
+ document.getElementById("close-modal").click();
+ clearFields();
+ Swal.fire({
+ position: 'center',
+ icon: 'success',
+ title: 'Customer updated Successfully!',
+ showConfirmButton: false,
+ timer: 2000,
+ showCloseButton: true
+ });
+ }
+ }
+
+ }, false)
+})
+
+var statusVal = new Choices(statusField);
+
+function isStatus(val) {
+ switch (val) {
+ case "Active":
+ return (
+ '
' +
+ val +
+ " "
+ );
+ case "Block":
+ return (
+ '
' +
+ val +
+ " "
+ );
+ }
+}
+
+function ischeckboxcheck() {
+ Array.from(document.getElementsByName("checkAll")).forEach(function (x) {
+ x.addEventListener("click", function (e) {
+ if (e.target.checked) {
+ e.target.closest("tr").classList.add("table-active");
+ } else {
+ e.target.closest("tr").classList.remove("table-active");
+ }
+ });
+ });
+}
+
+function refreshCallbacks() {
+ if (removeBtns)
+ Array.from(removeBtns).forEach(function (btn) {
+ btn.addEventListener("click", function (e) {
+ e.target.closest("tr").children[1].innerText;
+ itemId = e.target.closest("tr").children[1].innerText;
+ var itemValues = customerList.get({
+ id: itemId,
+ });
+
+ Array.from(itemValues).forEach(function (x) {
+ deleteid = new DOMParser().parseFromString(x._values.id, "text/html");
+ var isElem = deleteid.body.firstElementChild;
+ var isdeleteid = deleteid.body.firstElementChild.innerHTML;
+ if (isdeleteid == itemId) {
+ document.getElementById("delete-record").addEventListener("click", function () {
+ customerList.remove("id", isElem.outerHTML);
+ document.getElementById("deleteRecordModal").click();
+ });
+ }
+ });
+ });
+ });
+ if (editBtns)
+ Array.from(editBtns).forEach(function (btn) {
+ btn.addEventListener("click", function (e) {
+ e.target.closest("tr").children[1].innerText;
+ itemId = e.target.closest("tr").children[1].innerText;
+ var itemValues = customerList.get({
+ id: itemId,
+ });
+
+ Array.from(itemValues).forEach(function (x) {
+ isid = new DOMParser().parseFromString(x._values.id, "text/html");
+ var selectedid = isid.body.firstElementChild.innerHTML;
+ if (selectedid == itemId) {
+ editlist = true;
+ idField.value = selectedid;
+ customerNameField.value = x._values.customer_name;
+ emailField.value = x._values.email;
+ dateField.value = x._values.date;
+ phoneField.value = x._values.phone;
+
+ if (statusVal) statusVal.destroy();
+ statusVal = new Choices(statusField);
+ val = new DOMParser().parseFromString(x._values.status, "text/html");
+ var statusSelec = val.body.firstElementChild.innerHTML;
+ statusVal.setChoiceByValue(statusSelec);
+
+ flatpickr("#date-field", {
+ // enableTime: true,
+ dateFormat: "d M, Y",
+ defaultDate: x._values.date,
+ });
+ }
+ });
+ });
+ });
+}
+
+function clearFields() {
+ customerNameField.value = "";
+ emailField.value = "";
+ dateField.value = "";
+ phoneField.value = "";
+}
+
+function deleteMultiple() {
+ ids_array = [];
+ var items = document.getElementsByName('chk_child');
+ Array.from(items).forEach(function (ele) {
+ if (ele.checked == true) {
+ var trNode = ele.parentNode.parentNode.parentNode;
+ var id = trNode.querySelector('.id a').innerHTML;
+ ids_array.push(id);
+ }
+ });
+ if (typeof ids_array !== 'undefined' && ids_array.length > 0) {
+ if (confirm('Are you sure you want to delete this?')) {
+ Array.from(ids_array).forEach(function (id) {
+ customerList.remove("id", `
${id} `);
+ });
+ document.getElementById('checkAll').checked = false;
+ } else {
+ return false;
+ }
+ } else {
+ Swal.fire({
+ title: 'Please select at least one checkbox',
+ confirmButtonClass: 'btn btn-info',
+ buttonsStyling: false,
+ showCloseButton: true
+ });
+ }
+}
+
+if (document.querySelector(".pagination-next"))
+ document.querySelector(".pagination-next").addEventListener("click", function () {
+ (document.querySelector(".pagination.listjs-pagination")) ? (document.querySelector(".pagination.listjs-pagination").querySelector(".active")) ?
+ document.querySelector(".pagination.listjs-pagination").querySelector(".active").nextElementSibling.children[0].click() : '' : '';
+ });
+if (document.querySelector(".pagination-prev"))
+ document.querySelector(".pagination-prev").addEventListener("click", function () {
+ (document.querySelector(".pagination.listjs-pagination")) ? (document.querySelector(".pagination.listjs-pagination").querySelector(".active")) ?
+ document.querySelector(".pagination.listjs-pagination").querySelector(".active").previousSibling.children[0].click() : '' : '';
+ });
+
+// data- attribute example
+var attroptions = {
+ valueNames: [
+ 'name',
+ 'born',
+ {
+ data: ['id']
+ },
+ {
+ attr: 'src',
+ name: 'image'
+ },
+ {
+ attr: 'href',
+ name: 'link'
+ },
+ {
+ attr: 'data-timestamp',
+ name: 'timestamp'
+ }
+ ]
+};
+
+var attrList = new List('users', attroptions);
+attrList.add({
+ name: 'Leia',
+ born: '1954',
+ image: '../build/images/users/avatar-5.jpg',
+ id: 5,
+ timestamp: '67893'
+});
+
+// Existing List
+var existOptionsList = {
+ valueNames: ['contact-name', 'contact-message']
+};
+var existList = new List('contact-existing-list', existOptionsList);
+
+// Fuzzy Search list
+var fuzzySearchList = new List('fuzzysearch-list', {
+ valueNames: ['name']
+});
+
+// pagination list
+var paginationList = new List('pagination-list', {
+ valueNames: ['pagi-list'],
+ page: 3,
+ pagination: true
+});
\ No newline at end of file
diff --git a/public/build/js/pages/materialdesign.list.js b/public/build/js/pages/materialdesign.list.js
new file mode 100644
index 0000000..f6a939c
--- /dev/null
+++ b/public/build/js/pages/materialdesign.list.js
@@ -0,0 +1,44 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://themesbrand.com/
+Contact: themesbrand@gmail.com
+File: Material design Init Js File
+*/
+
+// icons
+function isNew(icon) {
+ return icon.version === '6.5.95';
+}
+function isDeprecated(icon) {
+ return typeof icon.deprecated == 'undefined'
+ ? false
+ : icon.deprecated;
+}
+function getIconItem(icon, isNewIcon) {
+ var div = document.createElement('div'),
+ i = document.createElement('i');
+ div.className = "col-xl-3 col-lg-4 col-sm-6";
+ i.className = 'mdi mdi-' + icon.name,
+ span = document.createElement('span');
+ div.appendChild(i);
+ span.appendChild(document.createTextNode('mdi-' + icon.name));
+ div.appendChild(span);
+ return div;
+}
+(function () {
+ var iconsCount = 0;
+ var newIconsCount = 0;
+ var icons = [{name:"ab-testing",hex:"F01C9",version:"4.0.96"},{name:"abacus",hex:"F16E0",version:"5.9.55"},{name:"abjad-arabic",hex:"F1328",version:"4.9.95"},{name:"abjad-hebrew",hex:"F1329",version:"4.9.95"},{name:"abugida-devanagari",hex:"F132A",version:"4.9.95"},{name:"abugida-thai",hex:"F132B",version:"4.9.95"},{name:"access-point",hex:"F0003",version:"1.5.54"},{name:"access-point-check",hex:"F1538",version:"5.4.55"},{name:"access-point-minus",hex:"F1539",version:"5.4.55"},{name:"access-point-network",hex:"F0002",version:"1.5.54"},{name:"access-point-network-off",hex:"F0BE1",version:"3.2.89"},{name:"access-point-off",hex:"F1511",version:"5.4.55"},{name:"access-point-plus",hex:"F153A",version:"5.4.55"},{name:"access-point-remove",hex:"F153B",version:"5.4.55"},{name:"account",hex:"F0004",version:"1.5.54"},{name:"account-alert",hex:"F0005",version:"1.5.54"},{name:"account-alert-outline",hex:"F0B50",version:"3.0.39"},{name:"account-arrow-down",hex:"F1868",version:"6.2.95"},{name:"account-arrow-down-outline",hex:"F1869",version:"6.2.95"},{name:"account-arrow-left",hex:"F0B51",version:"3.0.39"},{name:"account-arrow-left-outline",hex:"F0B52",version:"3.0.39"},{name:"account-arrow-right",hex:"F0B53",version:"3.0.39"},{name:"account-arrow-right-outline",hex:"F0B54",version:"3.0.39"},{name:"account-arrow-up",hex:"F1867",version:"6.2.95"},{name:"account-arrow-up-outline",hex:"F186A",version:"6.2.95"},{name:"account-box",hex:"F0006",version:"1.5.54"},{name:"account-box-multiple",hex:"F0934",version:"2.4.85"},{name:"account-box-multiple-outline",hex:"F100A",version:"4.1.95"},{name:"account-box-outline",hex:"F0007",version:"1.5.54"},{name:"account-cancel",hex:"F12DF",version:"4.8.95"},{name:"account-cancel-outline",hex:"F12E0",version:"4.8.95"},{name:"account-cash",hex:"F1097",version:"4.2.95"},{name:"account-cash-outline",hex:"F1098",version:"4.2.95"},{name:"account-check",hex:"F0008",version:"1.5.54"},{name:"account-check-outline",hex:"F0BE2",version:"3.2.89"},{name:"account-child",hex:"F0A89",version:"2.7.94"},{name:"account-child-circle",hex:"F0A8A",version:"2.7.94"},{name:"account-child-outline",hex:"F10C8",version:"4.3.95"},{name:"account-circle",hex:"F0009",version:"1.5.54"},{name:"account-circle-outline",hex:"F0B55",version:"3.0.39"},{name:"account-clock",hex:"F0B56",version:"3.0.39"},{name:"account-clock-outline",hex:"F0B57",version:"3.0.39"},{name:"account-cog",hex:"F1370",version:"4.9.95"},{name:"account-cog-outline",hex:"F1371",version:"4.9.95"},{name:"account-convert",hex:"F000A",version:"1.5.54"},{name:"account-convert-outline",hex:"F1301",version:"4.8.95"},{name:"account-cowboy-hat",hex:"F0E9B",version:"3.7.94"},{name:"account-cowboy-hat-outline",hex:"F17F3",version:"6.1.95"},{name:"account-details",hex:"F0631",version:"1.6.50"},{name:"account-details-outline",hex:"F1372",version:"4.9.95"},{name:"account-edit",hex:"F06BC",version:"1.8.36"},{name:"account-edit-outline",hex:"F0FFB",version:"4.0.96"},{name:"account-eye",hex:"F0420",version:"1.5.54"},{name:"account-eye-outline",hex:"F127B",version:"4.7.95"},{name:"account-filter",hex:"F0936",version:"2.4.85"},{name:"account-filter-outline",hex:"F0F9D",version:"4.0.96"},{name:"account-group",hex:"F0849",version:"2.1.99"},{name:"account-group-outline",hex:"F0B58",version:"3.0.39"},{name:"account-hard-hat",hex:"F05B5",version:"1.5.54"},{name:"account-heart",hex:"F0899",version:"2.2.43"},{name:"account-heart-outline",hex:"F0BE3",version:"3.2.89"},{name:"account-injury",hex:"F1815",version:"6.1.95"},{name:"account-injury-outline",hex:"F1816",version:"6.1.95"},{name:"account-key",hex:"F000B",version:"1.5.54"},{name:"account-key-outline",hex:"F0BE4",version:"3.2.89"},{name:"account-lock",hex:"F115E",version:"4.4.95"},{name:"account-lock-open",hex:"F1960",version:"6.5.95"},{name:"account-lock-open-outline",hex:"F1961",version:"6.5.95"},{name:"account-lock-outline",hex:"F115F",version:"4.4.95"},{name:"account-minus",hex:"F000D",version:"1.5.54"},{name:"account-minus-outline",hex:"F0AEC",version:"2.8.94"},{name:"account-multiple",hex:"F000E",version:"1.5.54"},{name:"account-multiple-check",hex:"F08C5",version:"2.3.50"},{name:"account-multiple-check-outline",hex:"F11FE",version:"4.6.95"},{name:"account-multiple-minus",hex:"F05D3",version:"1.5.54"},{name:"account-multiple-minus-outline",hex:"F0BE5",version:"3.2.89"},{name:"account-multiple-outline",hex:"F000F",version:"1.5.54"},{name:"account-multiple-plus",hex:"F0010",version:"1.5.54"},{name:"account-multiple-plus-outline",hex:"F0800",version:"2.1.19"},{name:"account-multiple-remove",hex:"F120A",version:"4.6.95"},{name:"account-multiple-remove-outline",hex:"F120B",version:"4.6.95"},{name:"account-music",hex:"F0803",version:"2.1.19"},{name:"account-music-outline",hex:"F0CE9",version:"3.3.92"},{name:"account-network",hex:"F0011",version:"1.5.54"},{name:"account-network-outline",hex:"F0BE6",version:"3.2.89"},{name:"account-off",hex:"F0012",version:"1.5.54"},{name:"account-off-outline",hex:"F0BE7",version:"3.2.89"},{name:"account-outline",hex:"F0013",version:"1.5.54"},{name:"account-plus",hex:"F0014",version:"1.5.54"},{name:"account-plus-outline",hex:"F0801",version:"2.1.19"},{name:"account-question",hex:"F0B59",version:"3.0.39"},{name:"account-question-outline",hex:"F0B5A",version:"3.0.39"},{name:"account-reactivate",hex:"F152B",version:"5.4.55"},{name:"account-reactivate-outline",hex:"F152C",version:"5.4.55"},{name:"account-remove",hex:"F0015",version:"1.5.54"},{name:"account-remove-outline",hex:"F0AED",version:"2.8.94"},{name:"account-search",hex:"F0016",version:"1.5.54"},{name:"account-search-outline",hex:"F0935",version:"2.4.85"},{name:"account-settings",hex:"F0630",version:"1.6.50"},{name:"account-settings-outline",hex:"F10C9",version:"4.3.95"},{name:"account-star",hex:"F0017",version:"1.5.54"},{name:"account-star-outline",hex:"F0BE8",version:"3.2.89"},{name:"account-supervisor",hex:"F0A8B",version:"2.7.94"},{name:"account-supervisor-circle",hex:"F0A8C",version:"2.7.94"},{name:"account-supervisor-circle-outline",hex:"F14EC",version:"5.4.55"},{name:"account-supervisor-outline",hex:"F112D",version:"4.4.95"},{name:"account-switch",hex:"F0019",version:"1.5.54"},{name:"account-switch-outline",hex:"F04CB",version:"1.5.54"},{name:"account-sync",hex:"F191B",version:"6.4.95"},{name:"account-sync-outline",hex:"F191C",version:"6.4.95"},{name:"account-tie",hex:"F0CE3",version:"3.3.92"},{name:"account-tie-hat",hex:"F1898",version:"6.3.95"},{name:"account-tie-hat-outline",hex:"F1899",version:"6.3.95"},{name:"account-tie-outline",hex:"F10CA",version:"4.3.95"},{name:"account-tie-voice",hex:"F1308",version:"4.8.95"},{name:"account-tie-voice-off",hex:"F130A",version:"4.8.95"},{name:"account-tie-voice-off-outline",hex:"F130B",version:"4.8.95"},{name:"account-tie-voice-outline",hex:"F1309",version:"4.8.95"},{name:"account-voice",hex:"F05CB",version:"1.5.54"},{name:"account-voice-off",hex:"F0ED4",version:"3.7.95"},{name:"account-wrench",hex:"F189A",version:"6.3.95"},{name:"account-wrench-outline",hex:"F189B",version:"6.3.95"},{name:"adjust",hex:"F001A",version:"1.5.54"},{name:"advertisements",hex:"F192A",version:"6.4.95"},{name:"advertisements-off",hex:"F192B",version:"6.4.95"},{name:"air-conditioner",hex:"F001B",version:"1.5.54"},{name:"air-filter",hex:"F0D43",version:"3.4.93"},{name:"air-horn",hex:"F0DAC",version:"3.5.94"},{name:"air-humidifier",hex:"F1099",version:"4.2.95"},{name:"air-humidifier-off",hex:"F1466",version:"5.2.45"},{name:"air-purifier",hex:"F0D44",version:"3.4.93"},{name:"airbag",hex:"F0BE9",version:"3.2.89"},{name:"airballoon",hex:"F001C",version:"1.5.54"},{name:"airballoon-outline",hex:"F100B",version:"4.1.95"},{name:"airplane",hex:"F001D",version:"1.5.54"},{name:"airplane-alert",hex:"F187A",version:"6.2.95"},{name:"airplane-check",hex:"F187B",version:"6.2.95"},{name:"airplane-clock",hex:"F187C",version:"6.2.95"},{name:"airplane-cog",hex:"F187D",version:"6.2.95"},{name:"airplane-edit",hex:"F187E",version:"6.2.95"},{name:"airplane-landing",hex:"F05D4",version:"1.5.54"},{name:"airplane-marker",hex:"F187F",version:"6.2.95"},{name:"airplane-minus",hex:"F1880",version:"6.2.95"},{name:"airplane-off",hex:"F001E",version:"1.5.54"},{name:"airplane-plus",hex:"F1881",version:"6.2.95"},{name:"airplane-remove",hex:"F1882",version:"6.2.95"},{name:"airplane-search",hex:"F1883",version:"6.2.95"},{name:"airplane-settings",hex:"F1884",version:"6.2.95"},{name:"airplane-takeoff",hex:"F05D5",version:"1.5.54"},{name:"airport",hex:"F084B",version:"2.1.99"},{name:"alarm",hex:"F0020",version:"1.5.54"},{name:"alarm-bell",hex:"F078E",version:"2.0.46"},{name:"alarm-check",hex:"F0021",version:"1.5.54"},{name:"alarm-light",hex:"F078F",version:"2.0.46"},{name:"alarm-light-off",hex:"F171E",version:"5.9.55"},{name:"alarm-light-off-outline",hex:"F171F",version:"5.9.55"},{name:"alarm-light-outline",hex:"F0BEA",version:"3.2.89"},{name:"alarm-multiple",hex:"F0022",version:"1.5.54"},{name:"alarm-note",hex:"F0E71",version:"3.7.94"},{name:"alarm-note-off",hex:"F0E72",version:"3.7.94"},{name:"alarm-off",hex:"F0023",version:"1.5.54"},{name:"alarm-panel",hex:"F15C4",version:"5.6.55"},{name:"alarm-panel-outline",hex:"F15C5",version:"5.6.55"},{name:"alarm-plus",hex:"F0024",version:"1.5.54"},{name:"alarm-snooze",hex:"F068E",version:"1.7.12"},{name:"album",hex:"F0025",version:"1.5.54"},{name:"alert",hex:"F0026",version:"1.5.54"},{name:"alert-box",hex:"F0027",version:"1.5.54"},{name:"alert-box-outline",hex:"F0CE4",version:"3.3.92"},{name:"alert-circle",hex:"F0028",version:"1.5.54"},{name:"alert-circle-check",hex:"F11ED",version:"4.5.95"},{name:"alert-circle-check-outline",hex:"F11EE",version:"4.5.95"},{name:"alert-circle-outline",hex:"F05D6",version:"1.5.54"},{name:"alert-decagram",hex:"F06BD",version:"1.8.36"},{name:"alert-decagram-outline",hex:"F0CE5",version:"3.3.92"},{name:"alert-minus",hex:"F14BB",version:"5.3.45"},{name:"alert-minus-outline",hex:"F14BE",version:"5.3.45"},{name:"alert-octagon",hex:"F0029",version:"1.5.54"},{name:"alert-octagon-outline",hex:"F0CE6",version:"3.3.92"},{name:"alert-octagram",hex:"F0767",version:"1.9.32"},{name:"alert-octagram-outline",hex:"F0CE7",version:"3.3.92"},{name:"alert-outline",hex:"F002A",version:"1.5.54"},{name:"alert-plus",hex:"F14BA",version:"5.3.45"},{name:"alert-plus-outline",hex:"F14BD",version:"5.3.45"},{name:"alert-remove",hex:"F14BC",version:"5.3.45"},{name:"alert-remove-outline",hex:"F14BF",version:"5.3.45"},{name:"alert-rhombus",hex:"F11CE",version:"4.5.95"},{name:"alert-rhombus-outline",hex:"F11CF",version:"4.5.95"},{name:"alien",hex:"F089A",version:"2.2.43"},{name:"alien-outline",hex:"F10CB",version:"4.3.95"},{name:"align-horizontal-center",hex:"F11C3",version:"4.5.95"},{name:"align-horizontal-distribute",hex:"F1962",version:"6.5.95"},{name:"align-horizontal-left",hex:"F11C2",version:"4.5.95"},{name:"align-horizontal-right",hex:"F11C4",version:"4.5.95"},{name:"align-vertical-bottom",hex:"F11C5",version:"4.5.95"},{name:"align-vertical-center",hex:"F11C6",version:"4.5.95"},{name:"align-vertical-distribute",hex:"F1963",version:"6.5.95"},{name:"align-vertical-top",hex:"F11C7",version:"4.5.95"},{name:"all-inclusive",hex:"F06BE",version:"1.8.36"},{name:"all-inclusive-box",hex:"F188D",version:"6.2.95"},{name:"all-inclusive-box-outline",hex:"F188E",version:"6.2.95"},{name:"allergy",hex:"F1258",version:"4.7.95"},{name:"alpha",hex:"F002B",version:"1.5.54"},{name:"alpha-a",hex:"F0AEE",version:"2.8.94"},{name:"alpha-a-box",hex:"F0B08",version:"2.8.94"},{name:"alpha-a-box-outline",hex:"F0BEB",version:"3.2.89"},{name:"alpha-a-circle",hex:"F0BEC",version:"3.2.89"},{name:"alpha-a-circle-outline",hex:"F0BED",version:"3.2.89"},{name:"alpha-b",hex:"F0AEF",version:"2.8.94"},{name:"alpha-b-box",hex:"F0B09",version:"2.8.94"},{name:"alpha-b-box-outline",hex:"F0BEE",version:"3.2.89"},{name:"alpha-b-circle",hex:"F0BEF",version:"3.2.89"},{name:"alpha-b-circle-outline",hex:"F0BF0",version:"3.2.89"},{name:"alpha-c",hex:"F0AF0",version:"2.8.94"},{name:"alpha-c-box",hex:"F0B0A",version:"2.8.94"},{name:"alpha-c-box-outline",hex:"F0BF1",version:"3.2.89"},{name:"alpha-c-circle",hex:"F0BF2",version:"3.2.89"},{name:"alpha-c-circle-outline",hex:"F0BF3",version:"3.2.89"},{name:"alpha-d",hex:"F0AF1",version:"2.8.94"},{name:"alpha-d-box",hex:"F0B0B",version:"2.8.94"},{name:"alpha-d-box-outline",hex:"F0BF4",version:"3.2.89"},{name:"alpha-d-circle",hex:"F0BF5",version:"3.2.89"},{name:"alpha-d-circle-outline",hex:"F0BF6",version:"3.2.89"},{name:"alpha-e",hex:"F0AF2",version:"2.8.94"},{name:"alpha-e-box",hex:"F0B0C",version:"2.8.94"},{name:"alpha-e-box-outline",hex:"F0BF7",version:"3.2.89"},{name:"alpha-e-circle",hex:"F0BF8",version:"3.2.89"},{name:"alpha-e-circle-outline",hex:"F0BF9",version:"3.2.89"},{name:"alpha-f",hex:"F0AF3",version:"2.8.94"},{name:"alpha-f-box",hex:"F0B0D",version:"2.8.94"},{name:"alpha-f-box-outline",hex:"F0BFA",version:"3.2.89"},{name:"alpha-f-circle",hex:"F0BFB",version:"3.2.89"},{name:"alpha-f-circle-outline",hex:"F0BFC",version:"3.2.89"},{name:"alpha-g",hex:"F0AF4",version:"2.8.94"},{name:"alpha-g-box",hex:"F0B0E",version:"2.8.94"},{name:"alpha-g-box-outline",hex:"F0BFD",version:"3.2.89"},{name:"alpha-g-circle",hex:"F0BFE",version:"3.2.89"},{name:"alpha-g-circle-outline",hex:"F0BFF",version:"3.2.89"},{name:"alpha-h",hex:"F0AF5",version:"2.8.94"},{name:"alpha-h-box",hex:"F0B0F",version:"2.8.94"},{name:"alpha-h-box-outline",hex:"F0C00",version:"3.2.89"},{name:"alpha-h-circle",hex:"F0C01",version:"3.2.89"},{name:"alpha-h-circle-outline",hex:"F0C02",version:"3.2.89"},{name:"alpha-i",hex:"F0AF6",version:"2.8.94"},{name:"alpha-i-box",hex:"F0B10",version:"2.8.94"},{name:"alpha-i-box-outline",hex:"F0C03",version:"3.2.89"},{name:"alpha-i-circle",hex:"F0C04",version:"3.2.89"},{name:"alpha-i-circle-outline",hex:"F0C05",version:"3.2.89"},{name:"alpha-j",hex:"F0AF7",version:"2.8.94"},{name:"alpha-j-box",hex:"F0B11",version:"2.8.94"},{name:"alpha-j-box-outline",hex:"F0C06",version:"3.2.89"},{name:"alpha-j-circle",hex:"F0C07",version:"3.2.89"},{name:"alpha-j-circle-outline",hex:"F0C08",version:"3.2.89"},{name:"alpha-k",hex:"F0AF8",version:"2.8.94"},{name:"alpha-k-box",hex:"F0B12",version:"2.8.94"},{name:"alpha-k-box-outline",hex:"F0C09",version:"3.2.89"},{name:"alpha-k-circle",hex:"F0C0A",version:"3.2.89"},{name:"alpha-k-circle-outline",hex:"F0C0B",version:"3.2.89"},{name:"alpha-l",hex:"F0AF9",version:"2.8.94"},{name:"alpha-l-box",hex:"F0B13",version:"2.8.94"},{name:"alpha-l-box-outline",hex:"F0C0C",version:"3.2.89"},{name:"alpha-l-circle",hex:"F0C0D",version:"3.2.89"},{name:"alpha-l-circle-outline",hex:"F0C0E",version:"3.2.89"},{name:"alpha-m",hex:"F0AFA",version:"2.8.94"},{name:"alpha-m-box",hex:"F0B14",version:"2.8.94"},{name:"alpha-m-box-outline",hex:"F0C0F",version:"3.2.89"},{name:"alpha-m-circle",hex:"F0C10",version:"3.2.89"},{name:"alpha-m-circle-outline",hex:"F0C11",version:"3.2.89"},{name:"alpha-n",hex:"F0AFB",version:"2.8.94"},{name:"alpha-n-box",hex:"F0B15",version:"2.8.94"},{name:"alpha-n-box-outline",hex:"F0C12",version:"3.2.89"},{name:"alpha-n-circle",hex:"F0C13",version:"3.2.89"},{name:"alpha-n-circle-outline",hex:"F0C14",version:"3.2.89"},{name:"alpha-o",hex:"F0AFC",version:"2.8.94"},{name:"alpha-o-box",hex:"F0B16",version:"2.8.94"},{name:"alpha-o-box-outline",hex:"F0C15",version:"3.2.89"},{name:"alpha-o-circle",hex:"F0C16",version:"3.2.89"},{name:"alpha-o-circle-outline",hex:"F0C17",version:"3.2.89"},{name:"alpha-p",hex:"F0AFD",version:"2.8.94"},{name:"alpha-p-box",hex:"F0B17",version:"2.8.94"},{name:"alpha-p-box-outline",hex:"F0C18",version:"3.2.89"},{name:"alpha-p-circle",hex:"F0C19",version:"3.2.89"},{name:"alpha-p-circle-outline",hex:"F0C1A",version:"3.2.89"},{name:"alpha-q",hex:"F0AFE",version:"2.8.94"},{name:"alpha-q-box",hex:"F0B18",version:"2.8.94"},{name:"alpha-q-box-outline",hex:"F0C1B",version:"3.2.89"},{name:"alpha-q-circle",hex:"F0C1C",version:"3.2.89"},{name:"alpha-q-circle-outline",hex:"F0C1D",version:"3.2.89"},{name:"alpha-r",hex:"F0AFF",version:"2.8.94"},{name:"alpha-r-box",hex:"F0B19",version:"2.8.94"},{name:"alpha-r-box-outline",hex:"F0C1E",version:"3.2.89"},{name:"alpha-r-circle",hex:"F0C1F",version:"3.2.89"},{name:"alpha-r-circle-outline",hex:"F0C20",version:"3.2.89"},{name:"alpha-s",hex:"F0B00",version:"2.8.94"},{name:"alpha-s-box",hex:"F0B1A",version:"2.8.94"},{name:"alpha-s-box-outline",hex:"F0C21",version:"3.2.89"},{name:"alpha-s-circle",hex:"F0C22",version:"3.2.89"},{name:"alpha-s-circle-outline",hex:"F0C23",version:"3.2.89"},{name:"alpha-t",hex:"F0B01",version:"2.8.94"},{name:"alpha-t-box",hex:"F0B1B",version:"2.8.94"},{name:"alpha-t-box-outline",hex:"F0C24",version:"3.2.89"},{name:"alpha-t-circle",hex:"F0C25",version:"3.2.89"},{name:"alpha-t-circle-outline",hex:"F0C26",version:"3.2.89"},{name:"alpha-u",hex:"F0B02",version:"2.8.94"},{name:"alpha-u-box",hex:"F0B1C",version:"2.8.94"},{name:"alpha-u-box-outline",hex:"F0C27",version:"3.2.89"},{name:"alpha-u-circle",hex:"F0C28",version:"3.2.89"},{name:"alpha-u-circle-outline",hex:"F0C29",version:"3.2.89"},{name:"alpha-v",hex:"F0B03",version:"2.8.94"},{name:"alpha-v-box",hex:"F0B1D",version:"2.8.94"},{name:"alpha-v-box-outline",hex:"F0C2A",version:"3.2.89"},{name:"alpha-v-circle",hex:"F0C2B",version:"3.2.89"},{name:"alpha-v-circle-outline",hex:"F0C2C",version:"3.2.89"},{name:"alpha-w",hex:"F0B04",version:"2.8.94"},{name:"alpha-w-box",hex:"F0B1E",version:"2.8.94"},{name:"alpha-w-box-outline",hex:"F0C2D",version:"3.2.89"},{name:"alpha-w-circle",hex:"F0C2E",version:"3.2.89"},{name:"alpha-w-circle-outline",hex:"F0C2F",version:"3.2.89"},{name:"alpha-x",hex:"F0B05",version:"2.8.94"},{name:"alpha-x-box",hex:"F0B1F",version:"2.8.94"},{name:"alpha-x-box-outline",hex:"F0C30",version:"3.2.89"},{name:"alpha-x-circle",hex:"F0C31",version:"3.2.89"},{name:"alpha-x-circle-outline",hex:"F0C32",version:"3.2.89"},{name:"alpha-y",hex:"F0B06",version:"2.8.94"},{name:"alpha-y-box",hex:"F0B20",version:"2.8.94"},{name:"alpha-y-box-outline",hex:"F0C33",version:"3.2.89"},{name:"alpha-y-circle",hex:"F0C34",version:"3.2.89"},{name:"alpha-y-circle-outline",hex:"F0C35",version:"3.2.89"},{name:"alpha-z",hex:"F0B07",version:"2.8.94"},{name:"alpha-z-box",hex:"F0B21",version:"2.8.94"},{name:"alpha-z-box-outline",hex:"F0C36",version:"3.2.89"},{name:"alpha-z-circle",hex:"F0C37",version:"3.2.89"},{name:"alpha-z-circle-outline",hex:"F0C38",version:"3.2.89"},{name:"alphabet-aurebesh",hex:"F132C",version:"4.9.95"},{name:"alphabet-cyrillic",hex:"F132D",version:"4.9.95"},{name:"alphabet-greek",hex:"F132E",version:"4.9.95"},{name:"alphabet-latin",hex:"F132F",version:"4.9.95"},{name:"alphabet-piqad",hex:"F1330",version:"4.9.95"},{name:"alphabet-tengwar",hex:"F1337",version:"4.9.95"},{name:"alphabetical",hex:"F002C",version:"1.5.54"},{name:"alphabetical-off",hex:"F100C",version:"4.1.95"},{name:"alphabetical-variant",hex:"F100D",version:"4.1.95"},{name:"alphabetical-variant-off",hex:"F100E",version:"4.1.95"},{name:"altimeter",hex:"F05D7",version:"1.5.54"},{name:"ambulance",hex:"F002F",version:"1.5.54"},{name:"ammunition",hex:"F0CE8",version:"3.3.92"},{name:"ampersand",hex:"F0A8D",version:"2.7.94"},{name:"amplifier",hex:"F0030",version:"1.5.54"},{name:"amplifier-off",hex:"F11B5",version:"4.5.95"},{name:"anchor",hex:"F0031",version:"1.5.54"},{name:"android",hex:"F0032",version:"1.5.54"},{name:"android-messages",hex:"F0D45",version:"3.4.93"},{name:"android-studio",hex:"F0034",version:"1.5.54"},{name:"angle-acute",hex:"F0937",version:"2.4.85"},{name:"angle-obtuse",hex:"F0938",version:"2.4.85"},{name:"angle-right",hex:"F0939",version:"2.4.85"},{name:"angular",hex:"F06B2",version:"1.7.22"},{name:"angularjs",hex:"F06BF",version:"1.8.36"},{name:"animation",hex:"F05D8",version:"1.5.54"},{name:"animation-outline",hex:"F0A8F",version:"2.7.94"},{name:"animation-play",hex:"F093A",version:"2.4.85"},{name:"animation-play-outline",hex:"F0A90",version:"2.7.94"},{name:"ansible",hex:"F109A",version:"4.2.95"},{name:"antenna",hex:"F1119",version:"4.3.95"},{name:"anvil",hex:"F089B",version:"2.2.43"},{name:"apache-kafka",hex:"F100F",version:"4.1.95"},{name:"api",hex:"F109B",version:"4.2.95"},{name:"api-off",hex:"F1257",version:"4.6.95"},{name:"apple",hex:"F0035",version:"1.5.54"},{name:"apple-finder",hex:"F0036",version:"1.5.54"},{name:"apple-icloud",hex:"F0038",version:"1.5.54"},{name:"apple-ios",hex:"F0037",version:"1.5.54"},{name:"apple-keyboard-caps",hex:"F0632",version:"1.6.50"},{name:"apple-keyboard-command",hex:"F0633",version:"1.6.50"},{name:"apple-keyboard-control",hex:"F0634",version:"1.6.50"},{name:"apple-keyboard-option",hex:"F0635",version:"1.6.50"},{name:"apple-keyboard-shift",hex:"F0636",version:"1.6.50"},{name:"apple-safari",hex:"F0039",version:"1.5.54"},{name:"application",hex:"F08C6",version:"2.3.50"},{name:"application-array",hex:"F10F5",version:"4.3.95"},{name:"application-array-outline",hex:"F10F6",version:"4.3.95"},{name:"application-braces",hex:"F10F7",version:"4.3.95"},{name:"application-braces-outline",hex:"F10F8",version:"4.3.95"},{name:"application-brackets",hex:"F0C8B",version:"3.2.89"},{name:"application-brackets-outline",hex:"F0C8C",version:"3.2.89"},{name:"application-cog",hex:"F0675",version:"1.7.12"},{name:"application-cog-outline",hex:"F1577",version:"5.5.55"},{name:"application-edit",hex:"F00AE",version:"1.5.54"},{name:"application-edit-outline",hex:"F0619",version:"1.6.50"},{name:"application-export",hex:"F0DAD",version:"3.5.94"},{name:"application-import",hex:"F0DAE",version:"3.5.94"},{name:"application-outline",hex:"F0614",version:"1.6.50"},{name:"application-parentheses",hex:"F10F9",version:"4.3.95"},{name:"application-parentheses-outline",hex:"F10FA",version:"4.3.95"},{name:"application-settings",hex:"F0B60",version:"3.0.39"},{name:"application-settings-outline",hex:"F1555",version:"5.5.55"},{name:"application-variable",hex:"F10FB",version:"4.3.95"},{name:"application-variable-outline",hex:"F10FC",version:"4.3.95"},{name:"approximately-equal",hex:"F0F9E",version:"4.0.96"},{name:"approximately-equal-box",hex:"F0F9F",version:"4.0.96"},{name:"apps",hex:"F003B",version:"1.5.54"},{name:"apps-box",hex:"F0D46",version:"3.4.93"},{name:"arch",hex:"F08C7",version:"2.3.50"},{name:"archive",hex:"F003C",version:"1.5.54"},{name:"archive-alert",hex:"F14FD",version:"5.4.55"},{name:"archive-alert-outline",hex:"F14FE",version:"5.4.55"},{name:"archive-arrow-down",hex:"F1259",version:"4.7.95"},{name:"archive-arrow-down-outline",hex:"F125A",version:"4.7.95"},{name:"archive-arrow-up",hex:"F125B",version:"4.7.95"},{name:"archive-arrow-up-outline",hex:"F125C",version:"4.7.95"},{name:"archive-cancel",hex:"F174B",version:"6.1.95"},{name:"archive-cancel-outline",hex:"F174C",version:"6.1.95"},{name:"archive-check",hex:"F174D",version:"6.1.95"},{name:"archive-check-outline",hex:"F174E",version:"6.1.95"},{name:"archive-clock",hex:"F174F",version:"6.1.95"},{name:"archive-clock-outline",hex:"F1750",version:"6.1.95"},{name:"archive-cog",hex:"F1751",version:"6.1.95"},{name:"archive-cog-outline",hex:"F1752",version:"6.1.95"},{name:"archive-edit",hex:"F1753",version:"6.1.95"},{name:"archive-edit-outline",hex:"F1754",version:"6.1.95"},{name:"archive-eye",hex:"F1755",version:"6.1.95"},{name:"archive-eye-outline",hex:"F1756",version:"6.1.95"},{name:"archive-lock",hex:"F1757",version:"6.1.95"},{name:"archive-lock-open",hex:"F1758",version:"6.1.95"},{name:"archive-lock-open-outline",hex:"F1759",version:"6.1.95"},{name:"archive-lock-outline",hex:"F175A",version:"6.1.95"},{name:"archive-marker",hex:"F175B",version:"6.1.95"},{name:"archive-marker-outline",hex:"F175C",version:"6.1.95"},{name:"archive-minus",hex:"F175D",version:"6.1.95"},{name:"archive-minus-outline",hex:"F175E",version:"6.1.95"},{name:"archive-music",hex:"F175F",version:"6.1.95"},{name:"archive-music-outline",hex:"F1760",version:"6.1.95"},{name:"archive-off",hex:"F1761",version:"6.1.95"},{name:"archive-off-outline",hex:"F1762",version:"6.1.95"},{name:"archive-outline",hex:"F120E",version:"4.6.95"},{name:"archive-plus",hex:"F1763",version:"6.1.95"},{name:"archive-plus-outline",hex:"F1764",version:"6.1.95"},{name:"archive-refresh",hex:"F1765",version:"6.1.95"},{name:"archive-refresh-outline",hex:"F1766",version:"6.1.95"},{name:"archive-remove",hex:"F1767",version:"6.1.95"},{name:"archive-remove-outline",hex:"F1768",version:"6.1.95"},{name:"archive-search",hex:"F1769",version:"6.1.95"},{name:"archive-search-outline",hex:"F176A",version:"6.1.95"},{name:"archive-settings",hex:"F176B",version:"6.1.95"},{name:"archive-settings-outline",hex:"F176C",version:"6.1.95"},{name:"archive-star",hex:"F176D",version:"6.1.95"},{name:"archive-star-outline",hex:"F176E",version:"6.1.95"},{name:"archive-sync",hex:"F176F",version:"6.1.95"},{name:"archive-sync-outline",hex:"F1770",version:"6.1.95"},{name:"arm-flex",hex:"F0FD7",version:"4.2.95"},{name:"arm-flex-outline",hex:"F0FD6",version:"4.2.95"},{name:"arrange-bring-forward",hex:"F003D",version:"1.5.54"},{name:"arrange-bring-to-front",hex:"F003E",version:"1.5.54"},{name:"arrange-send-backward",hex:"F003F",version:"1.5.54"},{name:"arrange-send-to-back",hex:"F0040",version:"1.5.54"},{name:"arrow-all",hex:"F0041",version:"1.5.54"},{name:"arrow-bottom-left",hex:"F0042",version:"1.5.54"},{name:"arrow-bottom-left-bold-box",hex:"F1964",version:"6.5.95"},{name:"arrow-bottom-left-bold-box-outline",hex:"F1965",version:"6.5.95"},{name:"arrow-bottom-left-bold-outline",hex:"F09B7",version:"2.5.94"},{name:"arrow-bottom-left-thick",hex:"F09B8",version:"2.5.94"},{name:"arrow-bottom-left-thin",hex:"F19B6",version:"6.5.95"},{name:"arrow-bottom-left-thin-circle-outline",hex:"F1596",version:"5.5.55"},{name:"arrow-bottom-right",hex:"F0043",version:"1.5.54"},{name:"arrow-bottom-right-bold-box",hex:"F1966",version:"6.5.95"},{name:"arrow-bottom-right-bold-box-outline",hex:"F1967",version:"6.5.95"},{name:"arrow-bottom-right-bold-outline",hex:"F09B9",version:"2.5.94"},{name:"arrow-bottom-right-thick",hex:"F09BA",version:"2.5.94"},{name:"arrow-bottom-right-thin",hex:"F19B7",version:"6.5.95"},{name:"arrow-bottom-right-thin-circle-outline",hex:"F1595",version:"5.5.55"},{name:"arrow-collapse",hex:"F0615",version:"1.6.50"},{name:"arrow-collapse-all",hex:"F0044",version:"1.5.54"},{name:"arrow-collapse-down",hex:"F0792",version:"2.0.46"},{name:"arrow-collapse-horizontal",hex:"F084C",version:"2.1.99"},{name:"arrow-collapse-left",hex:"F0793",version:"2.0.46"},{name:"arrow-collapse-right",hex:"F0794",version:"2.0.46"},{name:"arrow-collapse-up",hex:"F0795",version:"2.0.46"},{name:"arrow-collapse-vertical",hex:"F084D",version:"2.1.99"},{name:"arrow-decision",hex:"F09BB",version:"2.5.94"},{name:"arrow-decision-auto",hex:"F09BC",version:"2.5.94"},{name:"arrow-decision-auto-outline",hex:"F09BD",version:"2.5.94"},{name:"arrow-decision-outline",hex:"F09BE",version:"2.5.94"},{name:"arrow-down",hex:"F0045",version:"1.5.54"},{name:"arrow-down-bold",hex:"F072E",version:"1.9.32"},{name:"arrow-down-bold-box",hex:"F072F",version:"1.9.32"},{name:"arrow-down-bold-box-outline",hex:"F0730",version:"1.9.32"},{name:"arrow-down-bold-circle",hex:"F0047",version:"1.5.54"},{name:"arrow-down-bold-circle-outline",hex:"F0048",version:"1.5.54"},{name:"arrow-down-bold-hexagon-outline",hex:"F0049",version:"1.5.54"},{name:"arrow-down-bold-outline",hex:"F09BF",version:"2.5.94"},{name:"arrow-down-box",hex:"F06C0",version:"1.8.36"},{name:"arrow-down-circle",hex:"F0CDB",version:"3.3.92"},{name:"arrow-down-circle-outline",hex:"F0CDC",version:"3.3.92"},{name:"arrow-down-drop-circle",hex:"F004A",version:"1.5.54"},{name:"arrow-down-drop-circle-outline",hex:"F004B",version:"1.5.54"},{name:"arrow-down-left",hex:"F17A1",version:"6.1.95"},{name:"arrow-down-left-bold",hex:"F17A2",version:"6.1.95"},{name:"arrow-down-right",hex:"F17A3",version:"6.1.95"},{name:"arrow-down-right-bold",hex:"F17A4",version:"6.1.95"},{name:"arrow-down-thick",hex:"F0046",version:"1.5.54"},{name:"arrow-down-thin",hex:"F19B3",version:"6.5.95"},{name:"arrow-down-thin-circle-outline",hex:"F1599",version:"5.5.55"},{name:"arrow-expand",hex:"F0616",version:"1.6.50"},{name:"arrow-expand-all",hex:"F004C",version:"1.5.54"},{name:"arrow-expand-down",hex:"F0796",version:"2.0.46"},{name:"arrow-expand-horizontal",hex:"F084E",version:"2.1.99"},{name:"arrow-expand-left",hex:"F0797",version:"2.0.46"},{name:"arrow-expand-right",hex:"F0798",version:"2.0.46"},{name:"arrow-expand-up",hex:"F0799",version:"2.0.46"},{name:"arrow-expand-vertical",hex:"F084F",version:"2.1.99"},{name:"arrow-horizontal-lock",hex:"F115B",version:"4.4.95"},{name:"arrow-left",hex:"F004D",version:"1.5.54"},{name:"arrow-left-bold",hex:"F0731",version:"1.9.32"},{name:"arrow-left-bold-box",hex:"F0732",version:"1.9.32"},{name:"arrow-left-bold-box-outline",hex:"F0733",version:"1.9.32"},{name:"arrow-left-bold-circle",hex:"F004F",version:"1.5.54"},{name:"arrow-left-bold-circle-outline",hex:"F0050",version:"1.5.54"},{name:"arrow-left-bold-hexagon-outline",hex:"F0051",version:"1.5.54"},{name:"arrow-left-bold-outline",hex:"F09C0",version:"2.5.94"},{name:"arrow-left-bottom",hex:"F17A5",version:"6.1.95"},{name:"arrow-left-bottom-bold",hex:"F17A6",version:"6.1.95"},{name:"arrow-left-box",hex:"F06C1",version:"1.8.36"},{name:"arrow-left-circle",hex:"F0CDD",version:"3.3.92"},{name:"arrow-left-circle-outline",hex:"F0CDE",version:"3.3.92"},{name:"arrow-left-drop-circle",hex:"F0052",version:"1.5.54"},{name:"arrow-left-drop-circle-outline",hex:"F0053",version:"1.5.54"},{name:"arrow-left-right",hex:"F0E73",version:"3.7.94"},{name:"arrow-left-right-bold",hex:"F0E74",version:"3.7.94"},{name:"arrow-left-right-bold-outline",hex:"F09C1",version:"2.5.94"},{name:"arrow-left-thick",hex:"F004E",version:"1.5.54"},{name:"arrow-left-thin",hex:"F19B1",version:"6.5.95"},{name:"arrow-left-thin-circle-outline",hex:"F159A",version:"5.5.55"},{name:"arrow-left-top",hex:"F17A7",version:"6.1.95"},{name:"arrow-left-top-bold",hex:"F17A8",version:"6.1.95"},{name:"arrow-projectile",hex:"F1840",version:"6.2.95"},{name:"arrow-projectile-multiple",hex:"F183F",version:"6.2.95"},{name:"arrow-right",hex:"F0054",version:"1.5.54"},{name:"arrow-right-bold",hex:"F0734",version:"1.9.32"},{name:"arrow-right-bold-box",hex:"F0735",version:"1.9.32"},{name:"arrow-right-bold-box-outline",hex:"F0736",version:"1.9.32"},{name:"arrow-right-bold-circle",hex:"F0056",version:"1.5.54"},{name:"arrow-right-bold-circle-outline",hex:"F0057",version:"1.5.54"},{name:"arrow-right-bold-hexagon-outline",hex:"F0058",version:"1.5.54"},{name:"arrow-right-bold-outline",hex:"F09C2",version:"2.5.94"},{name:"arrow-right-bottom",hex:"F17A9",version:"6.1.95"},{name:"arrow-right-bottom-bold",hex:"F17AA",version:"6.1.95"},{name:"arrow-right-box",hex:"F06C2",version:"1.8.36"},{name:"arrow-right-circle",hex:"F0CDF",version:"3.3.92"},{name:"arrow-right-circle-outline",hex:"F0CE0",version:"3.3.92"},{name:"arrow-right-drop-circle",hex:"F0059",version:"1.5.54"},{name:"arrow-right-drop-circle-outline",hex:"F005A",version:"1.5.54"},{name:"arrow-right-thick",hex:"F0055",version:"1.5.54"},{name:"arrow-right-thin",hex:"F19B0",version:"6.5.95"},{name:"arrow-right-thin-circle-outline",hex:"F1598",version:"5.5.55"},{name:"arrow-right-top",hex:"F17AB",version:"6.1.95"},{name:"arrow-right-top-bold",hex:"F17AC",version:"6.1.95"},{name:"arrow-split-horizontal",hex:"F093B",version:"2.4.85"},{name:"arrow-split-vertical",hex:"F093C",version:"2.4.85"},{name:"arrow-top-left",hex:"F005B",version:"1.5.54"},{name:"arrow-top-left-bold-box",hex:"F1968",version:"6.5.95"},{name:"arrow-top-left-bold-box-outline",hex:"F1969",version:"6.5.95"},{name:"arrow-top-left-bold-outline",hex:"F09C3",version:"2.5.94"},{name:"arrow-top-left-bottom-right",hex:"F0E75",version:"3.7.94"},{name:"arrow-top-left-bottom-right-bold",hex:"F0E76",version:"3.7.94"},{name:"arrow-top-left-thick",hex:"F09C4",version:"2.5.94"},{name:"arrow-top-left-thin",hex:"F19B5",version:"6.5.95"},{name:"arrow-top-left-thin-circle-outline",hex:"F1593",version:"5.5.55"},{name:"arrow-top-right",hex:"F005C",version:"1.5.54"},{name:"arrow-top-right-bold-box",hex:"F196A",version:"6.5.95"},{name:"arrow-top-right-bold-box-outline",hex:"F196B",version:"6.5.95"},{name:"arrow-top-right-bold-outline",hex:"F09C5",version:"2.5.94"},{name:"arrow-top-right-bottom-left",hex:"F0E77",version:"3.7.94"},{name:"arrow-top-right-bottom-left-bold",hex:"F0E78",version:"3.7.94"},{name:"arrow-top-right-thick",hex:"F09C6",version:"2.5.94"},{name:"arrow-top-right-thin",hex:"F19B4",version:"6.5.95"},{name:"arrow-top-right-thin-circle-outline",hex:"F1594",version:"5.5.55"},{name:"arrow-u-down-left",hex:"F17AD",version:"6.1.95"},{name:"arrow-u-down-left-bold",hex:"F17AE",version:"6.1.95"},{name:"arrow-u-down-right",hex:"F17AF",version:"6.1.95"},{name:"arrow-u-down-right-bold",hex:"F17B0",version:"6.1.95"},{name:"arrow-u-left-bottom",hex:"F17B1",version:"6.1.95"},{name:"arrow-u-left-bottom-bold",hex:"F17B2",version:"6.1.95"},{name:"arrow-u-left-top",hex:"F17B3",version:"6.1.95"},{name:"arrow-u-left-top-bold",hex:"F17B4",version:"6.1.95"},{name:"arrow-u-right-bottom",hex:"F17B5",version:"6.1.95"},{name:"arrow-u-right-bottom-bold",hex:"F17B6",version:"6.1.95"},{name:"arrow-u-right-top",hex:"F17B7",version:"6.1.95"},{name:"arrow-u-right-top-bold",hex:"F17B8",version:"6.1.95"},{name:"arrow-u-up-left",hex:"F17B9",version:"6.1.95"},{name:"arrow-u-up-left-bold",hex:"F17BA",version:"6.1.95"},{name:"arrow-u-up-right",hex:"F17BB",version:"6.1.95"},{name:"arrow-u-up-right-bold",hex:"F17BC",version:"6.1.95"},{name:"arrow-up",hex:"F005D",version:"1.5.54"},{name:"arrow-up-bold",hex:"F0737",version:"1.9.32"},{name:"arrow-up-bold-box",hex:"F0738",version:"1.9.32"},{name:"arrow-up-bold-box-outline",hex:"F0739",version:"1.9.32"},{name:"arrow-up-bold-circle",hex:"F005F",version:"1.5.54"},{name:"arrow-up-bold-circle-outline",hex:"F0060",version:"1.5.54"},{name:"arrow-up-bold-hexagon-outline",hex:"F0061",version:"1.5.54"},{name:"arrow-up-bold-outline",hex:"F09C7",version:"2.5.94"},{name:"arrow-up-box",hex:"F06C3",version:"1.8.36"},{name:"arrow-up-circle",hex:"F0CE1",version:"3.3.92"},{name:"arrow-up-circle-outline",hex:"F0CE2",version:"3.3.92"},{name:"arrow-up-down",hex:"F0E79",version:"3.7.94"},{name:"arrow-up-down-bold",hex:"F0E7A",version:"3.7.94"},{name:"arrow-up-down-bold-outline",hex:"F09C8",version:"2.5.94"},{name:"arrow-up-drop-circle",hex:"F0062",version:"1.5.54"},{name:"arrow-up-drop-circle-outline",hex:"F0063",version:"1.5.54"},{name:"arrow-up-left",hex:"F17BD",version:"6.1.95"},{name:"arrow-up-left-bold",hex:"F17BE",version:"6.1.95"},{name:"arrow-up-right",hex:"F17BF",version:"6.1.95"},{name:"arrow-up-right-bold",hex:"F17C0",version:"6.1.95"},{name:"arrow-up-thick",hex:"F005E",version:"1.5.54"},{name:"arrow-up-thin",hex:"F19B2",version:"6.5.95"},{name:"arrow-up-thin-circle-outline",hex:"F1597",version:"5.5.55"},{name:"arrow-vertical-lock",hex:"F115C",version:"4.4.95"},{name:"artstation",hex:"F0B5B",version:"3.0.39"},{name:"aspect-ratio",hex:"F0A24",version:"2.6.95"},{name:"assistant",hex:"F0064",version:"1.5.54"},{name:"asterisk",hex:"F06C4",version:"1.8.36"},{name:"at",hex:"F0065",version:"1.5.54"},{name:"atlassian",hex:"F0804",version:"2.1.19"},{name:"atm",hex:"F0D47",version:"3.4.93"},{name:"atom",hex:"F0768",version:"1.9.32"},{name:"atom-variant",hex:"F0E7B",version:"3.7.94"},{name:"attachment",hex:"F0066",version:"1.5.54"},{name:"audio-input-rca",hex:"F186B",version:"6.2.95"},{name:"audio-input-stereo-minijack",hex:"F186C",version:"6.2.95"},{name:"audio-input-xlr",hex:"F186D",version:"6.2.95"},{name:"audio-video",hex:"F093D",version:"2.4.85"},{name:"audio-video-off",hex:"F11B6",version:"4.5.95"},{name:"augmented-reality",hex:"F0850",version:"2.1.99"},{name:"auto-download",hex:"F137E",version:"4.9.95"},{name:"auto-fix",hex:"F0068",version:"1.5.54"},{name:"auto-upload",hex:"F0069",version:"1.5.54"},{name:"autorenew",hex:"F006A",version:"1.5.54"},{name:"av-timer",hex:"F006B",version:"1.5.54"},{name:"aws",hex:"F0E0F",version:"3.6.95"},{name:"axe",hex:"F08C8",version:"2.3.50"},{name:"axe-battle",hex:"F1842",version:"6.2.95"},{name:"axis",hex:"F0D48",version:"3.4.93"},{name:"axis-arrow",hex:"F0D49",version:"3.4.93"},{name:"axis-arrow-info",hex:"F140E",version:"5.1.45"},{name:"axis-arrow-lock",hex:"F0D4A",version:"3.4.93"},{name:"axis-lock",hex:"F0D4B",version:"3.4.93"},{name:"axis-x-arrow",hex:"F0D4C",version:"3.4.93"},{name:"axis-x-arrow-lock",hex:"F0D4D",version:"3.4.93"},{name:"axis-x-rotate-clockwise",hex:"F0D4E",version:"3.4.93"},{name:"axis-x-rotate-counterclockwise",hex:"F0D4F",version:"3.4.93"},{name:"axis-x-y-arrow-lock",hex:"F0D50",version:"3.4.93"},{name:"axis-y-arrow",hex:"F0D51",version:"3.4.93"},{name:"axis-y-arrow-lock",hex:"F0D52",version:"3.4.93"},{name:"axis-y-rotate-clockwise",hex:"F0D53",version:"3.4.93"},{name:"axis-y-rotate-counterclockwise",hex:"F0D54",version:"3.4.93"},{name:"axis-z-arrow",hex:"F0D55",version:"3.4.93"},{name:"axis-z-arrow-lock",hex:"F0D56",version:"3.4.93"},{name:"axis-z-rotate-clockwise",hex:"F0D57",version:"3.4.93"},{name:"axis-z-rotate-counterclockwise",hex:"F0D58",version:"3.4.93"},{name:"babel",hex:"F0A25",version:"2.6.95"},{name:"baby",hex:"F006C",version:"1.5.54"},{name:"baby-bottle",hex:"F0F39",version:"3.9.97"},{name:"baby-bottle-outline",hex:"F0F3A",version:"3.9.97"},{name:"baby-buggy",hex:"F13E0",version:"5.1.45"},{name:"baby-carriage",hex:"F068F",version:"1.7.12"},{name:"baby-carriage-off",hex:"F0FA0",version:"4.0.96"},{name:"baby-face",hex:"F0E7C",version:"3.7.94"},{name:"baby-face-outline",hex:"F0E7D",version:"3.7.94"},{name:"backburger",hex:"F006D",version:"1.5.54"},{name:"backspace",hex:"F006E",version:"1.5.54"},{name:"backspace-outline",hex:"F0B5C",version:"3.0.39"},{name:"backspace-reverse",hex:"F0E7E",version:"3.7.94"},{name:"backspace-reverse-outline",hex:"F0E7F",version:"3.7.94"},{name:"backup-restore",hex:"F006F",version:"1.5.54"},{name:"bacteria",hex:"F0ED5",version:"3.8.95"},{name:"bacteria-outline",hex:"F0ED6",version:"3.8.95"},{name:"badge-account",hex:"F0DA7",version:"3.5.94"},{name:"badge-account-alert",hex:"F0DA8",version:"3.5.94"},{name:"badge-account-alert-outline",hex:"F0DA9",version:"3.5.94"},{name:"badge-account-horizontal",hex:"F0E0D",version:"3.6.95"},{name:"badge-account-horizontal-outline",hex:"F0E0E",version:"3.6.95"},{name:"badge-account-outline",hex:"F0DAA",version:"3.5.94"},{name:"badminton",hex:"F0851",version:"2.1.99"},{name:"bag-carry-on",hex:"F0F3B",version:"3.9.97"},{name:"bag-carry-on-check",hex:"F0D65",version:"3.4.93"},{name:"bag-carry-on-off",hex:"F0F3C",version:"3.9.97"},{name:"bag-checked",hex:"F0F3D",version:"3.9.97"},{name:"bag-personal",hex:"F0E10",version:"3.6.95"},{name:"bag-personal-off",hex:"F0E11",version:"3.6.95"},{name:"bag-personal-off-outline",hex:"F0E12",version:"3.6.95"},{name:"bag-personal-outline",hex:"F0E13",version:"3.6.95"},{name:"bag-suitcase",hex:"F158B",version:"5.5.55"},{name:"bag-suitcase-off",hex:"F158D",version:"5.5.55"},{name:"bag-suitcase-off-outline",hex:"F158E",version:"5.5.55"},{name:"bag-suitcase-outline",hex:"F158C",version:"5.5.55"},{name:"baguette",hex:"F0F3E",version:"3.9.97"},{name:"balcony",hex:"F1817",version:"6.1.95"},{name:"balloon",hex:"F0A26",version:"2.6.95"},{name:"ballot",hex:"F09C9",version:"2.5.94"},{name:"ballot-outline",hex:"F09CA",version:"2.5.94"},{name:"ballot-recount",hex:"F0C39",version:"3.2.89"},{name:"ballot-recount-outline",hex:"F0C3A",version:"3.2.89"},{name:"bandage",hex:"F0DAF",version:"3.5.94"},{name:"bank",hex:"F0070",version:"1.5.54"},{name:"bank-check",hex:"F1655",version:"5.7.55"},{name:"bank-minus",hex:"F0DB0",version:"3.5.94"},{name:"bank-off",hex:"F1656",version:"5.7.55"},{name:"bank-off-outline",hex:"F1657",version:"5.7.55"},{name:"bank-outline",hex:"F0E80",version:"3.7.94"},{name:"bank-plus",hex:"F0DB1",version:"3.5.94"},{name:"bank-remove",hex:"F0DB2",version:"3.5.94"},{name:"bank-transfer",hex:"F0A27",version:"2.6.95"},{name:"bank-transfer-in",hex:"F0A28",version:"2.6.95"},{name:"bank-transfer-out",hex:"F0A29",version:"2.6.95"},{name:"barcode",hex:"F0071",version:"1.5.54"},{name:"barcode-off",hex:"F1236",version:"4.6.95"},{name:"barcode-scan",hex:"F0072",version:"1.5.54"},{name:"barley",hex:"F0073",version:"1.5.54"},{name:"barley-off",hex:"F0B5D",version:"3.0.39"},{name:"barn",hex:"F0B5E",version:"3.0.39"},{name:"barrel",hex:"F0074",version:"1.5.54"},{name:"baseball",hex:"F0852",version:"2.1.99"},{name:"baseball-bat",hex:"F0853",version:"2.1.99"},{name:"baseball-diamond",hex:"F15EC",version:"5.6.55"},{name:"baseball-diamond-outline",hex:"F15ED",version:"5.6.55"},{name:"bash",hex:"F1183",version:"4.4.95"},{name:"basket",hex:"F0076",version:"1.5.54"},{name:"basket-check",hex:"F18E5",version:"6.3.95"},{name:"basket-check-outline",hex:"F18E6",version:"6.3.95"},{name:"basket-fill",hex:"F0077",version:"1.5.54"},{name:"basket-minus",hex:"F1523",version:"5.4.55"},{name:"basket-minus-outline",hex:"F1524",version:"5.4.55"},{name:"basket-off",hex:"F1525",version:"5.4.55"},{name:"basket-off-outline",hex:"F1526",version:"5.4.55"},{name:"basket-outline",hex:"F1181",version:"4.4.95"},{name:"basket-plus",hex:"F1527",version:"5.4.55"},{name:"basket-plus-outline",hex:"F1528",version:"5.4.55"},{name:"basket-remove",hex:"F1529",version:"5.4.55"},{name:"basket-remove-outline",hex:"F152A",version:"5.4.55"},{name:"basket-unfill",hex:"F0078",version:"1.5.54"},{name:"basketball",hex:"F0806",version:"2.1.19"},{name:"basketball-hoop",hex:"F0C3B",version:"3.2.89"},{name:"basketball-hoop-outline",hex:"F0C3C",version:"3.2.89"},{name:"bat",hex:"F0B5F",version:"3.0.39"},{name:"bathtub",hex:"F1818",version:"6.1.95"},{name:"bathtub-outline",hex:"F1819",version:"6.1.95"},{name:"battery",hex:"F0079",version:"1.5.54"},{name:"battery-10",hex:"F007A",version:"1.5.54"},{name:"battery-10-bluetooth",hex:"F093E",version:"2.4.85"},{name:"battery-20",hex:"F007B",version:"1.5.54"},{name:"battery-20-bluetooth",hex:"F093F",version:"2.4.85"},{name:"battery-30",hex:"F007C",version:"1.5.54"},{name:"battery-30-bluetooth",hex:"F0940",version:"2.4.85"},{name:"battery-40",hex:"F007D",version:"1.5.54"},{name:"battery-40-bluetooth",hex:"F0941",version:"2.4.85"},{name:"battery-50",hex:"F007E",version:"1.5.54"},{name:"battery-50-bluetooth",hex:"F0942",version:"2.4.85"},{name:"battery-60",hex:"F007F",version:"1.5.54"},{name:"battery-60-bluetooth",hex:"F0943",version:"2.4.85"},{name:"battery-70",hex:"F0080",version:"1.5.54"},{name:"battery-70-bluetooth",hex:"F0944",version:"2.4.85"},{name:"battery-80",hex:"F0081",version:"1.5.54"},{name:"battery-80-bluetooth",hex:"F0945",version:"2.4.85"},{name:"battery-90",hex:"F0082",version:"1.5.54"},{name:"battery-90-bluetooth",hex:"F0946",version:"2.4.85"},{name:"battery-alert",hex:"F0083",version:"1.5.54"},{name:"battery-alert-bluetooth",hex:"F0947",version:"2.4.85"},{name:"battery-alert-variant",hex:"F10CC",version:"4.3.95"},{name:"battery-alert-variant-outline",hex:"F10CD",version:"4.3.95"},{name:"battery-arrow-down",hex:"F17DE",version:"6.1.95"},{name:"battery-arrow-down-outline",hex:"F17DF",version:"6.1.95"},{name:"battery-arrow-up",hex:"F17E0",version:"6.1.95"},{name:"battery-arrow-up-outline",hex:"F17E1",version:"6.1.95"},{name:"battery-bluetooth",hex:"F0948",version:"2.4.85"},{name:"battery-bluetooth-variant",hex:"F0949",version:"2.4.85"},{name:"battery-charging",hex:"F0084",version:"1.5.54"},{name:"battery-charging-10",hex:"F089C",version:"2.2.43"},{name:"battery-charging-100",hex:"F0085",version:"1.5.54"},{name:"battery-charging-20",hex:"F0086",version:"1.5.54"},{name:"battery-charging-30",hex:"F0087",version:"1.5.54"},{name:"battery-charging-40",hex:"F0088",version:"1.5.54"},{name:"battery-charging-50",hex:"F089D",version:"2.2.43"},{name:"battery-charging-60",hex:"F0089",version:"1.5.54"},{name:"battery-charging-70",hex:"F089E",version:"2.2.43"},{name:"battery-charging-80",hex:"F008A",version:"1.5.54"},{name:"battery-charging-90",hex:"F008B",version:"1.5.54"},{name:"battery-charging-high",hex:"F12A6",version:"4.7.95"},{name:"battery-charging-low",hex:"F12A4",version:"4.7.95"},{name:"battery-charging-medium",hex:"F12A5",version:"4.7.95"},{name:"battery-charging-outline",hex:"F089F",version:"2.2.43"},{name:"battery-charging-wireless",hex:"F0807",version:"2.1.19"},{name:"battery-charging-wireless-10",hex:"F0808",version:"2.1.19"},{name:"battery-charging-wireless-20",hex:"F0809",version:"2.1.19"},{name:"battery-charging-wireless-30",hex:"F080A",version:"2.1.19"},{name:"battery-charging-wireless-40",hex:"F080B",version:"2.1.19"},{name:"battery-charging-wireless-50",hex:"F080C",version:"2.1.19"},{name:"battery-charging-wireless-60",hex:"F080D",version:"2.1.19"},{name:"battery-charging-wireless-70",hex:"F080E",version:"2.1.19"},{name:"battery-charging-wireless-80",hex:"F080F",version:"2.1.19"},{name:"battery-charging-wireless-90",hex:"F0810",version:"2.1.19"},{name:"battery-charging-wireless-alert",hex:"F0811",version:"2.1.19"},{name:"battery-charging-wireless-outline",hex:"F0812",version:"2.1.19"},{name:"battery-check",hex:"F17E2",version:"6.1.95"},{name:"battery-check-outline",hex:"F17E3",version:"6.1.95"},{name:"battery-heart",hex:"F120F",version:"4.6.95"},{name:"battery-heart-outline",hex:"F1210",version:"4.6.95"},{name:"battery-heart-variant",hex:"F1211",version:"4.6.95"},{name:"battery-high",hex:"F12A3",version:"4.7.95"},{name:"battery-lock",hex:"F179C",version:"6.1.95"},{name:"battery-lock-open",hex:"F179D",version:"6.1.95"},{name:"battery-low",hex:"F12A1",version:"4.7.95"},{name:"battery-medium",hex:"F12A2",version:"4.7.95"},{name:"battery-minus",hex:"F17E4",version:"6.1.95"},{name:"battery-minus-outline",hex:"F17E5",version:"6.1.95"},{name:"battery-minus-variant",hex:"F008C",version:"1.5.54"},{name:"battery-negative",hex:"F008D",version:"1.5.54"},{name:"battery-off",hex:"F125D",version:"4.7.95"},{name:"battery-off-outline",hex:"F125E",version:"4.7.95"},{name:"battery-outline",hex:"F008E",version:"1.5.54"},{name:"battery-plus",hex:"F17E6",version:"6.1.95"},{name:"battery-plus-outline",hex:"F17E7",version:"6.1.95"},{name:"battery-plus-variant",hex:"F008F",version:"1.5.54"},{name:"battery-positive",hex:"F0090",version:"1.5.54"},{name:"battery-remove",hex:"F17E8",version:"6.1.95"},{name:"battery-remove-outline",hex:"F17E9",version:"6.1.95"},{name:"battery-sync",hex:"F1834",version:"6.2.95"},{name:"battery-sync-outline",hex:"F1835",version:"6.2.95"},{name:"battery-unknown",hex:"F0091",version:"1.5.54"},{name:"battery-unknown-bluetooth",hex:"F094A",version:"2.4.85"},{name:"beach",hex:"F0092",version:"1.5.54"},{name:"beaker",hex:"F0CEA",version:"3.3.92"},{name:"beaker-alert",hex:"F1229",version:"4.6.95"},{name:"beaker-alert-outline",hex:"F122A",version:"4.6.95"},{name:"beaker-check",hex:"F122B",version:"4.6.95"},{name:"beaker-check-outline",hex:"F122C",version:"4.6.95"},{name:"beaker-minus",hex:"F122D",version:"4.6.95"},{name:"beaker-minus-outline",hex:"F122E",version:"4.6.95"},{name:"beaker-outline",hex:"F0690",version:"1.7.12"},{name:"beaker-plus",hex:"F122F",version:"4.6.95"},{name:"beaker-plus-outline",hex:"F1230",version:"4.6.95"},{name:"beaker-question",hex:"F1231",version:"4.6.95"},{name:"beaker-question-outline",hex:"F1232",version:"4.6.95"},{name:"beaker-remove",hex:"F1233",version:"4.6.95"},{name:"beaker-remove-outline",hex:"F1234",version:"4.6.95"},{name:"bed",hex:"F02E3",version:"1.5.54"},{name:"bed-double",hex:"F0FD4",version:"4.2.95"},{name:"bed-double-outline",hex:"F0FD3",version:"4.2.95"},{name:"bed-empty",hex:"F08A0",version:"2.2.43"},{name:"bed-king",hex:"F0FD2",version:"4.2.95"},{name:"bed-king-outline",hex:"F0FD1",version:"4.2.95"},{name:"bed-outline",hex:"F0099",version:"1.5.54"},{name:"bed-queen",hex:"F0FD0",version:"4.2.95"},{name:"bed-queen-outline",hex:"F0FDB",version:"4.2.95"},{name:"bed-single",hex:"F106D",version:"4.2.95"},{name:"bed-single-outline",hex:"F106E",version:"4.2.95"},{name:"bee",hex:"F0FA1",version:"4.0.96"},{name:"bee-flower",hex:"F0FA2",version:"4.0.96"},{name:"beehive-off-outline",hex:"F13ED",version:"5.1.45"},{name:"beehive-outline",hex:"F10CE",version:"4.3.95"},{name:"beekeeper",hex:"F14E2",version:"5.4.55"},{name:"beer",hex:"F0098",version:"1.5.54"},{name:"beer-outline",hex:"F130C",version:"4.8.95"},{name:"bell",hex:"F009A",version:"1.5.54"},{name:"bell-alert",hex:"F0D59",version:"3.4.93"},{name:"bell-alert-outline",hex:"F0E81",version:"3.7.94"},{name:"bell-badge",hex:"F116B",version:"4.4.95"},{name:"bell-badge-outline",hex:"F0178",version:"1.5.54"},{name:"bell-cancel",hex:"F13E7",version:"5.1.45"},{name:"bell-cancel-outline",hex:"F13E8",version:"5.1.45"},{name:"bell-check",hex:"F11E5",version:"4.5.95"},{name:"bell-check-outline",hex:"F11E6",version:"4.5.95"},{name:"bell-circle",hex:"F0D5A",version:"3.4.93"},{name:"bell-circle-outline",hex:"F0D5B",version:"3.4.93"},{name:"bell-minus",hex:"F13E9",version:"5.1.45"},{name:"bell-minus-outline",hex:"F13EA",version:"5.1.45"},{name:"bell-off",hex:"F009B",version:"1.5.54"},{name:"bell-off-outline",hex:"F0A91",version:"2.7.94"},{name:"bell-outline",hex:"F009C",version:"1.5.54"},{name:"bell-plus",hex:"F009D",version:"1.5.54"},{name:"bell-plus-outline",hex:"F0A92",version:"2.7.94"},{name:"bell-remove",hex:"F13EB",version:"5.1.45"},{name:"bell-remove-outline",hex:"F13EC",version:"5.1.45"},{name:"bell-ring",hex:"F009E",version:"1.5.54"},{name:"bell-ring-outline",hex:"F009F",version:"1.5.54"},{name:"bell-sleep",hex:"F00A0",version:"1.5.54"},{name:"bell-sleep-outline",hex:"F0A93",version:"2.7.94"},{name:"beta",hex:"F00A1",version:"1.5.54"},{name:"betamax",hex:"F09CB",version:"2.5.94"},{name:"biathlon",hex:"F0E14",version:"3.6.95"},{name:"bicycle",hex:"F109C",version:"4.2.95"},{name:"bicycle-basket",hex:"F1235",version:"4.6.95"},{name:"bicycle-cargo",hex:"F189C",version:"6.3.95"},{name:"bicycle-electric",hex:"F15B4",version:"5.6.55"},{name:"bicycle-penny-farthing",hex:"F15E9",version:"5.6.55"},{name:"bike",hex:"F00A3",version:"1.5.54"},{name:"bike-fast",hex:"F111F",version:"4.3.95"},{name:"billboard",hex:"F1010",version:"4.1.95"},{name:"billiards",hex:"F0B61",version:"3.0.39"},{name:"billiards-rack",hex:"F0B62",version:"3.0.39"},{name:"binoculars",hex:"F00A5",version:"1.5.54"},{name:"bio",hex:"F00A6",version:"1.5.54"},{name:"biohazard",hex:"F00A7",version:"1.5.54"},{name:"bird",hex:"F15C6",version:"5.6.55"},{name:"bitbucket",hex:"F00A8",version:"1.5.54"},{name:"bitcoin",hex:"F0813",version:"2.1.19"},{name:"black-mesa",hex:"F00A9",version:"1.5.54"},{name:"blender",hex:"F0CEB",version:"3.3.92"},{name:"blender-outline",hex:"F181A",version:"6.1.95"},{name:"blender-software",hex:"F00AB",version:"1.5.54"},{name:"blinds",hex:"F00AC",version:"1.5.54"},{name:"blinds-open",hex:"F1011",version:"4.1.95"},{name:"block-helper",hex:"F00AD",version:"1.5.54"},{name:"blood-bag",hex:"F0CEC",version:"3.3.92"},{name:"bluetooth",hex:"F00AF",version:"1.5.54"},{name:"bluetooth-audio",hex:"F00B0",version:"1.5.54"},{name:"bluetooth-connect",hex:"F00B1",version:"1.5.54"},{name:"bluetooth-off",hex:"F00B2",version:"1.5.54"},{name:"bluetooth-settings",hex:"F00B3",version:"1.5.54"},{name:"bluetooth-transfer",hex:"F00B4",version:"1.5.54"},{name:"blur",hex:"F00B5",version:"1.5.54"},{name:"blur-linear",hex:"F00B6",version:"1.5.54"},{name:"blur-off",hex:"F00B7",version:"1.5.54"},{name:"blur-radial",hex:"F00B8",version:"1.5.54"},{name:"bolt",hex:"F0DB3",version:"3.5.94"},{name:"bomb",hex:"F0691",version:"1.7.12"},{name:"bomb-off",hex:"F06C5",version:"1.8.36"},{name:"bone",hex:"F00B9",version:"1.5.54"},{name:"book",hex:"F00BA",version:"1.5.54"},{name:"book-account",hex:"F13AD",version:"5.0.45"},{name:"book-account-outline",hex:"F13AE",version:"5.0.45"},{name:"book-alert",hex:"F167C",version:"5.8.55"},{name:"book-alert-outline",hex:"F167D",version:"5.8.55"},{name:"book-alphabet",hex:"F061D",version:"1.6.50"},{name:"book-arrow-down",hex:"F167E",version:"5.8.55"},{name:"book-arrow-down-outline",hex:"F167F",version:"5.8.55"},{name:"book-arrow-left",hex:"F1680",version:"5.8.55"},{name:"book-arrow-left-outline",hex:"F1681",version:"5.8.55"},{name:"book-arrow-right",hex:"F1682",version:"5.8.55"},{name:"book-arrow-right-outline",hex:"F1683",version:"5.8.55"},{name:"book-arrow-up",hex:"F1684",version:"5.8.55"},{name:"book-arrow-up-outline",hex:"F1685",version:"5.8.55"},{name:"book-cancel",hex:"F1686",version:"5.8.55"},{name:"book-cancel-outline",hex:"F1687",version:"5.8.55"},{name:"book-check",hex:"F14F3",version:"5.4.55"},{name:"book-check-outline",hex:"F14F4",version:"5.4.55"},{name:"book-clock",hex:"F1688",version:"5.8.55"},{name:"book-clock-outline",hex:"F1689",version:"5.8.55"},{name:"book-cog",hex:"F168A",version:"5.8.55"},{name:"book-cog-outline",hex:"F168B",version:"5.8.55"},{name:"book-cross",hex:"F00A2",version:"1.5.54"},{name:"book-edit",hex:"F168C",version:"5.8.55"},{name:"book-edit-outline",hex:"F168D",version:"5.8.55"},{name:"book-education",hex:"F16C9",version:"5.8.55"},{name:"book-education-outline",hex:"F16CA",version:"5.8.55"},{name:"book-information-variant",hex:"F106F",version:"4.2.95"},{name:"book-lock",hex:"F079A",version:"2.0.46"},{name:"book-lock-open",hex:"F079B",version:"2.0.46"},{name:"book-lock-open-outline",hex:"F168E",version:"5.8.55"},{name:"book-lock-outline",hex:"F168F",version:"5.8.55"},{name:"book-marker",hex:"F1690",version:"5.8.55"},{name:"book-marker-outline",hex:"F1691",version:"5.8.55"},{name:"book-minus",hex:"F05D9",version:"1.5.54"},{name:"book-minus-multiple",hex:"F0A94",version:"2.7.94"},{name:"book-minus-multiple-outline",hex:"F090B",version:"2.3.50"},{name:"book-minus-outline",hex:"F1692",version:"5.8.55"},{name:"book-multiple",hex:"F00BB",version:"1.5.54"},{name:"book-multiple-outline",hex:"F0436",version:"1.5.54"},{name:"book-music",hex:"F0067",version:"1.5.54"},{name:"book-music-outline",hex:"F1693",version:"5.8.55"},{name:"book-off",hex:"F1694",version:"5.8.55"},{name:"book-off-outline",hex:"F1695",version:"5.8.55"},{name:"book-open",hex:"F00BD",version:"1.5.54"},{name:"book-open-blank-variant",hex:"F00BE",version:"1.5.54"},{name:"book-open-outline",hex:"F0B63",version:"3.0.39"},{name:"book-open-page-variant",hex:"F05DA",version:"1.5.54"},{name:"book-open-page-variant-outline",hex:"F15D6",version:"5.6.55"},{name:"book-open-variant",hex:"F14F7",version:"5.4.55"},{name:"book-outline",hex:"F0B64",version:"3.0.39"},{name:"book-play",hex:"F0E82",version:"3.7.94"},{name:"book-play-outline",hex:"F0E83",version:"3.7.94"},{name:"book-plus",hex:"F05DB",version:"1.5.54"},{name:"book-plus-multiple",hex:"F0A95",version:"2.7.94"},{name:"book-plus-multiple-outline",hex:"F0ADE",version:"2.7.94"},{name:"book-plus-outline",hex:"F1696",version:"5.8.55"},{name:"book-refresh",hex:"F1697",version:"5.8.55"},{name:"book-refresh-outline",hex:"F1698",version:"5.8.55"},{name:"book-remove",hex:"F0A97",version:"2.7.94"},{name:"book-remove-multiple",hex:"F0A96",version:"2.7.94"},{name:"book-remove-multiple-outline",hex:"F04CA",version:"1.5.54"},{name:"book-remove-outline",hex:"F1699",version:"5.8.55"},{name:"book-search",hex:"F0E84",version:"3.7.94"},{name:"book-search-outline",hex:"F0E85",version:"3.7.94"},{name:"book-settings",hex:"F169A",version:"5.8.55"},{name:"book-settings-outline",hex:"F169B",version:"5.8.55"},{name:"book-sync",hex:"F169C",version:"5.8.55"},{name:"book-sync-outline",hex:"F16C8",version:"5.8.55"},{name:"book-variant",hex:"F00BF",version:"1.5.54"},{name:"book-variant-multiple",hex:"F00BC",version:"1.5.54"},{name:"bookmark",hex:"F00C0",version:"1.5.54"},{name:"bookmark-box-multiple",hex:"F196C",version:"6.5.95"},{name:"bookmark-box-multiple-outline",hex:"F196D",version:"6.5.95"},{name:"bookmark-check",hex:"F00C1",version:"1.5.54"},{name:"bookmark-check-outline",hex:"F137B",version:"4.9.95"},{name:"bookmark-minus",hex:"F09CC",version:"2.5.94"},{name:"bookmark-minus-outline",hex:"F09CD",version:"2.5.94"},{name:"bookmark-multiple",hex:"F0E15",version:"3.6.95"},{name:"bookmark-multiple-outline",hex:"F0E16",version:"3.6.95"},{name:"bookmark-music",hex:"F00C2",version:"1.5.54"},{name:"bookmark-music-outline",hex:"F1379",version:"4.9.95"},{name:"bookmark-off",hex:"F09CE",version:"2.5.94"},{name:"bookmark-off-outline",hex:"F09CF",version:"2.5.94"},{name:"bookmark-outline",hex:"F00C3",version:"1.5.54"},{name:"bookmark-plus",hex:"F00C5",version:"1.5.54"},{name:"bookmark-plus-outline",hex:"F00C4",version:"1.5.54"},{name:"bookmark-remove",hex:"F00C6",version:"1.5.54"},{name:"bookmark-remove-outline",hex:"F137A",version:"4.9.95"},{name:"bookshelf",hex:"F125F",version:"4.7.95"},{name:"boom-gate",hex:"F0E86",version:"3.7.94"},{name:"boom-gate-alert",hex:"F0E87",version:"3.7.94"},{name:"boom-gate-alert-outline",hex:"F0E88",version:"3.7.94"},{name:"boom-gate-arrow-down",hex:"F0E89",version:"3.7.94"},{name:"boom-gate-arrow-down-outline",hex:"F0E8A",version:"3.7.94"},{name:"boom-gate-arrow-up",hex:"F0E8C",version:"3.7.94"},{name:"boom-gate-arrow-up-outline",hex:"F0E8D",version:"3.7.94"},{name:"boom-gate-outline",hex:"F0E8B",version:"3.7.94"},{name:"boom-gate-up",hex:"F17F9",version:"6.1.95"},{name:"boom-gate-up-outline",hex:"F17FA",version:"6.1.95"},{name:"boombox",hex:"F05DC",version:"1.5.54"},{name:"boomerang",hex:"F10CF",version:"4.3.95"},{name:"bootstrap",hex:"F06C6",version:"1.8.36"},{name:"border-all",hex:"F00C7",version:"1.5.54"},{name:"border-all-variant",hex:"F08A1",version:"2.2.43"},{name:"border-bottom",hex:"F00C8",version:"1.5.54"},{name:"border-bottom-variant",hex:"F08A2",version:"2.2.43"},{name:"border-color",hex:"F00C9",version:"1.5.54"},{name:"border-horizontal",hex:"F00CA",version:"1.5.54"},{name:"border-inside",hex:"F00CB",version:"1.5.54"},{name:"border-left",hex:"F00CC",version:"1.5.54"},{name:"border-left-variant",hex:"F08A3",version:"2.2.43"},{name:"border-none",hex:"F00CD",version:"1.5.54"},{name:"border-none-variant",hex:"F08A4",version:"2.2.43"},{name:"border-outside",hex:"F00CE",version:"1.5.54"},{name:"border-right",hex:"F00CF",version:"1.5.54"},{name:"border-right-variant",hex:"F08A5",version:"2.2.43"},{name:"border-style",hex:"F00D0",version:"1.5.54"},{name:"border-top",hex:"F00D1",version:"1.5.54"},{name:"border-top-variant",hex:"F08A6",version:"2.2.43"},{name:"border-vertical",hex:"F00D2",version:"1.5.54"},{name:"bottle-soda",hex:"F1070",version:"4.2.95"},{name:"bottle-soda-classic",hex:"F1071",version:"4.2.95"},{name:"bottle-soda-classic-outline",hex:"F1363",version:"4.9.95"},{name:"bottle-soda-outline",hex:"F1072",version:"4.2.95"},{name:"bottle-tonic",hex:"F112E",version:"4.4.95"},{name:"bottle-tonic-outline",hex:"F112F",version:"4.4.95"},{name:"bottle-tonic-plus",hex:"F1130",version:"4.4.95"},{name:"bottle-tonic-plus-outline",hex:"F1131",version:"4.4.95"},{name:"bottle-tonic-skull",hex:"F1132",version:"4.4.95"},{name:"bottle-tonic-skull-outline",hex:"F1133",version:"4.4.95"},{name:"bottle-wine",hex:"F0854",version:"2.1.99"},{name:"bottle-wine-outline",hex:"F1310",version:"4.8.95"},{name:"bow-arrow",hex:"F1841",version:"6.2.95"},{name:"bow-tie",hex:"F0678",version:"1.7.12"},{name:"bowl",hex:"F028E",version:"1.5.54"},{name:"bowl-mix",hex:"F0617",version:"1.6.50"},{name:"bowl-mix-outline",hex:"F02E4",version:"1.5.54"},{name:"bowl-outline",hex:"F02A9",version:"1.5.54"},{name:"bowling",hex:"F00D3",version:"1.5.54"},{name:"box",hex:"F00D4",version:"1.5.54"},{name:"box-cutter",hex:"F00D5",version:"1.5.54"},{name:"box-cutter-off",hex:"F0B4A",version:"2.8.94"},{name:"box-shadow",hex:"F0637",version:"1.6.50"},{name:"boxing-glove",hex:"F0B65",version:"3.0.39"},{name:"braille",hex:"F09D0",version:"2.5.94"},{name:"brain",hex:"F09D1",version:"2.5.94"},{name:"bread-slice",hex:"F0CEE",version:"3.3.92"},{name:"bread-slice-outline",hex:"F0CEF",version:"3.3.92"},{name:"bridge",hex:"F0618",version:"1.6.50"},{name:"briefcase",hex:"F00D6",version:"1.5.54"},{name:"briefcase-account",hex:"F0CF0",version:"3.3.92"},{name:"briefcase-account-outline",hex:"F0CF1",version:"3.3.92"},{name:"briefcase-check",hex:"F00D7",version:"1.5.54"},{name:"briefcase-check-outline",hex:"F131E",version:"4.8.95"},{name:"briefcase-clock",hex:"F10D0",version:"4.3.95"},{name:"briefcase-clock-outline",hex:"F10D1",version:"4.3.95"},{name:"briefcase-download",hex:"F00D8",version:"1.5.54"},{name:"briefcase-download-outline",hex:"F0C3D",version:"3.2.89"},{name:"briefcase-edit",hex:"F0A98",version:"2.7.94"},{name:"briefcase-edit-outline",hex:"F0C3E",version:"3.2.89"},{name:"briefcase-eye",hex:"F17D9",version:"6.1.95"},{name:"briefcase-eye-outline",hex:"F17DA",version:"6.1.95"},{name:"briefcase-minus",hex:"F0A2A",version:"2.6.95"},{name:"briefcase-minus-outline",hex:"F0C3F",version:"3.2.89"},{name:"briefcase-off",hex:"F1658",version:"5.7.55"},{name:"briefcase-off-outline",hex:"F1659",version:"5.7.55"},{name:"briefcase-outline",hex:"F0814",version:"2.1.19"},{name:"briefcase-plus",hex:"F0A2B",version:"2.6.95"},{name:"briefcase-plus-outline",hex:"F0C40",version:"3.2.89"},{name:"briefcase-remove",hex:"F0A2C",version:"2.6.95"},{name:"briefcase-remove-outline",hex:"F0C41",version:"3.2.89"},{name:"briefcase-search",hex:"F0A2D",version:"2.6.95"},{name:"briefcase-search-outline",hex:"F0C42",version:"3.2.89"},{name:"briefcase-upload",hex:"F00D9",version:"1.5.54"},{name:"briefcase-upload-outline",hex:"F0C43",version:"3.2.89"},{name:"briefcase-variant",hex:"F1494",version:"5.3.45"},{name:"briefcase-variant-off",hex:"F165A",version:"5.7.55"},{name:"briefcase-variant-off-outline",hex:"F165B",version:"5.7.55"},{name:"briefcase-variant-outline",hex:"F1495",version:"5.3.45"},{name:"brightness-1",hex:"F00DA",version:"1.5.54"},{name:"brightness-2",hex:"F00DB",version:"1.5.54"},{name:"brightness-3",hex:"F00DC",version:"1.5.54"},{name:"brightness-4",hex:"F00DD",version:"1.5.54"},{name:"brightness-5",hex:"F00DE",version:"1.5.54"},{name:"brightness-6",hex:"F00DF",version:"1.5.54"},{name:"brightness-7",hex:"F00E0",version:"1.5.54"},{name:"brightness-auto",hex:"F00E1",version:"1.5.54"},{name:"brightness-percent",hex:"F0CF2",version:"3.3.92"},{name:"broadcast",hex:"F1720",version:"5.9.55"},{name:"broadcast-off",hex:"F1721",version:"5.9.55"},{name:"broom",hex:"F00E2",version:"1.5.54"},{name:"brush",hex:"F00E3",version:"1.5.54"},{name:"brush-off",hex:"F1771",version:"6.1.95"},{name:"brush-variant",hex:"F1813",version:"6.1.95"},{name:"bucket",hex:"F1415",version:"5.1.45"},{name:"bucket-outline",hex:"F1416",version:"5.1.45"},{name:"buffet",hex:"F0578",version:"1.5.54"},{name:"bug",hex:"F00E4",version:"1.5.54"},{name:"bug-check",hex:"F0A2E",version:"2.6.95"},{name:"bug-check-outline",hex:"F0A2F",version:"2.6.95"},{name:"bug-outline",hex:"F0A30",version:"2.6.95"},{name:"bugle",hex:"F0DB4",version:"3.5.94"},{name:"bulldozer",hex:"F0B22",version:"2.8.94"},{name:"bullet",hex:"F0CF3",version:"3.3.92"},{name:"bulletin-board",hex:"F00E5",version:"1.5.54"},{name:"bullhorn",hex:"F00E6",version:"1.5.54"},{name:"bullhorn-outline",hex:"F0B23",version:"2.8.94"},{name:"bullhorn-variant",hex:"F196E",version:"6.5.95"},{name:"bullhorn-variant-outline",hex:"F196F",version:"6.5.95"},{name:"bullseye",hex:"F05DD",version:"1.5.54"},{name:"bullseye-arrow",hex:"F08C9",version:"2.3.50"},{name:"bulma",hex:"F12E7",version:"4.8.95"},{name:"bunk-bed",hex:"F1302",version:"4.8.95"},{name:"bunk-bed-outline",hex:"F0097",version:"1.5.54"},{name:"bus",hex:"F00E7",version:"1.5.54"},{name:"bus-alert",hex:"F0A99",version:"2.7.94"},{name:"bus-articulated-end",hex:"F079C",version:"2.0.46"},{name:"bus-articulated-front",hex:"F079D",version:"2.0.46"},{name:"bus-clock",hex:"F08CA",version:"2.3.50"},{name:"bus-double-decker",hex:"F079E",version:"2.0.46"},{name:"bus-electric",hex:"F191D",version:"6.4.95"},{name:"bus-marker",hex:"F1212",version:"4.6.95"},{name:"bus-multiple",hex:"F0F3F",version:"3.9.97"},{name:"bus-school",hex:"F079F",version:"2.0.46"},{name:"bus-side",hex:"F07A0",version:"2.0.46"},{name:"bus-stop",hex:"F1012",version:"4.1.95"},{name:"bus-stop-covered",hex:"F1013",version:"4.1.95"},{name:"bus-stop-uncovered",hex:"F1014",version:"4.1.95"},{name:"butterfly",hex:"F1589",version:"5.5.55"},{name:"butterfly-outline",hex:"F158A",version:"5.5.55"},{name:"cabin-a-frame",hex:"F188C",version:"6.2.95"},{name:"cable-data",hex:"F1394",version:"5.0.45"},{name:"cached",hex:"F00E8",version:"1.5.54"},{name:"cactus",hex:"F0DB5",version:"3.5.94"},{name:"cake",hex:"F00E9",version:"1.5.54"},{name:"cake-layered",hex:"F00EA",version:"1.5.54"},{name:"cake-variant",hex:"F00EB",version:"1.5.54"},{name:"cake-variant-outline",hex:"F17F0",version:"6.1.95"},{name:"calculator",hex:"F00EC",version:"1.5.54"},{name:"calculator-variant",hex:"F0A9A",version:"2.7.94"},{name:"calculator-variant-outline",hex:"F15A6",version:"5.5.55"},{name:"calendar",hex:"F00ED",version:"1.5.54"},{name:"calendar-account",hex:"F0ED7",version:"3.8.95"},{name:"calendar-account-outline",hex:"F0ED8",version:"3.8.95"},{name:"calendar-alert",hex:"F0A31",version:"2.6.95"},{name:"calendar-arrow-left",hex:"F1134",version:"4.4.95"},{name:"calendar-arrow-right",hex:"F1135",version:"4.4.95"},{name:"calendar-blank",hex:"F00EE",version:"1.5.54"},{name:"calendar-blank-multiple",hex:"F1073",version:"4.2.95"},{name:"calendar-blank-outline",hex:"F0B66",version:"3.0.39"},{name:"calendar-check",hex:"F00EF",version:"1.5.54"},{name:"calendar-check-outline",hex:"F0C44",version:"3.2.89"},{name:"calendar-clock",hex:"F00F0",version:"1.5.54"},{name:"calendar-clock-outline",hex:"F16E1",version:"5.9.55"},{name:"calendar-collapse-horizontal",hex:"F189D",version:"6.3.95"},{name:"calendar-cursor",hex:"F157B",version:"5.5.55"},{name:"calendar-edit",hex:"F08A7",version:"2.2.43"},{name:"calendar-end",hex:"F166C",version:"5.7.55"},{name:"calendar-expand-horizontal",hex:"F189E",version:"6.3.95"},{name:"calendar-export",hex:"F0B24",version:"2.8.94"},{name:"calendar-heart",hex:"F09D2",version:"2.5.94"},{name:"calendar-import",hex:"F0B25",version:"2.8.94"},{name:"calendar-lock",hex:"F1641",version:"5.7.55"},{name:"calendar-lock-outline",hex:"F1642",version:"5.7.55"},{name:"calendar-minus",hex:"F0D5C",version:"3.4.93"},{name:"calendar-month",hex:"F0E17",version:"3.6.95"},{name:"calendar-month-outline",hex:"F0E18",version:"3.6.95"},{name:"calendar-multiple",hex:"F00F1",version:"1.5.54"},{name:"calendar-multiple-check",hex:"F00F2",version:"1.5.54"},{name:"calendar-multiselect",hex:"F0A32",version:"2.6.95"},{name:"calendar-outline",hex:"F0B67",version:"3.0.39"},{name:"calendar-plus",hex:"F00F3",version:"1.5.54"},{name:"calendar-question",hex:"F0692",version:"1.7.12"},{name:"calendar-range",hex:"F0679",version:"1.7.12"},{name:"calendar-range-outline",hex:"F0B68",version:"3.0.39"},{name:"calendar-refresh",hex:"F01E1",version:"1.5.54"},{name:"calendar-refresh-outline",hex:"F0203",version:"1.5.54"},{name:"calendar-remove",hex:"F00F4",version:"1.5.54"},{name:"calendar-remove-outline",hex:"F0C45",version:"3.2.89"},{name:"calendar-search",hex:"F094C",version:"2.4.85"},{name:"calendar-star",hex:"F09D3",version:"2.5.94"},{name:"calendar-start",hex:"F166D",version:"5.7.55"},{name:"calendar-sync",hex:"F0E8E",version:"3.7.94"},{name:"calendar-sync-outline",hex:"F0E8F",version:"3.7.94"},{name:"calendar-text",hex:"F00F5",version:"1.5.54"},{name:"calendar-text-outline",hex:"F0C46",version:"3.2.89"},{name:"calendar-today",hex:"F00F6",version:"1.5.54"},{name:"calendar-week",hex:"F0A33",version:"2.6.95"},{name:"calendar-week-begin",hex:"F0A34",version:"2.6.95"},{name:"calendar-weekend",hex:"F0ED9",version:"3.8.95"},{name:"calendar-weekend-outline",hex:"F0EDA",version:"3.8.95"},{name:"call-made",hex:"F00F7",version:"1.5.54"},{name:"call-merge",hex:"F00F8",version:"1.5.54"},{name:"call-missed",hex:"F00F9",version:"1.5.54"},{name:"call-received",hex:"F00FA",version:"1.5.54"},{name:"call-split",hex:"F00FB",version:"1.5.54"},{name:"camcorder",hex:"F00FC",version:"1.5.54"},{name:"camcorder-off",hex:"F00FF",version:"1.5.54"},{name:"camera",hex:"F0100",version:"1.5.54"},{name:"camera-account",hex:"F08CB",version:"2.3.50"},{name:"camera-burst",hex:"F0693",version:"1.7.12"},{name:"camera-control",hex:"F0B69",version:"3.0.39"},{name:"camera-document",hex:"F1871",version:"6.2.95"},{name:"camera-document-off",hex:"F1872",version:"6.2.95"},{name:"camera-enhance",hex:"F0101",version:"1.5.54"},{name:"camera-enhance-outline",hex:"F0B6A",version:"3.0.39"},{name:"camera-flip",hex:"F15D9",version:"5.6.55"},{name:"camera-flip-outline",hex:"F15DA",version:"5.6.55"},{name:"camera-front",hex:"F0102",version:"1.5.54"},{name:"camera-front-variant",hex:"F0103",version:"1.5.54"},{name:"camera-gopro",hex:"F07A1",version:"2.0.46"},{name:"camera-image",hex:"F08CC",version:"2.3.50"},{name:"camera-iris",hex:"F0104",version:"1.5.54"},{name:"camera-marker",hex:"F19A7",version:"6.5.95"},{name:"camera-marker-outline",hex:"F19A8",version:"6.5.95"},{name:"camera-metering-center",hex:"F07A2",version:"2.0.46"},{name:"camera-metering-matrix",hex:"F07A3",version:"2.0.46"},{name:"camera-metering-partial",hex:"F07A4",version:"2.0.46"},{name:"camera-metering-spot",hex:"F07A5",version:"2.0.46"},{name:"camera-off",hex:"F05DF",version:"1.5.54"},{name:"camera-off-outline",hex:"F19BF",version:"6.5.95"},{name:"camera-outline",hex:"F0D5D",version:"3.4.93"},{name:"camera-party-mode",hex:"F0105",version:"1.5.54"},{name:"camera-plus",hex:"F0EDB",version:"3.8.95"},{name:"camera-plus-outline",hex:"F0EDC",version:"3.8.95"},{name:"camera-rear",hex:"F0106",version:"1.5.54"},{name:"camera-rear-variant",hex:"F0107",version:"1.5.54"},{name:"camera-retake",hex:"F0E19",version:"3.6.95"},{name:"camera-retake-outline",hex:"F0E1A",version:"3.6.95"},{name:"camera-switch",hex:"F0108",version:"1.5.54"},{name:"camera-switch-outline",hex:"F084A",version:"2.1.99"},{name:"camera-timer",hex:"F0109",version:"1.5.54"},{name:"camera-wireless",hex:"F0DB6",version:"3.5.94"},{name:"camera-wireless-outline",hex:"F0DB7",version:"3.5.94"},{name:"campfire",hex:"F0EDD",version:"3.8.95"},{name:"cancel",hex:"F073A",version:"1.9.32"},{name:"candelabra",hex:"F17D2",version:"6.1.95"},{name:"candelabra-fire",hex:"F17D3",version:"6.1.95"},{name:"candle",hex:"F05E2",version:"1.5.54"},{name:"candy",hex:"F1970",version:"6.5.95"},{name:"candy-off",hex:"F1971",version:"6.5.95"},{name:"candy-off-outline",hex:"F1972",version:"6.5.95"},{name:"candy-outline",hex:"F1973",version:"6.5.95"},{name:"candycane",hex:"F010A",version:"1.5.54"},{name:"cannabis",hex:"F07A6",version:"2.0.46"},{name:"cannabis-off",hex:"F166E",version:"5.7.55"},{name:"caps-lock",hex:"F0A9B",version:"2.7.94"},{name:"car",hex:"F010B",version:"1.5.54"},{name:"car-2-plus",hex:"F1015",version:"4.1.95"},{name:"car-3-plus",hex:"F1016",version:"4.1.95"},{name:"car-arrow-left",hex:"F13B2",version:"5.0.45"},{name:"car-arrow-right",hex:"F13B3",version:"5.0.45"},{name:"car-back",hex:"F0E1B",version:"3.6.95"},{name:"car-battery",hex:"F010C",version:"1.5.54"},{name:"car-brake-abs",hex:"F0C47",version:"3.2.89"},{name:"car-brake-alert",hex:"F0C48",version:"3.2.89"},{name:"car-brake-fluid-level",hex:"F1909",version:"6.4.95"},{name:"car-brake-hold",hex:"F0D5E",version:"3.4.93"},{name:"car-brake-low-pressure",hex:"F190A",version:"6.4.95"},{name:"car-brake-parking",hex:"F0D5F",version:"3.4.93"},{name:"car-brake-retarder",hex:"F1017",version:"4.1.95"},{name:"car-brake-temperature",hex:"F190B",version:"6.4.95"},{name:"car-brake-worn-linings",hex:"F190C",version:"6.4.95"},{name:"car-child-seat",hex:"F0FA3",version:"4.0.96"},{name:"car-clock",hex:"F1974",version:"6.5.95"},{name:"car-clutch",hex:"F1018",version:"4.1.95"},{name:"car-cog",hex:"F13CC",version:"5.1.45"},{name:"car-connected",hex:"F010D",version:"1.5.54"},{name:"car-convertible",hex:"F07A7",version:"2.0.46"},{name:"car-coolant-level",hex:"F1019",version:"4.1.95"},{name:"car-cruise-control",hex:"F0D60",version:"3.4.93"},{name:"car-defrost-front",hex:"F0D61",version:"3.4.93"},{name:"car-defrost-rear",hex:"F0D62",version:"3.4.93"},{name:"car-door",hex:"F0B6B",version:"3.0.39"},{name:"car-door-lock",hex:"F109D",version:"4.2.95"},{name:"car-electric",hex:"F0B6C",version:"3.0.39"},{name:"car-electric-outline",hex:"F15B5",version:"5.6.55"},{name:"car-emergency",hex:"F160F",version:"5.6.55"},{name:"car-esp",hex:"F0C49",version:"3.2.89"},{name:"car-estate",hex:"F07A8",version:"2.0.46"},{name:"car-hatchback",hex:"F07A9",version:"2.0.46"},{name:"car-info",hex:"F11BE",version:"4.5.95"},{name:"car-key",hex:"F0B6D",version:"3.0.39"},{name:"car-lifted-pickup",hex:"F152D",version:"5.4.55"},{name:"car-light-alert",hex:"F190D",version:"6.4.95"},{name:"car-light-dimmed",hex:"F0C4A",version:"3.2.89"},{name:"car-light-fog",hex:"F0C4B",version:"3.2.89"},{name:"car-light-high",hex:"F0C4C",version:"3.2.89"},{name:"car-limousine",hex:"F08CD",version:"2.3.50"},{name:"car-multiple",hex:"F0B6E",version:"3.0.39"},{name:"car-off",hex:"F0E1C",version:"3.6.95"},{name:"car-outline",hex:"F14ED",version:"5.4.55"},{name:"car-parking-lights",hex:"F0D63",version:"3.4.93"},{name:"car-pickup",hex:"F07AA",version:"2.0.46"},{name:"car-seat",hex:"F0FA4",version:"4.0.96"},{name:"car-seat-cooler",hex:"F0FA5",version:"4.0.96"},{name:"car-seat-heater",hex:"F0FA6",version:"4.0.96"},{name:"car-select",hex:"F1879",version:"6.2.95"},{name:"car-settings",hex:"F13CD",version:"5.1.45"},{name:"car-shift-pattern",hex:"F0F40",version:"3.9.97"},{name:"car-side",hex:"F07AB",version:"2.0.46"},{name:"car-speed-limiter",hex:"F190E",version:"6.4.95"},{name:"car-sports",hex:"F07AC",version:"2.0.46"},{name:"car-tire-alert",hex:"F0C4D",version:"3.2.89"},{name:"car-traction-control",hex:"F0D64",version:"3.4.93"},{name:"car-turbocharger",hex:"F101A",version:"4.1.95"},{name:"car-wash",hex:"F010E",version:"1.5.54"},{name:"car-windshield",hex:"F101B",version:"4.1.95"},{name:"car-windshield-outline",hex:"F101C",version:"4.1.95"},{name:"car-wireless",hex:"F1878",version:"6.2.95"},{name:"car-wrench",hex:"F1814",version:"6.1.95"},{name:"carabiner",hex:"F14C0",version:"5.3.45"},{name:"caravan",hex:"F07AD",version:"2.0.46"},{name:"card",hex:"F0B6F",version:"3.0.39"},{name:"card-account-details",hex:"F05D2",version:"1.5.54"},{name:"card-account-details-outline",hex:"F0DAB",version:"3.5.94"},{name:"card-account-details-star",hex:"F02A3",version:"1.5.54"},{name:"card-account-details-star-outline",hex:"F06DB",version:"1.8.36"},{name:"card-account-mail",hex:"F018E",version:"1.5.54"},{name:"card-account-mail-outline",hex:"F0E98",version:"3.7.94"},{name:"card-account-phone",hex:"F0E99",version:"3.7.94"},{name:"card-account-phone-outline",hex:"F0E9A",version:"3.7.94"},{name:"card-bulleted",hex:"F0B70",version:"3.0.39"},{name:"card-bulleted-off",hex:"F0B71",version:"3.0.39"},{name:"card-bulleted-off-outline",hex:"F0B72",version:"3.0.39"},{name:"card-bulleted-outline",hex:"F0B73",version:"3.0.39"},{name:"card-bulleted-settings",hex:"F0B74",version:"3.0.39"},{name:"card-bulleted-settings-outline",hex:"F0B75",version:"3.0.39"},{name:"card-minus",hex:"F1600",version:"5.6.55"},{name:"card-minus-outline",hex:"F1601",version:"5.6.55"},{name:"card-multiple",hex:"F17F1",version:"6.1.95"},{name:"card-multiple-outline",hex:"F17F2",version:"6.1.95"},{name:"card-off",hex:"F1602",version:"5.6.55"},{name:"card-off-outline",hex:"F1603",version:"5.6.55"},{name:"card-outline",hex:"F0B76",version:"3.0.39"},{name:"card-plus",hex:"F11FF",version:"4.6.95"},{name:"card-plus-outline",hex:"F1200",version:"4.6.95"},{name:"card-remove",hex:"F1604",version:"5.6.55"},{name:"card-remove-outline",hex:"F1605",version:"5.6.55"},{name:"card-search",hex:"F1074",version:"4.2.95"},{name:"card-search-outline",hex:"F1075",version:"4.2.95"},{name:"card-text",hex:"F0B77",version:"3.0.39"},{name:"card-text-outline",hex:"F0B78",version:"3.0.39"},{name:"cards",hex:"F0638",version:"1.6.50"},{name:"cards-club",hex:"F08CE",version:"2.3.50"},{name:"cards-club-outline",hex:"F189F",version:"6.3.95"},{name:"cards-diamond",hex:"F08CF",version:"2.3.50"},{name:"cards-diamond-outline",hex:"F101D",version:"4.1.95"},{name:"cards-heart",hex:"F08D0",version:"2.3.50"},{name:"cards-heart-outline",hex:"F18A0",version:"6.3.95"},{name:"cards-outline",hex:"F0639",version:"1.6.50"},{name:"cards-playing",hex:"F18A1",version:"6.3.95"},{name:"cards-playing-club",hex:"F18A2",version:"6.3.95"},{name:"cards-playing-club-multiple",hex:"F18A3",version:"6.3.95"},{name:"cards-playing-club-multiple-outline",hex:"F18A4",version:"6.3.95"},{name:"cards-playing-club-outline",hex:"F18A5",version:"6.3.95"},{name:"cards-playing-diamond",hex:"F18A6",version:"6.3.95"},{name:"cards-playing-diamond-multiple",hex:"F18A7",version:"6.3.95"},{name:"cards-playing-diamond-multiple-outline",hex:"F18A8",version:"6.3.95"},{name:"cards-playing-diamond-outline",hex:"F18A9",version:"6.3.95"},{name:"cards-playing-heart",hex:"F18AA",version:"6.3.95"},{name:"cards-playing-heart-multiple",hex:"F18AB",version:"6.3.95"},{name:"cards-playing-heart-multiple-outline",hex:"F18AC",version:"6.3.95"},{name:"cards-playing-heart-outline",hex:"F18AD",version:"6.3.95"},{name:"cards-playing-outline",hex:"F063A",version:"1.6.50"},{name:"cards-playing-spade",hex:"F18AE",version:"6.3.95"},{name:"cards-playing-spade-multiple",hex:"F18AF",version:"6.3.95"},{name:"cards-playing-spade-multiple-outline",hex:"F18B0",version:"6.3.95"},{name:"cards-playing-spade-outline",hex:"F18B1",version:"6.3.95"},{name:"cards-spade",hex:"F08D1",version:"2.3.50"},{name:"cards-spade-outline",hex:"F18B2",version:"6.3.95"},{name:"cards-variant",hex:"F06C7",version:"1.8.36"},{name:"carrot",hex:"F010F",version:"1.5.54"},{name:"cart",hex:"F0110",version:"1.5.54"},{name:"cart-arrow-down",hex:"F0D66",version:"3.4.93"},{name:"cart-arrow-right",hex:"F0C4E",version:"3.2.89"},{name:"cart-arrow-up",hex:"F0D67",version:"3.4.93"},{name:"cart-check",hex:"F15EA",version:"5.6.55"},{name:"cart-heart",hex:"F18E0",version:"6.3.95"},{name:"cart-minus",hex:"F0D68",version:"3.4.93"},{name:"cart-off",hex:"F066B",version:"1.6.50"},{name:"cart-outline",hex:"F0111",version:"1.5.54"},{name:"cart-plus",hex:"F0112",version:"1.5.54"},{name:"cart-remove",hex:"F0D69",version:"3.4.93"},{name:"cart-variant",hex:"F15EB",version:"5.6.55"},{name:"case-sensitive-alt",hex:"F0113",version:"1.5.54"},{name:"cash",hex:"F0114",version:"1.5.54"},{name:"cash-100",hex:"F0115",version:"1.5.54"},{name:"cash-check",hex:"F14EE",version:"5.4.55"},{name:"cash-fast",hex:"F185C",version:"6.2.95"},{name:"cash-lock",hex:"F14EA",version:"5.4.55"},{name:"cash-lock-open",hex:"F14EB",version:"5.4.55"},{name:"cash-marker",hex:"F0DB8",version:"3.5.94"},{name:"cash-minus",hex:"F1260",version:"4.7.95"},{name:"cash-multiple",hex:"F0116",version:"1.5.54"},{name:"cash-plus",hex:"F1261",version:"4.7.95"},{name:"cash-refund",hex:"F0A9C",version:"2.7.94"},{name:"cash-register",hex:"F0CF4",version:"3.3.92"},{name:"cash-remove",hex:"F1262",version:"4.7.95"},{name:"cassette",hex:"F09D4",version:"2.5.94"},{name:"cast",hex:"F0118",version:"1.5.54"},{name:"cast-audio",hex:"F101E",version:"4.1.95"},{name:"cast-audio-variant",hex:"F1749",version:"6.1.95"},{name:"cast-connected",hex:"F0119",version:"1.5.54"},{name:"cast-education",hex:"F0E1D",version:"3.6.95"},{name:"cast-off",hex:"F078A",version:"1.9.32"},{name:"cast-variant",hex:"F001F",version:"1.5.54"},{name:"castle",hex:"F011A",version:"1.5.54"},{name:"cat",hex:"F011B",version:"1.5.54"},{name:"cctv",hex:"F07AE",version:"2.0.46"},{name:"cctv-off",hex:"F185F",version:"6.2.95"},{name:"ceiling-fan",hex:"F1797",version:"6.1.95"},{name:"ceiling-fan-light",hex:"F1798",version:"6.1.95"},{name:"ceiling-light",hex:"F0769",version:"1.9.32"},{name:"ceiling-light-multiple",hex:"F18DD",version:"6.3.95"},{name:"ceiling-light-multiple-outline",hex:"F18DE",version:"6.3.95"},{name:"ceiling-light-outline",hex:"F17C7",version:"6.1.95"},{name:"cellphone",hex:"F011C",version:"1.5.54"},{name:"cellphone-arrow-down",hex:"F09D5",version:"2.5.94"},{name:"cellphone-basic",hex:"F011E",version:"1.5.54"},{name:"cellphone-charging",hex:"F1397",version:"5.0.45"},{name:"cellphone-check",hex:"F17FD",version:"6.1.95"},{name:"cellphone-cog",hex:"F0951",version:"2.4.85"},{name:"cellphone-dock",hex:"F011F",version:"1.5.54"},{name:"cellphone-information",hex:"F0F41",version:"3.9.97"},{name:"cellphone-key",hex:"F094E",version:"2.4.85"},{name:"cellphone-link",hex:"F0121",version:"1.5.54"},{name:"cellphone-link-off",hex:"F0122",version:"1.5.54"},{name:"cellphone-lock",hex:"F094F",version:"2.4.85"},{name:"cellphone-marker",hex:"F183A",version:"6.2.95"},{name:"cellphone-message",hex:"F08D3",version:"2.3.50"},{name:"cellphone-message-off",hex:"F10D2",version:"4.3.95"},{name:"cellphone-nfc",hex:"F0E90",version:"3.7.94"},{name:"cellphone-nfc-off",hex:"F12D8",version:"4.8.95"},{name:"cellphone-off",hex:"F0950",version:"2.4.85"},{name:"cellphone-play",hex:"F101F",version:"4.1.95"},{name:"cellphone-remove",hex:"F094D",version:"2.4.85"},{name:"cellphone-screenshot",hex:"F0A35",version:"2.6.95"},{name:"cellphone-settings",hex:"F0123",version:"1.5.54"},{name:"cellphone-sound",hex:"F0952",version:"2.4.85"},{name:"cellphone-text",hex:"F08D2",version:"2.3.50"},{name:"cellphone-wireless",hex:"F0815",version:"2.1.19"},{name:"centos",hex:"F111A",version:"4.3.95"},{name:"certificate",hex:"F0124",version:"1.5.54"},{name:"certificate-outline",hex:"F1188",version:"4.4.95"},{name:"chair-rolling",hex:"F0F48",version:"3.9.97"},{name:"chair-school",hex:"F0125",version:"1.5.54"},{name:"chandelier",hex:"F1793",version:"6.1.95"},{name:"charity",hex:"F0C4F",version:"3.2.89"},{name:"chart-arc",hex:"F0126",version:"1.5.54"},{name:"chart-areaspline",hex:"F0127",version:"1.5.54"},{name:"chart-areaspline-variant",hex:"F0E91",version:"3.7.94"},{name:"chart-bar",hex:"F0128",version:"1.5.54"},{name:"chart-bar-stacked",hex:"F076A",version:"1.9.32"},{name:"chart-bell-curve",hex:"F0C50",version:"3.2.89"},{name:"chart-bell-curve-cumulative",hex:"F0FA7",version:"4.0.96"},{name:"chart-box",hex:"F154D",version:"5.4.55"},{name:"chart-box-outline",hex:"F154E",version:"5.4.55"},{name:"chart-box-plus-outline",hex:"F154F",version:"5.4.55"},{name:"chart-bubble",hex:"F05E3",version:"1.5.54"},{name:"chart-donut",hex:"F07AF",version:"2.0.46"},{name:"chart-donut-variant",hex:"F07B0",version:"2.0.46"},{name:"chart-gantt",hex:"F066C",version:"1.6.50"},{name:"chart-histogram",hex:"F0129",version:"1.5.54"},{name:"chart-line",hex:"F012A",version:"1.5.54"},{name:"chart-line-stacked",hex:"F076B",version:"1.9.32"},{name:"chart-line-variant",hex:"F07B1",version:"2.0.46"},{name:"chart-multiline",hex:"F08D4",version:"2.3.50"},{name:"chart-multiple",hex:"F1213",version:"4.6.95"},{name:"chart-pie",hex:"F012B",version:"1.5.54"},{name:"chart-ppf",hex:"F1380",version:"4.9.95"},{name:"chart-sankey",hex:"F11DF",version:"4.5.95"},{name:"chart-sankey-variant",hex:"F11E0",version:"4.5.95"},{name:"chart-scatter-plot",hex:"F0E92",version:"3.7.94"},{name:"chart-scatter-plot-hexbin",hex:"F066D",version:"1.6.50"},{name:"chart-timeline",hex:"F066E",version:"1.6.50"},{name:"chart-timeline-variant",hex:"F0E93",version:"3.7.94"},{name:"chart-timeline-variant-shimmer",hex:"F15B6",version:"5.6.55"},{name:"chart-tree",hex:"F0E94",version:"3.7.94"},{name:"chart-waterfall",hex:"F1918",version:"6.4.95"},{name:"chat",hex:"F0B79",version:"3.0.39"},{name:"chat-alert",hex:"F0B7A",version:"3.0.39"},{name:"chat-alert-outline",hex:"F12C9",version:"4.8.95"},{name:"chat-minus",hex:"F1410",version:"5.1.45"},{name:"chat-minus-outline",hex:"F1413",version:"5.1.45"},{name:"chat-outline",hex:"F0EDE",version:"3.8.95"},{name:"chat-plus",hex:"F140F",version:"5.1.45"},{name:"chat-plus-outline",hex:"F1412",version:"5.1.45"},{name:"chat-processing",hex:"F0B7B",version:"3.0.39"},{name:"chat-processing-outline",hex:"F12CA",version:"4.8.95"},{name:"chat-question",hex:"F1738",version:"5.9.55"},{name:"chat-question-outline",hex:"F1739",version:"5.9.55"},{name:"chat-remove",hex:"F1411",version:"5.1.45"},{name:"chat-remove-outline",hex:"F1414",version:"5.1.45"},{name:"chat-sleep",hex:"F12D1",version:"4.8.95"},{name:"chat-sleep-outline",hex:"F12D2",version:"4.8.95"},{name:"check",hex:"F012C",version:"1.5.54"},{name:"check-all",hex:"F012D",version:"1.5.54"},{name:"check-bold",hex:"F0E1E",version:"3.6.95"},{name:"check-circle",hex:"F05E0",version:"1.5.54"},{name:"check-circle-outline",hex:"F05E1",version:"1.5.54"},{name:"check-decagram",hex:"F0791",version:"2.0.46"},{name:"check-decagram-outline",hex:"F1740",version:"5.9.55"},{name:"check-network",hex:"F0C53",version:"3.2.89"},{name:"check-network-outline",hex:"F0C54",version:"3.2.89"},{name:"check-outline",hex:"F0855",version:"2.1.99"},{name:"check-underline",hex:"F0E1F",version:"3.6.95"},{name:"check-underline-circle",hex:"F0E20",version:"3.6.95"},{name:"check-underline-circle-outline",hex:"F0E21",version:"3.6.95"},{name:"checkbook",hex:"F0A9D",version:"2.7.94"},{name:"checkbox-blank",hex:"F012E",version:"1.5.54"},{name:"checkbox-blank-badge",hex:"F1176",version:"4.4.95"},{name:"checkbox-blank-badge-outline",hex:"F0117",version:"1.5.54"},{name:"checkbox-blank-circle",hex:"F012F",version:"1.5.54"},{name:"checkbox-blank-circle-outline",hex:"F0130",version:"1.5.54"},{name:"checkbox-blank-off",hex:"F12EC",version:"4.8.95"},{name:"checkbox-blank-off-outline",hex:"F12ED",version:"4.8.95"},{name:"checkbox-blank-outline",hex:"F0131",version:"1.5.54"},{name:"checkbox-intermediate",hex:"F0856",version:"2.1.99"},{name:"checkbox-marked",hex:"F0132",version:"1.5.54"},{name:"checkbox-marked-circle",hex:"F0133",version:"1.5.54"},{name:"checkbox-marked-circle-outline",hex:"F0134",version:"1.5.54"},{name:"checkbox-marked-circle-plus-outline",hex:"F1927",version:"6.4.95"},{name:"checkbox-marked-outline",hex:"F0135",version:"1.5.54"},{name:"checkbox-multiple-blank",hex:"F0136",version:"1.5.54"},{name:"checkbox-multiple-blank-circle",hex:"F063B",version:"1.6.50"},{name:"checkbox-multiple-blank-circle-outline",hex:"F063C",version:"1.6.50"},{name:"checkbox-multiple-blank-outline",hex:"F0137",version:"1.5.54"},{name:"checkbox-multiple-marked",hex:"F0138",version:"1.5.54"},{name:"checkbox-multiple-marked-circle",hex:"F063D",version:"1.6.50"},{name:"checkbox-multiple-marked-circle-outline",hex:"F063E",version:"1.6.50"},{name:"checkbox-multiple-marked-outline",hex:"F0139",version:"1.5.54"},{name:"checkbox-multiple-outline",hex:"F0C51",version:"3.2.89"},{name:"checkbox-outline",hex:"F0C52",version:"3.2.89"},{name:"checkerboard",hex:"F013A",version:"1.5.54"},{name:"checkerboard-minus",hex:"F1202",version:"4.6.95"},{name:"checkerboard-plus",hex:"F1201",version:"4.6.95"},{name:"checkerboard-remove",hex:"F1203",version:"4.6.95"},{name:"cheese",hex:"F12B9",version:"4.7.95"},{name:"cheese-off",hex:"F13EE",version:"5.1.45"},{name:"chef-hat",hex:"F0B7C",version:"3.0.39"},{name:"chemical-weapon",hex:"F013B",version:"1.5.54"},{name:"chess-bishop",hex:"F085C",version:"2.1.99"},{name:"chess-king",hex:"F0857",version:"2.1.99"},{name:"chess-knight",hex:"F0858",version:"2.1.99"},{name:"chess-pawn",hex:"F0859",version:"2.1.99"},{name:"chess-queen",hex:"F085A",version:"2.1.99"},{name:"chess-rook",hex:"F085B",version:"2.1.99"},{name:"chevron-double-down",hex:"F013C",version:"1.5.54"},{name:"chevron-double-left",hex:"F013D",version:"1.5.54"},{name:"chevron-double-right",hex:"F013E",version:"1.5.54"},{name:"chevron-double-up",hex:"F013F",version:"1.5.54"},{name:"chevron-down",hex:"F0140",version:"1.5.54"},{name:"chevron-down-box",hex:"F09D6",version:"2.5.94"},{name:"chevron-down-box-outline",hex:"F09D7",version:"2.5.94"},{name:"chevron-down-circle",hex:"F0B26",version:"2.8.94"},{name:"chevron-down-circle-outline",hex:"F0B27",version:"2.8.94"},{name:"chevron-left",hex:"F0141",version:"1.5.54"},{name:"chevron-left-box",hex:"F09D8",version:"2.5.94"},{name:"chevron-left-box-outline",hex:"F09D9",version:"2.5.94"},{name:"chevron-left-circle",hex:"F0B28",version:"2.8.94"},{name:"chevron-left-circle-outline",hex:"F0B29",version:"2.8.94"},{name:"chevron-right",hex:"F0142",version:"1.5.54"},{name:"chevron-right-box",hex:"F09DA",version:"2.5.94"},{name:"chevron-right-box-outline",hex:"F09DB",version:"2.5.94"},{name:"chevron-right-circle",hex:"F0B2A",version:"2.8.94"},{name:"chevron-right-circle-outline",hex:"F0B2B",version:"2.8.94"},{name:"chevron-triple-down",hex:"F0DB9",version:"3.5.94"},{name:"chevron-triple-left",hex:"F0DBA",version:"3.5.94"},{name:"chevron-triple-right",hex:"F0DBB",version:"3.5.94"},{name:"chevron-triple-up",hex:"F0DBC",version:"3.5.94"},{name:"chevron-up",hex:"F0143",version:"1.5.54"},{name:"chevron-up-box",hex:"F09DC",version:"2.5.94"},{name:"chevron-up-box-outline",hex:"F09DD",version:"2.5.94"},{name:"chevron-up-circle",hex:"F0B2C",version:"2.8.94"},{name:"chevron-up-circle-outline",hex:"F0B2D",version:"2.8.94"},{name:"chili-alert",hex:"F17EA",version:"6.1.95"},{name:"chili-alert-outline",hex:"F17EB",version:"6.1.95"},{name:"chili-hot",hex:"F07B2",version:"2.0.46"},{name:"chili-hot-outline",hex:"F17EC",version:"6.1.95"},{name:"chili-medium",hex:"F07B3",version:"2.0.46"},{name:"chili-medium-outline",hex:"F17ED",version:"6.1.95"},{name:"chili-mild",hex:"F07B4",version:"2.0.46"},{name:"chili-mild-outline",hex:"F17EE",version:"6.1.95"},{name:"chili-off",hex:"F1467",version:"5.2.45"},{name:"chili-off-outline",hex:"F17EF",version:"6.1.95"},{name:"chip",hex:"F061A",version:"1.6.50"},{name:"church",hex:"F0144",version:"1.5.54"},{name:"cigar",hex:"F1189",version:"4.4.95"},{name:"cigar-off",hex:"F141B",version:"5.2.45"},{name:"circle",hex:"F0765",version:"1.9.32"},{name:"circle-box",hex:"F15DC",version:"5.6.55"},{name:"circle-box-outline",hex:"F15DD",version:"5.6.55"},{name:"circle-double",hex:"F0E95",version:"3.7.94"},{name:"circle-edit-outline",hex:"F08D5",version:"2.3.50"},{name:"circle-expand",hex:"F0E96",version:"3.7.94"},{name:"circle-half",hex:"F1395",version:"5.0.45"},{name:"circle-half-full",hex:"F1396",version:"5.0.45"},{name:"circle-medium",hex:"F09DE",version:"2.5.94"},{name:"circle-multiple",hex:"F0B38",version:"2.8.94"},{name:"circle-multiple-outline",hex:"F0695",version:"1.7.12"},{name:"circle-off-outline",hex:"F10D3",version:"4.3.95"},{name:"circle-opacity",hex:"F1853",version:"6.2.95"},{name:"circle-outline",hex:"F0766",version:"1.9.32"},{name:"circle-slice-1",hex:"F0A9E",version:"2.7.94"},{name:"circle-slice-2",hex:"F0A9F",version:"2.7.94"},{name:"circle-slice-3",hex:"F0AA0",version:"2.7.94"},{name:"circle-slice-4",hex:"F0AA1",version:"2.7.94"},{name:"circle-slice-5",hex:"F0AA2",version:"2.7.94"},{name:"circle-slice-6",hex:"F0AA3",version:"2.7.94"},{name:"circle-slice-7",hex:"F0AA4",version:"2.7.94"},{name:"circle-slice-8",hex:"F0AA5",version:"2.7.94"},{name:"circle-small",hex:"F09DF",version:"2.5.94"},{name:"circular-saw",hex:"F0E22",version:"3.6.95"},{name:"city",hex:"F0146",version:"1.5.54"},{name:"city-variant",hex:"F0A36",version:"2.6.95"},{name:"city-variant-outline",hex:"F0A37",version:"2.6.95"},{name:"clipboard",hex:"F0147",version:"1.5.54"},{name:"clipboard-account",hex:"F0148",version:"1.5.54"},{name:"clipboard-account-outline",hex:"F0C55",version:"3.2.89"},{name:"clipboard-alert",hex:"F0149",version:"1.5.54"},{name:"clipboard-alert-outline",hex:"F0CF7",version:"3.3.92"},{name:"clipboard-arrow-down",hex:"F014A",version:"1.5.54"},{name:"clipboard-arrow-down-outline",hex:"F0C56",version:"3.2.89"},{name:"clipboard-arrow-left",hex:"F014B",version:"1.5.54"},{name:"clipboard-arrow-left-outline",hex:"F0CF8",version:"3.3.92"},{name:"clipboard-arrow-right",hex:"F0CF9",version:"3.3.92"},{name:"clipboard-arrow-right-outline",hex:"F0CFA",version:"3.3.92"},{name:"clipboard-arrow-up",hex:"F0C57",version:"3.2.89"},{name:"clipboard-arrow-up-outline",hex:"F0C58",version:"3.2.89"},{name:"clipboard-check",hex:"F014E",version:"1.5.54"},{name:"clipboard-check-multiple",hex:"F1263",version:"4.7.95"},{name:"clipboard-check-multiple-outline",hex:"F1264",version:"4.7.95"},{name:"clipboard-check-outline",hex:"F08A8",version:"2.2.43"},{name:"clipboard-clock",hex:"F16E2",version:"5.9.55"},{name:"clipboard-clock-outline",hex:"F16E3",version:"5.9.55"},{name:"clipboard-edit",hex:"F14E5",version:"5.4.55"},{name:"clipboard-edit-outline",hex:"F14E6",version:"5.4.55"},{name:"clipboard-file",hex:"F1265",version:"4.7.95"},{name:"clipboard-file-outline",hex:"F1266",version:"4.7.95"},{name:"clipboard-flow",hex:"F06C8",version:"1.8.36"},{name:"clipboard-flow-outline",hex:"F1117",version:"4.3.95"},{name:"clipboard-list",hex:"F10D4",version:"4.3.95"},{name:"clipboard-list-outline",hex:"F10D5",version:"4.3.95"},{name:"clipboard-minus",hex:"F1618",version:"5.7.55"},{name:"clipboard-minus-outline",hex:"F1619",version:"5.7.55"},{name:"clipboard-multiple",hex:"F1267",version:"4.7.95"},{name:"clipboard-multiple-outline",hex:"F1268",version:"4.7.95"},{name:"clipboard-off",hex:"F161A",version:"5.7.55"},{name:"clipboard-off-outline",hex:"F161B",version:"5.7.55"},{name:"clipboard-outline",hex:"F014C",version:"1.5.54"},{name:"clipboard-play",hex:"F0C59",version:"3.2.89"},{name:"clipboard-play-multiple",hex:"F1269",version:"4.7.95"},{name:"clipboard-play-multiple-outline",hex:"F126A",version:"4.7.95"},{name:"clipboard-play-outline",hex:"F0C5A",version:"3.2.89"},{name:"clipboard-plus",hex:"F0751",version:"1.9.32"},{name:"clipboard-plus-outline",hex:"F131F",version:"4.8.95"},{name:"clipboard-pulse",hex:"F085D",version:"2.1.99"},{name:"clipboard-pulse-outline",hex:"F085E",version:"2.1.99"},{name:"clipboard-remove",hex:"F161C",version:"5.7.55"},{name:"clipboard-remove-outline",hex:"F161D",version:"5.7.55"},{name:"clipboard-search",hex:"F161E",version:"5.7.55"},{name:"clipboard-search-outline",hex:"F161F",version:"5.7.55"},{name:"clipboard-text",hex:"F014D",version:"1.5.54"},{name:"clipboard-text-clock",hex:"F18F9",version:"6.3.95"},{name:"clipboard-text-clock-outline",hex:"F18FA",version:"6.3.95"},{name:"clipboard-text-multiple",hex:"F126B",version:"4.7.95"},{name:"clipboard-text-multiple-outline",hex:"F126C",version:"4.7.95"},{name:"clipboard-text-off",hex:"F1620",version:"5.7.55"},{name:"clipboard-text-off-outline",hex:"F1621",version:"5.7.55"},{name:"clipboard-text-outline",hex:"F0A38",version:"2.6.95"},{name:"clipboard-text-play",hex:"F0C5B",version:"3.2.89"},{name:"clipboard-text-play-outline",hex:"F0C5C",version:"3.2.89"},{name:"clipboard-text-search",hex:"F1622",version:"5.7.55"},{name:"clipboard-text-search-outline",hex:"F1623",version:"5.7.55"},{name:"clippy",hex:"F014F",version:"1.5.54"},{name:"clock",hex:"F0954",version:"2.4.85"},{name:"clock-alert",hex:"F0955",version:"2.4.85"},{name:"clock-alert-outline",hex:"F05CE",version:"1.5.54"},{name:"clock-check",hex:"F0FA8",version:"4.0.96"},{name:"clock-check-outline",hex:"F0FA9",version:"4.0.96"},{name:"clock-digital",hex:"F0E97",version:"3.7.94"},{name:"clock-edit",hex:"F19BA",version:"6.5.95"},{name:"clock-edit-outline",hex:"F19BB",version:"6.5.95"},{name:"clock-end",hex:"F0151",version:"1.5.54"},{name:"clock-fast",hex:"F0152",version:"1.5.54"},{name:"clock-in",hex:"F0153",version:"1.5.54"},{name:"clock-minus",hex:"F1863",version:"6.2.95"},{name:"clock-minus-outline",hex:"F1864",version:"6.2.95"},{name:"clock-out",hex:"F0154",version:"1.5.54"},{name:"clock-outline",hex:"F0150",version:"1.5.54"},{name:"clock-plus",hex:"F1861",version:"6.2.95"},{name:"clock-plus-outline",hex:"F1862",version:"6.2.95"},{name:"clock-remove",hex:"F1865",version:"6.2.95"},{name:"clock-remove-outline",hex:"F1866",version:"6.2.95"},{name:"clock-start",hex:"F0155",version:"1.5.54"},{name:"clock-time-eight",hex:"F1446",version:"5.2.45"},{name:"clock-time-eight-outline",hex:"F1452",version:"5.2.45"},{name:"clock-time-eleven",hex:"F1449",version:"5.2.45"},{name:"clock-time-eleven-outline",hex:"F1455",version:"5.2.45"},{name:"clock-time-five",hex:"F1443",version:"5.2.45"},{name:"clock-time-five-outline",hex:"F144F",version:"5.2.45"},{name:"clock-time-four",hex:"F1442",version:"5.2.45"},{name:"clock-time-four-outline",hex:"F144E",version:"5.2.45"},{name:"clock-time-nine",hex:"F1447",version:"5.2.45"},{name:"clock-time-nine-outline",hex:"F1453",version:"5.2.45"},{name:"clock-time-one",hex:"F143F",version:"5.2.45"},{name:"clock-time-one-outline",hex:"F144B",version:"5.2.45"},{name:"clock-time-seven",hex:"F1445",version:"5.2.45"},{name:"clock-time-seven-outline",hex:"F1451",version:"5.2.45"},{name:"clock-time-six",hex:"F1444",version:"5.2.45"},{name:"clock-time-six-outline",hex:"F1450",version:"5.2.45"},{name:"clock-time-ten",hex:"F1448",version:"5.2.45"},{name:"clock-time-ten-outline",hex:"F1454",version:"5.2.45"},{name:"clock-time-three",hex:"F1441",version:"5.2.45"},{name:"clock-time-three-outline",hex:"F144D",version:"5.2.45"},{name:"clock-time-twelve",hex:"F144A",version:"5.2.45"},{name:"clock-time-twelve-outline",hex:"F1456",version:"5.2.45"},{name:"clock-time-two",hex:"F1440",version:"5.2.45"},{name:"clock-time-two-outline",hex:"F144C",version:"5.2.45"},{name:"close",hex:"F0156",version:"1.5.54"},{name:"close-box",hex:"F0157",version:"1.5.54"},{name:"close-box-multiple",hex:"F0C5D",version:"3.2.89"},{name:"close-box-multiple-outline",hex:"F0C5E",version:"3.2.89"},{name:"close-box-outline",hex:"F0158",version:"1.5.54"},{name:"close-circle",hex:"F0159",version:"1.5.54"},{name:"close-circle-multiple",hex:"F062A",version:"1.6.50"},{name:"close-circle-multiple-outline",hex:"F0883",version:"2.1.99"},{name:"close-circle-outline",hex:"F015A",version:"1.5.54"},{name:"close-network",hex:"F015B",version:"1.5.54"},{name:"close-network-outline",hex:"F0C5F",version:"3.2.89"},{name:"close-octagon",hex:"F015C",version:"1.5.54"},{name:"close-octagon-outline",hex:"F015D",version:"1.5.54"},{name:"close-outline",hex:"F06C9",version:"1.8.36"},{name:"close-thick",hex:"F1398",version:"5.0.45"},{name:"closed-caption",hex:"F015E",version:"1.5.54"},{name:"closed-caption-outline",hex:"F0DBD",version:"3.5.94"},{name:"cloud",hex:"F015F",version:"1.5.54"},{name:"cloud-alert",hex:"F09E0",version:"2.5.94"},{name:"cloud-braces",hex:"F07B5",version:"2.0.46"},{name:"cloud-check",hex:"F0160",version:"1.5.54"},{name:"cloud-check-outline",hex:"F12CC",version:"4.8.95"},{name:"cloud-circle",hex:"F0161",version:"1.5.54"},{name:"cloud-download",hex:"F0162",version:"1.5.54"},{name:"cloud-download-outline",hex:"F0B7D",version:"3.0.39"},{name:"cloud-lock",hex:"F11F1",version:"4.5.95"},{name:"cloud-lock-outline",hex:"F11F2",version:"4.5.95"},{name:"cloud-off-outline",hex:"F0164",version:"1.5.54"},{name:"cloud-outline",hex:"F0163",version:"1.5.54"},{name:"cloud-print",hex:"F0165",version:"1.5.54"},{name:"cloud-print-outline",hex:"F0166",version:"1.5.54"},{name:"cloud-question",hex:"F0A39",version:"2.6.95"},{name:"cloud-refresh",hex:"F052A",version:"1.5.54"},{name:"cloud-search",hex:"F0956",version:"2.4.85"},{name:"cloud-search-outline",hex:"F0957",version:"2.4.85"},{name:"cloud-sync",hex:"F063F",version:"1.6.50"},{name:"cloud-sync-outline",hex:"F12D6",version:"4.8.95"},{name:"cloud-tags",hex:"F07B6",version:"2.0.46"},{name:"cloud-upload",hex:"F0167",version:"1.5.54"},{name:"cloud-upload-outline",hex:"F0B7E",version:"3.0.39"},{name:"clover",hex:"F0816",version:"2.1.19"},{name:"coach-lamp",hex:"F1020",version:"4.1.95"},{name:"coat-rack",hex:"F109E",version:"4.2.95"},{name:"code-array",hex:"F0168",version:"1.5.54"},{name:"code-braces",hex:"F0169",version:"1.5.54"},{name:"code-braces-box",hex:"F10D6",version:"4.3.95"},{name:"code-brackets",hex:"F016A",version:"1.5.54"},{name:"code-equal",hex:"F016B",version:"1.5.54"},{name:"code-greater-than",hex:"F016C",version:"1.5.54"},{name:"code-greater-than-or-equal",hex:"F016D",version:"1.5.54"},{name:"code-json",hex:"F0626",version:"1.6.50"},{name:"code-less-than",hex:"F016E",version:"1.5.54"},{name:"code-less-than-or-equal",hex:"F016F",version:"1.5.54"},{name:"code-not-equal",hex:"F0170",version:"1.5.54"},{name:"code-not-equal-variant",hex:"F0171",version:"1.5.54"},{name:"code-parentheses",hex:"F0172",version:"1.5.54"},{name:"code-parentheses-box",hex:"F10D7",version:"4.3.95"},{name:"code-string",hex:"F0173",version:"1.5.54"},{name:"code-tags",hex:"F0174",version:"1.5.54"},{name:"code-tags-check",hex:"F0694",version:"1.7.12"},{name:"codepen",hex:"F0175",version:"1.5.54"},{name:"coffee",hex:"F0176",version:"1.5.54"},{name:"coffee-maker",hex:"F109F",version:"4.2.95"},{name:"coffee-maker-check",hex:"F1931",version:"6.4.95"},{name:"coffee-maker-check-outline",hex:"F1932",version:"6.4.95"},{name:"coffee-maker-outline",hex:"F181B",version:"6.1.95"},{name:"coffee-off",hex:"F0FAA",version:"3.9.97"},{name:"coffee-off-outline",hex:"F0FAB",version:"3.9.97"},{name:"coffee-outline",hex:"F06CA",version:"1.8.36"},{name:"coffee-to-go",hex:"F0177",version:"1.5.54"},{name:"coffee-to-go-outline",hex:"F130E",version:"4.8.95"},{name:"coffin",hex:"F0B7F",version:"3.0.39"},{name:"cog",hex:"F0493",version:"1.5.54"},{name:"cog-box",hex:"F0494",version:"1.5.54"},{name:"cog-clockwise",hex:"F11DD",version:"4.5.95"},{name:"cog-counterclockwise",hex:"F11DE",version:"4.5.95"},{name:"cog-off",hex:"F13CE",version:"5.1.45"},{name:"cog-off-outline",hex:"F13CF",version:"5.1.45"},{name:"cog-outline",hex:"F08BB",version:"2.2.43"},{name:"cog-pause",hex:"F1933",version:"6.4.95"},{name:"cog-pause-outline",hex:"F1934",version:"6.4.95"},{name:"cog-play",hex:"F1935",version:"6.4.95"},{name:"cog-play-outline",hex:"F1936",version:"6.4.95"},{name:"cog-refresh",hex:"F145E",version:"5.2.45"},{name:"cog-refresh-outline",hex:"F145F",version:"5.2.45"},{name:"cog-stop",hex:"F1937",version:"6.4.95"},{name:"cog-stop-outline",hex:"F1938",version:"6.4.95"},{name:"cog-sync",hex:"F1460",version:"5.2.45"},{name:"cog-sync-outline",hex:"F1461",version:"5.2.45"},{name:"cog-transfer",hex:"F105B",version:"4.1.95"},{name:"cog-transfer-outline",hex:"F105C",version:"4.1.95"},{name:"cogs",hex:"F08D6",version:"2.3.50"},{name:"collage",hex:"F0640",version:"1.6.50"},{name:"collapse-all",hex:"F0AA6",version:"2.7.94"},{name:"collapse-all-outline",hex:"F0AA7",version:"2.7.94"},{name:"color-helper",hex:"F0179",version:"1.5.54"},{name:"comma",hex:"F0E23",version:"3.6.95"},{name:"comma-box",hex:"F0E2B",version:"3.6.95"},{name:"comma-box-outline",hex:"F0E24",version:"3.6.95"},{name:"comma-circle",hex:"F0E25",version:"3.6.95"},{name:"comma-circle-outline",hex:"F0E26",version:"3.6.95"},{name:"comment",hex:"F017A",version:"1.5.54"},{name:"comment-account",hex:"F017B",version:"1.5.54"},{name:"comment-account-outline",hex:"F017C",version:"1.5.54"},{name:"comment-alert",hex:"F017D",version:"1.5.54"},{name:"comment-alert-outline",hex:"F017E",version:"1.5.54"},{name:"comment-arrow-left",hex:"F09E1",version:"2.5.94"},{name:"comment-arrow-left-outline",hex:"F09E2",version:"2.5.94"},{name:"comment-arrow-right",hex:"F09E3",version:"2.5.94"},{name:"comment-arrow-right-outline",hex:"F09E4",version:"2.5.94"},{name:"comment-bookmark",hex:"F15AE",version:"5.5.55"},{name:"comment-bookmark-outline",hex:"F15AF",version:"5.5.55"},{name:"comment-check",hex:"F017F",version:"1.5.54"},{name:"comment-check-outline",hex:"F0180",version:"1.5.54"},{name:"comment-edit",hex:"F11BF",version:"4.5.95"},{name:"comment-edit-outline",hex:"F12C4",version:"4.8.95"},{name:"comment-eye",hex:"F0A3A",version:"2.6.95"},{name:"comment-eye-outline",hex:"F0A3B",version:"2.6.95"},{name:"comment-flash",hex:"F15B0",version:"5.5.55"},{name:"comment-flash-outline",hex:"F15B1",version:"5.5.55"},{name:"comment-minus",hex:"F15DF",version:"5.6.55"},{name:"comment-minus-outline",hex:"F15E0",version:"5.6.55"},{name:"comment-multiple",hex:"F085F",version:"2.1.99"},{name:"comment-multiple-outline",hex:"F0181",version:"1.5.54"},{name:"comment-off",hex:"F15E1",version:"5.6.55"},{name:"comment-off-outline",hex:"F15E2",version:"5.6.55"},{name:"comment-outline",hex:"F0182",version:"1.5.54"},{name:"comment-plus",hex:"F09E5",version:"2.5.94"},{name:"comment-plus-outline",hex:"F0183",version:"1.5.54"},{name:"comment-processing",hex:"F0184",version:"1.5.54"},{name:"comment-processing-outline",hex:"F0185",version:"1.5.54"},{name:"comment-question",hex:"F0817",version:"2.1.19"},{name:"comment-question-outline",hex:"F0186",version:"1.5.54"},{name:"comment-quote",hex:"F1021",version:"4.1.95"},{name:"comment-quote-outline",hex:"F1022",version:"4.1.95"},{name:"comment-remove",hex:"F05DE",version:"1.5.54"},{name:"comment-remove-outline",hex:"F0187",version:"1.5.54"},{name:"comment-search",hex:"F0A3C",version:"2.6.95"},{name:"comment-search-outline",hex:"F0A3D",version:"2.6.95"},{name:"comment-text",hex:"F0188",version:"1.5.54"},{name:"comment-text-multiple",hex:"F0860",version:"2.1.99"},{name:"comment-text-multiple-outline",hex:"F0861",version:"2.1.99"},{name:"comment-text-outline",hex:"F0189",version:"1.5.54"},{name:"compare",hex:"F018A",version:"1.5.54"},{name:"compare-horizontal",hex:"F1492",version:"5.3.45"},{name:"compare-remove",hex:"F18B3",version:"6.3.95"},{name:"compare-vertical",hex:"F1493",version:"5.3.45"},{name:"compass",hex:"F018B",version:"1.5.54"},{name:"compass-off",hex:"F0B80",version:"3.0.39"},{name:"compass-off-outline",hex:"F0B81",version:"3.0.39"},{name:"compass-outline",hex:"F018C",version:"1.5.54"},{name:"compass-rose",hex:"F1382",version:"4.9.95"},{name:"cone",hex:"F194C",version:"6.4.95"},{name:"cone-off",hex:"F194D",version:"6.4.95"},{name:"connection",hex:"F1616",version:"5.6.55"},{name:"console",hex:"F018D",version:"1.5.54"},{name:"console-line",hex:"F07B7",version:"2.0.46"},{name:"console-network",hex:"F08A9",version:"2.2.43"},{name:"console-network-outline",hex:"F0C60",version:"3.2.89"},{name:"consolidate",hex:"F10D8",version:"4.3.95"},{name:"contactless-payment",hex:"F0D6A",version:"3.4.93"},{name:"contactless-payment-circle",hex:"F0321",version:"1.5.54"},{name:"contactless-payment-circle-outline",hex:"F0408",version:"1.5.54"},{name:"contacts",hex:"F06CB",version:"1.8.36"},{name:"contacts-outline",hex:"F05B8",version:"1.5.54"},{name:"contain",hex:"F0A3E",version:"2.6.95"},{name:"contain-end",hex:"F0A3F",version:"2.6.95"},{name:"contain-start",hex:"F0A40",version:"2.6.95"},{name:"content-copy",hex:"F018F",version:"1.5.54"},{name:"content-cut",hex:"F0190",version:"1.5.54"},{name:"content-duplicate",hex:"F0191",version:"1.5.54"},{name:"content-paste",hex:"F0192",version:"1.5.54"},{name:"content-save",hex:"F0193",version:"1.5.54"},{name:"content-save-alert",hex:"F0F42",version:"3.9.97"},{name:"content-save-alert-outline",hex:"F0F43",version:"3.9.97"},{name:"content-save-all",hex:"F0194",version:"1.5.54"},{name:"content-save-all-outline",hex:"F0F44",version:"3.9.97"},{name:"content-save-check",hex:"F18EA",version:"6.3.95"},{name:"content-save-check-outline",hex:"F18EB",version:"6.3.95"},{name:"content-save-cog",hex:"F145B",version:"5.2.45"},{name:"content-save-cog-outline",hex:"F145C",version:"5.2.45"},{name:"content-save-edit",hex:"F0CFB",version:"3.3.92"},{name:"content-save-edit-outline",hex:"F0CFC",version:"3.3.92"},{name:"content-save-move",hex:"F0E27",version:"3.6.95"},{name:"content-save-move-outline",hex:"F0E28",version:"3.6.95"},{name:"content-save-off",hex:"F1643",version:"5.7.55"},{name:"content-save-off-outline",hex:"F1644",version:"5.7.55"},{name:"content-save-outline",hex:"F0818",version:"2.1.19"},{name:"content-save-settings",hex:"F061B",version:"1.6.50"},{name:"content-save-settings-outline",hex:"F0B2E",version:"2.8.94"},{name:"contrast",hex:"F0195",version:"1.5.54"},{name:"contrast-box",hex:"F0196",version:"1.5.54"},{name:"contrast-circle",hex:"F0197",version:"1.5.54"},{name:"controller-classic",hex:"F0B82",version:"3.0.39"},{name:"controller-classic-outline",hex:"F0B83",version:"3.0.39"},{name:"cookie",hex:"F0198",version:"1.5.54"},{name:"cookie-alert",hex:"F16D0",version:"5.8.55"},{name:"cookie-alert-outline",hex:"F16D1",version:"5.8.55"},{name:"cookie-check",hex:"F16D2",version:"5.8.55"},{name:"cookie-check-outline",hex:"F16D3",version:"5.8.55"},{name:"cookie-clock",hex:"F16E4",version:"5.9.55"},{name:"cookie-clock-outline",hex:"F16E5",version:"5.9.55"},{name:"cookie-cog",hex:"F16D4",version:"5.8.55"},{name:"cookie-cog-outline",hex:"F16D5",version:"5.8.55"},{name:"cookie-edit",hex:"F16E6",version:"5.9.55"},{name:"cookie-edit-outline",hex:"F16E7",version:"5.9.55"},{name:"cookie-lock",hex:"F16E8",version:"5.9.55"},{name:"cookie-lock-outline",hex:"F16E9",version:"5.9.55"},{name:"cookie-minus",hex:"F16DA",version:"5.8.55"},{name:"cookie-minus-outline",hex:"F16DB",version:"5.8.55"},{name:"cookie-off",hex:"F16EA",version:"5.9.55"},{name:"cookie-off-outline",hex:"F16EB",version:"5.9.55"},{name:"cookie-outline",hex:"F16DE",version:"5.8.55"},{name:"cookie-plus",hex:"F16D6",version:"5.8.55"},{name:"cookie-plus-outline",hex:"F16D7",version:"5.8.55"},{name:"cookie-refresh",hex:"F16EC",version:"5.9.55"},{name:"cookie-refresh-outline",hex:"F16ED",version:"5.9.55"},{name:"cookie-remove",hex:"F16D8",version:"5.8.55"},{name:"cookie-remove-outline",hex:"F16D9",version:"5.8.55"},{name:"cookie-settings",hex:"F16DC",version:"5.8.55"},{name:"cookie-settings-outline",hex:"F16DD",version:"5.8.55"},{name:"coolant-temperature",hex:"F03C8",version:"1.5.54"},{name:"copyleft",hex:"F1939",version:"6.4.95"},{name:"copyright",hex:"F05E6",version:"1.5.54"},{name:"cordova",hex:"F0958",version:"2.4.85"},{name:"corn",hex:"F07B8",version:"2.0.46"},{name:"corn-off",hex:"F13EF",version:"5.1.45"},{name:"cosine-wave",hex:"F1479",version:"5.2.45"},{name:"counter",hex:"F0199",version:"1.5.54"},{name:"countertop",hex:"F181C",version:"6.1.95"},{name:"countertop-outline",hex:"F181D",version:"6.1.95"},{name:"cow",hex:"F019A",version:"1.5.54"},{name:"cow-off",hex:"F18FC",version:"6.4.95"},{name:"cpu-32-bit",hex:"F0EDF",version:"3.8.95"},{name:"cpu-64-bit",hex:"F0EE0",version:"3.8.95"},{name:"cradle",hex:"F198B",version:"6.5.95"},{name:"cradle-outline",hex:"F1991",version:"6.5.95"},{name:"crane",hex:"F0862",version:"2.1.99"},{name:"creation",hex:"F0674",version:"1.7.12"},{name:"creative-commons",hex:"F0D6B",version:"3.4.93"},{name:"credit-card",hex:"F0FEF",version:"4.0.96"},{name:"credit-card-check",hex:"F13D0",version:"5.1.45"},{name:"credit-card-check-outline",hex:"F13D1",version:"5.1.45"},{name:"credit-card-chip",hex:"F190F",version:"6.4.95"},{name:"credit-card-chip-outline",hex:"F1910",version:"6.4.95"},{name:"credit-card-clock",hex:"F0EE1",version:"3.8.95"},{name:"credit-card-clock-outline",hex:"F0EE2",version:"3.8.95"},{name:"credit-card-edit",hex:"F17D7",version:"6.1.95"},{name:"credit-card-edit-outline",hex:"F17D8",version:"6.1.95"},{name:"credit-card-fast",hex:"F1911",version:"6.4.95"},{name:"credit-card-fast-outline",hex:"F1912",version:"6.4.95"},{name:"credit-card-lock",hex:"F18E7",version:"6.3.95"},{name:"credit-card-lock-outline",hex:"F18E8",version:"6.3.95"},{name:"credit-card-marker",hex:"F06A8",version:"1.7.12"},{name:"credit-card-marker-outline",hex:"F0DBE",version:"3.5.94"},{name:"credit-card-minus",hex:"F0FAC",version:"4.0.96"},{name:"credit-card-minus-outline",hex:"F0FAD",version:"4.0.96"},{name:"credit-card-multiple",hex:"F0FF0",version:"4.0.96"},{name:"credit-card-multiple-outline",hex:"F019C",version:"1.5.54"},{name:"credit-card-off",hex:"F0FF1",version:"4.0.96"},{name:"credit-card-off-outline",hex:"F05E4",version:"1.5.54"},{name:"credit-card-outline",hex:"F019B",version:"1.5.54"},{name:"credit-card-plus",hex:"F0FF2",version:"4.0.96"},{name:"credit-card-plus-outline",hex:"F0676",version:"1.7.12"},{name:"credit-card-refresh",hex:"F1645",version:"5.7.55"},{name:"credit-card-refresh-outline",hex:"F1646",version:"5.7.55"},{name:"credit-card-refund",hex:"F0FF3",version:"4.0.96"},{name:"credit-card-refund-outline",hex:"F0AA8",version:"2.7.94"},{name:"credit-card-remove",hex:"F0FAE",version:"4.0.96"},{name:"credit-card-remove-outline",hex:"F0FAF",version:"4.0.96"},{name:"credit-card-scan",hex:"F0FF4",version:"4.0.96"},{name:"credit-card-scan-outline",hex:"F019D",version:"1.5.54"},{name:"credit-card-search",hex:"F1647",version:"5.7.55"},{name:"credit-card-search-outline",hex:"F1648",version:"5.7.55"},{name:"credit-card-settings",hex:"F0FF5",version:"4.0.96"},{name:"credit-card-settings-outline",hex:"F08D7",version:"2.3.50"},{name:"credit-card-sync",hex:"F1649",version:"5.7.55"},{name:"credit-card-sync-outline",hex:"F164A",version:"5.7.55"},{name:"credit-card-wireless",hex:"F0802",version:"2.1.19"},{name:"credit-card-wireless-off",hex:"F057A",version:"1.5.54"},{name:"credit-card-wireless-off-outline",hex:"F057B",version:"1.5.54"},{name:"credit-card-wireless-outline",hex:"F0D6C",version:"3.4.93"},{name:"cricket",hex:"F0D6D",version:"3.4.93"},{name:"crop",hex:"F019E",version:"1.5.54"},{name:"crop-free",hex:"F019F",version:"1.5.54"},{name:"crop-landscape",hex:"F01A0",version:"1.5.54"},{name:"crop-portrait",hex:"F01A1",version:"1.5.54"},{name:"crop-rotate",hex:"F0696",version:"1.7.12"},{name:"crop-square",hex:"F01A2",version:"1.5.54"},{name:"cross",hex:"F0953",version:"2.4.85"},{name:"cross-bolnisi",hex:"F0CED",version:"3.3.92"},{name:"cross-celtic",hex:"F0CF5",version:"3.3.92"},{name:"cross-outline",hex:"F0CF6",version:"3.3.92"},{name:"crosshairs",hex:"F01A3",version:"1.5.54"},{name:"crosshairs-gps",hex:"F01A4",version:"1.5.54"},{name:"crosshairs-off",hex:"F0F45",version:"3.9.97"},{name:"crosshairs-question",hex:"F1136",version:"4.4.95"},{name:"crowd",hex:"F1975",version:"6.5.95"},{name:"crown",hex:"F01A5",version:"1.5.54"},{name:"crown-circle",hex:"F17DC",version:"6.1.95"},{name:"crown-circle-outline",hex:"F17DD",version:"6.1.95"},{name:"crown-outline",hex:"F11D0",version:"4.5.95"},{name:"cryengine",hex:"F0959",version:"2.4.85"},{name:"crystal-ball",hex:"F0B2F",version:"2.8.94"},{name:"cube",hex:"F01A6",version:"1.5.54"},{name:"cube-off",hex:"F141C",version:"5.2.45"},{name:"cube-off-outline",hex:"F141D",version:"5.2.45"},{name:"cube-outline",hex:"F01A7",version:"1.5.54"},{name:"cube-scan",hex:"F0B84",version:"3.0.39"},{name:"cube-send",hex:"F01A8",version:"1.5.54"},{name:"cube-unfolded",hex:"F01A9",version:"1.5.54"},{name:"cup",hex:"F01AA",version:"1.5.54"},{name:"cup-off",hex:"F05E5",version:"1.5.54"},{name:"cup-off-outline",hex:"F137D",version:"4.9.95"},{name:"cup-outline",hex:"F130F",version:"4.8.95"},{name:"cup-water",hex:"F01AB",version:"1.5.54"},{name:"cupboard",hex:"F0F46",version:"3.9.97"},{name:"cupboard-outline",hex:"F0F47",version:"3.9.97"},{name:"cupcake",hex:"F095A",version:"2.4.85"},{name:"curling",hex:"F0863",version:"2.1.99"},{name:"currency-bdt",hex:"F0864",version:"2.1.99"},{name:"currency-brl",hex:"F0B85",version:"3.0.39"},{name:"currency-btc",hex:"F01AC",version:"1.5.54"},{name:"currency-cny",hex:"F07BA",version:"2.0.46"},{name:"currency-eth",hex:"F07BB",version:"2.0.46"},{name:"currency-eur",hex:"F01AD",version:"1.5.54"},{name:"currency-eur-off",hex:"F1315",version:"4.8.95"},{name:"currency-gbp",hex:"F01AE",version:"1.5.54"},{name:"currency-ils",hex:"F0C61",version:"3.2.89"},{name:"currency-inr",hex:"F01AF",version:"1.5.54"},{name:"currency-jpy",hex:"F07BC",version:"2.0.46"},{name:"currency-krw",hex:"F07BD",version:"2.0.46"},{name:"currency-kzt",hex:"F0865",version:"2.1.99"},{name:"currency-mnt",hex:"F1512",version:"5.4.55"},{name:"currency-ngn",hex:"F01B0",version:"1.5.54"},{name:"currency-php",hex:"F09E6",version:"2.5.94"},{name:"currency-rial",hex:"F0E9C",version:"3.7.94"},{name:"currency-rub",hex:"F01B1",version:"1.5.54"},{name:"currency-rupee",hex:"F1976",version:"6.5.95"},{name:"currency-sign",hex:"F07BE",version:"2.0.46"},{name:"currency-try",hex:"F01B2",version:"1.5.54"},{name:"currency-twd",hex:"F07BF",version:"2.0.46"},{name:"currency-usd",hex:"F01C1",version:"1.5.54"},{name:"currency-usd-off",hex:"F067A",version:"1.7.12"},{name:"current-ac",hex:"F1480",version:"5.3.45"},{name:"current-dc",hex:"F095C",version:"2.4.85"},{name:"cursor-default",hex:"F01C0",version:"1.5.54"},{name:"cursor-default-click",hex:"F0CFD",version:"3.3.92"},{name:"cursor-default-click-outline",hex:"F0CFE",version:"3.3.92"},{name:"cursor-default-gesture",hex:"F1127",version:"4.3.95"},{name:"cursor-default-gesture-outline",hex:"F1128",version:"4.3.95"},{name:"cursor-default-outline",hex:"F01BF",version:"1.5.54"},{name:"cursor-move",hex:"F01BE",version:"1.5.54"},{name:"cursor-pointer",hex:"F01BD",version:"1.5.54"},{name:"cursor-text",hex:"F05E7",version:"1.5.54"},{name:"curtains",hex:"F1846",version:"6.2.95"},{name:"curtains-closed",hex:"F1847",version:"6.2.95"},{name:"cylinder",hex:"F194E",version:"6.4.95"},{name:"cylinder-off",hex:"F194F",version:"6.4.95"},{name:"dance-ballroom",hex:"F15FB",version:"5.6.55"},{name:"dance-pole",hex:"F1578",version:"5.5.55"},{name:"data-matrix",hex:"F153C",version:"5.4.55"},{name:"data-matrix-edit",hex:"F153D",version:"5.4.55"},{name:"data-matrix-minus",hex:"F153E",version:"5.4.55"},{name:"data-matrix-plus",hex:"F153F",version:"5.4.55"},{name:"data-matrix-remove",hex:"F1540",version:"5.4.55"},{name:"data-matrix-scan",hex:"F1541",version:"5.4.55"},{name:"database",hex:"F01BC",version:"1.5.54"},{name:"database-alert",hex:"F163A",version:"5.7.55"},{name:"database-alert-outline",hex:"F1624",version:"5.7.55"},{name:"database-arrow-down",hex:"F163B",version:"5.7.55"},{name:"database-arrow-down-outline",hex:"F1625",version:"5.7.55"},{name:"database-arrow-left",hex:"F163C",version:"5.7.55"},{name:"database-arrow-left-outline",hex:"F1626",version:"5.7.55"},{name:"database-arrow-right",hex:"F163D",version:"5.7.55"},{name:"database-arrow-right-outline",hex:"F1627",version:"5.7.55"},{name:"database-arrow-up",hex:"F163E",version:"5.7.55"},{name:"database-arrow-up-outline",hex:"F1628",version:"5.7.55"},{name:"database-check",hex:"F0AA9",version:"2.7.94"},{name:"database-check-outline",hex:"F1629",version:"5.7.55"},{name:"database-clock",hex:"F163F",version:"5.7.55"},{name:"database-clock-outline",hex:"F162A",version:"5.7.55"},{name:"database-cog",hex:"F164B",version:"5.7.55"},{name:"database-cog-outline",hex:"F164C",version:"5.7.55"},{name:"database-edit",hex:"F0B86",version:"3.0.39"},{name:"database-edit-outline",hex:"F162B",version:"5.7.55"},{name:"database-export",hex:"F095E",version:"2.4.85"},{name:"database-export-outline",hex:"F162C",version:"5.7.55"},{name:"database-eye",hex:"F191F",version:"6.4.95"},{name:"database-eye-off",hex:"F1920",version:"6.4.95"},{name:"database-eye-off-outline",hex:"F1921",version:"6.4.95"},{name:"database-eye-outline",hex:"F1922",version:"6.4.95"},{name:"database-import",hex:"F095D",version:"2.4.85"},{name:"database-import-outline",hex:"F162D",version:"5.7.55"},{name:"database-lock",hex:"F0AAA",version:"2.7.94"},{name:"database-lock-outline",hex:"F162E",version:"5.7.55"},{name:"database-marker",hex:"F12F6",version:"4.8.95"},{name:"database-marker-outline",hex:"F162F",version:"5.7.55"},{name:"database-minus",hex:"F01BB",version:"1.5.54"},{name:"database-minus-outline",hex:"F1630",version:"5.7.55"},{name:"database-off",hex:"F1640",version:"5.7.55"},{name:"database-off-outline",hex:"F1631",version:"5.7.55"},{name:"database-outline",hex:"F1632",version:"5.7.55"},{name:"database-plus",hex:"F01BA",version:"1.5.54"},{name:"database-plus-outline",hex:"F1633",version:"5.7.55"},{name:"database-refresh",hex:"F05C2",version:"1.5.54"},{name:"database-refresh-outline",hex:"F1634",version:"5.7.55"},{name:"database-remove",hex:"F0D00",version:"3.3.92"},{name:"database-remove-outline",hex:"F1635",version:"5.7.55"},{name:"database-search",hex:"F0866",version:"2.1.99"},{name:"database-search-outline",hex:"F1636",version:"5.7.55"},{name:"database-settings",hex:"F0D01",version:"3.3.92"},{name:"database-settings-outline",hex:"F1637",version:"5.7.55"},{name:"database-sync",hex:"F0CFF",version:"3.3.92"},{name:"database-sync-outline",hex:"F1638",version:"5.7.55"},{name:"death-star",hex:"F08D8",version:"2.3.50"},{name:"death-star-variant",hex:"F08D9",version:"2.3.50"},{name:"deathly-hallows",hex:"F0B87",version:"3.0.39"},{name:"debian",hex:"F08DA",version:"2.3.50"},{name:"debug-step-into",hex:"F01B9",version:"1.5.54"},{name:"debug-step-out",hex:"F01B8",version:"1.5.54"},{name:"debug-step-over",hex:"F01B7",version:"1.5.54"},{name:"decagram",hex:"F076C",version:"1.9.32"},{name:"decagram-outline",hex:"F076D",version:"1.9.32"},{name:"decimal",hex:"F10A1",version:"4.2.95"},{name:"decimal-comma",hex:"F10A2",version:"4.2.95"},{name:"decimal-comma-decrease",hex:"F10A3",version:"4.2.95"},{name:"decimal-comma-increase",hex:"F10A4",version:"4.2.95"},{name:"decimal-decrease",hex:"F01B6",version:"1.5.54"},{name:"decimal-increase",hex:"F01B5",version:"1.5.54"},{name:"delete",hex:"F01B4",version:"1.5.54"},{name:"delete-alert",hex:"F10A5",version:"4.2.95"},{name:"delete-alert-outline",hex:"F10A6",version:"4.2.95"},{name:"delete-circle",hex:"F0683",version:"1.7.12"},{name:"delete-circle-outline",hex:"F0B88",version:"3.0.39"},{name:"delete-clock",hex:"F1556",version:"5.5.55"},{name:"delete-clock-outline",hex:"F1557",version:"5.5.55"},{name:"delete-empty",hex:"F06CC",version:"1.8.36"},{name:"delete-empty-outline",hex:"F0E9D",version:"3.7.94"},{name:"delete-forever",hex:"F05E8",version:"1.5.54"},{name:"delete-forever-outline",hex:"F0B89",version:"3.0.39"},{name:"delete-off",hex:"F10A7",version:"4.2.95"},{name:"delete-off-outline",hex:"F10A8",version:"4.2.95"},{name:"delete-outline",hex:"F09E7",version:"2.5.94"},{name:"delete-restore",hex:"F0819",version:"2.1.19"},{name:"delete-sweep",hex:"F05E9",version:"1.5.54"},{name:"delete-sweep-outline",hex:"F0C62",version:"3.2.89"},{name:"delete-variant",hex:"F01B3",version:"1.5.54"},{name:"delta",hex:"F01C2",version:"1.5.54"},{name:"desk",hex:"F1239",version:"4.6.95"},{name:"desk-lamp",hex:"F095F",version:"2.4.85"},{name:"deskphone",hex:"F01C3",version:"1.5.54"},{name:"desktop-classic",hex:"F07C0",version:"2.0.46"},{name:"desktop-mac",hex:"F01C4",version:"1.5.54"},{name:"desktop-mac-dashboard",hex:"F09E8",version:"2.5.94"},{name:"desktop-tower",hex:"F01C5",version:"1.5.54"},{name:"desktop-tower-monitor",hex:"F0AAB",version:"2.7.94"},{name:"details",hex:"F01C6",version:"1.5.54"},{name:"dev-to",hex:"F0D6E",version:"3.4.93"},{name:"developer-board",hex:"F0697",version:"1.7.12"},{name:"deviantart",hex:"F01C7",version:"1.5.54"},{name:"devices",hex:"F0FB0",version:"4.0.96"},{name:"dharmachakra",hex:"F094B",version:"2.4.85"},{name:"diabetes",hex:"F1126",version:"4.3.95"},{name:"dialpad",hex:"F061C",version:"1.6.50"},{name:"diameter",hex:"F0C63",version:"3.2.89"},{name:"diameter-outline",hex:"F0C64",version:"3.2.89"},{name:"diameter-variant",hex:"F0C65",version:"3.2.89"},{name:"diamond",hex:"F0B8A",version:"3.0.39"},{name:"diamond-outline",hex:"F0B8B",version:"3.0.39"},{name:"diamond-stone",hex:"F01C8",version:"1.5.54"},{name:"dice-1",hex:"F01CA",version:"1.5.54"},{name:"dice-1-outline",hex:"F114A",version:"4.4.95"},{name:"dice-2",hex:"F01CB",version:"1.5.54"},{name:"dice-2-outline",hex:"F114B",version:"4.4.95"},{name:"dice-3",hex:"F01CC",version:"1.5.54"},{name:"dice-3-outline",hex:"F114C",version:"4.4.95"},{name:"dice-4",hex:"F01CD",version:"1.5.54"},{name:"dice-4-outline",hex:"F114D",version:"4.4.95"},{name:"dice-5",hex:"F01CE",version:"1.5.54"},{name:"dice-5-outline",hex:"F114E",version:"4.4.95"},{name:"dice-6",hex:"F01CF",version:"1.5.54"},{name:"dice-6-outline",hex:"F114F",version:"4.4.95"},{name:"dice-d10",hex:"F1153",version:"4.4.95"},{name:"dice-d10-outline",hex:"F076F",version:"1.9.32"},{name:"dice-d12",hex:"F1154",version:"4.4.95"},{name:"dice-d12-outline",hex:"F0867",version:"2.1.99"},{name:"dice-d20",hex:"F1155",version:"4.4.95"},{name:"dice-d20-outline",hex:"F05EA",version:"1.5.54"},{name:"dice-d4",hex:"F1150",version:"4.4.95"},{name:"dice-d4-outline",hex:"F05EB",version:"1.5.54"},{name:"dice-d6",hex:"F1151",version:"4.4.95"},{name:"dice-d6-outline",hex:"F05ED",version:"1.5.54"},{name:"dice-d8",hex:"F1152",version:"4.4.95"},{name:"dice-d8-outline",hex:"F05EC",version:"1.5.54"},{name:"dice-multiple",hex:"F076E",version:"1.9.32"},{name:"dice-multiple-outline",hex:"F1156",version:"4.4.95"},{name:"digital-ocean",hex:"F1237",version:"4.6.95"},{name:"dip-switch",hex:"F07C1",version:"2.0.46"},{name:"directions",hex:"F01D0",version:"1.5.54"},{name:"directions-fork",hex:"F0641",version:"1.6.50"},{name:"disc",hex:"F05EE",version:"1.5.54"},{name:"disc-alert",hex:"F01D1",version:"1.5.54"},{name:"disc-player",hex:"F0960",version:"2.4.85"},{name:"discord",hex:"F066F",version:"1.6.50"},{name:"dishwasher",hex:"F0AAC",version:"2.7.94"},{name:"dishwasher-alert",hex:"F11B8",version:"4.5.95"},{name:"dishwasher-off",hex:"F11B9",version:"4.5.95"},{name:"disqus",hex:"F01D2",version:"1.5.54"},{name:"distribute-horizontal-center",hex:"F11C9",version:"4.5.95"},{name:"distribute-horizontal-left",hex:"F11C8",version:"4.5.95"},{name:"distribute-horizontal-right",hex:"F11CA",version:"4.5.95"},{name:"distribute-vertical-bottom",hex:"F11CB",version:"4.5.95"},{name:"distribute-vertical-center",hex:"F11CC",version:"4.5.95"},{name:"distribute-vertical-top",hex:"F11CD",version:"4.5.95"},{name:"diversify",hex:"F1877",version:"6.2.95"},{name:"diving",hex:"F1977",version:"6.5.95"},{name:"diving-flippers",hex:"F0DBF",version:"3.5.94"},{name:"diving-helmet",hex:"F0DC0",version:"3.5.94"},{name:"diving-scuba",hex:"F0DC1",version:"3.5.94"},{name:"diving-scuba-flag",hex:"F0DC2",version:"3.5.94"},{name:"diving-scuba-tank",hex:"F0DC3",version:"3.5.94"},{name:"diving-scuba-tank-multiple",hex:"F0DC4",version:"3.5.94"},{name:"diving-snorkel",hex:"F0DC5",version:"3.5.94"},{name:"division",hex:"F01D4",version:"1.5.54"},{name:"division-box",hex:"F01D5",version:"1.5.54"},{name:"dlna",hex:"F0A41",version:"2.6.95"},{name:"dna",hex:"F0684",version:"1.7.12"},{name:"dns",hex:"F01D6",version:"1.5.54"},{name:"dns-outline",hex:"F0B8C",version:"3.0.39"},{name:"dock-bottom",hex:"F10A9",version:"4.2.95"},{name:"dock-left",hex:"F10AA",version:"4.2.95"},{name:"dock-right",hex:"F10AB",version:"4.2.95"},{name:"dock-top",hex:"F1513",version:"5.4.55"},{name:"dock-window",hex:"F10AC",version:"4.2.95"},{name:"docker",hex:"F0868",version:"2.1.99"},{name:"doctor",hex:"F0A42",version:"2.6.95"},{name:"dog",hex:"F0A43",version:"2.6.95"},{name:"dog-service",hex:"F0AAD",version:"2.7.94"},{name:"dog-side",hex:"F0A44",version:"2.6.95"},{name:"dog-side-off",hex:"F16EE",version:"5.9.55"},{name:"dolby",hex:"F06B3",version:"1.7.22"},{name:"dolly",hex:"F0E9E",version:"3.7.94"},{name:"dolphin",hex:"F18B4",version:"6.3.95"},{name:"domain",hex:"F01D7",version:"1.5.54"},{name:"domain-off",hex:"F0D6F",version:"3.4.93"},{name:"domain-plus",hex:"F10AD",version:"4.2.95"},{name:"domain-remove",hex:"F10AE",version:"4.2.95"},{name:"dome-light",hex:"F141E",version:"5.2.45"},{name:"domino-mask",hex:"F1023",version:"4.1.95"},{name:"donkey",hex:"F07C2",version:"2.0.46"},{name:"door",hex:"F081A",version:"2.1.19"},{name:"door-closed",hex:"F081B",version:"2.1.19"},{name:"door-closed-lock",hex:"F10AF",version:"4.2.95"},{name:"door-open",hex:"F081C",version:"2.1.19"},{name:"door-sliding",hex:"F181E",version:"6.1.95"},{name:"door-sliding-lock",hex:"F181F",version:"6.1.95"},{name:"door-sliding-open",hex:"F1820",version:"6.1.95"},{name:"doorbell",hex:"F12E6",version:"4.8.95"},{name:"doorbell-video",hex:"F0869",version:"2.1.99"},{name:"dot-net",hex:"F0AAE",version:"2.7.94"},{name:"dots-circle",hex:"F1978",version:"6.5.95"},{name:"dots-grid",hex:"F15FC",version:"5.6.55"},{name:"dots-hexagon",hex:"F15FF",version:"5.6.55"},{name:"dots-horizontal",hex:"F01D8",version:"1.5.54"},{name:"dots-horizontal-circle",hex:"F07C3",version:"2.0.46"},{name:"dots-horizontal-circle-outline",hex:"F0B8D",version:"3.0.39"},{name:"dots-square",hex:"F15FD",version:"5.6.55"},{name:"dots-triangle",hex:"F15FE",version:"5.6.55"},{name:"dots-vertical",hex:"F01D9",version:"1.5.54"},{name:"dots-vertical-circle",hex:"F07C4",version:"2.0.46"},{name:"dots-vertical-circle-outline",hex:"F0B8E",version:"3.0.39"},{name:"download",hex:"F01DA",version:"1.5.54"},{name:"download-box",hex:"F1462",version:"5.2.45"},{name:"download-box-outline",hex:"F1463",version:"5.2.45"},{name:"download-circle",hex:"F1464",version:"5.2.45"},{name:"download-circle-outline",hex:"F1465",version:"5.2.45"},{name:"download-lock",hex:"F1320",version:"4.9.95"},{name:"download-lock-outline",hex:"F1321",version:"4.9.95"},{name:"download-multiple",hex:"F09E9",version:"2.5.94"},{name:"download-network",hex:"F06F4",version:"1.8.36"},{name:"download-network-outline",hex:"F0C66",version:"3.2.89"},{name:"download-off",hex:"F10B0",version:"4.2.95"},{name:"download-off-outline",hex:"F10B1",version:"4.2.95"},{name:"download-outline",hex:"F0B8F",version:"3.0.39"},{name:"drag",hex:"F01DB",version:"1.5.54"},{name:"drag-horizontal",hex:"F01DC",version:"1.5.54"},{name:"drag-horizontal-variant",hex:"F12F0",version:"4.8.95"},{name:"drag-variant",hex:"F0B90",version:"3.0.39"},{name:"drag-vertical",hex:"F01DD",version:"1.5.54"},{name:"drag-vertical-variant",hex:"F12F1",version:"4.8.95"},{name:"drama-masks",hex:"F0D02",version:"3.3.92"},{name:"draw",hex:"F0F49",version:"3.9.97"},{name:"draw-pen",hex:"F19B9",version:"6.5.95"},{name:"drawing",hex:"F01DE",version:"1.5.54"},{name:"drawing-box",hex:"F01DF",version:"1.5.54"},{name:"dresser",hex:"F0F4A",version:"3.9.97"},{name:"dresser-outline",hex:"F0F4B",version:"3.9.97"},{name:"drone",hex:"F01E2",version:"1.5.54"},{name:"dropbox",hex:"F01E3",version:"1.5.54"},{name:"drupal",hex:"F01E4",version:"1.5.54"},{name:"duck",hex:"F01E5",version:"1.5.54"},{name:"dumbbell",hex:"F01E6",version:"1.5.54"},{name:"dump-truck",hex:"F0C67",version:"3.2.89"},{name:"ear-hearing",hex:"F07C5",version:"2.0.46"},{name:"ear-hearing-off",hex:"F0A45",version:"2.6.95"},{name:"earbuds",hex:"F184F",version:"6.2.95"},{name:"earbuds-off",hex:"F1850",version:"6.2.95"},{name:"earbuds-off-outline",hex:"F1851",version:"6.2.95"},{name:"earbuds-outline",hex:"F1852",version:"6.2.95"},{name:"earth",hex:"F01E7",version:"1.5.54"},{name:"earth-arrow-right",hex:"F1311",version:"4.8.95"},{name:"earth-box",hex:"F06CD",version:"1.8.36"},{name:"earth-box-minus",hex:"F1407",version:"5.1.45"},{name:"earth-box-off",hex:"F06CE",version:"1.8.36"},{name:"earth-box-plus",hex:"F1406",version:"5.1.45"},{name:"earth-box-remove",hex:"F1408",version:"5.1.45"},{name:"earth-minus",hex:"F1404",version:"5.1.45"},{name:"earth-off",hex:"F01E8",version:"1.5.54"},{name:"earth-plus",hex:"F1403",version:"5.1.45"},{name:"earth-remove",hex:"F1405",version:"5.1.45"},{name:"egg",hex:"F0AAF",version:"2.7.94"},{name:"egg-easter",hex:"F0AB0",version:"2.7.94"},{name:"egg-fried",hex:"F184A",version:"6.2.95"},{name:"egg-off",hex:"F13F0",version:"5.1.45"},{name:"egg-off-outline",hex:"F13F1",version:"5.1.45"},{name:"egg-outline",hex:"F13F2",version:"5.1.45"},{name:"eiffel-tower",hex:"F156B",version:"5.5.55"},{name:"eight-track",hex:"F09EA",version:"2.5.94"},{name:"eject",hex:"F01EA",version:"1.5.54"},{name:"eject-outline",hex:"F0B91",version:"3.0.39"},{name:"electric-switch",hex:"F0E9F",version:"3.7.94"},{name:"electric-switch-closed",hex:"F10D9",version:"4.3.95"},{name:"electron-framework",hex:"F1024",version:"4.1.95"},{name:"elephant",hex:"F07C6",version:"2.0.46"},{name:"elevation-decline",hex:"F01EB",version:"1.5.54"},{name:"elevation-rise",hex:"F01EC",version:"1.5.54"},{name:"elevator",hex:"F01ED",version:"1.5.54"},{name:"elevator-down",hex:"F12C2",version:"4.8.95"},{name:"elevator-passenger",hex:"F1381",version:"4.9.95"},{name:"elevator-passenger-off",hex:"F1979",version:"6.5.95"},{name:"elevator-passenger-off-outline",hex:"F197A",version:"6.5.95"},{name:"elevator-passenger-outline",hex:"F197B",version:"6.5.95"},{name:"elevator-up",hex:"F12C1",version:"4.8.95"},{name:"ellipse",hex:"F0EA0",version:"3.7.94"},{name:"ellipse-outline",hex:"F0EA1",version:"3.7.94"},{name:"email",hex:"F01EE",version:"1.5.54"},{name:"email-alert",hex:"F06CF",version:"1.8.36"},{name:"email-alert-outline",hex:"F0D42",version:"3.4.93"},{name:"email-box",hex:"F0D03",version:"3.3.92"},{name:"email-check",hex:"F0AB1",version:"2.7.94"},{name:"email-check-outline",hex:"F0AB2",version:"2.7.94"},{name:"email-edit",hex:"F0EE3",version:"3.8.95"},{name:"email-edit-outline",hex:"F0EE4",version:"3.8.95"},{name:"email-fast",hex:"F186F",version:"6.2.95"},{name:"email-fast-outline",hex:"F1870",version:"6.2.95"},{name:"email-lock",hex:"F01F1",version:"1.5.54"},{name:"email-mark-as-unread",hex:"F0B92",version:"3.0.39"},{name:"email-minus",hex:"F0EE5",version:"3.8.95"},{name:"email-minus-outline",hex:"F0EE6",version:"3.8.95"},{name:"email-multiple",hex:"F0EE7",version:"3.8.95"},{name:"email-multiple-outline",hex:"F0EE8",version:"3.8.95"},{name:"email-newsletter",hex:"F0FB1",version:"4.0.96"},{name:"email-off",hex:"F13E3",version:"5.1.45"},{name:"email-off-outline",hex:"F13E4",version:"5.1.45"},{name:"email-open",hex:"F01EF",version:"1.5.54"},{name:"email-open-multiple",hex:"F0EE9",version:"3.8.95"},{name:"email-open-multiple-outline",hex:"F0EEA",version:"3.8.95"},{name:"email-open-outline",hex:"F05EF",version:"1.5.54"},{name:"email-outline",hex:"F01F0",version:"1.5.54"},{name:"email-plus",hex:"F09EB",version:"2.5.94"},{name:"email-plus-outline",hex:"F09EC",version:"2.5.94"},{name:"email-receive",hex:"F10DA",version:"4.3.95"},{name:"email-receive-outline",hex:"F10DB",version:"4.3.95"},{name:"email-remove",hex:"F1661",version:"5.7.55"},{name:"email-remove-outline",hex:"F1662",version:"5.7.55"},{name:"email-seal",hex:"F195B",version:"6.4.95"},{name:"email-seal-outline",hex:"F195C",version:"6.4.95"},{name:"email-search",hex:"F0961",version:"2.4.85"},{name:"email-search-outline",hex:"F0962",version:"2.4.85"},{name:"email-send",hex:"F10DC",version:"4.3.95"},{name:"email-send-outline",hex:"F10DD",version:"4.3.95"},{name:"email-sync",hex:"F12C7",version:"4.8.95"},{name:"email-sync-outline",hex:"F12C8",version:"4.8.95"},{name:"email-variant",hex:"F05F0",version:"1.5.54"},{name:"ember",hex:"F0B30",version:"2.8.94"},{name:"emby",hex:"F06B4",version:"1.7.22"},{name:"emoticon",hex:"F0C68",version:"3.2.89"},{name:"emoticon-angry",hex:"F0C69",version:"3.2.89"},{name:"emoticon-angry-outline",hex:"F0C6A",version:"3.2.89"},{name:"emoticon-confused",hex:"F10DE",version:"4.3.95"},{name:"emoticon-confused-outline",hex:"F10DF",version:"4.3.95"},{name:"emoticon-cool",hex:"F0C6B",version:"3.2.89"},{name:"emoticon-cool-outline",hex:"F01F3",version:"1.5.54"},{name:"emoticon-cry",hex:"F0C6C",version:"3.2.89"},{name:"emoticon-cry-outline",hex:"F0C6D",version:"3.2.89"},{name:"emoticon-dead",hex:"F0C6E",version:"3.2.89"},{name:"emoticon-dead-outline",hex:"F069B",version:"1.7.12"},{name:"emoticon-devil",hex:"F0C6F",version:"3.2.89"},{name:"emoticon-devil-outline",hex:"F01F4",version:"1.5.54"},{name:"emoticon-excited",hex:"F0C70",version:"3.2.89"},{name:"emoticon-excited-outline",hex:"F069C",version:"1.7.12"},{name:"emoticon-frown",hex:"F0F4C",version:"3.9.97"},{name:"emoticon-frown-outline",hex:"F0F4D",version:"3.9.97"},{name:"emoticon-happy",hex:"F0C71",version:"3.2.89"},{name:"emoticon-happy-outline",hex:"F01F5",version:"1.5.54"},{name:"emoticon-kiss",hex:"F0C72",version:"3.2.89"},{name:"emoticon-kiss-outline",hex:"F0C73",version:"3.2.89"},{name:"emoticon-lol",hex:"F1214",version:"4.6.95"},{name:"emoticon-lol-outline",hex:"F1215",version:"4.6.95"},{name:"emoticon-neutral",hex:"F0C74",version:"3.2.89"},{name:"emoticon-neutral-outline",hex:"F01F6",version:"1.5.54"},{name:"emoticon-outline",hex:"F01F2",version:"1.5.54"},{name:"emoticon-poop",hex:"F01F7",version:"1.5.54"},{name:"emoticon-poop-outline",hex:"F0C75",version:"3.2.89"},{name:"emoticon-sad",hex:"F0C76",version:"3.2.89"},{name:"emoticon-sad-outline",hex:"F01F8",version:"1.5.54"},{name:"emoticon-sick",hex:"F157C",version:"5.5.55"},{name:"emoticon-sick-outline",hex:"F157D",version:"5.5.55"},{name:"emoticon-tongue",hex:"F01F9",version:"1.5.54"},{name:"emoticon-tongue-outline",hex:"F0C77",version:"3.2.89"},{name:"emoticon-wink",hex:"F0C78",version:"3.2.89"},{name:"emoticon-wink-outline",hex:"F0C79",version:"3.2.89"},{name:"engine",hex:"F01FA",version:"1.5.54"},{name:"engine-off",hex:"F0A46",version:"2.6.95"},{name:"engine-off-outline",hex:"F0A47",version:"2.6.95"},{name:"engine-outline",hex:"F01FB",version:"1.5.54"},{name:"epsilon",hex:"F10E0",version:"4.3.95"},{name:"equal",hex:"F01FC",version:"1.5.54"},{name:"equal-box",hex:"F01FD",version:"1.5.54"},{name:"equalizer",hex:"F0EA2",version:"3.7.94"},{name:"equalizer-outline",hex:"F0EA3",version:"3.7.94"},{name:"eraser",hex:"F01FE",version:"1.5.54"},{name:"eraser-variant",hex:"F0642",version:"1.6.50"},{name:"escalator",hex:"F01FF",version:"1.5.54"},{name:"escalator-box",hex:"F1399",version:"5.0.45"},{name:"escalator-down",hex:"F12C0",version:"4.8.95"},{name:"escalator-up",hex:"F12BF",version:"4.8.95"},{name:"eslint",hex:"F0C7A",version:"3.2.89"},{name:"et",hex:"F0AB3",version:"2.7.94"},{name:"ethereum",hex:"F086A",version:"2.1.99"},{name:"ethernet",hex:"F0200",version:"1.5.54"},{name:"ethernet-cable",hex:"F0201",version:"1.5.54"},{name:"ethernet-cable-off",hex:"F0202",version:"1.5.54"},{name:"ev-plug-ccs1",hex:"F1519",version:"5.4.55"},{name:"ev-plug-ccs2",hex:"F151A",version:"5.4.55"},{name:"ev-plug-chademo",hex:"F151B",version:"5.4.55"},{name:"ev-plug-tesla",hex:"F151C",version:"5.4.55"},{name:"ev-plug-type1",hex:"F151D",version:"5.4.55"},{name:"ev-plug-type2",hex:"F151E",version:"5.4.55"},{name:"ev-station",hex:"F05F1",version:"1.5.54"},{name:"evernote",hex:"F0204",version:"1.5.54"},{name:"excavator",hex:"F1025",version:"4.1.95"},{name:"exclamation",hex:"F0205",version:"1.5.54"},{name:"exclamation-thick",hex:"F1238",version:"4.6.95"},{name:"exit-run",hex:"F0A48",version:"2.6.95"},{name:"exit-to-app",hex:"F0206",version:"1.5.54"},{name:"expand-all",hex:"F0AB4",version:"2.7.94"},{name:"expand-all-outline",hex:"F0AB5",version:"2.7.94"},{name:"expansion-card",hex:"F08AE",version:"2.2.43"},{name:"expansion-card-variant",hex:"F0FB2",version:"4.0.96"},{name:"exponent",hex:"F0963",version:"2.4.85"},{name:"exponent-box",hex:"F0964",version:"2.4.85"},{name:"export",hex:"F0207",version:"1.5.54"},{name:"export-variant",hex:"F0B93",version:"3.0.39"},{name:"eye",hex:"F0208",version:"1.5.54"},{name:"eye-arrow-left",hex:"F18FD",version:"6.4.95"},{name:"eye-arrow-left-outline",hex:"F18FE",version:"6.4.95"},{name:"eye-arrow-right",hex:"F18FF",version:"6.4.95"},{name:"eye-arrow-right-outline",hex:"F1900",version:"6.4.95"},{name:"eye-check",hex:"F0D04",version:"3.3.92"},{name:"eye-check-outline",hex:"F0D05",version:"3.3.92"},{name:"eye-circle",hex:"F0B94",version:"3.0.39"},{name:"eye-circle-outline",hex:"F0B95",version:"3.0.39"},{name:"eye-minus",hex:"F1026",version:"4.1.95"},{name:"eye-minus-outline",hex:"F1027",version:"4.1.95"},{name:"eye-off",hex:"F0209",version:"1.5.54"},{name:"eye-off-outline",hex:"F06D1",version:"1.8.36"},{name:"eye-outline",hex:"F06D0",version:"1.8.36"},{name:"eye-plus",hex:"F086B",version:"2.1.99"},{name:"eye-plus-outline",hex:"F086C",version:"2.1.99"},{name:"eye-refresh",hex:"F197C",version:"6.5.95"},{name:"eye-refresh-outline",hex:"F197D",version:"6.5.95"},{name:"eye-remove",hex:"F15E3",version:"5.6.55"},{name:"eye-remove-outline",hex:"F15E4",version:"5.6.55"},{name:"eye-settings",hex:"F086D",version:"2.1.99"},{name:"eye-settings-outline",hex:"F086E",version:"2.1.99"},{name:"eyedropper",hex:"F020A",version:"1.5.54"},{name:"eyedropper-minus",hex:"F13DD",version:"5.1.45"},{name:"eyedropper-off",hex:"F13DF",version:"5.1.45"},{name:"eyedropper-plus",hex:"F13DC",version:"5.1.45"},{name:"eyedropper-remove",hex:"F13DE",version:"5.1.45"},{name:"eyedropper-variant",hex:"F020B",version:"1.5.54"},{name:"face-agent",hex:"F0D70",version:"3.4.93"},{name:"face-man",hex:"F0643",version:"1.6.50"},{name:"face-man-outline",hex:"F0B96",version:"3.0.39"},{name:"face-man-profile",hex:"F0644",version:"1.6.50"},{name:"face-man-shimmer",hex:"F15CC",version:"5.6.55"},{name:"face-man-shimmer-outline",hex:"F15CD",version:"5.6.55"},{name:"face-mask",hex:"F1586",version:"5.5.55"},{name:"face-mask-outline",hex:"F1587",version:"5.5.55"},{name:"face-recognition",hex:"F0C7B",version:"3.2.89"},{name:"face-woman",hex:"F1077",version:"4.2.95"},{name:"face-woman-outline",hex:"F1078",version:"4.2.95"},{name:"face-woman-profile",hex:"F1076",version:"4.2.95"},{name:"face-woman-shimmer",hex:"F15CE",version:"5.6.55"},{name:"face-woman-shimmer-outline",hex:"F15CF",version:"5.6.55"},{name:"facebook",hex:"F020C",version:"1.5.54"},{name:"facebook-gaming",hex:"F07DD",version:"2.0.46"},{name:"facebook-messenger",hex:"F020E",version:"1.5.54"},{name:"facebook-workplace",hex:"F0B31",version:"2.8.94"},{name:"factory",hex:"F020F",version:"1.5.54"},{name:"family-tree",hex:"F160E",version:"5.6.55"},{name:"fan",hex:"F0210",version:"1.5.54"},{name:"fan-alert",hex:"F146C",version:"5.2.45"},{name:"fan-auto",hex:"F171D",version:"5.9.55"},{name:"fan-chevron-down",hex:"F146D",version:"5.2.45"},{name:"fan-chevron-up",hex:"F146E",version:"5.2.45"},{name:"fan-minus",hex:"F1470",version:"5.2.45"},{name:"fan-off",hex:"F081D",version:"2.1.19"},{name:"fan-plus",hex:"F146F",version:"5.2.45"},{name:"fan-remove",hex:"F1471",version:"5.2.45"},{name:"fan-speed-1",hex:"F1472",version:"5.2.45"},{name:"fan-speed-2",hex:"F1473",version:"5.2.45"},{name:"fan-speed-3",hex:"F1474",version:"5.2.45"},{name:"fast-forward",hex:"F0211",version:"1.5.54"},{name:"fast-forward-10",hex:"F0D71",version:"3.4.93"},{name:"fast-forward-15",hex:"F193A",version:"6.4.95"},{name:"fast-forward-30",hex:"F0D06",version:"3.3.92"},{name:"fast-forward-5",hex:"F11F8",version:"4.6.95"},{name:"fast-forward-60",hex:"F160B",version:"5.6.55"},{name:"fast-forward-outline",hex:"F06D2",version:"1.8.36"},{name:"fax",hex:"F0212",version:"1.5.54"},{name:"feather",hex:"F06D3",version:"1.8.36"},{name:"feature-search",hex:"F0A49",version:"2.6.95"},{name:"feature-search-outline",hex:"F0A4A",version:"2.6.95"},{name:"fedora",hex:"F08DB",version:"2.3.50"},{name:"fence",hex:"F179A",version:"6.1.95"},{name:"fence-electric",hex:"F17F6",version:"6.1.95"},{name:"fencing",hex:"F14C1",version:"5.3.45"},{name:"ferris-wheel",hex:"F0EA4",version:"3.7.94"},{name:"ferry",hex:"F0213",version:"1.5.54"},{name:"file",hex:"F0214",version:"1.5.54"},{name:"file-account",hex:"F073B",version:"1.9.32"},{name:"file-account-outline",hex:"F1028",version:"4.1.95"},{name:"file-alert",hex:"F0A4B",version:"2.6.95"},{name:"file-alert-outline",hex:"F0A4C",version:"2.6.95"},{name:"file-cabinet",hex:"F0AB6",version:"2.7.94"},{name:"file-cad",hex:"F0EEB",version:"3.8.95"},{name:"file-cad-box",hex:"F0EEC",version:"3.8.95"},{name:"file-cancel",hex:"F0DC6",version:"3.5.94"},{name:"file-cancel-outline",hex:"F0DC7",version:"3.5.94"},{name:"file-certificate",hex:"F1186",version:"4.4.95"},{name:"file-certificate-outline",hex:"F1187",version:"4.4.95"},{name:"file-chart",hex:"F0215",version:"1.5.54"},{name:"file-chart-outline",hex:"F1029",version:"4.1.95"},{name:"file-check",hex:"F0216",version:"1.5.54"},{name:"file-check-outline",hex:"F0E29",version:"3.6.95"},{name:"file-clock",hex:"F12E1",version:"4.8.95"},{name:"file-clock-outline",hex:"F12E2",version:"4.8.95"},{name:"file-cloud",hex:"F0217",version:"1.5.54"},{name:"file-cloud-outline",hex:"F102A",version:"4.1.95"},{name:"file-code",hex:"F022E",version:"1.5.54"},{name:"file-code-outline",hex:"F102B",version:"4.1.95"},{name:"file-cog",hex:"F107B",version:"4.2.95"},{name:"file-cog-outline",hex:"F107C",version:"4.2.95"},{name:"file-compare",hex:"F08AA",version:"2.2.43"},{name:"file-delimited",hex:"F0218",version:"1.5.54"},{name:"file-delimited-outline",hex:"F0EA5",version:"3.7.94"},{name:"file-document",hex:"F0219",version:"1.5.54"},{name:"file-document-edit",hex:"F0DC8",version:"3.5.94"},{name:"file-document-edit-outline",hex:"F0DC9",version:"3.5.94"},{name:"file-document-multiple",hex:"F1517",version:"5.4.55"},{name:"file-document-multiple-outline",hex:"F1518",version:"5.4.55"},{name:"file-document-outline",hex:"F09EE",version:"2.5.94"},{name:"file-download",hex:"F0965",version:"2.4.85"},{name:"file-download-outline",hex:"F0966",version:"2.4.85"},{name:"file-edit",hex:"F11E7",version:"4.5.95"},{name:"file-edit-outline",hex:"F11E8",version:"4.5.95"},{name:"file-excel",hex:"F021B",version:"1.5.54"},{name:"file-excel-box",hex:"F021C",version:"1.5.54"},{name:"file-excel-box-outline",hex:"F102C",version:"4.1.95"},{name:"file-excel-outline",hex:"F102D",version:"4.1.95"},{name:"file-export",hex:"F021D",version:"1.5.54"},{name:"file-export-outline",hex:"F102E",version:"4.1.95"},{name:"file-eye",hex:"F0DCA",version:"3.5.94"},{name:"file-eye-outline",hex:"F0DCB",version:"3.5.94"},{name:"file-find",hex:"F021E",version:"1.5.54"},{name:"file-find-outline",hex:"F0B97",version:"3.0.39"},{name:"file-gif-box",hex:"F0D78",version:"3.4.93"},{name:"file-hidden",hex:"F0613",version:"1.5.54"},{name:"file-image",hex:"F021F",version:"1.5.54"},{name:"file-image-marker",hex:"F1772",version:"6.1.95"},{name:"file-image-marker-outline",hex:"F1773",version:"6.1.95"},{name:"file-image-minus",hex:"F193B",version:"6.4.95"},{name:"file-image-minus-outline",hex:"F193C",version:"6.4.95"},{name:"file-image-outline",hex:"F0EB0",version:"3.7.94"},{name:"file-image-plus",hex:"F193D",version:"6.4.95"},{name:"file-image-plus-outline",hex:"F193E",version:"6.4.95"},{name:"file-image-remove",hex:"F193F",version:"6.4.95"},{name:"file-image-remove-outline",hex:"F1940",version:"6.4.95"},{name:"file-import",hex:"F0220",version:"1.5.54"},{name:"file-import-outline",hex:"F102F",version:"4.1.95"},{name:"file-jpg-box",hex:"F0225",version:"1.5.54"},{name:"file-key",hex:"F1184",version:"4.4.95"},{name:"file-key-outline",hex:"F1185",version:"4.4.95"},{name:"file-link",hex:"F1177",version:"4.4.95"},{name:"file-link-outline",hex:"F1178",version:"4.4.95"},{name:"file-lock",hex:"F0221",version:"1.5.54"},{name:"file-lock-outline",hex:"F1030",version:"4.1.95"},{name:"file-marker",hex:"F1774",version:"6.1.95"},{name:"file-marker-outline",hex:"F1775",version:"6.1.95"},{name:"file-move",hex:"F0AB9",version:"2.7.94"},{name:"file-move-outline",hex:"F1031",version:"4.1.95"},{name:"file-multiple",hex:"F0222",version:"1.5.54"},{name:"file-multiple-outline",hex:"F1032",version:"4.1.95"},{name:"file-music",hex:"F0223",version:"1.5.54"},{name:"file-music-outline",hex:"F0E2A",version:"3.6.95"},{name:"file-outline",hex:"F0224",version:"1.5.54"},{name:"file-pdf-box",hex:"F0226",version:"1.5.54"},{name:"file-percent",hex:"F081E",version:"2.1.19"},{name:"file-percent-outline",hex:"F1033",version:"4.1.95"},{name:"file-phone",hex:"F1179",version:"4.4.95"},{name:"file-phone-outline",hex:"F117A",version:"4.4.95"},{name:"file-plus",hex:"F0752",version:"1.9.32"},{name:"file-plus-outline",hex:"F0EED",version:"3.8.95"},{name:"file-png-box",hex:"F0E2D",version:"3.6.95"},{name:"file-powerpoint",hex:"F0227",version:"1.5.54"},{name:"file-powerpoint-box",hex:"F0228",version:"1.5.54"},{name:"file-powerpoint-box-outline",hex:"F1034",version:"4.1.95"},{name:"file-powerpoint-outline",hex:"F1035",version:"4.1.95"},{name:"file-presentation-box",hex:"F0229",version:"1.5.54"},{name:"file-question",hex:"F086F",version:"2.1.99"},{name:"file-question-outline",hex:"F1036",version:"4.1.95"},{name:"file-refresh",hex:"F0918",version:"2.3.50"},{name:"file-refresh-outline",hex:"F0541",version:"1.5.54"},{name:"file-remove",hex:"F0B98",version:"3.0.39"},{name:"file-remove-outline",hex:"F1037",version:"4.1.95"},{name:"file-replace",hex:"F0B32",version:"2.8.94"},{name:"file-replace-outline",hex:"F0B33",version:"2.8.94"},{name:"file-restore",hex:"F0670",version:"1.6.50"},{name:"file-restore-outline",hex:"F1038",version:"4.1.95"},{name:"file-search",hex:"F0C7C",version:"3.2.89"},{name:"file-search-outline",hex:"F0C7D",version:"3.2.89"},{name:"file-send",hex:"F022A",version:"1.5.54"},{name:"file-send-outline",hex:"F1039",version:"4.1.95"},{name:"file-settings",hex:"F1079",version:"4.2.95"},{name:"file-settings-outline",hex:"F107A",version:"4.2.95"},{name:"file-sign",hex:"F19C3",version:"6.5.95"},{name:"file-star",hex:"F103A",version:"4.1.95"},{name:"file-star-outline",hex:"F103B",version:"4.1.95"},{name:"file-swap",hex:"F0FB4",version:"4.0.96"},{name:"file-swap-outline",hex:"F0FB5",version:"4.0.96"},{name:"file-sync",hex:"F1216",version:"4.6.95"},{name:"file-sync-outline",hex:"F1217",version:"4.6.95"},{name:"file-table",hex:"F0C7E",version:"3.2.89"},{name:"file-table-box",hex:"F10E1",version:"4.3.95"},{name:"file-table-box-multiple",hex:"F10E2",version:"4.3.95"},{name:"file-table-box-multiple-outline",hex:"F10E3",version:"4.3.95"},{name:"file-table-box-outline",hex:"F10E4",version:"4.3.95"},{name:"file-table-outline",hex:"F0C7F",version:"3.2.89"},{name:"file-tree",hex:"F0645",version:"1.6.50"},{name:"file-tree-outline",hex:"F13D2",version:"5.1.45"},{name:"file-undo",hex:"F08DC",version:"2.3.50"},{name:"file-undo-outline",hex:"F103C",version:"4.1.95"},{name:"file-upload",hex:"F0A4D",version:"2.6.95"},{name:"file-upload-outline",hex:"F0A4E",version:"2.6.95"},{name:"file-video",hex:"F022B",version:"1.5.54"},{name:"file-video-outline",hex:"F0E2C",version:"3.6.95"},{name:"file-word",hex:"F022C",version:"1.5.54"},{name:"file-word-box",hex:"F022D",version:"1.5.54"},{name:"file-word-box-outline",hex:"F103D",version:"4.1.95"},{name:"file-word-outline",hex:"F103E",version:"4.1.95"},{name:"film",hex:"F022F",version:"1.5.54"},{name:"filmstrip",hex:"F0230",version:"1.5.54"},{name:"filmstrip-box",hex:"F0332",version:"1.5.54"},{name:"filmstrip-box-multiple",hex:"F0D18",version:"3.3.92"},{name:"filmstrip-off",hex:"F0231",version:"1.5.54"},{name:"filter",hex:"F0232",version:"1.5.54"},{name:"filter-check",hex:"F18EC",version:"6.3.95"},{name:"filter-check-outline",hex:"F18ED",version:"6.3.95"},{name:"filter-menu",hex:"F10E5",version:"4.3.95"},{name:"filter-menu-outline",hex:"F10E6",version:"4.3.95"},{name:"filter-minus",hex:"F0EEE",version:"3.8.95"},{name:"filter-minus-outline",hex:"F0EEF",version:"3.8.95"},{name:"filter-off",hex:"F14EF",version:"5.4.55"},{name:"filter-off-outline",hex:"F14F0",version:"5.4.55"},{name:"filter-outline",hex:"F0233",version:"1.5.54"},{name:"filter-plus",hex:"F0EF0",version:"3.8.95"},{name:"filter-plus-outline",hex:"F0EF1",version:"3.8.95"},{name:"filter-remove",hex:"F0234",version:"1.5.54"},{name:"filter-remove-outline",hex:"F0235",version:"1.5.54"},{name:"filter-variant",hex:"F0236",version:"1.5.54"},{name:"filter-variant-minus",hex:"F1112",version:"4.3.95"},{name:"filter-variant-plus",hex:"F1113",version:"4.3.95"},{name:"filter-variant-remove",hex:"F103F",version:"4.1.95"},{name:"finance",hex:"F081F",version:"2.1.19"},{name:"find-replace",hex:"F06D4",version:"1.8.36"},{name:"fingerprint",hex:"F0237",version:"1.5.54"},{name:"fingerprint-off",hex:"F0EB1",version:"3.7.94"},{name:"fire",hex:"F0238",version:"1.5.54"},{name:"fire-alert",hex:"F15D7",version:"5.6.55"},{name:"fire-circle",hex:"F1807",version:"6.1.95"},{name:"fire-extinguisher",hex:"F0EF2",version:"3.8.95"},{name:"fire-hydrant",hex:"F1137",version:"4.4.95"},{name:"fire-hydrant-alert",hex:"F1138",version:"4.4.95"},{name:"fire-hydrant-off",hex:"F1139",version:"4.4.95"},{name:"fire-off",hex:"F1722",version:"5.9.55"},{name:"fire-truck",hex:"F08AB",version:"2.2.43"},{name:"firebase",hex:"F0967",version:"2.4.85"},{name:"firefox",hex:"F0239",version:"1.5.54"},{name:"fireplace",hex:"F0E2E",version:"3.6.95"},{name:"fireplace-off",hex:"F0E2F",version:"3.6.95"},{name:"firewire",hex:"F05BE",version:"1.5.54"},{name:"firework",hex:"F0E30",version:"3.6.95"},{name:"firework-off",hex:"F1723",version:"5.9.55"},{name:"fish",hex:"F023A",version:"1.5.54"},{name:"fish-off",hex:"F13F3",version:"5.1.45"},{name:"fishbowl",hex:"F0EF3",version:"3.8.95"},{name:"fishbowl-outline",hex:"F0EF4",version:"3.8.95"},{name:"fit-to-page",hex:"F0EF5",version:"3.8.95"},{name:"fit-to-page-outline",hex:"F0EF6",version:"3.8.95"},{name:"fit-to-screen",hex:"F18F4",version:"6.3.95"},{name:"fit-to-screen-outline",hex:"F18F5",version:"6.3.95"},{name:"flag",hex:"F023B",version:"1.5.54"},{name:"flag-checkered",hex:"F023C",version:"1.5.54"},{name:"flag-minus",hex:"F0B99",version:"3.0.39"},{name:"flag-minus-outline",hex:"F10B2",version:"4.2.95"},{name:"flag-off",hex:"F18EE",version:"6.3.95"},{name:"flag-off-outline",hex:"F18EF",version:"6.3.95"},{name:"flag-outline",hex:"F023D",version:"1.5.54"},{name:"flag-plus",hex:"F0B9A",version:"3.0.39"},{name:"flag-plus-outline",hex:"F10B3",version:"4.2.95"},{name:"flag-remove",hex:"F0B9B",version:"3.0.39"},{name:"flag-remove-outline",hex:"F10B4",version:"4.2.95"},{name:"flag-triangle",hex:"F023F",version:"1.5.54"},{name:"flag-variant",hex:"F0240",version:"1.5.54"},{name:"flag-variant-outline",hex:"F023E",version:"1.5.54"},{name:"flare",hex:"F0D72",version:"3.4.93"},{name:"flash",hex:"F0241",version:"1.5.54"},{name:"flash-alert",hex:"F0EF7",version:"3.8.95"},{name:"flash-alert-outline",hex:"F0EF8",version:"3.8.95"},{name:"flash-auto",hex:"F0242",version:"1.5.54"},{name:"flash-off",hex:"F0243",version:"1.5.54"},{name:"flash-outline",hex:"F06D5",version:"1.8.36"},{name:"flash-red-eye",hex:"F067B",version:"1.7.12"},{name:"flashlight",hex:"F0244",version:"1.5.54"},{name:"flashlight-off",hex:"F0245",version:"1.5.54"},{name:"flask",hex:"F0093",version:"1.5.54"},{name:"flask-empty",hex:"F0094",version:"1.5.54"},{name:"flask-empty-minus",hex:"F123A",version:"4.6.95"},{name:"flask-empty-minus-outline",hex:"F123B",version:"4.6.95"},{name:"flask-empty-off",hex:"F13F4",version:"5.1.45"},{name:"flask-empty-off-outline",hex:"F13F5",version:"5.1.45"},{name:"flask-empty-outline",hex:"F0095",version:"1.5.54"},{name:"flask-empty-plus",hex:"F123C",version:"4.6.95"},{name:"flask-empty-plus-outline",hex:"F123D",version:"4.6.95"},{name:"flask-empty-remove",hex:"F123E",version:"4.6.95"},{name:"flask-empty-remove-outline",hex:"F123F",version:"4.6.95"},{name:"flask-minus",hex:"F1240",version:"4.6.95"},{name:"flask-minus-outline",hex:"F1241",version:"4.6.95"},{name:"flask-off",hex:"F13F6",version:"5.1.45"},{name:"flask-off-outline",hex:"F13F7",version:"5.1.45"},{name:"flask-outline",hex:"F0096",version:"1.5.54"},{name:"flask-plus",hex:"F1242",version:"4.6.95"},{name:"flask-plus-outline",hex:"F1243",version:"4.6.95"},{name:"flask-remove",hex:"F1244",version:"4.6.95"},{name:"flask-remove-outline",hex:"F1245",version:"4.6.95"},{name:"flask-round-bottom",hex:"F124B",version:"4.6.95"},{name:"flask-round-bottom-empty",hex:"F124C",version:"4.6.95"},{name:"flask-round-bottom-empty-outline",hex:"F124D",version:"4.6.95"},{name:"flask-round-bottom-outline",hex:"F124E",version:"4.6.95"},{name:"fleur-de-lis",hex:"F1303",version:"4.8.95"},{name:"flip-horizontal",hex:"F10E7",version:"4.3.95"},{name:"flip-to-back",hex:"F0247",version:"1.5.54"},{name:"flip-to-front",hex:"F0248",version:"1.5.54"},{name:"flip-vertical",hex:"F10E8",version:"4.3.95"},{name:"floor-lamp",hex:"F08DD",version:"2.3.50"},{name:"floor-lamp-dual",hex:"F1040",version:"4.1.95"},{name:"floor-lamp-dual-outline",hex:"F17CE",version:"6.1.95"},{name:"floor-lamp-outline",hex:"F17C8",version:"6.1.95"},{name:"floor-lamp-torchiere",hex:"F1747",version:"6.1.95"},{name:"floor-lamp-torchiere-outline",hex:"F17D6",version:"6.1.95"},{name:"floor-lamp-torchiere-variant",hex:"F1041",version:"4.1.95"},{name:"floor-lamp-torchiere-variant-outline",hex:"F17CF",version:"6.1.95"},{name:"floor-plan",hex:"F0821",version:"2.1.19"},{name:"floppy",hex:"F0249",version:"1.5.54"},{name:"floppy-variant",hex:"F09EF",version:"2.5.94"},{name:"flower",hex:"F024A",version:"1.5.54"},{name:"flower-outline",hex:"F09F0",version:"2.5.94"},{name:"flower-pollen",hex:"F1885",version:"6.2.95"},{name:"flower-pollen-outline",hex:"F1886",version:"6.2.95"},{name:"flower-poppy",hex:"F0D08",version:"3.3.92"},{name:"flower-tulip",hex:"F09F1",version:"2.5.94"},{name:"flower-tulip-outline",hex:"F09F2",version:"2.5.94"},{name:"focus-auto",hex:"F0F4E",version:"3.9.97"},{name:"focus-field",hex:"F0F4F",version:"3.9.97"},{name:"focus-field-horizontal",hex:"F0F50",version:"3.9.97"},{name:"focus-field-vertical",hex:"F0F51",version:"3.9.97"},{name:"folder",hex:"F024B",version:"1.5.54"},{name:"folder-account",hex:"F024C",version:"1.5.54"},{name:"folder-account-outline",hex:"F0B9C",version:"3.0.39"},{name:"folder-alert",hex:"F0DCC",version:"3.5.94"},{name:"folder-alert-outline",hex:"F0DCD",version:"3.5.94"},{name:"folder-check",hex:"F197E",version:"6.5.95"},{name:"folder-check-outline",hex:"F197F",version:"6.5.95"},{name:"folder-clock",hex:"F0ABA",version:"2.7.94"},{name:"folder-clock-outline",hex:"F0ABB",version:"2.7.94"},{name:"folder-cog",hex:"F107F",version:"4.2.95"},{name:"folder-cog-outline",hex:"F1080",version:"4.2.95"},{name:"folder-download",hex:"F024D",version:"1.5.54"},{name:"folder-download-outline",hex:"F10E9",version:"4.3.95"},{name:"folder-edit",hex:"F08DE",version:"2.3.50"},{name:"folder-edit-outline",hex:"F0DCE",version:"3.5.94"},{name:"folder-eye",hex:"F178A",version:"6.1.95"},{name:"folder-eye-outline",hex:"F178B",version:"6.1.95"},{name:"folder-google-drive",hex:"F024E",version:"1.5.54"},{name:"folder-heart",hex:"F10EA",version:"4.3.95"},{name:"folder-heart-outline",hex:"F10EB",version:"4.3.95"},{name:"folder-hidden",hex:"F179E",version:"6.1.95"},{name:"folder-home",hex:"F10B5",version:"4.2.95"},{name:"folder-home-outline",hex:"F10B6",version:"4.2.95"},{name:"folder-image",hex:"F024F",version:"1.5.54"},{name:"folder-information",hex:"F10B7",version:"4.2.95"},{name:"folder-information-outline",hex:"F10B8",version:"4.2.95"},{name:"folder-key",hex:"F08AC",version:"2.2.43"},{name:"folder-key-network",hex:"F08AD",version:"2.2.43"},{name:"folder-key-network-outline",hex:"F0C80",version:"3.2.89"},{name:"folder-key-outline",hex:"F10EC",version:"4.3.95"},{name:"folder-lock",hex:"F0250",version:"1.5.54"},{name:"folder-lock-open",hex:"F0251",version:"1.5.54"},{name:"folder-marker",hex:"F126D",version:"4.7.95"},{name:"folder-marker-outline",hex:"F126E",version:"4.7.95"},{name:"folder-move",hex:"F0252",version:"1.5.54"},{name:"folder-move-outline",hex:"F1246",version:"4.6.95"},{name:"folder-multiple",hex:"F0253",version:"1.5.54"},{name:"folder-multiple-image",hex:"F0254",version:"1.5.54"},{name:"folder-multiple-outline",hex:"F0255",version:"1.5.54"},{name:"folder-multiple-plus",hex:"F147E",version:"5.3.45"},{name:"folder-multiple-plus-outline",hex:"F147F",version:"5.3.45"},{name:"folder-music",hex:"F1359",version:"4.9.95"},{name:"folder-music-outline",hex:"F135A",version:"4.9.95"},{name:"folder-network",hex:"F0870",version:"2.1.99"},{name:"folder-network-outline",hex:"F0C81",version:"3.2.89"},{name:"folder-open",hex:"F0770",version:"1.9.32"},{name:"folder-open-outline",hex:"F0DCF",version:"3.5.94"},{name:"folder-outline",hex:"F0256",version:"1.5.54"},{name:"folder-plus",hex:"F0257",version:"1.5.54"},{name:"folder-plus-outline",hex:"F0B9D",version:"3.0.39"},{name:"folder-pound",hex:"F0D09",version:"3.3.92"},{name:"folder-pound-outline",hex:"F0D0A",version:"3.3.92"},{name:"folder-refresh",hex:"F0749",version:"1.9.32"},{name:"folder-refresh-outline",hex:"F0542",version:"1.5.54"},{name:"folder-remove",hex:"F0258",version:"1.5.54"},{name:"folder-remove-outline",hex:"F0B9E",version:"3.0.39"},{name:"folder-search",hex:"F0968",version:"2.4.85"},{name:"folder-search-outline",hex:"F0969",version:"2.4.85"},{name:"folder-settings",hex:"F107D",version:"4.2.95"},{name:"folder-settings-outline",hex:"F107E",version:"4.2.95"},{name:"folder-star",hex:"F069D",version:"1.7.12"},{name:"folder-star-multiple",hex:"F13D3",version:"5.1.45"},{name:"folder-star-multiple-outline",hex:"F13D4",version:"5.1.45"},{name:"folder-star-outline",hex:"F0B9F",version:"3.0.39"},{name:"folder-swap",hex:"F0FB6",version:"4.0.96"},{name:"folder-swap-outline",hex:"F0FB7",version:"4.0.96"},{name:"folder-sync",hex:"F0D0B",version:"3.3.92"},{name:"folder-sync-outline",hex:"F0D0C",version:"3.3.92"},{name:"folder-table",hex:"F12E3",version:"4.8.95"},{name:"folder-table-outline",hex:"F12E4",version:"4.8.95"},{name:"folder-text",hex:"F0C82",version:"3.2.89"},{name:"folder-text-outline",hex:"F0C83",version:"3.2.89"},{name:"folder-upload",hex:"F0259",version:"1.5.54"},{name:"folder-upload-outline",hex:"F10ED",version:"4.3.95"},{name:"folder-zip",hex:"F06EB",version:"1.8.36"},{name:"folder-zip-outline",hex:"F07B9",version:"2.0.46"},{name:"font-awesome",hex:"F003A",version:"1.5.54"},{name:"food",hex:"F025A",version:"1.5.54"},{name:"food-apple",hex:"F025B",version:"1.5.54"},{name:"food-apple-outline",hex:"F0C84",version:"3.2.89"},{name:"food-croissant",hex:"F07C8",version:"2.0.46"},{name:"food-drumstick",hex:"F141F",version:"5.2.45"},{name:"food-drumstick-off",hex:"F1468",version:"5.2.45"},{name:"food-drumstick-off-outline",hex:"F1469",version:"5.2.45"},{name:"food-drumstick-outline",hex:"F1420",version:"5.2.45"},{name:"food-fork-drink",hex:"F05F2",version:"1.5.54"},{name:"food-halal",hex:"F1572",version:"5.5.55"},{name:"food-hot-dog",hex:"F184B",version:"6.2.95"},{name:"food-kosher",hex:"F1573",version:"5.5.55"},{name:"food-off",hex:"F05F3",version:"1.5.54"},{name:"food-off-outline",hex:"F1915",version:"6.4.95"},{name:"food-outline",hex:"F1916",version:"6.4.95"},{name:"food-steak",hex:"F146A",version:"5.2.45"},{name:"food-steak-off",hex:"F146B",version:"5.2.45"},{name:"food-takeout-box",hex:"F1836",version:"6.2.95"},{name:"food-takeout-box-outline",hex:"F1837",version:"6.2.95"},{name:"food-turkey",hex:"F171C",version:"5.9.55"},{name:"food-variant",hex:"F025C",version:"1.5.54"},{name:"food-variant-off",hex:"F13E5",version:"5.1.45"},{name:"foot-print",hex:"F0F52",version:"3.9.97"},{name:"football",hex:"F025D",version:"1.5.54"},{name:"football-australian",hex:"F025E",version:"1.5.54"},{name:"football-helmet",hex:"F025F",version:"1.5.54"},{name:"forest",hex:"F1897",version:"6.2.95"},{name:"forklift",hex:"F07C9",version:"2.0.46"},{name:"form-dropdown",hex:"F1400",version:"5.1.45"},{name:"form-select",hex:"F1401",version:"5.1.45"},{name:"form-textarea",hex:"F1095",version:"4.2.95"},{name:"form-textbox",hex:"F060E",version:"1.5.54"},{name:"form-textbox-lock",hex:"F135D",version:"4.9.95"},{name:"form-textbox-password",hex:"F07F5",version:"2.0.46"},{name:"format-align-bottom",hex:"F0753",version:"1.9.32"},{name:"format-align-center",hex:"F0260",version:"1.5.54"},{name:"format-align-justify",hex:"F0261",version:"1.5.54"},{name:"format-align-left",hex:"F0262",version:"1.5.54"},{name:"format-align-middle",hex:"F0754",version:"1.9.32"},{name:"format-align-right",hex:"F0263",version:"1.5.54"},{name:"format-align-top",hex:"F0755",version:"1.9.32"},{name:"format-annotation-minus",hex:"F0ABC",version:"2.7.94"},{name:"format-annotation-plus",hex:"F0646",version:"1.6.50"},{name:"format-bold",hex:"F0264",version:"1.5.54"},{name:"format-clear",hex:"F0265",version:"1.5.54"},{name:"format-color-fill",hex:"F0266",version:"1.5.54"},{name:"format-color-highlight",hex:"F0E31",version:"3.6.95"},{name:"format-color-marker-cancel",hex:"F1313",version:"4.8.95"},{name:"format-color-text",hex:"F069E",version:"1.7.12"},{name:"format-columns",hex:"F08DF",version:"2.3.50"},{name:"format-float-center",hex:"F0267",version:"1.5.54"},{name:"format-float-left",hex:"F0268",version:"1.5.54"},{name:"format-float-none",hex:"F0269",version:"1.5.54"},{name:"format-float-right",hex:"F026A",version:"1.5.54"},{name:"format-font",hex:"F06D6",version:"1.8.36"},{name:"format-font-size-decrease",hex:"F09F3",version:"2.5.94"},{name:"format-font-size-increase",hex:"F09F4",version:"2.5.94"},{name:"format-header-1",hex:"F026B",version:"1.5.54"},{name:"format-header-2",hex:"F026C",version:"1.5.54"},{name:"format-header-3",hex:"F026D",version:"1.5.54"},{name:"format-header-4",hex:"F026E",version:"1.5.54"},{name:"format-header-5",hex:"F026F",version:"1.5.54"},{name:"format-header-6",hex:"F0270",version:"1.5.54"},{name:"format-header-decrease",hex:"F0271",version:"1.5.54"},{name:"format-header-equal",hex:"F0272",version:"1.5.54"},{name:"format-header-increase",hex:"F0273",version:"1.5.54"},{name:"format-header-pound",hex:"F0274",version:"1.5.54"},{name:"format-horizontal-align-center",hex:"F061E",version:"1.6.50"},{name:"format-horizontal-align-left",hex:"F061F",version:"1.6.50"},{name:"format-horizontal-align-right",hex:"F0620",version:"1.6.50"},{name:"format-indent-decrease",hex:"F0275",version:"1.5.54"},{name:"format-indent-increase",hex:"F0276",version:"1.5.54"},{name:"format-italic",hex:"F0277",version:"1.5.54"},{name:"format-letter-case",hex:"F0B34",version:"2.8.94"},{name:"format-letter-case-lower",hex:"F0B35",version:"2.8.94"},{name:"format-letter-case-upper",hex:"F0B36",version:"2.8.94"},{name:"format-letter-ends-with",hex:"F0FB8",version:"4.0.96"},{name:"format-letter-matches",hex:"F0FB9",version:"4.0.96"},{name:"format-letter-spacing",hex:"F1956",version:"6.4.95"},{name:"format-letter-starts-with",hex:"F0FBA",version:"4.0.96"},{name:"format-line-spacing",hex:"F0278",version:"1.5.54"},{name:"format-line-style",hex:"F05C8",version:"1.5.54"},{name:"format-line-weight",hex:"F05C9",version:"1.5.54"},{name:"format-list-bulleted",hex:"F0279",version:"1.5.54"},{name:"format-list-bulleted-square",hex:"F0DD0",version:"3.5.94"},{name:"format-list-bulleted-triangle",hex:"F0EB2",version:"3.7.94"},{name:"format-list-bulleted-type",hex:"F027A",version:"1.5.54"},{name:"format-list-checkbox",hex:"F096A",version:"2.4.85"},{name:"format-list-checks",hex:"F0756",version:"1.9.32"},{name:"format-list-group",hex:"F1860",version:"6.2.95"},{name:"format-list-numbered",hex:"F027B",version:"1.5.54"},{name:"format-list-numbered-rtl",hex:"F0D0D",version:"3.3.92"},{name:"format-list-text",hex:"F126F",version:"4.7.95"},{name:"format-overline",hex:"F0EB3",version:"3.7.94"},{name:"format-page-break",hex:"F06D7",version:"1.8.36"},{name:"format-page-split",hex:"F1917",version:"6.4.95"},{name:"format-paint",hex:"F027C",version:"1.5.54"},{name:"format-paragraph",hex:"F027D",version:"1.5.54"},{name:"format-pilcrow",hex:"F06D8",version:"1.8.36"},{name:"format-quote-close",hex:"F027E",version:"1.5.54"},{name:"format-quote-close-outline",hex:"F11A8",version:"4.5.95"},{name:"format-quote-open",hex:"F0757",version:"1.9.32"},{name:"format-quote-open-outline",hex:"F11A7",version:"4.5.95"},{name:"format-rotate-90",hex:"F06AA",version:"1.7.12"},{name:"format-section",hex:"F069F",version:"1.7.12"},{name:"format-size",hex:"F027F",version:"1.5.54"},{name:"format-strikethrough",hex:"F0280",version:"1.5.54"},{name:"format-strikethrough-variant",hex:"F0281",version:"1.5.54"},{name:"format-subscript",hex:"F0282",version:"1.5.54"},{name:"format-superscript",hex:"F0283",version:"1.5.54"},{name:"format-text",hex:"F0284",version:"1.5.54"},{name:"format-text-rotation-angle-down",hex:"F0FBB",version:"4.0.96"},{name:"format-text-rotation-angle-up",hex:"F0FBC",version:"4.0.96"},{name:"format-text-rotation-down",hex:"F0D73",version:"3.4.93"},{name:"format-text-rotation-down-vertical",hex:"F0FBD",version:"4.0.96"},{name:"format-text-rotation-none",hex:"F0D74",version:"3.4.93"},{name:"format-text-rotation-up",hex:"F0FBE",version:"4.0.96"},{name:"format-text-rotation-vertical",hex:"F0FBF",version:"4.0.96"},{name:"format-text-variant",hex:"F0E32",version:"3.6.95"},{name:"format-text-variant-outline",hex:"F150F",version:"5.4.55"},{name:"format-text-wrapping-clip",hex:"F0D0E",version:"3.3.92"},{name:"format-text-wrapping-overflow",hex:"F0D0F",version:"3.3.92"},{name:"format-text-wrapping-wrap",hex:"F0D10",version:"3.3.92"},{name:"format-textbox",hex:"F0D11",version:"3.3.92"},{name:"format-textdirection-l-to-r",hex:"F0285",version:"1.5.54"},{name:"format-textdirection-r-to-l",hex:"F0286",version:"1.5.54"},{name:"format-title",hex:"F05F4",version:"1.5.54"},{name:"format-underline",hex:"F0287",version:"1.5.54"},{name:"format-underline-wavy",hex:"F18E9",version:"6.3.95"},{name:"format-vertical-align-bottom",hex:"F0621",version:"1.6.50"},{name:"format-vertical-align-center",hex:"F0622",version:"1.6.50"},{name:"format-vertical-align-top",hex:"F0623",version:"1.6.50"},{name:"format-wrap-inline",hex:"F0288",version:"1.5.54"},{name:"format-wrap-square",hex:"F0289",version:"1.5.54"},{name:"format-wrap-tight",hex:"F028A",version:"1.5.54"},{name:"format-wrap-top-bottom",hex:"F028B",version:"1.5.54"},{name:"forum",hex:"F028C",version:"1.5.54"},{name:"forum-outline",hex:"F0822",version:"2.1.19"},{name:"forward",hex:"F028D",version:"1.5.54"},{name:"forwardburger",hex:"F0D75",version:"3.4.93"},{name:"fountain",hex:"F096B",version:"2.4.85"},{name:"fountain-pen",hex:"F0D12",version:"3.3.92"},{name:"fountain-pen-tip",hex:"F0D13",version:"3.3.92"},{name:"fraction-one-half",hex:"F1992",version:"6.5.95"},{name:"freebsd",hex:"F08E0",version:"2.3.50"},{name:"french-fries",hex:"F1957",version:"6.4.95"},{name:"frequently-asked-questions",hex:"F0EB4",version:"3.7.94"},{name:"fridge",hex:"F0290",version:"1.5.54"},{name:"fridge-alert",hex:"F11B1",version:"4.5.95"},{name:"fridge-alert-outline",hex:"F11B2",version:"4.5.95"},{name:"fridge-bottom",hex:"F0292",version:"1.5.54"},{name:"fridge-industrial",hex:"F15EE",version:"5.6.55"},{name:"fridge-industrial-alert",hex:"F15EF",version:"5.6.55"},{name:"fridge-industrial-alert-outline",hex:"F15F0",version:"5.6.55"},{name:"fridge-industrial-off",hex:"F15F1",version:"5.6.55"},{name:"fridge-industrial-off-outline",hex:"F15F2",version:"5.6.55"},{name:"fridge-industrial-outline",hex:"F15F3",version:"5.6.55"},{name:"fridge-off",hex:"F11AF",version:"4.5.95"},{name:"fridge-off-outline",hex:"F11B0",version:"4.5.95"},{name:"fridge-outline",hex:"F028F",version:"1.5.54"},{name:"fridge-top",hex:"F0291",version:"1.5.54"},{name:"fridge-variant",hex:"F15F4",version:"5.6.55"},{name:"fridge-variant-alert",hex:"F15F5",version:"5.6.55"},{name:"fridge-variant-alert-outline",hex:"F15F6",version:"5.6.55"},{name:"fridge-variant-off",hex:"F15F7",version:"5.6.55"},{name:"fridge-variant-off-outline",hex:"F15F8",version:"5.6.55"},{name:"fridge-variant-outline",hex:"F15F9",version:"5.6.55"},{name:"fruit-cherries",hex:"F1042",version:"4.1.95"},{name:"fruit-cherries-off",hex:"F13F8",version:"5.1.45"},{name:"fruit-citrus",hex:"F1043",version:"4.1.95"},{name:"fruit-citrus-off",hex:"F13F9",version:"5.1.45"},{name:"fruit-grapes",hex:"F1044",version:"4.1.95"},{name:"fruit-grapes-outline",hex:"F1045",version:"4.1.95"},{name:"fruit-pineapple",hex:"F1046",version:"4.1.95"},{name:"fruit-watermelon",hex:"F1047",version:"4.1.95"},{name:"fuel",hex:"F07CA",version:"2.0.46"},{name:"fuel-cell",hex:"F18B5",version:"6.3.95"},{name:"fullscreen",hex:"F0293",version:"1.5.54"},{name:"fullscreen-exit",hex:"F0294",version:"1.5.54"},{name:"function",hex:"F0295",version:"1.5.54"},{name:"function-variant",hex:"F0871",version:"2.1.99"},{name:"furigana-horizontal",hex:"F1081",version:"4.2.95"},{name:"furigana-vertical",hex:"F1082",version:"4.2.95"},{name:"fuse",hex:"F0C85",version:"3.2.89"},{name:"fuse-alert",hex:"F142D",version:"5.2.45"},{name:"fuse-blade",hex:"F0C86",version:"3.2.89"},{name:"fuse-off",hex:"F142C",version:"5.2.45"},{name:"gamepad",hex:"F0296",version:"1.5.54"},{name:"gamepad-circle",hex:"F0E33",version:"3.6.95"},{name:"gamepad-circle-down",hex:"F0E34",version:"3.6.95"},{name:"gamepad-circle-left",hex:"F0E35",version:"3.6.95"},{name:"gamepad-circle-outline",hex:"F0E36",version:"3.6.95"},{name:"gamepad-circle-right",hex:"F0E37",version:"3.6.95"},{name:"gamepad-circle-up",hex:"F0E38",version:"3.6.95"},{name:"gamepad-down",hex:"F0E39",version:"3.6.95"},{name:"gamepad-left",hex:"F0E3A",version:"3.6.95"},{name:"gamepad-outline",hex:"F1919",version:"6.4.95"},{name:"gamepad-right",hex:"F0E3B",version:"3.6.95"},{name:"gamepad-round",hex:"F0E3C",version:"3.6.95"},{name:"gamepad-round-down",hex:"F0E3D",version:"3.6.95"},{name:"gamepad-round-left",hex:"F0E3E",version:"3.6.95"},{name:"gamepad-round-outline",hex:"F0E3F",version:"3.6.95"},{name:"gamepad-round-right",hex:"F0E40",version:"3.6.95"},{name:"gamepad-round-up",hex:"F0E41",version:"3.6.95"},{name:"gamepad-square",hex:"F0EB5",version:"3.7.94"},{name:"gamepad-square-outline",hex:"F0EB6",version:"3.7.94"},{name:"gamepad-up",hex:"F0E42",version:"3.6.95"},{name:"gamepad-variant",hex:"F0297",version:"1.5.54"},{name:"gamepad-variant-outline",hex:"F0EB7",version:"3.7.94"},{name:"gamma",hex:"F10EE",version:"4.3.95"},{name:"gantry-crane",hex:"F0DD1",version:"3.5.94"},{name:"garage",hex:"F06D9",version:"1.8.36"},{name:"garage-alert",hex:"F0872",version:"2.1.99"},{name:"garage-alert-variant",hex:"F12D5",version:"4.8.95"},{name:"garage-lock",hex:"F17FB",version:"6.1.95"},{name:"garage-open",hex:"F06DA",version:"1.8.36"},{name:"garage-open-variant",hex:"F12D4",version:"4.8.95"},{name:"garage-variant",hex:"F12D3",version:"4.8.95"},{name:"garage-variant-lock",hex:"F17FC",version:"6.1.95"},{name:"gas-cylinder",hex:"F0647",version:"1.6.50"},{name:"gas-station",hex:"F0298",version:"1.5.54"},{name:"gas-station-off",hex:"F1409",version:"5.1.45"},{name:"gas-station-off-outline",hex:"F140A",version:"5.1.45"},{name:"gas-station-outline",hex:"F0EB8",version:"3.7.94"},{name:"gate",hex:"F0299",version:"1.5.54"},{name:"gate-alert",hex:"F17F8",version:"6.1.95"},{name:"gate-and",hex:"F08E1",version:"2.3.50"},{name:"gate-arrow-left",hex:"F17F7",version:"6.1.95"},{name:"gate-arrow-right",hex:"F1169",version:"4.4.95"},{name:"gate-nand",hex:"F08E2",version:"2.3.50"},{name:"gate-nor",hex:"F08E3",version:"2.3.50"},{name:"gate-not",hex:"F08E4",version:"2.3.50"},{name:"gate-open",hex:"F116A",version:"4.4.95"},{name:"gate-or",hex:"F08E5",version:"2.3.50"},{name:"gate-xnor",hex:"F08E6",version:"2.3.50"},{name:"gate-xor",hex:"F08E7",version:"2.3.50"},{name:"gatsby",hex:"F0E43",version:"3.6.95"},{name:"gauge",hex:"F029A",version:"1.5.54"},{name:"gauge-empty",hex:"F0873",version:"2.1.99"},{name:"gauge-full",hex:"F0874",version:"2.1.99"},{name:"gauge-low",hex:"F0875",version:"2.1.99"},{name:"gavel",hex:"F029B",version:"1.5.54"},{name:"gender-female",hex:"F029C",version:"1.5.54"},{name:"gender-male",hex:"F029D",version:"1.5.54"},{name:"gender-male-female",hex:"F029E",version:"1.5.54"},{name:"gender-male-female-variant",hex:"F113F",version:"4.4.95"},{name:"gender-non-binary",hex:"F1140",version:"4.4.95"},{name:"gender-transgender",hex:"F029F",version:"1.5.54"},{name:"gentoo",hex:"F08E8",version:"2.3.50"},{name:"gesture",hex:"F07CB",version:"2.0.46"},{name:"gesture-double-tap",hex:"F073C",version:"1.9.32"},{name:"gesture-pinch",hex:"F0ABD",version:"2.7.94"},{name:"gesture-spread",hex:"F0ABE",version:"2.7.94"},{name:"gesture-swipe",hex:"F0D76",version:"3.4.93"},{name:"gesture-swipe-down",hex:"F073D",version:"1.9.32"},{name:"gesture-swipe-horizontal",hex:"F0ABF",version:"2.7.94"},{name:"gesture-swipe-left",hex:"F073E",version:"1.9.32"},{name:"gesture-swipe-right",hex:"F073F",version:"1.9.32"},{name:"gesture-swipe-up",hex:"F0740",version:"1.9.32"},{name:"gesture-swipe-vertical",hex:"F0AC0",version:"2.7.94"},{name:"gesture-tap",hex:"F0741",version:"1.9.32"},{name:"gesture-tap-box",hex:"F12A9",version:"4.7.95"},{name:"gesture-tap-button",hex:"F12A8",version:"4.7.95"},{name:"gesture-tap-hold",hex:"F0D77",version:"3.4.93"},{name:"gesture-two-double-tap",hex:"F0742",version:"1.9.32"},{name:"gesture-two-tap",hex:"F0743",version:"1.9.32"},{name:"ghost",hex:"F02A0",version:"1.5.54"},{name:"ghost-off",hex:"F09F5",version:"2.5.94"},{name:"ghost-off-outline",hex:"F165C",version:"5.7.55"},{name:"ghost-outline",hex:"F165D",version:"5.7.55"},{name:"gift",hex:"F0E44",version:"3.6.95"},{name:"gift-off",hex:"F16EF",version:"5.9.55"},{name:"gift-off-outline",hex:"F16F0",version:"5.9.55"},{name:"gift-open",hex:"F16F1",version:"5.9.55"},{name:"gift-open-outline",hex:"F16F2",version:"5.9.55"},{name:"gift-outline",hex:"F02A1",version:"1.5.54"},{name:"git",hex:"F02A2",version:"1.5.54"},{name:"github",hex:"F02A4",version:"1.5.54"},{name:"gitlab",hex:"F0BA0",version:"3.0.39"},{name:"glass-cocktail",hex:"F0356",version:"1.5.54"},{name:"glass-cocktail-off",hex:"F15E6",version:"5.6.55"},{name:"glass-flute",hex:"F02A5",version:"1.5.54"},{name:"glass-fragile",hex:"F1873",version:"6.2.95"},{name:"glass-mug",hex:"F02A6",version:"1.5.54"},{name:"glass-mug-off",hex:"F15E7",version:"5.6.55"},{name:"glass-mug-variant",hex:"F1116",version:"4.3.95"},{name:"glass-mug-variant-off",hex:"F15E8",version:"5.6.55"},{name:"glass-pint-outline",hex:"F130D",version:"4.8.95"},{name:"glass-stange",hex:"F02A7",version:"1.5.54"},{name:"glass-tulip",hex:"F02A8",version:"1.5.54"},{name:"glass-wine",hex:"F0876",version:"2.1.99"},{name:"glasses",hex:"F02AA",version:"1.5.54"},{name:"globe-light",hex:"F12D7",version:"4.8.95"},{name:"globe-model",hex:"F08E9",version:"2.3.50"},{name:"gmail",hex:"F02AB",version:"1.5.54"},{name:"gnome",hex:"F02AC",version:"1.5.54"},{name:"go-kart",hex:"F0D79",version:"3.4.93"},{name:"go-kart-track",hex:"F0D7A",version:"3.4.93"},{name:"gog",hex:"F0BA1",version:"3.0.39"},{name:"gold",hex:"F124F",version:"4.6.95"},{name:"golf",hex:"F0823",version:"2.1.19"},{name:"golf-cart",hex:"F11A4",version:"4.5.95"},{name:"golf-tee",hex:"F1083",version:"4.2.95"},{name:"gondola",hex:"F0686",version:"1.7.12"},{name:"goodreads",hex:"F0D7B",version:"3.4.93"},{name:"google",hex:"F02AD",version:"1.5.54"},{name:"google-ads",hex:"F0C87",version:"3.2.89"},{name:"google-analytics",hex:"F07CC",version:"2.0.46"},{name:"google-assistant",hex:"F07CD",version:"2.0.46"},{name:"google-cardboard",hex:"F02AE",version:"1.5.54"},{name:"google-chrome",hex:"F02AF",version:"1.5.54"},{name:"google-circles",hex:"F02B0",version:"1.5.54"},{name:"google-circles-communities",hex:"F02B1",version:"1.5.54"},{name:"google-circles-extended",hex:"F02B2",version:"1.5.54"},{name:"google-circles-group",hex:"F02B3",version:"1.5.54"},{name:"google-classroom",hex:"F02C0",version:"1.5.54"},{name:"google-cloud",hex:"F11F6",version:"4.6.95"},{name:"google-controller",hex:"F02B4",version:"1.5.54"},{name:"google-controller-off",hex:"F02B5",version:"1.5.54"},{name:"google-downasaur",hex:"F1362",version:"4.9.95"},{name:"google-drive",hex:"F02B6",version:"1.5.54"},{name:"google-earth",hex:"F02B7",version:"1.5.54"},{name:"google-fit",hex:"F096C",version:"2.4.85"},{name:"google-glass",hex:"F02B8",version:"1.5.54"},{name:"google-hangouts",hex:"F02C9",version:"1.5.54"},{name:"google-home",hex:"F0824",version:"2.1.19"},{name:"google-keep",hex:"F06DC",version:"1.8.36"},{name:"google-lens",hex:"F09F6",version:"2.5.94"},{name:"google-maps",hex:"F05F5",version:"1.5.54"},{name:"google-my-business",hex:"F1048",version:"4.1.95"},{name:"google-nearby",hex:"F02B9",version:"1.5.54"},{name:"google-play",hex:"F02BC",version:"1.5.54"},{name:"google-plus",hex:"F02BD",version:"1.5.54"},{name:"google-podcast",hex:"F0EB9",version:"3.7.94"},{name:"google-spreadsheet",hex:"F09F7",version:"2.5.94"},{name:"google-street-view",hex:"F0C88",version:"3.2.89"},{name:"google-translate",hex:"F02BF",version:"1.5.54"},{name:"gradient-horizontal",hex:"F174A",version:"6.1.95"},{name:"gradient-vertical",hex:"F06A0",version:"1.7.12"},{name:"grain",hex:"F0D7C",version:"3.4.93"},{name:"graph",hex:"F1049",version:"4.1.95"},{name:"graph-outline",hex:"F104A",version:"4.1.95"},{name:"graphql",hex:"F0877",version:"2.1.99"},{name:"grass",hex:"F1510",version:"5.4.55"},{name:"grave-stone",hex:"F0BA2",version:"3.0.39"},{name:"grease-pencil",hex:"F0648",version:"1.6.50"},{name:"greater-than",hex:"F096D",version:"2.4.85"},{name:"greater-than-or-equal",hex:"F096E",version:"2.4.85"},{name:"greenhouse",hex:"F002D",version:"1.5.54"},{name:"grid",hex:"F02C1",version:"1.5.54"},{name:"grid-large",hex:"F0758",version:"1.9.32"},{name:"grid-off",hex:"F02C2",version:"1.5.54"},{name:"grill",hex:"F0E45",version:"3.6.95"},{name:"grill-outline",hex:"F118A",version:"4.4.95"},{name:"group",hex:"F02C3",version:"1.5.54"},{name:"guitar-acoustic",hex:"F0771",version:"1.9.32"},{name:"guitar-electric",hex:"F02C4",version:"1.5.54"},{name:"guitar-pick",hex:"F02C5",version:"1.5.54"},{name:"guitar-pick-outline",hex:"F02C6",version:"1.5.54"},{name:"guy-fawkes-mask",hex:"F0825",version:"2.1.19"},{name:"hail",hex:"F0AC1",version:"2.7.94"},{name:"hair-dryer",hex:"F10EF",version:"4.3.95"},{name:"hair-dryer-outline",hex:"F10F0",version:"4.3.95"},{name:"halloween",hex:"F0BA3",version:"3.0.39"},{name:"hamburger",hex:"F0685",version:"1.7.12"},{name:"hamburger-check",hex:"F1776",version:"6.1.95"},{name:"hamburger-minus",hex:"F1777",version:"6.1.95"},{name:"hamburger-off",hex:"F1778",version:"6.1.95"},{name:"hamburger-plus",hex:"F1779",version:"6.1.95"},{name:"hamburger-remove",hex:"F177A",version:"6.1.95"},{name:"hammer",hex:"F08EA",version:"2.3.50"},{name:"hammer-screwdriver",hex:"F1322",version:"4.9.95"},{name:"hammer-sickle",hex:"F1887",version:"6.2.95"},{name:"hammer-wrench",hex:"F1323",version:"4.9.95"},{name:"hand-back-left",hex:"F0E46",version:"3.6.95"},{name:"hand-back-left-off",hex:"F1830",version:"6.1.95"},{name:"hand-back-left-off-outline",hex:"F1832",version:"6.1.95"},{name:"hand-back-left-outline",hex:"F182C",version:"6.1.95"},{name:"hand-back-right",hex:"F0E47",version:"3.6.95"},{name:"hand-back-right-off",hex:"F1831",version:"6.1.95"},{name:"hand-back-right-off-outline",hex:"F1833",version:"6.1.95"},{name:"hand-back-right-outline",hex:"F182D",version:"6.1.95"},{name:"hand-clap",hex:"F194B",version:"6.4.95"},{name:"hand-coin",hex:"F188F",version:"6.2.95"},{name:"hand-coin-outline",hex:"F1890",version:"6.2.95"},{name:"hand-extended",hex:"F18B6",version:"6.3.95"},{name:"hand-extended-outline",hex:"F18B7",version:"6.3.95"},{name:"hand-front-left",hex:"F182B",version:"6.1.95"},{name:"hand-front-left-outline",hex:"F182E",version:"6.1.95"},{name:"hand-front-right",hex:"F0A4F",version:"2.6.95"},{name:"hand-front-right-outline",hex:"F182F",version:"6.1.95"},{name:"hand-heart",hex:"F10F1",version:"4.3.95"},{name:"hand-heart-outline",hex:"F157E",version:"5.5.55"},{name:"hand-okay",hex:"F0A50",version:"2.6.95"},{name:"hand-peace",hex:"F0A51",version:"2.6.95"},{name:"hand-peace-variant",hex:"F0A52",version:"2.6.95"},{name:"hand-pointing-down",hex:"F0A53",version:"2.6.95"},{name:"hand-pointing-left",hex:"F0A54",version:"2.6.95"},{name:"hand-pointing-right",hex:"F02C7",version:"1.5.54"},{name:"hand-pointing-up",hex:"F0A55",version:"2.6.95"},{name:"hand-saw",hex:"F0E48",version:"3.6.95"},{name:"hand-wash",hex:"F157F",version:"5.5.55"},{name:"hand-wash-outline",hex:"F1580",version:"5.5.55"},{name:"hand-water",hex:"F139F",version:"5.0.45"},{name:"hand-wave",hex:"F1821",version:"6.1.95"},{name:"hand-wave-outline",hex:"F1822",version:"6.1.95"},{name:"handball",hex:"F0F53",version:"3.9.97"},{name:"handcuffs",hex:"F113E",version:"4.4.95"},{name:"hands-pray",hex:"F0579",version:"1.5.54"},{name:"handshake",hex:"F1218",version:"4.6.95"},{name:"handshake-outline",hex:"F15A1",version:"5.5.55"},{name:"hanger",hex:"F02C8",version:"1.5.54"},{name:"hard-hat",hex:"F096F",version:"2.4.85"},{name:"harddisk",hex:"F02CA",version:"1.5.54"},{name:"harddisk-plus",hex:"F104B",version:"4.1.95"},{name:"harddisk-remove",hex:"F104C",version:"4.1.95"},{name:"hat-fedora",hex:"F0BA4",version:"3.0.39"},{name:"hazard-lights",hex:"F0C89",version:"3.2.89"},{name:"hdr",hex:"F0D7D",version:"3.4.93"},{name:"hdr-off",hex:"F0D7E",version:"3.4.93"},{name:"head",hex:"F135E",version:"4.9.95"},{name:"head-alert",hex:"F1338",version:"4.9.95"},{name:"head-alert-outline",hex:"F1339",version:"4.9.95"},{name:"head-check",hex:"F133A",version:"4.9.95"},{name:"head-check-outline",hex:"F133B",version:"4.9.95"},{name:"head-cog",hex:"F133C",version:"4.9.95"},{name:"head-cog-outline",hex:"F133D",version:"4.9.95"},{name:"head-dots-horizontal",hex:"F133E",version:"4.9.95"},{name:"head-dots-horizontal-outline",hex:"F133F",version:"4.9.95"},{name:"head-flash",hex:"F1340",version:"4.9.95"},{name:"head-flash-outline",hex:"F1341",version:"4.9.95"},{name:"head-heart",hex:"F1342",version:"4.9.95"},{name:"head-heart-outline",hex:"F1343",version:"4.9.95"},{name:"head-lightbulb",hex:"F1344",version:"4.9.95"},{name:"head-lightbulb-outline",hex:"F1345",version:"4.9.95"},{name:"head-minus",hex:"F1346",version:"4.9.95"},{name:"head-minus-outline",hex:"F1347",version:"4.9.95"},{name:"head-outline",hex:"F135F",version:"4.9.95"},{name:"head-plus",hex:"F1348",version:"4.9.95"},{name:"head-plus-outline",hex:"F1349",version:"4.9.95"},{name:"head-question",hex:"F134A",version:"4.9.95"},{name:"head-question-outline",hex:"F134B",version:"4.9.95"},{name:"head-remove",hex:"F134C",version:"4.9.95"},{name:"head-remove-outline",hex:"F134D",version:"4.9.95"},{name:"head-snowflake",hex:"F134E",version:"4.9.95"},{name:"head-snowflake-outline",hex:"F134F",version:"4.9.95"},{name:"head-sync",hex:"F1350",version:"4.9.95"},{name:"head-sync-outline",hex:"F1351",version:"4.9.95"},{name:"headphones",hex:"F02CB",version:"1.5.54"},{name:"headphones-bluetooth",hex:"F0970",version:"2.4.85"},{name:"headphones-box",hex:"F02CC",version:"1.5.54"},{name:"headphones-off",hex:"F07CE",version:"2.0.46"},{name:"headphones-settings",hex:"F02CD",version:"1.5.54"},{name:"headset",hex:"F02CE",version:"1.5.54"},{name:"headset-dock",hex:"F02CF",version:"1.5.54"},{name:"headset-off",hex:"F02D0",version:"1.5.54"},{name:"heart",hex:"F02D1",version:"1.5.54"},{name:"heart-box",hex:"F02D2",version:"1.5.54"},{name:"heart-box-outline",hex:"F02D3",version:"1.5.54"},{name:"heart-broken",hex:"F02D4",version:"1.5.54"},{name:"heart-broken-outline",hex:"F0D14",version:"3.3.92"},{name:"heart-circle",hex:"F0971",version:"2.4.85"},{name:"heart-circle-outline",hex:"F0972",version:"2.4.85"},{name:"heart-cog",hex:"F1663",version:"5.7.55"},{name:"heart-cog-outline",hex:"F1664",version:"5.7.55"},{name:"heart-flash",hex:"F0EF9",version:"3.8.95"},{name:"heart-half",hex:"F06DF",version:"1.8.36"},{name:"heart-half-full",hex:"F06DE",version:"1.8.36"},{name:"heart-half-outline",hex:"F06E0",version:"1.8.36"},{name:"heart-minus",hex:"F142F",version:"5.2.45"},{name:"heart-minus-outline",hex:"F1432",version:"5.2.45"},{name:"heart-multiple",hex:"F0A56",version:"2.6.95"},{name:"heart-multiple-outline",hex:"F0A57",version:"2.6.95"},{name:"heart-off",hex:"F0759",version:"1.9.32"},{name:"heart-off-outline",hex:"F1434",version:"5.2.45"},{name:"heart-outline",hex:"F02D5",version:"1.5.54"},{name:"heart-plus",hex:"F142E",version:"5.2.45"},{name:"heart-plus-outline",hex:"F1431",version:"5.2.45"},{name:"heart-pulse",hex:"F05F6",version:"1.5.54"},{name:"heart-remove",hex:"F1430",version:"5.2.45"},{name:"heart-remove-outline",hex:"F1433",version:"5.2.45"},{name:"heart-settings",hex:"F1665",version:"5.7.55"},{name:"heart-settings-outline",hex:"F1666",version:"5.7.55"},{name:"helicopter",hex:"F0AC2",version:"2.7.94"},{name:"help",hex:"F02D6",version:"1.5.54"},{name:"help-box",hex:"F078B",version:"1.9.32"},{name:"help-circle",hex:"F02D7",version:"1.5.54"},{name:"help-circle-outline",hex:"F0625",version:"1.6.50"},{name:"help-network",hex:"F06F5",version:"1.8.36"},{name:"help-network-outline",hex:"F0C8A",version:"3.2.89"},{name:"help-rhombus",hex:"F0BA5",version:"3.0.39"},{name:"help-rhombus-outline",hex:"F0BA6",version:"3.0.39"},{name:"hexadecimal",hex:"F12A7",version:"4.7.95"},{name:"hexagon",hex:"F02D8",version:"1.5.54"},{name:"hexagon-multiple",hex:"F06E1",version:"1.8.36"},{name:"hexagon-multiple-outline",hex:"F10F2",version:"4.3.95"},{name:"hexagon-outline",hex:"F02D9",version:"1.5.54"},{name:"hexagon-slice-1",hex:"F0AC3",version:"2.7.94"},{name:"hexagon-slice-2",hex:"F0AC4",version:"2.7.94"},{name:"hexagon-slice-3",hex:"F0AC5",version:"2.7.94"},{name:"hexagon-slice-4",hex:"F0AC6",version:"2.7.94"},{name:"hexagon-slice-5",hex:"F0AC7",version:"2.7.94"},{name:"hexagon-slice-6",hex:"F0AC8",version:"2.7.94"},{name:"hexagram",hex:"F0AC9",version:"2.7.94"},{name:"hexagram-outline",hex:"F0ACA",version:"2.7.94"},{name:"high-definition",hex:"F07CF",version:"2.0.46"},{name:"high-definition-box",hex:"F0878",version:"2.1.99"},{name:"highway",hex:"F05F7",version:"1.5.54"},{name:"hiking",hex:"F0D7F",version:"3.4.93"},{name:"history",hex:"F02DA",version:"1.5.54"},{name:"hockey-puck",hex:"F0879",version:"2.1.99"},{name:"hockey-sticks",hex:"F087A",version:"2.1.99"},{name:"hololens",hex:"F02DB",version:"1.5.54"},{name:"home",hex:"F02DC",version:"1.5.54"},{name:"home-account",hex:"F0826",version:"2.1.19"},{name:"home-alert",hex:"F087B",version:"2.1.99"},{name:"home-alert-outline",hex:"F15D0",version:"5.6.55"},{name:"home-analytics",hex:"F0EBA",version:"3.7.94"},{name:"home-assistant",hex:"F07D0",version:"2.0.46"},{name:"home-automation",hex:"F07D1",version:"2.0.46"},{name:"home-battery",hex:"F1901",version:"6.4.95"},{name:"home-battery-outline",hex:"F1902",version:"6.4.95"},{name:"home-circle",hex:"F07D2",version:"2.0.46"},{name:"home-circle-outline",hex:"F104D",version:"4.1.95"},{name:"home-city",hex:"F0D15",version:"3.3.92"},{name:"home-city-outline",hex:"F0D16",version:"3.3.92"},{name:"home-edit",hex:"F1159",version:"4.4.95"},{name:"home-edit-outline",hex:"F115A",version:"4.4.95"},{name:"home-export-outline",hex:"F0F9B",version:"3.9.97"},{name:"home-flood",hex:"F0EFA",version:"3.8.95"},{name:"home-floor-0",hex:"F0DD2",version:"3.5.94"},{name:"home-floor-1",hex:"F0D80",version:"3.4.93"},{name:"home-floor-2",hex:"F0D81",version:"3.4.93"},{name:"home-floor-3",hex:"F0D82",version:"3.4.93"},{name:"home-floor-a",hex:"F0D83",version:"3.4.93"},{name:"home-floor-b",hex:"F0D84",version:"3.4.93"},{name:"home-floor-g",hex:"F0D85",version:"3.4.93"},{name:"home-floor-l",hex:"F0D86",version:"3.4.93"},{name:"home-floor-negative-1",hex:"F0DD3",version:"3.5.94"},{name:"home-group",hex:"F0DD4",version:"3.5.94"},{name:"home-group-minus",hex:"F19C1",version:"6.5.95"},{name:"home-group-plus",hex:"F19C0",version:"6.5.95"},{name:"home-group-remove",hex:"F19C2",version:"6.5.95"},{name:"home-heart",hex:"F0827",version:"2.1.19"},{name:"home-import-outline",hex:"F0F9C",version:"3.9.97"},{name:"home-lightbulb",hex:"F1251",version:"4.6.95"},{name:"home-lightbulb-outline",hex:"F1252",version:"4.6.95"},{name:"home-lightning-bolt",hex:"F1903",version:"6.4.95"},{name:"home-lightning-bolt-outline",hex:"F1904",version:"6.4.95"},{name:"home-lock",hex:"F08EB",version:"2.3.50"},{name:"home-lock-open",hex:"F08EC",version:"2.3.50"},{name:"home-map-marker",hex:"F05F8",version:"1.5.54"},{name:"home-minus",hex:"F0974",version:"2.4.85"},{name:"home-minus-outline",hex:"F13D5",version:"5.1.45"},{name:"home-modern",hex:"F02DD",version:"1.5.54"},{name:"home-outline",hex:"F06A1",version:"1.7.12"},{name:"home-plus",hex:"F0975",version:"2.4.85"},{name:"home-plus-outline",hex:"F13D6",version:"5.1.45"},{name:"home-remove",hex:"F1247",version:"4.6.95"},{name:"home-remove-outline",hex:"F13D7",version:"5.1.45"},{name:"home-roof",hex:"F112B",version:"4.3.95"},{name:"home-search",hex:"F13B0",version:"5.0.45"},{name:"home-search-outline",hex:"F13B1",version:"5.0.45"},{name:"home-switch",hex:"F1794",version:"6.1.95"},{name:"home-switch-outline",hex:"F1795",version:"6.1.95"},{name:"home-thermometer",hex:"F0F54",version:"3.9.97"},{name:"home-thermometer-outline",hex:"F0F55",version:"3.9.97"},{name:"home-variant",hex:"F02DE",version:"1.5.54"},{name:"home-variant-outline",hex:"F0BA7",version:"3.0.39"},{name:"hook",hex:"F06E2",version:"1.8.36"},{name:"hook-off",hex:"F06E3",version:"1.8.36"},{name:"hoop-house",hex:"F0E56",version:"3.6.95"},{name:"hops",hex:"F02DF",version:"1.5.54"},{name:"horizontal-rotate-clockwise",hex:"F10F3",version:"4.3.95"},{name:"horizontal-rotate-counterclockwise",hex:"F10F4",version:"4.3.95"},{name:"horse",hex:"F15BF",version:"5.6.55"},{name:"horse-human",hex:"F15C0",version:"5.6.55"},{name:"horse-variant",hex:"F15C1",version:"5.6.55"},{name:"horse-variant-fast",hex:"F186E",version:"6.2.95"},{name:"horseshoe",hex:"F0A58",version:"2.6.95"},{name:"hospital",hex:"F0FF6",version:"4.0.96"},{name:"hospital-box",hex:"F02E0",version:"1.5.54"},{name:"hospital-box-outline",hex:"F0FF7",version:"4.0.96"},{name:"hospital-building",hex:"F02E1",version:"1.5.54"},{name:"hospital-marker",hex:"F02E2",version:"1.5.54"},{name:"hot-tub",hex:"F0828",version:"2.1.19"},{name:"hours-24",hex:"F1478",version:"5.2.45"},{name:"hubspot",hex:"F0D17",version:"3.3.92"},{name:"hulu",hex:"F0829",version:"2.1.19"},{name:"human",hex:"F02E6",version:"1.5.54"},{name:"human-baby-changing-table",hex:"F138B",version:"5.0.45"},{name:"human-cane",hex:"F1581",version:"5.5.55"},{name:"human-capacity-decrease",hex:"F159B",version:"5.5.55"},{name:"human-capacity-increase",hex:"F159C",version:"5.5.55"},{name:"human-child",hex:"F02E7",version:"1.5.54"},{name:"human-dolly",hex:"F1980",version:"6.5.95"},{name:"human-edit",hex:"F14E8",version:"5.4.55"},{name:"human-female",hex:"F0649",version:"1.6.50"},{name:"human-female-boy",hex:"F0A59",version:"2.6.95"},{name:"human-female-dance",hex:"F15C9",version:"5.6.55"},{name:"human-female-female",hex:"F0A5A",version:"2.6.95"},{name:"human-female-girl",hex:"F0A5B",version:"2.6.95"},{name:"human-greeting",hex:"F17C4",version:"6.1.95"},{name:"human-greeting-proximity",hex:"F159D",version:"5.5.55"},{name:"human-greeting-variant",hex:"F064A",version:"1.6.50"},{name:"human-handsdown",hex:"F064B",version:"1.6.50"},{name:"human-handsup",hex:"F064C",version:"1.6.50"},{name:"human-male",hex:"F064D",version:"1.6.50"},{name:"human-male-board",hex:"F0890",version:"2.1.99"},{name:"human-male-board-poll",hex:"F0846",version:"2.1.19"},{name:"human-male-boy",hex:"F0A5C",version:"2.6.95"},{name:"human-male-child",hex:"F138C",version:"5.0.45"},{name:"human-male-female",hex:"F02E8",version:"1.5.54"},{name:"human-male-female-child",hex:"F1823",version:"6.1.95"},{name:"human-male-girl",hex:"F0A5D",version:"2.6.95"},{name:"human-male-height",hex:"F0EFB",version:"3.8.95"},{name:"human-male-height-variant",hex:"F0EFC",version:"3.8.95"},{name:"human-male-male",hex:"F0A5E",version:"2.6.95"},{name:"human-non-binary",hex:"F1848",version:"6.2.95"},{name:"human-pregnant",hex:"F05CF",version:"1.5.54"},{name:"human-queue",hex:"F1571",version:"5.5.55"},{name:"human-scooter",hex:"F11E9",version:"4.5.95"},{name:"human-wheelchair",hex:"F138D",version:"5.0.45"},{name:"human-white-cane",hex:"F1981",version:"6.5.95"},{name:"humble-bundle",hex:"F0744",version:"1.9.32"},{name:"hvac",hex:"F1352",version:"4.9.95"},{name:"hvac-off",hex:"F159E",version:"5.5.55"},{name:"hydraulic-oil-level",hex:"F1324",version:"4.9.95"},{name:"hydraulic-oil-temperature",hex:"F1325",version:"4.9.95"},{name:"hydro-power",hex:"F12E5",version:"4.8.95"},{name:"hydrogen-station",hex:"F1894",version:"6.2.95"},{name:"ice-cream",hex:"F082A",version:"2.1.19"},{name:"ice-cream-off",hex:"F0E52",version:"3.6.95"},{name:"ice-pop",hex:"F0EFD",version:"3.8.95"},{name:"id-card",hex:"F0FC0",version:"4.0.96"},{name:"identifier",hex:"F0EFE",version:"3.8.95"},{name:"ideogram-cjk",hex:"F1331",version:"4.9.95"},{name:"ideogram-cjk-variant",hex:"F1332",version:"4.9.95"},{name:"image",hex:"F02E9",version:"1.5.54"},{name:"image-album",hex:"F02EA",version:"1.5.54"},{name:"image-area",hex:"F02EB",version:"1.5.54"},{name:"image-area-close",hex:"F02EC",version:"1.5.54"},{name:"image-auto-adjust",hex:"F0FC1",version:"4.0.96"},{name:"image-broken",hex:"F02ED",version:"1.5.54"},{name:"image-broken-variant",hex:"F02EE",version:"1.5.54"},{name:"image-edit",hex:"F11E3",version:"4.5.95"},{name:"image-edit-outline",hex:"F11E4",version:"4.5.95"},{name:"image-filter-black-white",hex:"F02F0",version:"1.5.54"},{name:"image-filter-center-focus",hex:"F02F1",version:"1.5.54"},{name:"image-filter-center-focus-strong",hex:"F0EFF",version:"3.8.95"},{name:"image-filter-center-focus-strong-outline",hex:"F0F00",version:"3.8.95"},{name:"image-filter-center-focus-weak",hex:"F02F2",version:"1.5.54"},{name:"image-filter-drama",hex:"F02F3",version:"1.5.54"},{name:"image-filter-frames",hex:"F02F4",version:"1.5.54"},{name:"image-filter-hdr",hex:"F02F5",version:"1.5.54"},{name:"image-filter-none",hex:"F02F6",version:"1.5.54"},{name:"image-filter-tilt-shift",hex:"F02F7",version:"1.5.54"},{name:"image-filter-vintage",hex:"F02F8",version:"1.5.54"},{name:"image-frame",hex:"F0E49",version:"3.6.95"},{name:"image-marker",hex:"F177B",version:"6.1.95"},{name:"image-marker-outline",hex:"F177C",version:"6.1.95"},{name:"image-minus",hex:"F1419",version:"5.1.45"},{name:"image-move",hex:"F09F8",version:"2.5.94"},{name:"image-multiple",hex:"F02F9",version:"1.5.54"},{name:"image-multiple-outline",hex:"F02EF",version:"1.5.54"},{name:"image-off",hex:"F082B",version:"2.1.19"},{name:"image-off-outline",hex:"F11D1",version:"4.5.95"},{name:"image-outline",hex:"F0976",version:"2.4.85"},{name:"image-plus",hex:"F087C",version:"2.1.99"},{name:"image-remove",hex:"F1418",version:"5.1.45"},{name:"image-search",hex:"F0977",version:"2.4.85"},{name:"image-search-outline",hex:"F0978",version:"2.4.85"},{name:"image-size-select-actual",hex:"F0C8D",version:"3.2.89"},{name:"image-size-select-large",hex:"F0C8E",version:"3.2.89"},{name:"image-size-select-small",hex:"F0C8F",version:"3.2.89"},{name:"image-text",hex:"F160D",version:"5.6.55"},{name:"import",hex:"F02FA",version:"1.5.54"},{name:"inbox",hex:"F0687",version:"1.7.12"},{name:"inbox-arrow-down",hex:"F02FB",version:"1.5.54"},{name:"inbox-arrow-down-outline",hex:"F1270",version:"4.7.95"},{name:"inbox-arrow-up",hex:"F03D1",version:"1.5.54"},{name:"inbox-arrow-up-outline",hex:"F1271",version:"4.7.95"},{name:"inbox-full",hex:"F1272",version:"4.7.95"},{name:"inbox-full-outline",hex:"F1273",version:"4.7.95"},{name:"inbox-multiple",hex:"F08B0",version:"2.2.43"},{name:"inbox-multiple-outline",hex:"F0BA8",version:"3.0.39"},{name:"inbox-outline",hex:"F1274",version:"4.7.95"},{name:"inbox-remove",hex:"F159F",version:"5.5.55"},{name:"inbox-remove-outline",hex:"F15A0",version:"5.5.55"},{name:"incognito",hex:"F05F9",version:"1.5.54"},{name:"incognito-circle",hex:"F1421",version:"5.2.45"},{name:"incognito-circle-off",hex:"F1422",version:"5.2.45"},{name:"incognito-off",hex:"F0075",version:"1.5.54"},{name:"induction",hex:"F184C",version:"6.2.95"},{name:"infinity",hex:"F06E4",version:"1.8.36"},{name:"information",hex:"F02FC",version:"1.5.54"},{name:"information-off",hex:"F178C",version:"6.1.95"},{name:"information-off-outline",hex:"F178D",version:"6.1.95"},{name:"information-outline",hex:"F02FD",version:"1.5.54"},{name:"information-variant",hex:"F064E",version:"1.6.50"},{name:"instagram",hex:"F02FE",version:"1.5.54"},{name:"instrument-triangle",hex:"F104E",version:"4.1.95"},{name:"integrated-circuit-chip",hex:"F1913",version:"6.4.95"},{name:"invert-colors",hex:"F0301",version:"1.5.54"},{name:"invert-colors-off",hex:"F0E4A",version:"3.6.95"},{name:"iobroker",hex:"F12E8",version:"4.8.95"},{name:"ip",hex:"F0A5F",version:"2.6.95"},{name:"ip-network",hex:"F0A60",version:"2.6.95"},{name:"ip-network-outline",hex:"F0C90",version:"3.2.89"},{name:"ip-outline",hex:"F1982",version:"6.5.95"},{name:"ipod",hex:"F0C91",version:"3.2.89"},{name:"iron",hex:"F1824",version:"6.1.95"},{name:"iron-board",hex:"F1838",version:"6.2.95"},{name:"iron-outline",hex:"F1825",version:"6.1.95"},{name:"island",hex:"F104F",version:"4.1.95"},{name:"iv-bag",hex:"F10B9",version:"4.2.95"},{name:"jabber",hex:"F0DD5",version:"3.5.94"},{name:"jeepney",hex:"F0302",version:"1.5.54"},{name:"jellyfish",hex:"F0F01",version:"3.8.95"},{name:"jellyfish-outline",hex:"F0F02",version:"3.8.95"},{name:"jira",hex:"F0303",version:"1.5.54"},{name:"jquery",hex:"F087D",version:"2.1.99"},{name:"jsfiddle",hex:"F0304",version:"1.5.54"},{name:"jump-rope",hex:"F12FF",version:"4.8.95"},{name:"kabaddi",hex:"F0D87",version:"3.4.93"},{name:"kangaroo",hex:"F1558",version:"5.5.55"},{name:"karate",hex:"F082C",version:"2.1.19"},{name:"kayaking",hex:"F08AF",version:"2.2.43"},{name:"keg",hex:"F0305",version:"1.5.54"},{name:"kettle",hex:"F05FA",version:"1.5.54"},{name:"kettle-alert",hex:"F1317",version:"4.8.95"},{name:"kettle-alert-outline",hex:"F1318",version:"4.8.95"},{name:"kettle-off",hex:"F131B",version:"4.8.95"},{name:"kettle-off-outline",hex:"F131C",version:"4.8.95"},{name:"kettle-outline",hex:"F0F56",version:"3.9.97"},{name:"kettle-pour-over",hex:"F173C",version:"5.9.55"},{name:"kettle-steam",hex:"F1319",version:"4.8.95"},{name:"kettle-steam-outline",hex:"F131A",version:"4.8.95"},{name:"kettlebell",hex:"F1300",version:"4.8.95"},{name:"key",hex:"F0306",version:"1.5.54"},{name:"key-alert",hex:"F1983",version:"6.5.95"},{name:"key-alert-outline",hex:"F1984",version:"6.5.95"},{name:"key-arrow-right",hex:"F1312",version:"4.8.95"},{name:"key-chain",hex:"F1574",version:"5.5.55"},{name:"key-chain-variant",hex:"F1575",version:"5.5.55"},{name:"key-change",hex:"F0307",version:"1.5.54"},{name:"key-link",hex:"F119F",version:"4.4.95"},{name:"key-minus",hex:"F0308",version:"1.5.54"},{name:"key-outline",hex:"F0DD6",version:"3.5.94"},{name:"key-plus",hex:"F0309",version:"1.5.54"},{name:"key-remove",hex:"F030A",version:"1.5.54"},{name:"key-star",hex:"F119E",version:"4.4.95"},{name:"key-variant",hex:"F030B",version:"1.5.54"},{name:"key-wireless",hex:"F0FC2",version:"4.0.96"},{name:"keyboard",hex:"F030C",version:"1.5.54"},{name:"keyboard-backspace",hex:"F030D",version:"1.5.54"},{name:"keyboard-caps",hex:"F030E",version:"1.5.54"},{name:"keyboard-close",hex:"F030F",version:"1.5.54"},{name:"keyboard-esc",hex:"F12B7",version:"4.7.95"},{name:"keyboard-f1",hex:"F12AB",version:"4.7.95"},{name:"keyboard-f10",hex:"F12B4",version:"4.7.95"},{name:"keyboard-f11",hex:"F12B5",version:"4.7.95"},{name:"keyboard-f12",hex:"F12B6",version:"4.7.95"},{name:"keyboard-f2",hex:"F12AC",version:"4.7.95"},{name:"keyboard-f3",hex:"F12AD",version:"4.7.95"},{name:"keyboard-f4",hex:"F12AE",version:"4.7.95"},{name:"keyboard-f5",hex:"F12AF",version:"4.7.95"},{name:"keyboard-f6",hex:"F12B0",version:"4.7.95"},{name:"keyboard-f7",hex:"F12B1",version:"4.7.95"},{name:"keyboard-f8",hex:"F12B2",version:"4.7.95"},{name:"keyboard-f9",hex:"F12B3",version:"4.7.95"},{name:"keyboard-off",hex:"F0310",version:"1.5.54"},{name:"keyboard-off-outline",hex:"F0E4B",version:"3.6.95"},{name:"keyboard-outline",hex:"F097B",version:"2.4.85"},{name:"keyboard-return",hex:"F0311",version:"1.5.54"},{name:"keyboard-settings",hex:"F09F9",version:"2.5.94"},{name:"keyboard-settings-outline",hex:"F09FA",version:"2.5.94"},{name:"keyboard-space",hex:"F1050",version:"4.1.95"},{name:"keyboard-tab",hex:"F0312",version:"1.5.54"},{name:"keyboard-tab-reverse",hex:"F0325",version:"1.5.54"},{name:"keyboard-variant",hex:"F0313",version:"1.5.54"},{name:"khanda",hex:"F10FD",version:"4.3.95"},{name:"kickstarter",hex:"F0745",version:"1.9.32"},{name:"kite",hex:"F1985",version:"6.5.95"},{name:"kite-outline",hex:"F1986",version:"6.5.95"},{name:"kitesurfing",hex:"F1744",version:"6.1.95"},{name:"klingon",hex:"F135B",version:"4.9.95"},{name:"knife",hex:"F09FB",version:"2.5.94"},{name:"knife-military",hex:"F09FC",version:"2.5.94"},{name:"koala",hex:"F173F",version:"5.9.55"},{name:"kodi",hex:"F0314",version:"1.5.54"},{name:"kubernetes",hex:"F10FE",version:"4.3.95"},{name:"label",hex:"F0315",version:"1.5.54"},{name:"label-multiple",hex:"F1375",version:"4.9.95"},{name:"label-multiple-outline",hex:"F1376",version:"4.9.95"},{name:"label-off",hex:"F0ACB",version:"2.7.94"},{name:"label-off-outline",hex:"F0ACC",version:"2.7.94"},{name:"label-outline",hex:"F0316",version:"1.5.54"},{name:"label-percent",hex:"F12EA",version:"4.8.95"},{name:"label-percent-outline",hex:"F12EB",version:"4.8.95"},{name:"label-variant",hex:"F0ACD",version:"2.7.94"},{name:"label-variant-outline",hex:"F0ACE",version:"2.7.94"},{name:"ladder",hex:"F15A2",version:"5.5.55"},{name:"ladybug",hex:"F082D",version:"2.1.19"},{name:"lambda",hex:"F0627",version:"1.6.50"},{name:"lamp",hex:"F06B5",version:"1.7.22"},{name:"lamp-outline",hex:"F17D0",version:"6.1.95"},{name:"lamps",hex:"F1576",version:"5.5.55"},{name:"lamps-outline",hex:"F17D1",version:"6.1.95"},{name:"lan",hex:"F0317",version:"1.5.54"},{name:"lan-check",hex:"F12AA",version:"4.7.95"},{name:"lan-connect",hex:"F0318",version:"1.5.54"},{name:"lan-disconnect",hex:"F0319",version:"1.5.54"},{name:"lan-pending",hex:"F031A",version:"1.5.54"},{name:"language-c",hex:"F0671",version:"1.6.50"},{name:"language-cpp",hex:"F0672",version:"1.6.50"},{name:"language-csharp",hex:"F031B",version:"1.5.54"},{name:"language-css3",hex:"F031C",version:"1.5.54"},{name:"language-fortran",hex:"F121A",version:"4.6.95"},{name:"language-go",hex:"F07D3",version:"2.0.46"},{name:"language-haskell",hex:"F0C92",version:"3.2.89"},{name:"language-html5",hex:"F031D",version:"1.5.54"},{name:"language-java",hex:"F0B37",version:"2.8.94"},{name:"language-javascript",hex:"F031E",version:"1.5.54"},{name:"language-kotlin",hex:"F1219",version:"4.6.95"},{name:"language-lua",hex:"F08B1",version:"2.2.43"},{name:"language-markdown",hex:"F0354",version:"1.5.54"},{name:"language-markdown-outline",hex:"F0F5B",version:"3.9.97"},{name:"language-php",hex:"F031F",version:"1.5.54"},{name:"language-python",hex:"F0320",version:"1.5.54"},{name:"language-r",hex:"F07D4",version:"2.0.46"},{name:"language-ruby",hex:"F0D2D",version:"3.3.92"},{name:"language-ruby-on-rails",hex:"F0ACF",version:"2.7.94"},{name:"language-rust",hex:"F1617",version:"5.6.55"},{name:"language-swift",hex:"F06E5",version:"1.8.36"},{name:"language-typescript",hex:"F06E6",version:"1.8.36"},{name:"language-xaml",hex:"F0673",version:"1.6.50"},{name:"laptop",hex:"F0322",version:"1.5.54"},{name:"laptop-off",hex:"F06E7",version:"1.8.36"},{name:"laravel",hex:"F0AD0",version:"2.7.94"},{name:"laser-pointer",hex:"F1484",version:"5.3.45"},{name:"lasso",hex:"F0F03",version:"3.8.95"},{name:"lastpass",hex:"F0446",version:"1.5.54"},{name:"latitude",hex:"F0F57",version:"3.9.97"},{name:"launch",hex:"F0327",version:"1.5.54"},{name:"lava-lamp",hex:"F07D5",version:"2.0.46"},{name:"layers",hex:"F0328",version:"1.5.54"},{name:"layers-edit",hex:"F1892",version:"6.2.95"},{name:"layers-minus",hex:"F0E4C",version:"3.6.95"},{name:"layers-off",hex:"F0329",version:"1.5.54"},{name:"layers-off-outline",hex:"F09FD",version:"2.5.94"},{name:"layers-outline",hex:"F09FE",version:"2.5.94"},{name:"layers-plus",hex:"F0E4D",version:"3.6.95"},{name:"layers-remove",hex:"F0E4E",version:"3.6.95"},{name:"layers-search",hex:"F1206",version:"4.6.95"},{name:"layers-search-outline",hex:"F1207",version:"4.6.95"},{name:"layers-triple",hex:"F0F58",version:"3.9.97"},{name:"layers-triple-outline",hex:"F0F59",version:"3.9.97"},{name:"lead-pencil",hex:"F064F",version:"1.6.50"},{name:"leaf",hex:"F032A",version:"1.5.54"},{name:"leaf-circle",hex:"F1905",version:"6.4.95"},{name:"leaf-circle-outline",hex:"F1906",version:"6.4.95"},{name:"leaf-maple",hex:"F0C93",version:"3.2.89"},{name:"leaf-maple-off",hex:"F12DA",version:"4.8.95"},{name:"leaf-off",hex:"F12D9",version:"4.8.95"},{name:"leak",hex:"F0DD7",version:"3.5.94"},{name:"leak-off",hex:"F0DD8",version:"3.5.94"},{name:"led-off",hex:"F032B",version:"1.5.54"},{name:"led-on",hex:"F032C",version:"1.5.54"},{name:"led-outline",hex:"F032D",version:"1.5.54"},{name:"led-strip",hex:"F07D6",version:"2.0.46"},{name:"led-strip-variant",hex:"F1051",version:"4.1.95"},{name:"led-variant-off",hex:"F032E",version:"1.5.54"},{name:"led-variant-on",hex:"F032F",version:"1.5.54"},{name:"led-variant-outline",hex:"F0330",version:"1.5.54"},{name:"leek",hex:"F117D",version:"4.4.95"},{name:"less-than",hex:"F097C",version:"2.4.85"},{name:"less-than-or-equal",hex:"F097D",version:"2.4.85"},{name:"library",hex:"F0331",version:"1.5.54"},{name:"library-shelves",hex:"F0BA9",version:"3.0.39"},{name:"license",hex:"F0FC3",version:"4.0.96"},{name:"lifebuoy",hex:"F087E",version:"2.1.99"},{name:"light-flood-down",hex:"F1987",version:"6.5.95"},{name:"light-flood-up",hex:"F1988",version:"6.5.95"},{name:"light-recessed",hex:"F179B",version:"6.1.95"},{name:"light-switch",hex:"F097E",version:"2.4.85"},{name:"lightbulb",hex:"F0335",version:"1.5.54"},{name:"lightbulb-auto",hex:"F1800",version:"6.1.95"},{name:"lightbulb-auto-outline",hex:"F1801",version:"6.1.95"},{name:"lightbulb-cfl",hex:"F1208",version:"4.6.95"},{name:"lightbulb-cfl-off",hex:"F1209",version:"4.6.95"},{name:"lightbulb-cfl-spiral",hex:"F1275",version:"4.7.95"},{name:"lightbulb-cfl-spiral-off",hex:"F12C3",version:"4.8.95"},{name:"lightbulb-fluorescent-tube",hex:"F1804",version:"6.1.95"},{name:"lightbulb-fluorescent-tube-outline",hex:"F1805",version:"6.1.95"},{name:"lightbulb-group",hex:"F1253",version:"4.6.95"},{name:"lightbulb-group-off",hex:"F12CD",version:"4.8.95"},{name:"lightbulb-group-off-outline",hex:"F12CE",version:"4.8.95"},{name:"lightbulb-group-outline",hex:"F1254",version:"4.6.95"},{name:"lightbulb-multiple",hex:"F1255",version:"4.6.95"},{name:"lightbulb-multiple-off",hex:"F12CF",version:"4.8.95"},{name:"lightbulb-multiple-off-outline",hex:"F12D0",version:"4.8.95"},{name:"lightbulb-multiple-outline",hex:"F1256",version:"4.6.95"},{name:"lightbulb-off",hex:"F0E4F",version:"3.6.95"},{name:"lightbulb-off-outline",hex:"F0E50",version:"3.6.95"},{name:"lightbulb-on",hex:"F06E8",version:"1.8.36"},{name:"lightbulb-on-outline",hex:"F06E9",version:"1.8.36"},{name:"lightbulb-outline",hex:"F0336",version:"1.5.54"},{name:"lightbulb-spot",hex:"F17F4",version:"6.1.95"},{name:"lightbulb-spot-off",hex:"F17F5",version:"6.1.95"},{name:"lightbulb-variant",hex:"F1802",version:"6.1.95"},{name:"lightbulb-variant-outline",hex:"F1803",version:"6.1.95"},{name:"lighthouse",hex:"F09FF",version:"2.5.94"},{name:"lighthouse-on",hex:"F0A00",version:"2.5.94"},{name:"lightning-bolt",hex:"F140B",version:"5.1.45"},{name:"lightning-bolt-circle",hex:"F0820",version:"2.1.19"},{name:"lightning-bolt-outline",hex:"F140C",version:"5.1.45"},{name:"line-scan",hex:"F0624",version:"1.6.50"},{name:"lingerie",hex:"F1476",version:"5.2.45"},{name:"link",hex:"F0337",version:"1.5.54"},{name:"link-box",hex:"F0D1A",version:"3.3.92"},{name:"link-box-outline",hex:"F0D1B",version:"3.3.92"},{name:"link-box-variant",hex:"F0D1C",version:"3.3.92"},{name:"link-box-variant-outline",hex:"F0D1D",version:"3.3.92"},{name:"link-lock",hex:"F10BA",version:"4.2.95"},{name:"link-off",hex:"F0338",version:"1.5.54"},{name:"link-plus",hex:"F0C94",version:"3.2.89"},{name:"link-variant",hex:"F0339",version:"1.5.54"},{name:"link-variant-minus",hex:"F10FF",version:"4.3.95"},{name:"link-variant-off",hex:"F033A",version:"1.5.54"},{name:"link-variant-plus",hex:"F1100",version:"4.3.95"},{name:"link-variant-remove",hex:"F1101",version:"4.3.95"},{name:"linkedin",hex:"F033B",version:"1.5.54"},{name:"linux",hex:"F033D",version:"1.5.54"},{name:"linux-mint",hex:"F08ED",version:"2.3.50"},{name:"lipstick",hex:"F13B5",version:"5.0.45"},{name:"liquid-spot",hex:"F1826",version:"6.1.95"},{name:"liquor",hex:"F191E",version:"6.4.95"},{name:"list-status",hex:"F15AB",version:"5.5.55"},{name:"litecoin",hex:"F0A61",version:"2.6.95"},{name:"loading",hex:"F0772",version:"1.9.32"},{name:"location-enter",hex:"F0FC4",version:"4.0.96"},{name:"location-exit",hex:"F0FC5",version:"4.0.96"},{name:"lock",hex:"F033E",version:"1.5.54"},{name:"lock-alert",hex:"F08EE",version:"2.3.50"},{name:"lock-alert-outline",hex:"F15D1",version:"5.6.55"},{name:"lock-check",hex:"F139A",version:"5.0.45"},{name:"lock-check-outline",hex:"F16A8",version:"5.8.55"},{name:"lock-clock",hex:"F097F",version:"2.4.85"},{name:"lock-minus",hex:"F16A9",version:"5.8.55"},{name:"lock-minus-outline",hex:"F16AA",version:"5.8.55"},{name:"lock-off",hex:"F1671",version:"5.7.55"},{name:"lock-off-outline",hex:"F1672",version:"5.7.55"},{name:"lock-open",hex:"F033F",version:"1.5.54"},{name:"lock-open-alert",hex:"F139B",version:"5.0.45"},{name:"lock-open-alert-outline",hex:"F15D2",version:"5.6.55"},{name:"lock-open-check",hex:"F139C",version:"5.0.45"},{name:"lock-open-check-outline",hex:"F16AB",version:"5.8.55"},{name:"lock-open-minus",hex:"F16AC",version:"5.8.55"},{name:"lock-open-minus-outline",hex:"F16AD",version:"5.8.55"},{name:"lock-open-outline",hex:"F0340",version:"1.5.54"},{name:"lock-open-plus",hex:"F16AE",version:"5.8.55"},{name:"lock-open-plus-outline",hex:"F16AF",version:"5.8.55"},{name:"lock-open-remove",hex:"F16B0",version:"5.8.55"},{name:"lock-open-remove-outline",hex:"F16B1",version:"5.8.55"},{name:"lock-open-variant",hex:"F0FC6",version:"4.0.96"},{name:"lock-open-variant-outline",hex:"F0FC7",version:"4.0.96"},{name:"lock-outline",hex:"F0341",version:"1.5.54"},{name:"lock-pattern",hex:"F06EA",version:"1.8.36"},{name:"lock-plus",hex:"F05FB",version:"1.5.54"},{name:"lock-plus-outline",hex:"F16B2",version:"5.8.55"},{name:"lock-question",hex:"F08EF",version:"2.3.50"},{name:"lock-remove",hex:"F16B3",version:"5.8.55"},{name:"lock-remove-outline",hex:"F16B4",version:"5.8.55"},{name:"lock-reset",hex:"F0773",version:"1.9.32"},{name:"lock-smart",hex:"F08B2",version:"2.2.43"},{name:"locker",hex:"F07D7",version:"2.0.46"},{name:"locker-multiple",hex:"F07D8",version:"2.0.46"},{name:"login",hex:"F0342",version:"1.5.54"},{name:"login-variant",hex:"F05FC",version:"1.5.54"},{name:"logout",hex:"F0343",version:"1.5.54"},{name:"logout-variant",hex:"F05FD",version:"1.5.54"},{name:"longitude",hex:"F0F5A",version:"3.9.97"},{name:"looks",hex:"F0344",version:"1.5.54"},{name:"lotion",hex:"F1582",version:"5.5.55"},{name:"lotion-outline",hex:"F1583",version:"5.5.55"},{name:"lotion-plus",hex:"F1584",version:"5.5.55"},{name:"lotion-plus-outline",hex:"F1585",version:"5.5.55"},{name:"loupe",hex:"F0345",version:"1.5.54"},{name:"lumx",hex:"F0346",version:"1.5.54"},{name:"lungs",hex:"F1084",version:"4.2.95"},{name:"mace",hex:"F1843",version:"6.2.95"},{name:"magazine-pistol",hex:"F0324",version:"1.5.54"},{name:"magazine-rifle",hex:"F0323",version:"1.5.54"},{name:"magic-staff",hex:"F1844",version:"6.2.95"},{name:"magnet",hex:"F0347",version:"1.5.54"},{name:"magnet-on",hex:"F0348",version:"1.5.54"},{name:"magnify",hex:"F0349",version:"1.5.54"},{name:"magnify-close",hex:"F0980",version:"2.4.85"},{name:"magnify-expand",hex:"F1874",version:"6.2.95"},{name:"magnify-minus",hex:"F034A",version:"1.5.54"},{name:"magnify-minus-cursor",hex:"F0A62",version:"2.6.95"},{name:"magnify-minus-outline",hex:"F06EC",version:"1.8.36"},{name:"magnify-plus",hex:"F034B",version:"1.5.54"},{name:"magnify-plus-cursor",hex:"F0A63",version:"2.6.95"},{name:"magnify-plus-outline",hex:"F06ED",version:"1.8.36"},{name:"magnify-remove-cursor",hex:"F120C",version:"4.6.95"},{name:"magnify-remove-outline",hex:"F120D",version:"4.6.95"},{name:"magnify-scan",hex:"F1276",version:"4.7.95"},{name:"mail",hex:"F0EBB",version:"3.7.94"},{name:"mailbox",hex:"F06EE",version:"1.8.36"},{name:"mailbox-open",hex:"F0D88",version:"3.4.93"},{name:"mailbox-open-outline",hex:"F0D89",version:"3.4.93"},{name:"mailbox-open-up",hex:"F0D8A",version:"3.4.93"},{name:"mailbox-open-up-outline",hex:"F0D8B",version:"3.4.93"},{name:"mailbox-outline",hex:"F0D8C",version:"3.4.93"},{name:"mailbox-up",hex:"F0D8D",version:"3.4.93"},{name:"mailbox-up-outline",hex:"F0D8E",version:"3.4.93"},{name:"manjaro",hex:"F160A",version:"5.6.55"},{name:"map",hex:"F034D",version:"1.5.54"},{name:"map-check",hex:"F0EBC",version:"3.7.94"},{name:"map-check-outline",hex:"F0EBD",version:"3.7.94"},{name:"map-clock",hex:"F0D1E",version:"3.3.92"},{name:"map-clock-outline",hex:"F0D1F",version:"3.3.92"},{name:"map-legend",hex:"F0A01",version:"2.5.94"},{name:"map-marker",hex:"F034E",version:"1.5.54"},{name:"map-marker-account",hex:"F18E3",version:"6.3.95"},{name:"map-marker-account-outline",hex:"F18E4",version:"6.3.95"},{name:"map-marker-alert",hex:"F0F05",version:"3.8.95"},{name:"map-marker-alert-outline",hex:"F0F06",version:"3.8.95"},{name:"map-marker-check",hex:"F0C95",version:"3.2.89"},{name:"map-marker-check-outline",hex:"F12FB",version:"4.8.95"},{name:"map-marker-circle",hex:"F034F",version:"1.5.54"},{name:"map-marker-distance",hex:"F08F0",version:"2.3.50"},{name:"map-marker-down",hex:"F1102",version:"4.3.95"},{name:"map-marker-left",hex:"F12DB",version:"4.8.95"},{name:"map-marker-left-outline",hex:"F12DD",version:"4.8.95"},{name:"map-marker-minus",hex:"F0650",version:"1.6.50"},{name:"map-marker-minus-outline",hex:"F12F9",version:"4.8.95"},{name:"map-marker-multiple",hex:"F0350",version:"1.5.54"},{name:"map-marker-multiple-outline",hex:"F1277",version:"4.7.95"},{name:"map-marker-off",hex:"F0351",version:"1.5.54"},{name:"map-marker-off-outline",hex:"F12FD",version:"4.8.95"},{name:"map-marker-outline",hex:"F07D9",version:"2.0.46"},{name:"map-marker-path",hex:"F0D20",version:"3.3.92"},{name:"map-marker-plus",hex:"F0651",version:"1.6.50"},{name:"map-marker-plus-outline",hex:"F12F8",version:"4.8.95"},{name:"map-marker-question",hex:"F0F07",version:"3.8.95"},{name:"map-marker-question-outline",hex:"F0F08",version:"3.8.95"},{name:"map-marker-radius",hex:"F0352",version:"1.5.54"},{name:"map-marker-radius-outline",hex:"F12FC",version:"4.8.95"},{name:"map-marker-remove",hex:"F0F09",version:"3.8.95"},{name:"map-marker-remove-outline",hex:"F12FA",version:"4.8.95"},{name:"map-marker-remove-variant",hex:"F0F0A",version:"3.8.95"},{name:"map-marker-right",hex:"F12DC",version:"4.8.95"},{name:"map-marker-right-outline",hex:"F12DE",version:"4.8.95"},{name:"map-marker-star",hex:"F1608",version:"5.6.55"},{name:"map-marker-star-outline",hex:"F1609",version:"5.6.55"},{name:"map-marker-up",hex:"F1103",version:"4.3.95"},{name:"map-minus",hex:"F0981",version:"2.4.85"},{name:"map-outline",hex:"F0982",version:"2.4.85"},{name:"map-plus",hex:"F0983",version:"2.4.85"},{name:"map-search",hex:"F0984",version:"2.4.85"},{name:"map-search-outline",hex:"F0985",version:"2.4.85"},{name:"mapbox",hex:"F0BAA",version:"3.0.39"},{name:"margin",hex:"F0353",version:"1.5.54"},{name:"marker",hex:"F0652",version:"1.6.50"},{name:"marker-cancel",hex:"F0DD9",version:"3.5.94"},{name:"marker-check",hex:"F0355",version:"1.5.54"},{name:"mastodon",hex:"F0AD1",version:"2.7.94"},{name:"material-design",hex:"F0986",version:"2.4.85"},{name:"material-ui",hex:"F0357",version:"1.5.54"},{name:"math-compass",hex:"F0358",version:"1.5.54"},{name:"math-cos",hex:"F0C96",version:"3.2.89"},{name:"math-integral",hex:"F0FC8",version:"4.0.96"},{name:"math-integral-box",hex:"F0FC9",version:"4.0.96"},{name:"math-log",hex:"F1085",version:"4.2.95"},{name:"math-norm",hex:"F0FCA",version:"4.0.96"},{name:"math-norm-box",hex:"F0FCB",version:"4.0.96"},{name:"math-sin",hex:"F0C97",version:"3.2.89"},{name:"math-tan",hex:"F0C98",version:"3.2.89"},{name:"matrix",hex:"F0628",version:"1.6.50"},{name:"medal",hex:"F0987",version:"2.4.85"},{name:"medal-outline",hex:"F1326",version:"4.9.95"},{name:"medical-bag",hex:"F06EF",version:"1.8.36"},{name:"meditation",hex:"F117B",version:"4.4.95"},{name:"memory",hex:"F035B",version:"1.5.54"},{name:"menorah",hex:"F17D4",version:"6.1.95"},{name:"menorah-fire",hex:"F17D5",version:"6.1.95"},{name:"menu",hex:"F035C",version:"1.5.54"},{name:"menu-down",hex:"F035D",version:"1.5.54"},{name:"menu-down-outline",hex:"F06B6",version:"1.7.22"},{name:"menu-left",hex:"F035E",version:"1.5.54"},{name:"menu-left-outline",hex:"F0A02",version:"2.5.94"},{name:"menu-open",hex:"F0BAB",version:"3.0.39"},{name:"menu-right",hex:"F035F",version:"1.5.54"},{name:"menu-right-outline",hex:"F0A03",version:"2.5.94"},{name:"menu-swap",hex:"F0A64",version:"2.6.95"},{name:"menu-swap-outline",hex:"F0A65",version:"2.6.95"},{name:"menu-up",hex:"F0360",version:"1.5.54"},{name:"menu-up-outline",hex:"F06B7",version:"1.7.22"},{name:"merge",hex:"F0F5C",version:"3.9.97"},{name:"message",hex:"F0361",version:"1.5.54"},{name:"message-alert",hex:"F0362",version:"1.5.54"},{name:"message-alert-outline",hex:"F0A04",version:"2.5.94"},{name:"message-arrow-left",hex:"F12F2",version:"4.8.95"},{name:"message-arrow-left-outline",hex:"F12F3",version:"4.8.95"},{name:"message-arrow-right",hex:"F12F4",version:"4.8.95"},{name:"message-arrow-right-outline",hex:"F12F5",version:"4.8.95"},{name:"message-badge",hex:"F1941",version:"6.4.95"},{name:"message-badge-outline",hex:"F1942",version:"6.4.95"},{name:"message-bookmark",hex:"F15AC",version:"5.5.55"},{name:"message-bookmark-outline",hex:"F15AD",version:"5.5.55"},{name:"message-bulleted",hex:"F06A2",version:"1.7.12"},{name:"message-bulleted-off",hex:"F06A3",version:"1.7.12"},{name:"message-cog",hex:"F06F1",version:"1.8.36"},{name:"message-cog-outline",hex:"F1172",version:"4.4.95"},{name:"message-draw",hex:"F0363",version:"1.5.54"},{name:"message-flash",hex:"F15A9",version:"5.5.55"},{name:"message-flash-outline",hex:"F15AA",version:"5.5.55"},{name:"message-image",hex:"F0364",version:"1.5.54"},{name:"message-image-outline",hex:"F116C",version:"4.4.95"},{name:"message-lock",hex:"F0FCC",version:"4.0.96"},{name:"message-lock-outline",hex:"F116D",version:"4.4.95"},{name:"message-minus",hex:"F116E",version:"4.4.95"},{name:"message-minus-outline",hex:"F116F",version:"4.4.95"},{name:"message-off",hex:"F164D",version:"5.7.55"},{name:"message-off-outline",hex:"F164E",version:"5.7.55"},{name:"message-outline",hex:"F0365",version:"1.5.54"},{name:"message-plus",hex:"F0653",version:"1.6.50"},{name:"message-plus-outline",hex:"F10BB",version:"4.2.95"},{name:"message-processing",hex:"F0366",version:"1.5.54"},{name:"message-processing-outline",hex:"F1170",version:"4.4.95"},{name:"message-question",hex:"F173A",version:"5.9.55"},{name:"message-question-outline",hex:"F173B",version:"5.9.55"},{name:"message-reply",hex:"F0367",version:"1.5.54"},{name:"message-reply-outline",hex:"F173D",version:"5.9.55"},{name:"message-reply-text",hex:"F0368",version:"1.5.54"},{name:"message-reply-text-outline",hex:"F173E",version:"5.9.55"},{name:"message-settings",hex:"F06F0",version:"1.8.36"},{name:"message-settings-outline",hex:"F1171",version:"4.4.95"},{name:"message-star",hex:"F069A",version:"1.7.12"},{name:"message-star-outline",hex:"F1250",version:"4.6.95"},{name:"message-text",hex:"F0369",version:"1.5.54"},{name:"message-text-clock",hex:"F1173",version:"4.4.95"},{name:"message-text-clock-outline",hex:"F1174",version:"4.4.95"},{name:"message-text-lock",hex:"F0FCD",version:"4.0.96"},{name:"message-text-lock-outline",hex:"F1175",version:"4.4.95"},{name:"message-text-outline",hex:"F036A",version:"1.5.54"},{name:"message-video",hex:"F036B",version:"1.5.54"},{name:"meteor",hex:"F0629",version:"1.6.50"},{name:"metronome",hex:"F07DA",version:"2.0.46"},{name:"metronome-tick",hex:"F07DB",version:"2.0.46"},{name:"micro-sd",hex:"F07DC",version:"2.0.46"},{name:"microphone",hex:"F036C",version:"1.5.54"},{name:"microphone-minus",hex:"F08B3",version:"2.2.43"},{name:"microphone-off",hex:"F036D",version:"1.5.54"},{name:"microphone-outline",hex:"F036E",version:"1.5.54"},{name:"microphone-plus",hex:"F08B4",version:"2.2.43"},{name:"microphone-question",hex:"F1989",version:"6.5.95"},{name:"microphone-question-outline",hex:"F198A",version:"6.5.95"},{name:"microphone-settings",hex:"F036F",version:"1.5.54"},{name:"microphone-variant",hex:"F0370",version:"1.5.54"},{name:"microphone-variant-off",hex:"F0371",version:"1.5.54"},{name:"microscope",hex:"F0654",version:"1.6.50"},{name:"microsoft",hex:"F0372",version:"1.5.54"},{name:"microsoft-access",hex:"F138E",version:"5.0.45"},{name:"microsoft-azure",hex:"F0805",version:"2.1.19"},{name:"microsoft-azure-devops",hex:"F0FD5",version:"4.2.95"},{name:"microsoft-bing",hex:"F00A4",version:"1.5.54"},{name:"microsoft-dynamics-365",hex:"F0988",version:"2.4.85"},{name:"microsoft-edge",hex:"F01E9",version:"1.5.54"},{name:"microsoft-excel",hex:"F138F",version:"5.0.45"},{name:"microsoft-internet-explorer",hex:"F0300",version:"1.5.54"},{name:"microsoft-office",hex:"F03C6",version:"1.5.54"},{name:"microsoft-onedrive",hex:"F03CA",version:"1.5.54"},{name:"microsoft-onenote",hex:"F0747",version:"1.9.32"},{name:"microsoft-outlook",hex:"F0D22",version:"3.3.92"},{name:"microsoft-powerpoint",hex:"F1390",version:"5.0.45"},{name:"microsoft-sharepoint",hex:"F1391",version:"5.0.45"},{name:"microsoft-teams",hex:"F02BB",version:"1.5.54"},{name:"microsoft-visual-studio",hex:"F0610",version:"1.5.54"},{name:"microsoft-visual-studio-code",hex:"F0A1E",version:"2.5.94"},{name:"microsoft-windows",hex:"F05B3",version:"1.5.54"},{name:"microsoft-windows-classic",hex:"F0A21",version:"2.5.94"},{name:"microsoft-word",hex:"F1392",version:"5.0.45"},{name:"microsoft-xbox",hex:"F05B9",version:"1.5.54"},{name:"microsoft-xbox-controller",hex:"F05BA",version:"1.5.54"},{name:"microsoft-xbox-controller-battery-alert",hex:"F074B",version:"1.9.32"},{name:"microsoft-xbox-controller-battery-charging",hex:"F0A22",version:"2.5.94"},{name:"microsoft-xbox-controller-battery-empty",hex:"F074C",version:"1.9.32"},{name:"microsoft-xbox-controller-battery-full",hex:"F074D",version:"1.9.32"},{name:"microsoft-xbox-controller-battery-low",hex:"F074E",version:"1.9.32"},{name:"microsoft-xbox-controller-battery-medium",hex:"F074F",version:"1.9.32"},{name:"microsoft-xbox-controller-battery-unknown",hex:"F0750",version:"1.9.32"},{name:"microsoft-xbox-controller-menu",hex:"F0E6F",version:"3.6.95"},{name:"microsoft-xbox-controller-off",hex:"F05BB",version:"1.5.54"},{name:"microsoft-xbox-controller-view",hex:"F0E70",version:"3.6.95"},{name:"microwave",hex:"F0C99",version:"3.2.89"},{name:"microwave-off",hex:"F1423",version:"5.2.45"},{name:"middleware",hex:"F0F5D",version:"3.9.97"},{name:"middleware-outline",hex:"F0F5E",version:"3.9.97"},{name:"midi",hex:"F08F1",version:"2.3.50"},{name:"midi-port",hex:"F08F2",version:"2.3.50"},{name:"mine",hex:"F0DDA",version:"3.5.94"},{name:"minecraft",hex:"F0373",version:"1.5.54"},{name:"mini-sd",hex:"F0A05",version:"2.5.94"},{name:"minidisc",hex:"F0A06",version:"2.5.94"},{name:"minus",hex:"F0374",version:"1.5.54"},{name:"minus-box",hex:"F0375",version:"1.5.54"},{name:"minus-box-multiple",hex:"F1141",version:"4.4.95"},{name:"minus-box-multiple-outline",hex:"F1142",version:"4.4.95"},{name:"minus-box-outline",hex:"F06F2",version:"1.8.36"},{name:"minus-circle",hex:"F0376",version:"1.5.54"},{name:"minus-circle-multiple",hex:"F035A",version:"1.5.54"},{name:"minus-circle-multiple-outline",hex:"F0AD3",version:"2.7.94"},{name:"minus-circle-off",hex:"F1459",version:"5.2.45"},{name:"minus-circle-off-outline",hex:"F145A",version:"5.2.45"},{name:"minus-circle-outline",hex:"F0377",version:"1.5.54"},{name:"minus-network",hex:"F0378",version:"1.5.54"},{name:"minus-network-outline",hex:"F0C9A",version:"3.2.89"},{name:"minus-thick",hex:"F1639",version:"5.7.55"},{name:"mirror",hex:"F11FD",version:"4.6.95"},{name:"mirror-rectangle",hex:"F179F",version:"6.1.95"},{name:"mirror-variant",hex:"F17A0",version:"6.1.95"},{name:"mixed-martial-arts",hex:"F0D8F",version:"3.4.93"},{name:"mixed-reality",hex:"F087F",version:"2.1.99"},{name:"molecule",hex:"F0BAC",version:"3.0.39"},{name:"molecule-co",hex:"F12FE",version:"4.8.95"},{name:"molecule-co2",hex:"F07E4",version:"2.0.46"},{name:"monitor",hex:"F0379",version:"1.5.54"},{name:"monitor-cellphone",hex:"F0989",version:"2.4.85"},{name:"monitor-cellphone-star",hex:"F098A",version:"2.4.85"},{name:"monitor-dashboard",hex:"F0A07",version:"2.5.94"},{name:"monitor-edit",hex:"F12C6",version:"4.8.95"},{name:"monitor-eye",hex:"F13B4",version:"5.0.45"},{name:"monitor-lock",hex:"F0DDB",version:"3.5.94"},{name:"monitor-multiple",hex:"F037A",version:"1.5.54"},{name:"monitor-off",hex:"F0D90",version:"3.4.93"},{name:"monitor-screenshot",hex:"F0E51",version:"3.6.95"},{name:"monitor-share",hex:"F1483",version:"5.3.45"},{name:"monitor-shimmer",hex:"F1104",version:"4.3.95"},{name:"monitor-small",hex:"F1876",version:"6.2.95"},{name:"monitor-speaker",hex:"F0F5F",version:"3.9.97"},{name:"monitor-speaker-off",hex:"F0F60",version:"3.9.97"},{name:"monitor-star",hex:"F0DDC",version:"3.5.94"},{name:"moon-first-quarter",hex:"F0F61",version:"3.9.97"},{name:"moon-full",hex:"F0F62",version:"3.9.97"},{name:"moon-last-quarter",hex:"F0F63",version:"3.9.97"},{name:"moon-new",hex:"F0F64",version:"3.9.97"},{name:"moon-waning-crescent",hex:"F0F65",version:"3.9.97"},{name:"moon-waning-gibbous",hex:"F0F66",version:"3.9.97"},{name:"moon-waxing-crescent",hex:"F0F67",version:"3.9.97"},{name:"moon-waxing-gibbous",hex:"F0F68",version:"3.9.97"},{name:"moped",hex:"F1086",version:"4.2.95"},{name:"moped-electric",hex:"F15B7",version:"5.6.55"},{name:"moped-electric-outline",hex:"F15B8",version:"5.6.55"},{name:"moped-outline",hex:"F15B9",version:"5.6.55"},{name:"more",hex:"F037B",version:"1.5.54"},{name:"mortar-pestle",hex:"F1748",version:"6.1.95"},{name:"mortar-pestle-plus",hex:"F03F1",version:"1.5.54"},{name:"mosque",hex:"F1827",version:"6.1.95"},{name:"mother-heart",hex:"F1314",version:"4.8.95"},{name:"mother-nurse",hex:"F0D21",version:"3.3.92"},{name:"motion",hex:"F15B2",version:"5.5.55"},{name:"motion-outline",hex:"F15B3",version:"5.5.55"},{name:"motion-pause",hex:"F1590",version:"5.5.55"},{name:"motion-pause-outline",hex:"F1592",version:"5.5.55"},{name:"motion-play",hex:"F158F",version:"5.5.55"},{name:"motion-play-outline",hex:"F1591",version:"5.5.55"},{name:"motion-sensor",hex:"F0D91",version:"3.4.93"},{name:"motion-sensor-off",hex:"F1435",version:"5.2.45"},{name:"motorbike",hex:"F037C",version:"1.5.54"},{name:"motorbike-electric",hex:"F15BA",version:"5.6.55"},{name:"mouse",hex:"F037D",version:"1.5.54"},{name:"mouse-bluetooth",hex:"F098B",version:"2.4.85"},{name:"mouse-move-down",hex:"F1550",version:"5.5.55"},{name:"mouse-move-up",hex:"F1551",version:"5.5.55"},{name:"mouse-move-vertical",hex:"F1552",version:"5.5.55"},{name:"mouse-off",hex:"F037E",version:"1.5.54"},{name:"mouse-variant",hex:"F037F",version:"1.5.54"},{name:"mouse-variant-off",hex:"F0380",version:"1.5.54"},{name:"move-resize",hex:"F0655",version:"1.6.50"},{name:"move-resize-variant",hex:"F0656",version:"1.6.50"},{name:"movie",hex:"F0381",version:"1.5.54"},{name:"movie-check",hex:"F16F3",version:"5.9.55"},{name:"movie-check-outline",hex:"F16F4",version:"5.9.55"},{name:"movie-cog",hex:"F16F5",version:"5.9.55"},{name:"movie-cog-outline",hex:"F16F6",version:"5.9.55"},{name:"movie-edit",hex:"F1122",version:"4.3.95"},{name:"movie-edit-outline",hex:"F1123",version:"4.3.95"},{name:"movie-filter",hex:"F1124",version:"4.3.95"},{name:"movie-filter-outline",hex:"F1125",version:"4.3.95"},{name:"movie-minus",hex:"F16F7",version:"5.9.55"},{name:"movie-minus-outline",hex:"F16F8",version:"5.9.55"},{name:"movie-off",hex:"F16F9",version:"5.9.55"},{name:"movie-off-outline",hex:"F16FA",version:"5.9.55"},{name:"movie-open",hex:"F0FCE",version:"4.0.96"},{name:"movie-open-check",hex:"F16FB",version:"5.9.55"},{name:"movie-open-check-outline",hex:"F16FC",version:"5.9.55"},{name:"movie-open-cog",hex:"F16FD",version:"5.9.55"},{name:"movie-open-cog-outline",hex:"F16FE",version:"5.9.55"},{name:"movie-open-edit",hex:"F16FF",version:"5.9.55"},{name:"movie-open-edit-outline",hex:"F1700",version:"5.9.55"},{name:"movie-open-minus",hex:"F1701",version:"5.9.55"},{name:"movie-open-minus-outline",hex:"F1702",version:"5.9.55"},{name:"movie-open-off",hex:"F1703",version:"5.9.55"},{name:"movie-open-off-outline",hex:"F1704",version:"5.9.55"},{name:"movie-open-outline",hex:"F0FCF",version:"4.0.96"},{name:"movie-open-play",hex:"F1705",version:"5.9.55"},{name:"movie-open-play-outline",hex:"F1706",version:"5.9.55"},{name:"movie-open-plus",hex:"F1707",version:"5.9.55"},{name:"movie-open-plus-outline",hex:"F1708",version:"5.9.55"},{name:"movie-open-remove",hex:"F1709",version:"5.9.55"},{name:"movie-open-remove-outline",hex:"F170A",version:"5.9.55"},{name:"movie-open-settings",hex:"F170B",version:"5.9.55"},{name:"movie-open-settings-outline",hex:"F170C",version:"5.9.55"},{name:"movie-open-star",hex:"F170D",version:"5.9.55"},{name:"movie-open-star-outline",hex:"F170E",version:"5.9.55"},{name:"movie-outline",hex:"F0DDD",version:"3.5.94"},{name:"movie-play",hex:"F170F",version:"5.9.55"},{name:"movie-play-outline",hex:"F1710",version:"5.9.55"},{name:"movie-plus",hex:"F1711",version:"5.9.55"},{name:"movie-plus-outline",hex:"F1712",version:"5.9.55"},{name:"movie-remove",hex:"F1713",version:"5.9.55"},{name:"movie-remove-outline",hex:"F1714",version:"5.9.55"},{name:"movie-roll",hex:"F07DE",version:"2.0.46"},{name:"movie-search",hex:"F11D2",version:"4.5.95"},{name:"movie-search-outline",hex:"F11D3",version:"4.5.95"},{name:"movie-settings",hex:"F1715",version:"5.9.55"},{name:"movie-settings-outline",hex:"F1716",version:"5.9.55"},{name:"movie-star",hex:"F1717",version:"5.9.55"},{name:"movie-star-outline",hex:"F1718",version:"5.9.55"},{name:"mower",hex:"F166F",version:"5.7.55"},{name:"mower-bag",hex:"F1670",version:"5.7.55"},{name:"muffin",hex:"F098C",version:"2.4.85"},{name:"multicast",hex:"F1893",version:"6.2.95"},{name:"multiplication",hex:"F0382",version:"1.5.54"},{name:"multiplication-box",hex:"F0383",version:"1.5.54"},{name:"mushroom",hex:"F07DF",version:"2.0.46"},{name:"mushroom-off",hex:"F13FA",version:"5.1.45"},{name:"mushroom-off-outline",hex:"F13FB",version:"5.1.45"},{name:"mushroom-outline",hex:"F07E0",version:"2.0.46"},{name:"music",hex:"F075A",version:"1.9.32"},{name:"music-accidental-double-flat",hex:"F0F69",version:"3.9.97"},{name:"music-accidental-double-sharp",hex:"F0F6A",version:"3.9.97"},{name:"music-accidental-flat",hex:"F0F6B",version:"3.9.97"},{name:"music-accidental-natural",hex:"F0F6C",version:"3.9.97"},{name:"music-accidental-sharp",hex:"F0F6D",version:"3.9.97"},{name:"music-box",hex:"F0384",version:"1.5.54"},{name:"music-box-multiple",hex:"F0333",version:"1.5.54"},{name:"music-box-multiple-outline",hex:"F0F04",version:"3.8.95"},{name:"music-box-outline",hex:"F0385",version:"1.5.54"},{name:"music-circle",hex:"F0386",version:"1.5.54"},{name:"music-circle-outline",hex:"F0AD4",version:"2.7.94"},{name:"music-clef-alto",hex:"F0F6E",version:"3.9.97"},{name:"music-clef-bass",hex:"F0F6F",version:"3.9.97"},{name:"music-clef-treble",hex:"F0F70",version:"3.9.97"},{name:"music-note",hex:"F0387",version:"1.5.54"},{name:"music-note-bluetooth",hex:"F05FE",version:"1.5.54"},{name:"music-note-bluetooth-off",hex:"F05FF",version:"1.5.54"},{name:"music-note-eighth",hex:"F0388",version:"1.5.54"},{name:"music-note-eighth-dotted",hex:"F0F71",version:"3.9.97"},{name:"music-note-half",hex:"F0389",version:"1.5.54"},{name:"music-note-half-dotted",hex:"F0F72",version:"3.9.97"},{name:"music-note-off",hex:"F038A",version:"1.5.54"},{name:"music-note-off-outline",hex:"F0F73",version:"3.9.97"},{name:"music-note-outline",hex:"F0F74",version:"3.9.97"},{name:"music-note-plus",hex:"F0DDE",version:"3.5.94"},{name:"music-note-quarter",hex:"F038B",version:"1.5.54"},{name:"music-note-quarter-dotted",hex:"F0F75",version:"3.9.97"},{name:"music-note-sixteenth",hex:"F038C",version:"1.5.54"},{name:"music-note-sixteenth-dotted",hex:"F0F76",version:"3.9.97"},{name:"music-note-whole",hex:"F038D",version:"1.5.54"},{name:"music-note-whole-dotted",hex:"F0F77",version:"3.9.97"},{name:"music-off",hex:"F075B",version:"1.9.32"},{name:"music-rest-eighth",hex:"F0F78",version:"3.9.97"},{name:"music-rest-half",hex:"F0F79",version:"3.9.97"},{name:"music-rest-quarter",hex:"F0F7A",version:"3.9.97"},{name:"music-rest-sixteenth",hex:"F0F7B",version:"3.9.97"},{name:"music-rest-whole",hex:"F0F7C",version:"3.9.97"},{name:"mustache",hex:"F15DE",version:"5.6.55"},{name:"nail",hex:"F0DDF",version:"3.5.94"},{name:"nas",hex:"F08F3",version:"2.3.50"},{name:"nativescript",hex:"F0880",version:"2.1.99"},{name:"nature",hex:"F038E",version:"1.5.54"},{name:"nature-people",hex:"F038F",version:"1.5.54"},{name:"navigation",hex:"F0390",version:"1.5.54"},{name:"navigation-outline",hex:"F1607",version:"5.6.55"},{name:"navigation-variant",hex:"F18F0",version:"6.3.95"},{name:"navigation-variant-outline",hex:"F18F1",version:"6.3.95"},{name:"near-me",hex:"F05CD",version:"1.5.54"},{name:"necklace",hex:"F0F0B",version:"3.8.95"},{name:"needle",hex:"F0391",version:"1.5.54"},{name:"netflix",hex:"F0746",version:"1.9.32"},{name:"network",hex:"F06F3",version:"1.8.36"},{name:"network-off",hex:"F0C9B",version:"3.2.89"},{name:"network-off-outline",hex:"F0C9C",version:"3.2.89"},{name:"network-outline",hex:"F0C9D",version:"3.2.89"},{name:"network-strength-1",hex:"F08F4",version:"2.3.50"},{name:"network-strength-1-alert",hex:"F08F5",version:"2.3.50"},{name:"network-strength-2",hex:"F08F6",version:"2.3.50"},{name:"network-strength-2-alert",hex:"F08F7",version:"2.3.50"},{name:"network-strength-3",hex:"F08F8",version:"2.3.50"},{name:"network-strength-3-alert",hex:"F08F9",version:"2.3.50"},{name:"network-strength-4",hex:"F08FA",version:"2.3.50"},{name:"network-strength-4-alert",hex:"F08FB",version:"2.3.50"},{name:"network-strength-4-cog",hex:"F191A",version:"6.4.95"},{name:"network-strength-off",hex:"F08FC",version:"2.3.50"},{name:"network-strength-off-outline",hex:"F08FD",version:"2.3.50"},{name:"network-strength-outline",hex:"F08FE",version:"2.3.50"},{name:"new-box",hex:"F0394",version:"1.5.54"},{name:"newspaper",hex:"F0395",version:"1.5.54"},{name:"newspaper-check",hex:"F1943",version:"6.4.95"},{name:"newspaper-minus",hex:"F0F0C",version:"3.8.95"},{name:"newspaper-plus",hex:"F0F0D",version:"3.8.95"},{name:"newspaper-remove",hex:"F1944",version:"6.4.95"},{name:"newspaper-variant",hex:"F1001",version:"4.0.96"},{name:"newspaper-variant-multiple",hex:"F1002",version:"4.0.96"},{name:"newspaper-variant-multiple-outline",hex:"F1003",version:"4.0.96"},{name:"newspaper-variant-outline",hex:"F1004",version:"4.0.96"},{name:"nfc",hex:"F0396",version:"1.5.54"},{name:"nfc-search-variant",hex:"F0E53",version:"3.6.95"},{name:"nfc-tap",hex:"F0397",version:"1.5.54"},{name:"nfc-variant",hex:"F0398",version:"1.5.54"},{name:"nfc-variant-off",hex:"F0E54",version:"3.6.95"},{name:"ninja",hex:"F0774",version:"1.9.32"},{name:"nintendo-game-boy",hex:"F1393",version:"5.0.45"},{name:"nintendo-switch",hex:"F07E1",version:"2.0.46"},{name:"nintendo-wii",hex:"F05AB",version:"1.5.54"},{name:"nintendo-wiiu",hex:"F072D",version:"1.8.36"},{name:"nix",hex:"F1105",version:"4.3.95"},{name:"nodejs",hex:"F0399",version:"1.5.54"},{name:"noodles",hex:"F117E",version:"4.4.95"},{name:"not-equal",hex:"F098D",version:"2.4.85"},{name:"not-equal-variant",hex:"F098E",version:"2.4.85"},{name:"note",hex:"F039A",version:"1.5.54"},{name:"note-alert",hex:"F177D",version:"6.1.95"},{name:"note-alert-outline",hex:"F177E",version:"6.1.95"},{name:"note-check",hex:"F177F",version:"6.1.95"},{name:"note-check-outline",hex:"F1780",version:"6.1.95"},{name:"note-edit",hex:"F1781",version:"6.1.95"},{name:"note-edit-outline",hex:"F1782",version:"6.1.95"},{name:"note-minus",hex:"F164F",version:"5.7.55"},{name:"note-minus-outline",hex:"F1650",version:"5.7.55"},{name:"note-multiple",hex:"F06B8",version:"1.7.22"},{name:"note-multiple-outline",hex:"F06B9",version:"1.7.22"},{name:"note-off",hex:"F1783",version:"6.1.95"},{name:"note-off-outline",hex:"F1784",version:"6.1.95"},{name:"note-outline",hex:"F039B",version:"1.5.54"},{name:"note-plus",hex:"F039C",version:"1.5.54"},{name:"note-plus-outline",hex:"F039D",version:"1.5.54"},{name:"note-remove",hex:"F1651",version:"5.7.55"},{name:"note-remove-outline",hex:"F1652",version:"5.7.55"},{name:"note-search",hex:"F1653",version:"5.7.55"},{name:"note-search-outline",hex:"F1654",version:"5.7.55"},{name:"note-text",hex:"F039E",version:"1.5.54"},{name:"note-text-outline",hex:"F11D7",version:"4.5.95"},{name:"notebook",hex:"F082E",version:"2.1.19"},{name:"notebook-check",hex:"F14F5",version:"5.4.55"},{name:"notebook-check-outline",hex:"F14F6",version:"5.4.55"},{name:"notebook-edit",hex:"F14E7",version:"5.4.55"},{name:"notebook-edit-outline",hex:"F14E9",version:"5.4.55"},{name:"notebook-minus",hex:"F1610",version:"5.6.55"},{name:"notebook-minus-outline",hex:"F1611",version:"5.6.55"},{name:"notebook-multiple",hex:"F0E55",version:"3.6.95"},{name:"notebook-outline",hex:"F0EBF",version:"3.7.94"},{name:"notebook-plus",hex:"F1612",version:"5.6.55"},{name:"notebook-plus-outline",hex:"F1613",version:"5.6.55"},{name:"notebook-remove",hex:"F1614",version:"5.6.55"},{name:"notebook-remove-outline",hex:"F1615",version:"5.6.55"},{name:"notification-clear-all",hex:"F039F",version:"1.5.54"},{name:"npm",hex:"F06F7",version:"1.8.36"},{name:"nuke",hex:"F06A4",version:"1.7.12"},{name:"null",hex:"F07E2",version:"2.0.46"},{name:"numeric",hex:"F03A0",version:"1.5.54"},{name:"numeric-0",hex:"F0B39",version:"2.8.94"},{name:"numeric-0-box",hex:"F03A1",version:"1.5.54"},{name:"numeric-0-box-multiple",hex:"F0F0E",version:"3.8.95"},{name:"numeric-0-box-multiple-outline",hex:"F03A2",version:"1.5.54"},{name:"numeric-0-box-outline",hex:"F03A3",version:"1.5.54"},{name:"numeric-0-circle",hex:"F0C9E",version:"3.2.89"},{name:"numeric-0-circle-outline",hex:"F0C9F",version:"3.2.89"},{name:"numeric-1",hex:"F0B3A",version:"2.8.94"},{name:"numeric-1-box",hex:"F03A4",version:"1.5.54"},{name:"numeric-1-box-multiple",hex:"F0F0F",version:"3.8.95"},{name:"numeric-1-box-multiple-outline",hex:"F03A5",version:"1.5.54"},{name:"numeric-1-box-outline",hex:"F03A6",version:"1.5.54"},{name:"numeric-1-circle",hex:"F0CA0",version:"3.2.89"},{name:"numeric-1-circle-outline",hex:"F0CA1",version:"3.2.89"},{name:"numeric-10",hex:"F0FE9",version:"4.0.96"},{name:"numeric-10-box",hex:"F0F7D",version:"3.9.97"},{name:"numeric-10-box-multiple",hex:"F0FEA",version:"4.0.96"},{name:"numeric-10-box-multiple-outline",hex:"F0FEB",version:"4.0.96"},{name:"numeric-10-box-outline",hex:"F0F7E",version:"3.9.97"},{name:"numeric-10-circle",hex:"F0FEC",version:"4.0.96"},{name:"numeric-10-circle-outline",hex:"F0FED",version:"4.0.96"},{name:"numeric-2",hex:"F0B3B",version:"2.8.94"},{name:"numeric-2-box",hex:"F03A7",version:"1.5.54"},{name:"numeric-2-box-multiple",hex:"F0F10",version:"3.8.95"},{name:"numeric-2-box-multiple-outline",hex:"F03A8",version:"1.5.54"},{name:"numeric-2-box-outline",hex:"F03A9",version:"1.5.54"},{name:"numeric-2-circle",hex:"F0CA2",version:"3.2.89"},{name:"numeric-2-circle-outline",hex:"F0CA3",version:"3.2.89"},{name:"numeric-3",hex:"F0B3C",version:"2.8.94"},{name:"numeric-3-box",hex:"F03AA",version:"1.5.54"},{name:"numeric-3-box-multiple",hex:"F0F11",version:"3.8.95"},{name:"numeric-3-box-multiple-outline",hex:"F03AB",version:"1.5.54"},{name:"numeric-3-box-outline",hex:"F03AC",version:"1.5.54"},{name:"numeric-3-circle",hex:"F0CA4",version:"3.2.89"},{name:"numeric-3-circle-outline",hex:"F0CA5",version:"3.2.89"},{name:"numeric-4",hex:"F0B3D",version:"2.8.94"},{name:"numeric-4-box",hex:"F03AD",version:"1.5.54"},{name:"numeric-4-box-multiple",hex:"F0F12",version:"3.8.95"},{name:"numeric-4-box-multiple-outline",hex:"F03B2",version:"1.5.54"},{name:"numeric-4-box-outline",hex:"F03AE",version:"1.5.54"},{name:"numeric-4-circle",hex:"F0CA6",version:"3.2.89"},{name:"numeric-4-circle-outline",hex:"F0CA7",version:"3.2.89"},{name:"numeric-5",hex:"F0B3E",version:"2.8.94"},{name:"numeric-5-box",hex:"F03B1",version:"1.5.54"},{name:"numeric-5-box-multiple",hex:"F0F13",version:"3.8.95"},{name:"numeric-5-box-multiple-outline",hex:"F03AF",version:"1.5.54"},{name:"numeric-5-box-outline",hex:"F03B0",version:"1.5.54"},{name:"numeric-5-circle",hex:"F0CA8",version:"3.2.89"},{name:"numeric-5-circle-outline",hex:"F0CA9",version:"3.2.89"},{name:"numeric-6",hex:"F0B3F",version:"2.8.94"},{name:"numeric-6-box",hex:"F03B3",version:"1.5.54"},{name:"numeric-6-box-multiple",hex:"F0F14",version:"3.8.95"},{name:"numeric-6-box-multiple-outline",hex:"F03B4",version:"1.5.54"},{name:"numeric-6-box-outline",hex:"F03B5",version:"1.5.54"},{name:"numeric-6-circle",hex:"F0CAA",version:"3.2.89"},{name:"numeric-6-circle-outline",hex:"F0CAB",version:"3.2.89"},{name:"numeric-7",hex:"F0B40",version:"2.8.94"},{name:"numeric-7-box",hex:"F03B6",version:"1.5.54"},{name:"numeric-7-box-multiple",hex:"F0F15",version:"3.8.95"},{name:"numeric-7-box-multiple-outline",hex:"F03B7",version:"1.5.54"},{name:"numeric-7-box-outline",hex:"F03B8",version:"1.5.54"},{name:"numeric-7-circle",hex:"F0CAC",version:"3.2.89"},{name:"numeric-7-circle-outline",hex:"F0CAD",version:"3.2.89"},{name:"numeric-8",hex:"F0B41",version:"2.8.94"},{name:"numeric-8-box",hex:"F03B9",version:"1.5.54"},{name:"numeric-8-box-multiple",hex:"F0F16",version:"3.8.95"},{name:"numeric-8-box-multiple-outline",hex:"F03BA",version:"1.5.54"},{name:"numeric-8-box-outline",hex:"F03BB",version:"1.5.54"},{name:"numeric-8-circle",hex:"F0CAE",version:"3.2.89"},{name:"numeric-8-circle-outline",hex:"F0CAF",version:"3.2.89"},{name:"numeric-9",hex:"F0B42",version:"2.8.94"},{name:"numeric-9-box",hex:"F03BC",version:"1.5.54"},{name:"numeric-9-box-multiple",hex:"F0F17",version:"3.8.95"},{name:"numeric-9-box-multiple-outline",hex:"F03BD",version:"1.5.54"},{name:"numeric-9-box-outline",hex:"F03BE",version:"1.5.54"},{name:"numeric-9-circle",hex:"F0CB0",version:"3.2.89"},{name:"numeric-9-circle-outline",hex:"F0CB1",version:"3.2.89"},{name:"numeric-9-plus",hex:"F0FEE",version:"4.0.96"},{name:"numeric-9-plus-box",hex:"F03BF",version:"1.5.54"},{name:"numeric-9-plus-box-multiple",hex:"F0F18",version:"3.8.95"},{name:"numeric-9-plus-box-multiple-outline",hex:"F03C0",version:"1.5.54"},{name:"numeric-9-plus-box-outline",hex:"F03C1",version:"1.5.54"},{name:"numeric-9-plus-circle",hex:"F0CB2",version:"3.2.89"},{name:"numeric-9-plus-circle-outline",hex:"F0CB3",version:"3.2.89"},{name:"numeric-negative-1",hex:"F1052",version:"4.1.95"},{name:"numeric-positive-1",hex:"F15CB",version:"5.6.55"},{name:"nut",hex:"F06F8",version:"1.8.36"},{name:"nutrition",hex:"F03C2",version:"1.5.54"},{name:"nuxt",hex:"F1106",version:"4.3.95"},{name:"oar",hex:"F067C",version:"1.7.12"},{name:"ocarina",hex:"F0DE0",version:"3.5.94"},{name:"oci",hex:"F12E9",version:"4.8.95"},{name:"ocr",hex:"F113A",version:"4.4.95"},{name:"octagon",hex:"F03C3",version:"1.5.54"},{name:"octagon-outline",hex:"F03C4",version:"1.5.54"},{name:"octagram",hex:"F06F9",version:"1.8.36"},{name:"octagram-outline",hex:"F0775",version:"1.9.32"},{name:"octahedron",hex:"F1950",version:"6.4.95"},{name:"octahedron-off",hex:"F1951",version:"6.4.95"},{name:"odnoklassniki",hex:"F03C5",version:"1.5.54"},{name:"offer",hex:"F121B",version:"4.6.95"},{name:"office-building",hex:"F0991",version:"2.4.85"},{name:"office-building-cog",hex:"F1949",version:"6.4.95"},{name:"office-building-cog-outline",hex:"F194A",version:"6.4.95"},{name:"office-building-marker",hex:"F1520",version:"5.4.55"},{name:"office-building-marker-outline",hex:"F1521",version:"5.4.55"},{name:"office-building-outline",hex:"F151F",version:"5.4.55"},{name:"oil",hex:"F03C7",version:"1.5.54"},{name:"oil-lamp",hex:"F0F19",version:"3.8.95"},{name:"oil-level",hex:"F1053",version:"4.1.95"},{name:"oil-temperature",hex:"F0FF8",version:"4.0.96"},{name:"om",hex:"F0973",version:"2.4.85"},{name:"omega",hex:"F03C9",version:"1.5.54"},{name:"one-up",hex:"F0BAD",version:"3.0.39"},{name:"onepassword",hex:"F0881",version:"2.1.99"},{name:"opacity",hex:"F05CC",version:"1.5.54"},{name:"open-in-app",hex:"F03CB",version:"1.5.54"},{name:"open-in-new",hex:"F03CC",version:"1.5.54"},{name:"open-source-initiative",hex:"F0BAE",version:"3.0.39"},{name:"openid",hex:"F03CD",version:"1.5.54"},{name:"opera",hex:"F03CE",version:"1.5.54"},{name:"orbit",hex:"F0018",version:"1.5.54"},{name:"orbit-variant",hex:"F15DB",version:"5.6.55"},{name:"order-alphabetical-ascending",hex:"F020D",version:"1.5.54"},{name:"order-alphabetical-descending",hex:"F0D07",version:"3.3.92"},{name:"order-bool-ascending",hex:"F02BE",version:"1.5.54"},{name:"order-bool-ascending-variant",hex:"F098F",version:"2.4.85"},{name:"order-bool-descending",hex:"F1384",version:"5.0.45"},{name:"order-bool-descending-variant",hex:"F0990",version:"2.4.85"},{name:"order-numeric-ascending",hex:"F0545",version:"1.5.54"},{name:"order-numeric-descending",hex:"F0546",version:"1.5.54"},{name:"origin",hex:"F0B43",version:"2.8.94"},{name:"ornament",hex:"F03CF",version:"1.5.54"},{name:"ornament-variant",hex:"F03D0",version:"1.5.54"},{name:"outdoor-lamp",hex:"F1054",version:"4.1.95"},{name:"overscan",hex:"F1005",version:"4.0.96"},{name:"owl",hex:"F03D2",version:"1.5.54"},{name:"pac-man",hex:"F0BAF",version:"3.0.39"},{name:"package",hex:"F03D3",version:"1.5.54"},{name:"package-down",hex:"F03D4",version:"1.5.54"},{name:"package-up",hex:"F03D5",version:"1.5.54"},{name:"package-variant",hex:"F03D6",version:"1.5.54"},{name:"package-variant-closed",hex:"F03D7",version:"1.5.54"},{name:"page-first",hex:"F0600",version:"1.5.54"},{name:"page-last",hex:"F0601",version:"1.5.54"},{name:"page-layout-body",hex:"F06FA",version:"1.8.36"},{name:"page-layout-footer",hex:"F06FB",version:"1.8.36"},{name:"page-layout-header",hex:"F06FC",version:"1.8.36"},{name:"page-layout-header-footer",hex:"F0F7F",version:"3.9.97"},{name:"page-layout-sidebar-left",hex:"F06FD",version:"1.8.36"},{name:"page-layout-sidebar-right",hex:"F06FE",version:"1.8.36"},{name:"page-next",hex:"F0BB0",version:"3.0.39"},{name:"page-next-outline",hex:"F0BB1",version:"3.0.39"},{name:"page-previous",hex:"F0BB2",version:"3.0.39"},{name:"page-previous-outline",hex:"F0BB3",version:"3.0.39"},{name:"pail",hex:"F1417",version:"5.1.45"},{name:"pail-minus",hex:"F1437",version:"5.2.45"},{name:"pail-minus-outline",hex:"F143C",version:"5.2.45"},{name:"pail-off",hex:"F1439",version:"5.2.45"},{name:"pail-off-outline",hex:"F143E",version:"5.2.45"},{name:"pail-outline",hex:"F143A",version:"5.2.45"},{name:"pail-plus",hex:"F1436",version:"5.2.45"},{name:"pail-plus-outline",hex:"F143B",version:"5.2.45"},{name:"pail-remove",hex:"F1438",version:"5.2.45"},{name:"pail-remove-outline",hex:"F143D",version:"5.2.45"},{name:"palette",hex:"F03D8",version:"1.5.54"},{name:"palette-advanced",hex:"F03D9",version:"1.5.54"},{name:"palette-outline",hex:"F0E0C",version:"3.5.95"},{name:"palette-swatch",hex:"F08B5",version:"2.2.43"},{name:"palette-swatch-outline",hex:"F135C",version:"4.9.95"},{name:"palette-swatch-variant",hex:"F195A",version:"6.4.95"},{name:"palm-tree",hex:"F1055",version:"4.1.95"},{name:"pan",hex:"F0BB4",version:"3.0.39"},{name:"pan-bottom-left",hex:"F0BB5",version:"3.0.39"},{name:"pan-bottom-right",hex:"F0BB6",version:"3.0.39"},{name:"pan-down",hex:"F0BB7",version:"3.0.39"},{name:"pan-horizontal",hex:"F0BB8",version:"3.0.39"},{name:"pan-left",hex:"F0BB9",version:"3.0.39"},{name:"pan-right",hex:"F0BBA",version:"3.0.39"},{name:"pan-top-left",hex:"F0BBB",version:"3.0.39"},{name:"pan-top-right",hex:"F0BBC",version:"3.0.39"},{name:"pan-up",hex:"F0BBD",version:"3.0.39"},{name:"pan-vertical",hex:"F0BBE",version:"3.0.39"},{name:"panda",hex:"F03DA",version:"1.5.54"},{name:"pandora",hex:"F03DB",version:"1.5.54"},{name:"panorama",hex:"F03DC",version:"1.5.54"},{name:"panorama-fisheye",hex:"F03DD",version:"1.5.54"},{name:"panorama-horizontal",hex:"F1928",version:"6.4.95"},{name:"panorama-horizontal-outline",hex:"F03DE",version:"1.5.54"},{name:"panorama-outline",hex:"F198C",version:"6.5.95"},{name:"panorama-sphere",hex:"F198D",version:"6.5.95"},{name:"panorama-sphere-outline",hex:"F198E",version:"6.5.95"},{name:"panorama-variant",hex:"F198F",version:"6.5.95"},{name:"panorama-variant-outline",hex:"F1990",version:"6.5.95"},{name:"panorama-vertical",hex:"F1929",version:"6.4.95"},{name:"panorama-vertical-outline",hex:"F03DF",version:"1.5.54"},{name:"panorama-wide-angle",hex:"F195F",version:"6.4.95"},{name:"panorama-wide-angle-outline",hex:"F03E0",version:"1.5.54"},{name:"paper-cut-vertical",hex:"F03E1",version:"1.5.54"},{name:"paper-roll",hex:"F1157",version:"4.4.95"},{name:"paper-roll-outline",hex:"F1158",version:"4.4.95"},{name:"paperclip",hex:"F03E2",version:"1.5.54"},{name:"parachute",hex:"F0CB4",version:"3.2.89"},{name:"parachute-outline",hex:"F0CB5",version:"3.2.89"},{name:"paragliding",hex:"F1745",version:"6.1.95"},{name:"parking",hex:"F03E3",version:"1.5.54"},{name:"party-popper",hex:"F1056",version:"4.1.95"},{name:"passport",hex:"F07E3",version:"2.0.46"},{name:"passport-biometric",hex:"F0DE1",version:"3.5.94"},{name:"pasta",hex:"F1160",version:"4.4.95"},{name:"patio-heater",hex:"F0F80",version:"3.9.97"},{name:"patreon",hex:"F0882",version:"2.1.99"},{name:"pause",hex:"F03E4",version:"1.5.54"},{name:"pause-circle",hex:"F03E5",version:"1.5.54"},{name:"pause-circle-outline",hex:"F03E6",version:"1.5.54"},{name:"pause-octagon",hex:"F03E7",version:"1.5.54"},{name:"pause-octagon-outline",hex:"F03E8",version:"1.5.54"},{name:"paw",hex:"F03E9",version:"1.5.54"},{name:"paw-off",hex:"F0657",version:"1.6.50"},{name:"paw-off-outline",hex:"F1676",version:"5.7.55"},{name:"paw-outline",hex:"F1675",version:"5.7.55"},{name:"peace",hex:"F0884",version:"2.1.99"},{name:"peanut",hex:"F0FFC",version:"4.0.96"},{name:"peanut-off",hex:"F0FFD",version:"4.0.96"},{name:"peanut-off-outline",hex:"F0FFF",version:"4.0.96"},{name:"peanut-outline",hex:"F0FFE",version:"4.0.96"},{name:"pen",hex:"F03EA",version:"1.5.54"},{name:"pen-lock",hex:"F0DE2",version:"3.5.94"},{name:"pen-minus",hex:"F0DE3",version:"3.5.94"},{name:"pen-off",hex:"F0DE4",version:"3.5.94"},{name:"pen-plus",hex:"F0DE5",version:"3.5.94"},{name:"pen-remove",hex:"F0DE6",version:"3.5.94"},{name:"pencil",hex:"F03EB",version:"1.5.54"},{name:"pencil-box",hex:"F03EC",version:"1.5.54"},{name:"pencil-box-multiple",hex:"F1144",version:"4.4.95"},{name:"pencil-box-multiple-outline",hex:"F1145",version:"4.4.95"},{name:"pencil-box-outline",hex:"F03ED",version:"1.5.54"},{name:"pencil-circle",hex:"F06FF",version:"1.8.36"},{name:"pencil-circle-outline",hex:"F0776",version:"1.9.32"},{name:"pencil-lock",hex:"F03EE",version:"1.5.54"},{name:"pencil-lock-outline",hex:"F0DE7",version:"3.5.94"},{name:"pencil-minus",hex:"F0DE8",version:"3.5.94"},{name:"pencil-minus-outline",hex:"F0DE9",version:"3.5.94"},{name:"pencil-off",hex:"F03EF",version:"1.5.54"},{name:"pencil-off-outline",hex:"F0DEA",version:"3.5.94"},{name:"pencil-outline",hex:"F0CB6",version:"3.2.89"},{name:"pencil-plus",hex:"F0DEB",version:"3.5.94"},{name:"pencil-plus-outline",hex:"F0DEC",version:"3.5.94"},{name:"pencil-remove",hex:"F0DED",version:"3.5.94"},{name:"pencil-remove-outline",hex:"F0DEE",version:"3.5.94"},{name:"pencil-ruler",hex:"F1353",version:"4.9.95"},{name:"penguin",hex:"F0EC0",version:"3.7.94"},{name:"pentagon",hex:"F0701",version:"1.8.36"},{name:"pentagon-outline",hex:"F0700",version:"1.8.36"},{name:"pentagram",hex:"F1667",version:"5.7.55"},{name:"percent",hex:"F03F0",version:"1.5.54"},{name:"percent-outline",hex:"F1278",version:"4.7.95"},{name:"periodic-table",hex:"F08B6",version:"2.2.43"},{name:"perspective-less",hex:"F0D23",version:"3.3.92"},{name:"perspective-more",hex:"F0D24",version:"3.3.92"},{name:"ph",hex:"F17C5",version:"6.1.95"},{name:"phone",hex:"F03F2",version:"1.5.54"},{name:"phone-alert",hex:"F0F1A",version:"3.8.95"},{name:"phone-alert-outline",hex:"F118E",version:"4.5.95"},{name:"phone-bluetooth",hex:"F03F3",version:"1.5.54"},{name:"phone-bluetooth-outline",hex:"F118F",version:"4.5.95"},{name:"phone-cancel",hex:"F10BC",version:"4.2.95"},{name:"phone-cancel-outline",hex:"F1190",version:"4.5.95"},{name:"phone-check",hex:"F11A9",version:"4.5.95"},{name:"phone-check-outline",hex:"F11AA",version:"4.5.95"},{name:"phone-classic",hex:"F0602",version:"1.5.54"},{name:"phone-classic-off",hex:"F1279",version:"4.7.95"},{name:"phone-dial",hex:"F1559",version:"5.5.55"},{name:"phone-dial-outline",hex:"F155A",version:"5.5.55"},{name:"phone-forward",hex:"F03F4",version:"1.5.54"},{name:"phone-forward-outline",hex:"F1191",version:"4.5.95"},{name:"phone-hangup",hex:"F03F5",version:"1.5.54"},{name:"phone-hangup-outline",hex:"F1192",version:"4.5.95"},{name:"phone-in-talk",hex:"F03F6",version:"1.5.54"},{name:"phone-in-talk-outline",hex:"F1182",version:"4.4.95"},{name:"phone-incoming",hex:"F03F7",version:"1.5.54"},{name:"phone-incoming-outline",hex:"F1193",version:"4.5.95"},{name:"phone-lock",hex:"F03F8",version:"1.5.54"},{name:"phone-lock-outline",hex:"F1194",version:"4.5.95"},{name:"phone-log",hex:"F03F9",version:"1.5.54"},{name:"phone-log-outline",hex:"F1195",version:"4.5.95"},{name:"phone-message",hex:"F1196",version:"4.5.95"},{name:"phone-message-outline",hex:"F1197",version:"4.5.95"},{name:"phone-minus",hex:"F0658",version:"1.6.50"},{name:"phone-minus-outline",hex:"F1198",version:"4.5.95"},{name:"phone-missed",hex:"F03FA",version:"1.5.54"},{name:"phone-missed-outline",hex:"F11A5",version:"4.5.95"},{name:"phone-off",hex:"F0DEF",version:"3.5.94"},{name:"phone-off-outline",hex:"F11A6",version:"4.5.95"},{name:"phone-outgoing",hex:"F03FB",version:"1.5.54"},{name:"phone-outgoing-outline",hex:"F1199",version:"4.5.95"},{name:"phone-outline",hex:"F0DF0",version:"3.5.94"},{name:"phone-paused",hex:"F03FC",version:"1.5.54"},{name:"phone-paused-outline",hex:"F119A",version:"4.5.95"},{name:"phone-plus",hex:"F0659",version:"1.6.50"},{name:"phone-plus-outline",hex:"F119B",version:"4.5.95"},{name:"phone-refresh",hex:"F1993",version:"6.5.95"},{name:"phone-refresh-outline",hex:"F1994",version:"6.5.95"},{name:"phone-remove",hex:"F152F",version:"5.4.55"},{name:"phone-remove-outline",hex:"F1530",version:"5.4.55"},{name:"phone-return",hex:"F082F",version:"2.1.19"},{name:"phone-return-outline",hex:"F119C",version:"4.5.95"},{name:"phone-ring",hex:"F11AB",version:"4.5.95"},{name:"phone-ring-outline",hex:"F11AC",version:"4.5.95"},{name:"phone-rotate-landscape",hex:"F0885",version:"2.1.99"},{name:"phone-rotate-portrait",hex:"F0886",version:"2.1.99"},{name:"phone-settings",hex:"F03FD",version:"1.5.54"},{name:"phone-settings-outline",hex:"F119D",version:"4.5.95"},{name:"phone-sync",hex:"F1995",version:"6.5.95"},{name:"phone-sync-outline",hex:"F1996",version:"6.5.95"},{name:"phone-voip",hex:"F03FE",version:"1.5.54"},{name:"pi",hex:"F03FF",version:"1.5.54"},{name:"pi-box",hex:"F0400",version:"1.5.54"},{name:"pi-hole",hex:"F0DF1",version:"3.5.94"},{name:"piano",hex:"F067D",version:"1.7.12"},{name:"piano-off",hex:"F0698",version:"1.7.12"},{name:"pickaxe",hex:"F08B7",version:"2.2.43"},{name:"picture-in-picture-bottom-right",hex:"F0E57",version:"3.6.95"},{name:"picture-in-picture-bottom-right-outline",hex:"F0E58",version:"3.6.95"},{name:"picture-in-picture-top-right",hex:"F0E59",version:"3.6.95"},{name:"picture-in-picture-top-right-outline",hex:"F0E5A",version:"3.6.95"},{name:"pier",hex:"F0887",version:"2.1.99"},{name:"pier-crane",hex:"F0888",version:"2.1.99"},{name:"pig",hex:"F0401",version:"1.5.54"},{name:"pig-variant",hex:"F1006",version:"4.0.96"},{name:"pig-variant-outline",hex:"F1678",version:"5.7.55"},{name:"piggy-bank",hex:"F1007",version:"4.0.96"},{name:"piggy-bank-outline",hex:"F1679",version:"5.7.55"},{name:"pill",hex:"F0402",version:"1.5.54"},{name:"pillar",hex:"F0702",version:"1.8.36"},{name:"pin",hex:"F0403",version:"1.5.54"},{name:"pin-off",hex:"F0404",version:"1.5.54"},{name:"pin-off-outline",hex:"F0930",version:"2.3.54"},{name:"pin-outline",hex:"F0931",version:"2.3.54"},{name:"pine-tree",hex:"F0405",version:"1.5.54"},{name:"pine-tree-box",hex:"F0406",version:"1.5.54"},{name:"pine-tree-fire",hex:"F141A",version:"5.2.45"},{name:"pinterest",hex:"F0407",version:"1.5.54"},{name:"pinwheel",hex:"F0AD5",version:"2.7.94"},{name:"pinwheel-outline",hex:"F0AD6",version:"2.7.94"},{name:"pipe",hex:"F07E5",version:"2.0.46"},{name:"pipe-disconnected",hex:"F07E6",version:"2.0.46"},{name:"pipe-leak",hex:"F0889",version:"2.1.99"},{name:"pipe-valve",hex:"F184D",version:"6.2.95"},{name:"pipe-wrench",hex:"F1354",version:"4.9.95"},{name:"pirate",hex:"F0A08",version:"2.5.94"},{name:"pistol",hex:"F0703",version:"1.8.36"},{name:"piston",hex:"F088A",version:"2.1.99"},{name:"pitchfork",hex:"F1553",version:"5.5.55"},{name:"pizza",hex:"F0409",version:"1.5.54"},{name:"play",hex:"F040A",version:"1.5.54"},{name:"play-box",hex:"F127A",version:"4.7.95"},{name:"play-box-multiple",hex:"F0D19",version:"3.3.92"},{name:"play-box-multiple-outline",hex:"F13E6",version:"5.1.45"},{name:"play-box-outline",hex:"F040B",version:"1.5.54"},{name:"play-circle",hex:"F040C",version:"1.5.54"},{name:"play-circle-outline",hex:"F040D",version:"1.5.54"},{name:"play-network",hex:"F088B",version:"2.1.99"},{name:"play-network-outline",hex:"F0CB7",version:"3.2.89"},{name:"play-outline",hex:"F0F1B",version:"3.8.95"},{name:"play-pause",hex:"F040E",version:"1.5.54"},{name:"play-protected-content",hex:"F040F",version:"1.5.54"},{name:"play-speed",hex:"F08FF",version:"2.3.50"},{name:"playlist-check",hex:"F05C7",version:"1.5.54"},{name:"playlist-edit",hex:"F0900",version:"2.3.50"},{name:"playlist-minus",hex:"F0410",version:"1.5.54"},{name:"playlist-music",hex:"F0CB8",version:"3.2.89"},{name:"playlist-music-outline",hex:"F0CB9",version:"3.2.89"},{name:"playlist-play",hex:"F0411",version:"1.5.54"},{name:"playlist-plus",hex:"F0412",version:"1.5.54"},{name:"playlist-remove",hex:"F0413",version:"1.5.54"},{name:"playlist-star",hex:"F0DF2",version:"3.5.94"},{name:"plex",hex:"F06BA",version:"1.7.22"},{name:"pliers",hex:"F19A4",version:"6.5.95"},{name:"plus",hex:"F0415",version:"1.5.54"},{name:"plus-box",hex:"F0416",version:"1.5.54"},{name:"plus-box-multiple",hex:"F0334",version:"1.5.54"},{name:"plus-box-multiple-outline",hex:"F1143",version:"4.4.95"},{name:"plus-box-outline",hex:"F0704",version:"1.8.36"},{name:"plus-circle",hex:"F0417",version:"1.5.54"},{name:"plus-circle-multiple",hex:"F034C",version:"1.5.54"},{name:"plus-circle-multiple-outline",hex:"F0418",version:"1.5.54"},{name:"plus-circle-outline",hex:"F0419",version:"1.5.54"},{name:"plus-minus",hex:"F0992",version:"2.4.85"},{name:"plus-minus-box",hex:"F0993",version:"2.4.85"},{name:"plus-minus-variant",hex:"F14C9",version:"5.3.45"},{name:"plus-network",hex:"F041A",version:"1.5.54"},{name:"plus-network-outline",hex:"F0CBA",version:"3.2.89"},{name:"plus-outline",hex:"F0705",version:"1.8.36"},{name:"plus-thick",hex:"F11EC",version:"4.5.95"},{name:"podcast",hex:"F0994",version:"2.4.85"},{name:"podium",hex:"F0D25",version:"3.3.92"},{name:"podium-bronze",hex:"F0D26",version:"3.3.92"},{name:"podium-gold",hex:"F0D27",version:"3.3.92"},{name:"podium-silver",hex:"F0D28",version:"3.3.92"},{name:"point-of-sale",hex:"F0D92",version:"3.4.93"},{name:"pokeball",hex:"F041D",version:"1.5.54"},{name:"pokemon-go",hex:"F0A09",version:"2.5.94"},{name:"poker-chip",hex:"F0830",version:"2.1.19"},{name:"polaroid",hex:"F041E",version:"1.5.54"},{name:"police-badge",hex:"F1167",version:"4.4.95"},{name:"police-badge-outline",hex:"F1168",version:"4.4.95"},{name:"police-station",hex:"F1839",version:"6.2.95"},{name:"poll",hex:"F041F",version:"1.5.54"},{name:"polo",hex:"F14C3",version:"5.3.45"},{name:"polymer",hex:"F0421",version:"1.5.54"},{name:"pool",hex:"F0606",version:"1.5.54"},{name:"popcorn",hex:"F0422",version:"1.5.54"},{name:"post",hex:"F1008",version:"4.0.96"},{name:"post-outline",hex:"F1009",version:"4.0.96"},{name:"postage-stamp",hex:"F0CBB",version:"3.2.89"},{name:"pot",hex:"F02E5",version:"1.5.54"},{name:"pot-mix",hex:"F065B",version:"1.6.50"},{name:"pot-mix-outline",hex:"F0677",version:"1.7.12"},{name:"pot-outline",hex:"F02FF",version:"1.5.54"},{name:"pot-steam",hex:"F065A",version:"1.6.50"},{name:"pot-steam-outline",hex:"F0326",version:"1.5.54"},{name:"pound",hex:"F0423",version:"1.5.54"},{name:"pound-box",hex:"F0424",version:"1.5.54"},{name:"pound-box-outline",hex:"F117F",version:"4.4.95"},{name:"power",hex:"F0425",version:"1.5.54"},{name:"power-cycle",hex:"F0901",version:"2.3.50"},{name:"power-off",hex:"F0902",version:"2.3.50"},{name:"power-on",hex:"F0903",version:"2.3.50"},{name:"power-plug",hex:"F06A5",version:"1.7.12"},{name:"power-plug-off",hex:"F06A6",version:"1.7.12"},{name:"power-plug-off-outline",hex:"F1424",version:"5.2.45"},{name:"power-plug-outline",hex:"F1425",version:"5.2.45"},{name:"power-settings",hex:"F0426",version:"1.5.54"},{name:"power-sleep",hex:"F0904",version:"2.3.50"},{name:"power-socket",hex:"F0427",version:"1.5.54"},{name:"power-socket-au",hex:"F0905",version:"2.3.50"},{name:"power-socket-ch",hex:"F0FB3",version:"4.0.96"},{name:"power-socket-de",hex:"F1107",version:"4.3.95"},{name:"power-socket-eu",hex:"F07E7",version:"2.0.46"},{name:"power-socket-fr",hex:"F1108",version:"4.3.95"},{name:"power-socket-it",hex:"F14FF",version:"5.4.55"},{name:"power-socket-jp",hex:"F1109",version:"4.3.95"},{name:"power-socket-uk",hex:"F07E8",version:"2.0.46"},{name:"power-socket-us",hex:"F07E9",version:"2.0.46"},{name:"power-standby",hex:"F0906",version:"2.3.50"},{name:"powershell",hex:"F0A0A",version:"2.5.94"},{name:"prescription",hex:"F0706",version:"1.8.36"},{name:"presentation",hex:"F0428",version:"1.5.54"},{name:"presentation-play",hex:"F0429",version:"1.5.54"},{name:"pretzel",hex:"F1562",version:"5.5.55"},{name:"printer",hex:"F042A",version:"1.5.54"},{name:"printer-3d",hex:"F042B",version:"1.5.54"},{name:"printer-3d-nozzle",hex:"F0E5B",version:"3.6.95"},{name:"printer-3d-nozzle-alert",hex:"F11C0",version:"4.5.95"},{name:"printer-3d-nozzle-alert-outline",hex:"F11C1",version:"4.5.95"},{name:"printer-3d-nozzle-heat",hex:"F18B8",version:"6.3.95"},{name:"printer-3d-nozzle-heat-outline",hex:"F18B9",version:"6.3.95"},{name:"printer-3d-nozzle-outline",hex:"F0E5C",version:"3.6.95"},{name:"printer-alert",hex:"F042C",version:"1.5.54"},{name:"printer-check",hex:"F1146",version:"4.4.95"},{name:"printer-eye",hex:"F1458",version:"5.2.45"},{name:"printer-off",hex:"F0E5D",version:"3.6.95"},{name:"printer-off-outline",hex:"F1785",version:"6.1.95"},{name:"printer-outline",hex:"F1786",version:"6.1.95"},{name:"printer-pos",hex:"F1057",version:"4.1.95"},{name:"printer-search",hex:"F1457",version:"5.2.45"},{name:"printer-settings",hex:"F0707",version:"1.8.36"},{name:"printer-wireless",hex:"F0A0B",version:"2.5.94"},{name:"priority-high",hex:"F0603",version:"1.5.54"},{name:"priority-low",hex:"F0604",version:"1.5.54"},{name:"professional-hexagon",hex:"F042D",version:"1.5.54"},{name:"progress-alert",hex:"F0CBC",version:"3.2.89"},{name:"progress-check",hex:"F0995",version:"2.4.85"},{name:"progress-clock",hex:"F0996",version:"2.4.85"},{name:"progress-close",hex:"F110A",version:"4.3.95"},{name:"progress-download",hex:"F0997",version:"2.4.85"},{name:"progress-pencil",hex:"F1787",version:"6.1.95"},{name:"progress-question",hex:"F1522",version:"5.4.55"},{name:"progress-star",hex:"F1788",version:"6.1.95"},{name:"progress-upload",hex:"F0998",version:"2.4.85"},{name:"progress-wrench",hex:"F0CBD",version:"3.2.89"},{name:"projector",hex:"F042E",version:"1.5.54"},{name:"projector-screen",hex:"F042F",version:"1.5.54"},{name:"projector-screen-off",hex:"F180D",version:"6.1.95"},{name:"projector-screen-off-outline",hex:"F180E",version:"6.1.95"},{name:"projector-screen-outline",hex:"F1724",version:"5.9.55"},{name:"projector-screen-variant",hex:"F180F",version:"6.1.95"},{name:"projector-screen-variant-off",hex:"F1810",version:"6.1.95"},{name:"projector-screen-variant-off-outline",hex:"F1811",version:"6.1.95"},{name:"projector-screen-variant-outline",hex:"F1812",version:"6.1.95"},{name:"propane-tank",hex:"F1357",version:"4.9.95"},{name:"propane-tank-outline",hex:"F1358",version:"4.9.95"},{name:"protocol",hex:"F0FD8",version:"4.0.96"},{name:"publish",hex:"F06A7",version:"1.7.12"},{name:"publish-off",hex:"F1945",version:"6.4.95"},{name:"pulse",hex:"F0430",version:"1.5.54"},{name:"pump",hex:"F1402",version:"5.1.45"},{name:"pumpkin",hex:"F0BBF",version:"3.0.39"},{name:"purse",hex:"F0F1C",version:"3.8.95"},{name:"purse-outline",hex:"F0F1D",version:"3.8.95"},{name:"puzzle",hex:"F0431",version:"1.5.54"},{name:"puzzle-check",hex:"F1426",version:"5.2.45"},{name:"puzzle-check-outline",hex:"F1427",version:"5.2.45"},{name:"puzzle-edit",hex:"F14D3",version:"5.3.45"},{name:"puzzle-edit-outline",hex:"F14D9",version:"5.3.45"},{name:"puzzle-heart",hex:"F14D4",version:"5.3.45"},{name:"puzzle-heart-outline",hex:"F14DA",version:"5.3.45"},{name:"puzzle-minus",hex:"F14D1",version:"5.3.45"},{name:"puzzle-minus-outline",hex:"F14D7",version:"5.3.45"},{name:"puzzle-outline",hex:"F0A66",version:"2.6.95"},{name:"puzzle-plus",hex:"F14D0",version:"5.3.45"},{name:"puzzle-plus-outline",hex:"F14D6",version:"5.3.45"},{name:"puzzle-remove",hex:"F14D2",version:"5.3.45"},{name:"puzzle-remove-outline",hex:"F14D8",version:"5.3.45"},{name:"puzzle-star",hex:"F14D5",version:"5.3.45"},{name:"puzzle-star-outline",hex:"F14DB",version:"5.3.45"},{name:"pyramid",hex:"F1952",version:"6.4.95"},{name:"pyramid-off",hex:"F1953",version:"6.4.95"},{name:"qi",hex:"F0999",version:"2.4.85"},{name:"qqchat",hex:"F0605",version:"1.5.54"},{name:"qrcode",hex:"F0432",version:"1.5.54"},{name:"qrcode-edit",hex:"F08B8",version:"2.2.43"},{name:"qrcode-minus",hex:"F118C",version:"4.4.95"},{name:"qrcode-plus",hex:"F118B",version:"4.4.95"},{name:"qrcode-remove",hex:"F118D",version:"4.4.95"},{name:"qrcode-scan",hex:"F0433",version:"1.5.54"},{name:"quadcopter",hex:"F0434",version:"1.5.54"},{name:"quality-high",hex:"F0435",version:"1.5.54"},{name:"quality-low",hex:"F0A0C",version:"2.5.94"},{name:"quality-medium",hex:"F0A0D",version:"2.5.94"},{name:"quora",hex:"F0D29",version:"3.3.92"},{name:"rabbit",hex:"F0907",version:"2.3.50"},{name:"racing-helmet",hex:"F0D93",version:"3.4.93"},{name:"racquetball",hex:"F0D94",version:"3.4.93"},{name:"radar",hex:"F0437",version:"1.5.54"},{name:"radiator",hex:"F0438",version:"1.5.54"},{name:"radiator-disabled",hex:"F0AD7",version:"2.7.94"},{name:"radiator-off",hex:"F0AD8",version:"2.7.94"},{name:"radio",hex:"F0439",version:"1.5.54"},{name:"radio-am",hex:"F0CBE",version:"3.2.89"},{name:"radio-fm",hex:"F0CBF",version:"3.2.89"},{name:"radio-handheld",hex:"F043A",version:"1.5.54"},{name:"radio-off",hex:"F121C",version:"4.6.95"},{name:"radio-tower",hex:"F043B",version:"1.5.54"},{name:"radioactive",hex:"F043C",version:"1.5.54"},{name:"radioactive-circle",hex:"F185D",version:"6.2.95"},{name:"radioactive-circle-outline",hex:"F185E",version:"6.2.95"},{name:"radioactive-off",hex:"F0EC1",version:"3.7.94"},{name:"radiobox-blank",hex:"F043D",version:"1.5.54"},{name:"radiobox-marked",hex:"F043E",version:"1.5.54"},{name:"radiology-box",hex:"F14C5",version:"5.3.45"},{name:"radiology-box-outline",hex:"F14C6",version:"5.3.45"},{name:"radius",hex:"F0CC0",version:"3.2.89"},{name:"radius-outline",hex:"F0CC1",version:"3.2.89"},{name:"railroad-light",hex:"F0F1E",version:"3.8.95"},{name:"rake",hex:"F1544",version:"5.4.55"},{name:"raspberry-pi",hex:"F043F",version:"1.5.54"},{name:"ray-end",hex:"F0440",version:"1.5.54"},{name:"ray-end-arrow",hex:"F0441",version:"1.5.54"},{name:"ray-start",hex:"F0442",version:"1.5.54"},{name:"ray-start-arrow",hex:"F0443",version:"1.5.54"},{name:"ray-start-end",hex:"F0444",version:"1.5.54"},{name:"ray-start-vertex-end",hex:"F15D8",version:"5.6.55"},{name:"ray-vertex",hex:"F0445",version:"1.5.54"},{name:"razor-double-edge",hex:"F1997",version:"6.5.95"},{name:"razor-single-edge",hex:"F1998",version:"6.5.95"},{name:"react",hex:"F0708",version:"1.8.36"},{name:"read",hex:"F0447",version:"1.5.54"},{name:"receipt",hex:"F0449",version:"1.5.54"},{name:"record",hex:"F044A",version:"1.5.54"},{name:"record-circle",hex:"F0EC2",version:"3.7.94"},{name:"record-circle-outline",hex:"F0EC3",version:"3.7.94"},{name:"record-player",hex:"F099A",version:"2.4.85"},{name:"record-rec",hex:"F044B",version:"1.5.54"},{name:"rectangle",hex:"F0E5E",version:"3.6.95"},{name:"rectangle-outline",hex:"F0E5F",version:"3.6.95"},{name:"recycle",hex:"F044C",version:"1.5.54"},{name:"recycle-variant",hex:"F139D",version:"5.0.45"},{name:"reddit",hex:"F044D",version:"1.5.54"},{name:"redhat",hex:"F111B",version:"4.3.95"},{name:"redo",hex:"F044E",version:"1.5.54"},{name:"redo-variant",hex:"F044F",version:"1.5.54"},{name:"reflect-horizontal",hex:"F0A0E",version:"2.5.94"},{name:"reflect-vertical",hex:"F0A0F",version:"2.5.94"},{name:"refresh",hex:"F0450",version:"1.5.54"},{name:"refresh-auto",hex:"F18F2",version:"6.3.95"},{name:"refresh-circle",hex:"F1377",version:"4.9.95"},{name:"regex",hex:"F0451",version:"1.5.54"},{name:"registered-trademark",hex:"F0A67",version:"2.6.95"},{name:"reiterate",hex:"F1588",version:"5.5.55"},{name:"relation-many-to-many",hex:"F1496",version:"5.3.45"},{name:"relation-many-to-one",hex:"F1497",version:"5.3.45"},{name:"relation-many-to-one-or-many",hex:"F1498",version:"5.3.45"},{name:"relation-many-to-only-one",hex:"F1499",version:"5.3.45"},{name:"relation-many-to-zero-or-many",hex:"F149A",version:"5.3.45"},{name:"relation-many-to-zero-or-one",hex:"F149B",version:"5.3.45"},{name:"relation-one-or-many-to-many",hex:"F149C",version:"5.3.45"},{name:"relation-one-or-many-to-one",hex:"F149D",version:"5.3.45"},{name:"relation-one-or-many-to-one-or-many",hex:"F149E",version:"5.3.45"},{name:"relation-one-or-many-to-only-one",hex:"F149F",version:"5.3.45"},{name:"relation-one-or-many-to-zero-or-many",hex:"F14A0",version:"5.3.45"},{name:"relation-one-or-many-to-zero-or-one",hex:"F14A1",version:"5.3.45"},{name:"relation-one-to-many",hex:"F14A2",version:"5.3.45"},{name:"relation-one-to-one",hex:"F14A3",version:"5.3.45"},{name:"relation-one-to-one-or-many",hex:"F14A4",version:"5.3.45"},{name:"relation-one-to-only-one",hex:"F14A5",version:"5.3.45"},{name:"relation-one-to-zero-or-many",hex:"F14A6",version:"5.3.45"},{name:"relation-one-to-zero-or-one",hex:"F14A7",version:"5.3.45"},{name:"relation-only-one-to-many",hex:"F14A8",version:"5.3.45"},{name:"relation-only-one-to-one",hex:"F14A9",version:"5.3.45"},{name:"relation-only-one-to-one-or-many",hex:"F14AA",version:"5.3.45"},{name:"relation-only-one-to-only-one",hex:"F14AB",version:"5.3.45"},{name:"relation-only-one-to-zero-or-many",hex:"F14AC",version:"5.3.45"},{name:"relation-only-one-to-zero-or-one",hex:"F14AD",version:"5.3.45"},{name:"relation-zero-or-many-to-many",hex:"F14AE",version:"5.3.45"},{name:"relation-zero-or-many-to-one",hex:"F14AF",version:"5.3.45"},{name:"relation-zero-or-many-to-one-or-many",hex:"F14B0",version:"5.3.45"},{name:"relation-zero-or-many-to-only-one",hex:"F14B1",version:"5.3.45"},{name:"relation-zero-or-many-to-zero-or-many",hex:"F14B2",version:"5.3.45"},{name:"relation-zero-or-many-to-zero-or-one",hex:"F14B3",version:"5.3.45"},{name:"relation-zero-or-one-to-many",hex:"F14B4",version:"5.3.45"},{name:"relation-zero-or-one-to-one",hex:"F14B5",version:"5.3.45"},{name:"relation-zero-or-one-to-one-or-many",hex:"F14B6",version:"5.3.45"},{name:"relation-zero-or-one-to-only-one",hex:"F14B7",version:"5.3.45"},{name:"relation-zero-or-one-to-zero-or-many",hex:"F14B8",version:"5.3.45"},{name:"relation-zero-or-one-to-zero-or-one",hex:"F14B9",version:"5.3.45"},{name:"relative-scale",hex:"F0452",version:"1.5.54"},{name:"reload",hex:"F0453",version:"1.5.54"},{name:"reload-alert",hex:"F110B",version:"4.3.95"},{name:"reminder",hex:"F088C",version:"2.1.99"},{name:"remote",hex:"F0454",version:"1.5.54"},{name:"remote-desktop",hex:"F08B9",version:"2.2.43"},{name:"remote-off",hex:"F0EC4",version:"3.7.94"},{name:"remote-tv",hex:"F0EC5",version:"3.7.94"},{name:"remote-tv-off",hex:"F0EC6",version:"3.7.94"},{name:"rename-box",hex:"F0455",version:"1.5.54"},{name:"reorder-horizontal",hex:"F0688",version:"1.7.12"},{name:"reorder-vertical",hex:"F0689",version:"1.7.12"},{name:"repeat",hex:"F0456",version:"1.5.54"},{name:"repeat-off",hex:"F0457",version:"1.5.54"},{name:"repeat-once",hex:"F0458",version:"1.5.54"},{name:"repeat-variant",hex:"F0547",version:"1.5.54"},{name:"replay",hex:"F0459",version:"1.5.54"},{name:"reply",hex:"F045A",version:"1.5.54"},{name:"reply-all",hex:"F045B",version:"1.5.54"},{name:"reply-all-outline",hex:"F0F1F",version:"3.8.95"},{name:"reply-circle",hex:"F11AE",version:"4.5.95"},{name:"reply-outline",hex:"F0F20",version:"3.8.95"},{name:"reproduction",hex:"F045C",version:"1.5.54"},{name:"resistor",hex:"F0B44",version:"2.8.94"},{name:"resistor-nodes",hex:"F0B45",version:"2.8.94"},{name:"resize",hex:"F0A68",version:"2.6.95"},{name:"resize-bottom-right",hex:"F045D",version:"1.5.54"},{name:"responsive",hex:"F045E",version:"1.5.54"},{name:"restart",hex:"F0709",version:"1.8.36"},{name:"restart-alert",hex:"F110C",version:"4.3.95"},{name:"restart-off",hex:"F0D95",version:"3.4.93"},{name:"restore",hex:"F099B",version:"2.4.85"},{name:"restore-alert",hex:"F110D",version:"4.3.95"},{name:"rewind",hex:"F045F",version:"1.5.54"},{name:"rewind-10",hex:"F0D2A",version:"3.3.92"},{name:"rewind-15",hex:"F1946",version:"6.4.95"},{name:"rewind-30",hex:"F0D96",version:"3.4.93"},{name:"rewind-5",hex:"F11F9",version:"4.6.95"},{name:"rewind-60",hex:"F160C",version:"5.6.55"},{name:"rewind-outline",hex:"F070A",version:"1.8.36"},{name:"rhombus",hex:"F070B",version:"1.8.36"},{name:"rhombus-medium",hex:"F0A10",version:"2.5.94"},{name:"rhombus-medium-outline",hex:"F14DC",version:"5.3.45"},{name:"rhombus-outline",hex:"F070C",version:"1.8.36"},{name:"rhombus-split",hex:"F0A11",version:"2.5.94"},{name:"rhombus-split-outline",hex:"F14DD",version:"5.3.45"},{name:"ribbon",hex:"F0460",version:"1.5.54"},{name:"rice",hex:"F07EA",version:"2.0.46"},{name:"rickshaw",hex:"F15BB",version:"5.6.55"},{name:"rickshaw-electric",hex:"F15BC",version:"5.6.55"},{name:"ring",hex:"F07EB",version:"2.0.46"},{name:"rivet",hex:"F0E60",version:"3.6.95"},{name:"road",hex:"F0461",version:"1.5.54"},{name:"road-variant",hex:"F0462",version:"1.5.54"},{name:"robber",hex:"F1058",version:"4.1.95"},{name:"robot",hex:"F06A9",version:"1.7.12"},{name:"robot-angry",hex:"F169D",version:"5.8.55"},{name:"robot-angry-outline",hex:"F169E",version:"5.8.55"},{name:"robot-confused",hex:"F169F",version:"5.8.55"},{name:"robot-confused-outline",hex:"F16A0",version:"5.8.55"},{name:"robot-dead",hex:"F16A1",version:"5.8.55"},{name:"robot-dead-outline",hex:"F16A2",version:"5.8.55"},{name:"robot-excited",hex:"F16A3",version:"5.8.55"},{name:"robot-excited-outline",hex:"F16A4",version:"5.8.55"},{name:"robot-happy",hex:"F1719",version:"5.9.55"},{name:"robot-happy-outline",hex:"F171A",version:"5.9.55"},{name:"robot-industrial",hex:"F0B46",version:"2.8.94"},{name:"robot-love",hex:"F16A5",version:"5.8.55"},{name:"robot-love-outline",hex:"F16A6",version:"5.8.55"},{name:"robot-mower",hex:"F11F7",version:"4.6.95"},{name:"robot-mower-outline",hex:"F11F3",version:"4.5.95"},{name:"robot-off",hex:"F16A7",version:"5.8.55"},{name:"robot-off-outline",hex:"F167B",version:"5.7.55"},{name:"robot-outline",hex:"F167A",version:"5.7.55"},{name:"robot-vacuum",hex:"F070D",version:"1.8.36"},{name:"robot-vacuum-variant",hex:"F0908",version:"2.3.50"},{name:"rocket",hex:"F0463",version:"1.5.54"},{name:"rocket-launch",hex:"F14DE",version:"5.3.45"},{name:"rocket-launch-outline",hex:"F14DF",version:"5.3.45"},{name:"rocket-outline",hex:"F13AF",version:"5.0.45"},{name:"rodent",hex:"F1327",version:"4.9.95"},{name:"roller-skate",hex:"F0D2B",version:"3.3.92"},{name:"roller-skate-off",hex:"F0145",version:"1.5.54"},{name:"rollerblade",hex:"F0D2C",version:"3.3.92"},{name:"rollerblade-off",hex:"F002E",version:"1.5.54"},{name:"rollupjs",hex:"F0BC0",version:"3.0.39"},{name:"roman-numeral-1",hex:"F1088",version:"4.2.95"},{name:"roman-numeral-10",hex:"F1091",version:"4.2.95"},{name:"roman-numeral-2",hex:"F1089",version:"4.2.95"},{name:"roman-numeral-3",hex:"F108A",version:"4.2.95"},{name:"roman-numeral-4",hex:"F108B",version:"4.2.95"},{name:"roman-numeral-5",hex:"F108C",version:"4.2.95"},{name:"roman-numeral-6",hex:"F108D",version:"4.2.95"},{name:"roman-numeral-7",hex:"F108E",version:"4.2.95"},{name:"roman-numeral-8",hex:"F108F",version:"4.2.95"},{name:"roman-numeral-9",hex:"F1090",version:"4.2.95"},{name:"room-service",hex:"F088D",version:"2.1.99"},{name:"room-service-outline",hex:"F0D97",version:"3.4.93"},{name:"rotate-360",hex:"F1999",version:"6.5.95"},{name:"rotate-3d",hex:"F0EC7",version:"3.7.94"},{name:"rotate-3d-variant",hex:"F0464",version:"1.5.54"},{name:"rotate-left",hex:"F0465",version:"1.5.54"},{name:"rotate-left-variant",hex:"F0466",version:"1.5.54"},{name:"rotate-orbit",hex:"F0D98",version:"3.4.93"},{name:"rotate-right",hex:"F0467",version:"1.5.54"},{name:"rotate-right-variant",hex:"F0468",version:"1.5.54"},{name:"rounded-corner",hex:"F0607",version:"1.5.54"},{name:"router",hex:"F11E2",version:"4.5.95"},{name:"router-network",hex:"F1087",version:"4.2.95"},{name:"router-wireless",hex:"F0469",version:"1.5.54"},{name:"router-wireless-off",hex:"F15A3",version:"5.5.55"},{name:"router-wireless-settings",hex:"F0A69",version:"2.6.95"},{name:"routes",hex:"F046A",version:"1.5.54"},{name:"routes-clock",hex:"F1059",version:"4.1.95"},{name:"rowing",hex:"F0608",version:"1.5.54"},{name:"rss",hex:"F046B",version:"1.5.54"},{name:"rss-box",hex:"F046C",version:"1.5.54"},{name:"rss-off",hex:"F0F21",version:"3.8.95"},{name:"rug",hex:"F1475",version:"5.2.45"},{name:"rugby",hex:"F0D99",version:"3.4.93"},{name:"ruler",hex:"F046D",version:"1.5.54"},{name:"ruler-square",hex:"F0CC2",version:"3.2.89"},{name:"ruler-square-compass",hex:"F0EBE",version:"3.7.94"},{name:"run",hex:"F070E",version:"1.8.36"},{name:"run-fast",hex:"F046E",version:"1.5.54"},{name:"rv-truck",hex:"F11D4",version:"4.5.95"},{name:"sack",hex:"F0D2E",version:"3.3.92"},{name:"sack-percent",hex:"F0D2F",version:"3.3.92"},{name:"safe",hex:"F0A6A",version:"2.6.95"},{name:"safe-square",hex:"F127C",version:"4.7.95"},{name:"safe-square-outline",hex:"F127D",version:"4.7.95"},{name:"safety-goggles",hex:"F0D30",version:"3.3.92"},{name:"sail-boat",hex:"F0EC8",version:"3.7.94"},{name:"sale",hex:"F046F",version:"1.5.54"},{name:"salesforce",hex:"F088E",version:"2.1.99"},{name:"sass",hex:"F07EC",version:"2.0.46"},{name:"satellite",hex:"F0470",version:"1.5.54"},{name:"satellite-uplink",hex:"F0909",version:"2.3.50"},{name:"satellite-variant",hex:"F0471",version:"1.5.54"},{name:"sausage",hex:"F08BA",version:"2.2.43"},{name:"sausage-off",hex:"F1789",version:"6.1.95"},{name:"saw-blade",hex:"F0E61",version:"3.6.95"},{name:"sawtooth-wave",hex:"F147A",version:"5.2.45"},{name:"saxophone",hex:"F0609",version:"1.5.54"},{name:"scale",hex:"F0472",version:"1.5.54"},{name:"scale-balance",hex:"F05D1",version:"1.5.54"},{name:"scale-bathroom",hex:"F0473",version:"1.5.54"},{name:"scale-off",hex:"F105A",version:"4.1.95"},{name:"scale-unbalanced",hex:"F19B8",version:"6.5.95"},{name:"scan-helper",hex:"F13D8",version:"5.1.45"},{name:"scanner",hex:"F06AB",version:"1.7.12"},{name:"scanner-off",hex:"F090A",version:"2.3.50"},{name:"scatter-plot",hex:"F0EC9",version:"3.7.94"},{name:"scatter-plot-outline",hex:"F0ECA",version:"3.7.94"},{name:"scent",hex:"F1958",version:"6.4.95"},{name:"scent-off",hex:"F1959",version:"6.4.95"},{name:"school",hex:"F0474",version:"1.5.54"},{name:"school-outline",hex:"F1180",version:"4.4.95"},{name:"scissors-cutting",hex:"F0A6B",version:"2.6.95"},{name:"scooter",hex:"F15BD",version:"5.6.55"},{name:"scooter-electric",hex:"F15BE",version:"5.6.55"},{name:"scoreboard",hex:"F127E",version:"4.7.95"},{name:"scoreboard-outline",hex:"F127F",version:"4.7.95"},{name:"screen-rotation",hex:"F0475",version:"1.5.54"},{name:"screen-rotation-lock",hex:"F0478",version:"1.5.54"},{name:"screw-flat-top",hex:"F0DF3",version:"3.5.94"},{name:"screw-lag",hex:"F0DF4",version:"3.5.94"},{name:"screw-machine-flat-top",hex:"F0DF5",version:"3.5.94"},{name:"screw-machine-round-top",hex:"F0DF6",version:"3.5.94"},{name:"screw-round-top",hex:"F0DF7",version:"3.5.94"},{name:"screwdriver",hex:"F0476",version:"1.5.54"},{name:"script",hex:"F0BC1",version:"3.0.39"},{name:"script-outline",hex:"F0477",version:"1.5.54"},{name:"script-text",hex:"F0BC2",version:"3.0.39"},{name:"script-text-key",hex:"F1725",version:"5.9.55"},{name:"script-text-key-outline",hex:"F1726",version:"5.9.55"},{name:"script-text-outline",hex:"F0BC3",version:"3.0.39"},{name:"script-text-play",hex:"F1727",version:"5.9.55"},{name:"script-text-play-outline",hex:"F1728",version:"5.9.55"},{name:"sd",hex:"F0479",version:"1.5.54"},{name:"seal",hex:"F047A",version:"1.5.54"},{name:"seal-variant",hex:"F0FD9",version:"4.0.96"},{name:"search-web",hex:"F070F",version:"1.8.36"},{name:"seat",hex:"F0CC3",version:"3.2.89"},{name:"seat-flat",hex:"F047B",version:"1.5.54"},{name:"seat-flat-angled",hex:"F047C",version:"1.5.54"},{name:"seat-individual-suite",hex:"F047D",version:"1.5.54"},{name:"seat-legroom-extra",hex:"F047E",version:"1.5.54"},{name:"seat-legroom-normal",hex:"F047F",version:"1.5.54"},{name:"seat-legroom-reduced",hex:"F0480",version:"1.5.54"},{name:"seat-outline",hex:"F0CC4",version:"3.2.89"},{name:"seat-passenger",hex:"F1249",version:"4.6.95"},{name:"seat-recline-extra",hex:"F0481",version:"1.5.54"},{name:"seat-recline-normal",hex:"F0482",version:"1.5.54"},{name:"seatbelt",hex:"F0CC5",version:"3.2.89"},{name:"security",hex:"F0483",version:"1.5.54"},{name:"security-network",hex:"F0484",version:"1.5.54"},{name:"seed",hex:"F0E62",version:"3.6.95"},{name:"seed-off",hex:"F13FD",version:"5.1.45"},{name:"seed-off-outline",hex:"F13FE",version:"5.1.45"},{name:"seed-outline",hex:"F0E63",version:"3.6.95"},{name:"seesaw",hex:"F15A4",version:"5.5.55"},{name:"segment",hex:"F0ECB",version:"3.7.94"},{name:"select",hex:"F0485",version:"1.5.54"},{name:"select-all",hex:"F0486",version:"1.5.54"},{name:"select-color",hex:"F0D31",version:"3.3.92"},{name:"select-compare",hex:"F0AD9",version:"2.7.94"},{name:"select-drag",hex:"F0A6C",version:"2.6.95"},{name:"select-group",hex:"F0F82",version:"3.9.97"},{name:"select-inverse",hex:"F0487",version:"1.5.54"},{name:"select-marker",hex:"F1280",version:"4.7.95"},{name:"select-multiple",hex:"F1281",version:"4.7.95"},{name:"select-multiple-marker",hex:"F1282",version:"4.7.95"},{name:"select-off",hex:"F0488",version:"1.5.54"},{name:"select-place",hex:"F0FDA",version:"4.0.96"},{name:"select-remove",hex:"F17C1",version:"6.1.95"},{name:"select-search",hex:"F1204",version:"4.6.95"},{name:"selection",hex:"F0489",version:"1.5.54"},{name:"selection-drag",hex:"F0A6D",version:"2.6.95"},{name:"selection-ellipse",hex:"F0D32",version:"3.3.92"},{name:"selection-ellipse-arrow-inside",hex:"F0F22",version:"3.8.95"},{name:"selection-ellipse-remove",hex:"F17C2",version:"6.1.95"},{name:"selection-marker",hex:"F1283",version:"4.7.95"},{name:"selection-multiple",hex:"F1285",version:"4.7.95"},{name:"selection-multiple-marker",hex:"F1284",version:"4.7.95"},{name:"selection-off",hex:"F0777",version:"1.9.32"},{name:"selection-remove",hex:"F17C3",version:"6.1.95"},{name:"selection-search",hex:"F1205",version:"4.6.95"},{name:"semantic-web",hex:"F1316",version:"4.8.95"},{name:"send",hex:"F048A",version:"1.5.54"},{name:"send-check",hex:"F1161",version:"4.4.95"},{name:"send-check-outline",hex:"F1162",version:"4.4.95"},{name:"send-circle",hex:"F0DF8",version:"3.5.94"},{name:"send-circle-outline",hex:"F0DF9",version:"3.5.94"},{name:"send-clock",hex:"F1163",version:"4.4.95"},{name:"send-clock-outline",hex:"F1164",version:"4.4.95"},{name:"send-lock",hex:"F07ED",version:"2.0.46"},{name:"send-lock-outline",hex:"F1166",version:"4.4.95"},{name:"send-outline",hex:"F1165",version:"4.4.95"},{name:"serial-port",hex:"F065C",version:"1.6.50"},{name:"server",hex:"F048B",version:"1.5.54"},{name:"server-minus",hex:"F048C",version:"1.5.54"},{name:"server-network",hex:"F048D",version:"1.5.54"},{name:"server-network-off",hex:"F048E",version:"1.5.54"},{name:"server-off",hex:"F048F",version:"1.5.54"},{name:"server-plus",hex:"F0490",version:"1.5.54"},{name:"server-remove",hex:"F0491",version:"1.5.54"},{name:"server-security",hex:"F0492",version:"1.5.54"},{name:"set-all",hex:"F0778",version:"1.9.32"},{name:"set-center",hex:"F0779",version:"1.9.32"},{name:"set-center-right",hex:"F077A",version:"1.9.32"},{name:"set-left",hex:"F077B",version:"1.9.32"},{name:"set-left-center",hex:"F077C",version:"1.9.32"},{name:"set-left-right",hex:"F077D",version:"1.9.32"},{name:"set-merge",hex:"F14E0",version:"5.3.45"},{name:"set-none",hex:"F077E",version:"1.9.32"},{name:"set-right",hex:"F077F",version:"1.9.32"},{name:"set-split",hex:"F14E1",version:"5.3.45"},{name:"set-square",hex:"F145D",version:"5.2.45"},{name:"set-top-box",hex:"F099F",version:"2.4.85"},{name:"settings-helper",hex:"F0A6E",version:"2.6.95"},{name:"shaker",hex:"F110E",version:"4.3.95"},{name:"shaker-outline",hex:"F110F",version:"4.3.95"},{name:"shape",hex:"F0831",version:"2.1.19"},{name:"shape-circle-plus",hex:"F065D",version:"1.6.50"},{name:"shape-outline",hex:"F0832",version:"2.1.19"},{name:"shape-oval-plus",hex:"F11FA",version:"4.6.95"},{name:"shape-plus",hex:"F0495",version:"1.5.54"},{name:"shape-polygon-plus",hex:"F065E",version:"1.6.50"},{name:"shape-rectangle-plus",hex:"F065F",version:"1.6.50"},{name:"shape-square-plus",hex:"F0660",version:"1.6.50"},{name:"shape-square-rounded-plus",hex:"F14FA",version:"5.4.55"},{name:"share",hex:"F0496",version:"1.5.54"},{name:"share-all",hex:"F11F4",version:"4.6.95"},{name:"share-all-outline",hex:"F11F5",version:"4.6.95"},{name:"share-circle",hex:"F11AD",version:"4.5.95"},{name:"share-off",hex:"F0F23",version:"3.8.95"},{name:"share-off-outline",hex:"F0F24",version:"3.8.95"},{name:"share-outline",hex:"F0932",version:"2.3.54"},{name:"share-variant",hex:"F0497",version:"1.5.54"},{name:"share-variant-outline",hex:"F1514",version:"5.4.55"},{name:"shark",hex:"F18BA",version:"6.3.95"},{name:"shark-fin",hex:"F1673",version:"5.7.55"},{name:"shark-fin-outline",hex:"F1674",version:"5.7.55"},{name:"shark-off",hex:"F18BB",version:"6.3.95"},{name:"sheep",hex:"F0CC6",version:"3.2.89"},{name:"shield",hex:"F0498",version:"1.5.54"},{name:"shield-account",hex:"F088F",version:"2.1.99"},{name:"shield-account-outline",hex:"F0A12",version:"2.5.94"},{name:"shield-account-variant",hex:"F15A7",version:"5.5.55"},{name:"shield-account-variant-outline",hex:"F15A8",version:"5.5.55"},{name:"shield-airplane",hex:"F06BB",version:"1.7.22"},{name:"shield-airplane-outline",hex:"F0CC7",version:"3.2.89"},{name:"shield-alert",hex:"F0ECC",version:"3.7.94"},{name:"shield-alert-outline",hex:"F0ECD",version:"3.7.94"},{name:"shield-bug",hex:"F13DA",version:"5.1.45"},{name:"shield-bug-outline",hex:"F13DB",version:"5.1.45"},{name:"shield-car",hex:"F0F83",version:"3.9.97"},{name:"shield-check",hex:"F0565",version:"1.5.54"},{name:"shield-check-outline",hex:"F0CC8",version:"3.2.89"},{name:"shield-cross",hex:"F0CC9",version:"3.2.89"},{name:"shield-cross-outline",hex:"F0CCA",version:"3.2.89"},{name:"shield-crown",hex:"F18BC",version:"6.3.95"},{name:"shield-crown-outline",hex:"F18BD",version:"6.3.95"},{name:"shield-edit",hex:"F11A0",version:"4.5.95"},{name:"shield-edit-outline",hex:"F11A1",version:"4.5.95"},{name:"shield-half",hex:"F1360",version:"4.9.95"},{name:"shield-half-full",hex:"F0780",version:"1.9.32"},{name:"shield-home",hex:"F068A",version:"1.7.12"},{name:"shield-home-outline",hex:"F0CCB",version:"3.2.89"},{name:"shield-key",hex:"F0BC4",version:"3.0.39"},{name:"shield-key-outline",hex:"F0BC5",version:"3.0.39"},{name:"shield-link-variant",hex:"F0D33",version:"3.3.92"},{name:"shield-link-variant-outline",hex:"F0D34",version:"3.3.92"},{name:"shield-lock",hex:"F099D",version:"2.4.85"},{name:"shield-lock-open",hex:"F199A",version:"6.5.95"},{name:"shield-lock-open-outline",hex:"F199B",version:"6.5.95"},{name:"shield-lock-outline",hex:"F0CCC",version:"3.2.89"},{name:"shield-moon",hex:"F1828",version:"6.1.95"},{name:"shield-moon-outline",hex:"F1829",version:"6.1.95"},{name:"shield-off",hex:"F099E",version:"2.4.85"},{name:"shield-off-outline",hex:"F099C",version:"2.4.85"},{name:"shield-outline",hex:"F0499",version:"1.5.54"},{name:"shield-plus",hex:"F0ADA",version:"2.7.94"},{name:"shield-plus-outline",hex:"F0ADB",version:"2.7.94"},{name:"shield-refresh",hex:"F00AA",version:"1.5.54"},{name:"shield-refresh-outline",hex:"F01E0",version:"1.5.54"},{name:"shield-remove",hex:"F0ADC",version:"2.7.94"},{name:"shield-remove-outline",hex:"F0ADD",version:"2.7.94"},{name:"shield-search",hex:"F0D9A",version:"3.4.93"},{name:"shield-star",hex:"F113B",version:"4.4.95"},{name:"shield-star-outline",hex:"F113C",version:"4.4.95"},{name:"shield-sun",hex:"F105D",version:"4.1.95"},{name:"shield-sun-outline",hex:"F105E",version:"4.1.95"},{name:"shield-sword",hex:"F18BE",version:"6.3.95"},{name:"shield-sword-outline",hex:"F18BF",version:"6.3.95"},{name:"shield-sync",hex:"F11A2",version:"4.5.95"},{name:"shield-sync-outline",hex:"F11A3",version:"4.5.95"},{name:"shimmer",hex:"F1545",version:"5.4.55"},{name:"ship-wheel",hex:"F0833",version:"2.1.19"},{name:"shipping-pallet",hex:"F184E",version:"6.2.95"},{name:"shoe-ballet",hex:"F15CA",version:"5.6.55"},{name:"shoe-cleat",hex:"F15C7",version:"5.6.55"},{name:"shoe-formal",hex:"F0B47",version:"2.8.94"},{name:"shoe-heel",hex:"F0B48",version:"2.8.94"},{name:"shoe-print",hex:"F0DFA",version:"3.5.94"},{name:"shoe-sneaker",hex:"F15C8",version:"5.6.55"},{name:"shopping",hex:"F049A",version:"1.5.54"},{name:"shopping-music",hex:"F049B",version:"1.5.54"},{name:"shopping-outline",hex:"F11D5",version:"4.5.95"},{name:"shopping-search",hex:"F0F84",version:"3.9.97"},{name:"shore",hex:"F14F9",version:"5.4.55"},{name:"shovel",hex:"F0710",version:"1.8.36"},{name:"shovel-off",hex:"F0711",version:"1.8.36"},{name:"shower",hex:"F09A0",version:"2.4.85"},{name:"shower-head",hex:"F09A1",version:"2.4.85"},{name:"shredder",hex:"F049C",version:"1.5.54"},{name:"shuffle",hex:"F049D",version:"1.5.54"},{name:"shuffle-disabled",hex:"F049E",version:"1.5.54"},{name:"shuffle-variant",hex:"F049F",version:"1.5.54"},{name:"shuriken",hex:"F137F",version:"4.9.95"},{name:"sickle",hex:"F18C0",version:"6.3.95"},{name:"sigma",hex:"F04A0",version:"1.5.54"},{name:"sigma-lower",hex:"F062B",version:"1.6.50"},{name:"sign-caution",hex:"F04A1",version:"1.5.54"},{name:"sign-direction",hex:"F0781",version:"1.9.32"},{name:"sign-direction-minus",hex:"F1000",version:"4.0.96"},{name:"sign-direction-plus",hex:"F0FDC",version:"4.0.96"},{name:"sign-direction-remove",hex:"F0FDD",version:"4.0.96"},{name:"sign-pole",hex:"F14F8",version:"5.4.55"},{name:"sign-real-estate",hex:"F1118",version:"4.3.95"},{name:"sign-text",hex:"F0782",version:"1.9.32"},{name:"signal",hex:"F04A2",version:"1.5.54"},{name:"signal-2g",hex:"F0712",version:"1.8.36"},{name:"signal-3g",hex:"F0713",version:"1.8.36"},{name:"signal-4g",hex:"F0714",version:"1.8.36"},{name:"signal-5g",hex:"F0A6F",version:"2.6.95"},{name:"signal-cellular-1",hex:"F08BC",version:"2.2.43"},{name:"signal-cellular-2",hex:"F08BD",version:"2.2.43"},{name:"signal-cellular-3",hex:"F08BE",version:"2.2.43"},{name:"signal-cellular-outline",hex:"F08BF",version:"2.2.43"},{name:"signal-distance-variant",hex:"F0E64",version:"3.6.95"},{name:"signal-hspa",hex:"F0715",version:"1.8.36"},{name:"signal-hspa-plus",hex:"F0716",version:"1.8.36"},{name:"signal-off",hex:"F0783",version:"1.9.32"},{name:"signal-variant",hex:"F060A",version:"1.5.54"},{name:"signature",hex:"F0DFB",version:"3.5.94"},{name:"signature-freehand",hex:"F0DFC",version:"3.5.94"},{name:"signature-image",hex:"F0DFD",version:"3.5.94"},{name:"signature-text",hex:"F0DFE",version:"3.5.94"},{name:"silo",hex:"F0B49",version:"2.8.94"},{name:"silverware",hex:"F04A3",version:"1.5.54"},{name:"silverware-clean",hex:"F0FDE",version:"4.0.96"},{name:"silverware-fork",hex:"F04A4",version:"1.5.54"},{name:"silverware-fork-knife",hex:"F0A70",version:"2.6.95"},{name:"silverware-spoon",hex:"F04A5",version:"1.5.54"},{name:"silverware-variant",hex:"F04A6",version:"1.5.54"},{name:"sim",hex:"F04A7",version:"1.5.54"},{name:"sim-alert",hex:"F04A8",version:"1.5.54"},{name:"sim-alert-outline",hex:"F15D3",version:"5.6.55"},{name:"sim-off",hex:"F04A9",version:"1.5.54"},{name:"sim-off-outline",hex:"F15D4",version:"5.6.55"},{name:"sim-outline",hex:"F15D5",version:"5.6.55"},{name:"simple-icons",hex:"F131D",version:"4.8.95"},{name:"sina-weibo",hex:"F0ADF",version:"2.7.94"},{name:"sine-wave",hex:"F095B",version:"2.4.85"},{name:"sitemap",hex:"F04AA",version:"1.5.54"},{name:"sitemap-outline",hex:"F199C",version:"6.5.95"},{name:"size-l",hex:"F13A6",version:"5.0.45"},{name:"size-m",hex:"F13A5",version:"5.0.45"},{name:"size-s",hex:"F13A4",version:"5.0.45"},{name:"size-xl",hex:"F13A7",version:"5.0.45"},{name:"size-xs",hex:"F13A3",version:"5.0.45"},{name:"size-xxl",hex:"F13A8",version:"5.0.45"},{name:"size-xxs",hex:"F13A2",version:"5.0.45"},{name:"size-xxxl",hex:"F13A9",version:"5.0.45"},{name:"skate",hex:"F0D35",version:"3.3.92"},{name:"skate-off",hex:"F0699",version:"1.7.12"},{name:"skateboard",hex:"F14C2",version:"5.3.45"},{name:"skateboarding",hex:"F0501",version:"1.5.54"},{name:"skew-less",hex:"F0D36",version:"3.3.92"},{name:"skew-more",hex:"F0D37",version:"3.3.92"},{name:"ski",hex:"F1304",version:"4.8.95"},{name:"ski-cross-country",hex:"F1305",version:"4.8.95"},{name:"ski-water",hex:"F1306",version:"4.8.95"},{name:"skip-backward",hex:"F04AB",version:"1.5.54"},{name:"skip-backward-outline",hex:"F0F25",version:"3.8.95"},{name:"skip-forward",hex:"F04AC",version:"1.5.54"},{name:"skip-forward-outline",hex:"F0F26",version:"3.8.95"},{name:"skip-next",hex:"F04AD",version:"1.5.54"},{name:"skip-next-circle",hex:"F0661",version:"1.6.50"},{name:"skip-next-circle-outline",hex:"F0662",version:"1.6.50"},{name:"skip-next-outline",hex:"F0F27",version:"3.8.95"},{name:"skip-previous",hex:"F04AE",version:"1.5.54"},{name:"skip-previous-circle",hex:"F0663",version:"1.6.50"},{name:"skip-previous-circle-outline",hex:"F0664",version:"1.6.50"},{name:"skip-previous-outline",hex:"F0F28",version:"3.8.95"},{name:"skull",hex:"F068C",version:"1.7.12"},{name:"skull-crossbones",hex:"F0BC6",version:"3.0.39"},{name:"skull-crossbones-outline",hex:"F0BC7",version:"3.0.39"},{name:"skull-outline",hex:"F0BC8",version:"3.0.39"},{name:"skull-scan",hex:"F14C7",version:"5.3.45"},{name:"skull-scan-outline",hex:"F14C8",version:"5.3.45"},{name:"skype",hex:"F04AF",version:"1.5.54"},{name:"skype-business",hex:"F04B0",version:"1.5.54"},{name:"slack",hex:"F04B1",version:"1.5.54"},{name:"slash-forward",hex:"F0FDF",version:"4.0.96"},{name:"slash-forward-box",hex:"F0FE0",version:"4.0.96"},{name:"sledding",hex:"F041B",version:"1.5.54"},{name:"sleep",hex:"F04B2",version:"1.5.54"},{name:"sleep-off",hex:"F04B3",version:"1.5.54"},{name:"slide",hex:"F15A5",version:"5.5.55"},{name:"slope-downhill",hex:"F0DFF",version:"3.5.94"},{name:"slope-uphill",hex:"F0E00",version:"3.5.94"},{name:"slot-machine",hex:"F1114",version:"4.3.95"},{name:"slot-machine-outline",hex:"F1115",version:"4.3.95"},{name:"smart-card",hex:"F10BD",version:"4.2.95"},{name:"smart-card-off",hex:"F18F7",version:"6.3.95"},{name:"smart-card-off-outline",hex:"F18F8",version:"6.3.95"},{name:"smart-card-outline",hex:"F10BE",version:"4.2.95"},{name:"smart-card-reader",hex:"F10BF",version:"4.2.95"},{name:"smart-card-reader-outline",hex:"F10C0",version:"4.2.95"},{name:"smog",hex:"F0A71",version:"2.6.95"},{name:"smoke",hex:"F1799",version:"6.1.95"},{name:"smoke-detector",hex:"F0392",version:"1.5.54"},{name:"smoke-detector-alert",hex:"F192E",version:"6.4.95"},{name:"smoke-detector-alert-outline",hex:"F192F",version:"6.4.95"},{name:"smoke-detector-off",hex:"F1809",version:"6.1.95"},{name:"smoke-detector-off-outline",hex:"F180A",version:"6.1.95"},{name:"smoke-detector-outline",hex:"F1808",version:"6.1.95"},{name:"smoke-detector-variant",hex:"F180B",version:"6.1.95"},{name:"smoke-detector-variant-alert",hex:"F1930",version:"6.4.95"},{name:"smoke-detector-variant-off",hex:"F180C",version:"6.1.95"},{name:"smoking",hex:"F04B4",version:"1.5.54"},{name:"smoking-off",hex:"F04B5",version:"1.5.54"},{name:"smoking-pipe",hex:"F140D",version:"5.1.45"},{name:"smoking-pipe-off",hex:"F1428",version:"5.2.45"},{name:"snail",hex:"F1677",version:"5.7.55"},{name:"snake",hex:"F150E",version:"5.4.55"},{name:"snapchat",hex:"F04B6",version:"1.5.54"},{name:"snowboard",hex:"F1307",version:"4.8.95"},{name:"snowflake",hex:"F0717",version:"1.8.36"},{name:"snowflake-alert",hex:"F0F29",version:"3.8.95"},{name:"snowflake-melt",hex:"F12CB",version:"4.8.95"},{name:"snowflake-off",hex:"F14E3",version:"5.4.55"},{name:"snowflake-variant",hex:"F0F2A",version:"3.8.95"},{name:"snowman",hex:"F04B7",version:"1.5.54"},{name:"snowmobile",hex:"F06DD",version:"1.8.36"},{name:"soccer",hex:"F04B8",version:"1.5.54"},{name:"soccer-field",hex:"F0834",version:"2.1.19"},{name:"social-distance-2-meters",hex:"F1579",version:"5.5.55"},{name:"social-distance-6-feet",hex:"F157A",version:"5.5.55"},{name:"sofa",hex:"F04B9",version:"1.5.54"},{name:"sofa-outline",hex:"F156D",version:"5.5.55"},{name:"sofa-single",hex:"F156E",version:"5.5.55"},{name:"sofa-single-outline",hex:"F156F",version:"5.5.55"},{name:"solar-panel",hex:"F0D9B",version:"3.4.93"},{name:"solar-panel-large",hex:"F0D9C",version:"3.4.93"},{name:"solar-power",hex:"F0A72",version:"2.6.95"},{name:"soldering-iron",hex:"F1092",version:"4.2.95"},{name:"solid",hex:"F068D",version:"1.7.12"},{name:"sony-playstation",hex:"F0414",version:"1.5.54"},{name:"sort",hex:"F04BA",version:"1.5.54"},{name:"sort-alphabetical-ascending",hex:"F05BD",version:"1.5.54"},{name:"sort-alphabetical-ascending-variant",hex:"F1148",version:"4.4.95"},{name:"sort-alphabetical-descending",hex:"F05BF",version:"1.5.54"},{name:"sort-alphabetical-descending-variant",hex:"F1149",version:"4.4.95"},{name:"sort-alphabetical-variant",hex:"F04BB",version:"1.5.54"},{name:"sort-ascending",hex:"F04BC",version:"1.5.54"},{name:"sort-bool-ascending",hex:"F1385",version:"5.0.45"},{name:"sort-bool-ascending-variant",hex:"F1386",version:"5.0.45"},{name:"sort-bool-descending",hex:"F1387",version:"5.0.45"},{name:"sort-bool-descending-variant",hex:"F1388",version:"5.0.45"},{name:"sort-calendar-ascending",hex:"F1547",version:"5.4.55"},{name:"sort-calendar-descending",hex:"F1548",version:"5.4.55"},{name:"sort-clock-ascending",hex:"F1549",version:"5.4.55"},{name:"sort-clock-ascending-outline",hex:"F154A",version:"5.4.55"},{name:"sort-clock-descending",hex:"F154B",version:"5.4.55"},{name:"sort-clock-descending-outline",hex:"F154C",version:"5.4.55"},{name:"sort-descending",hex:"F04BD",version:"1.5.54"},{name:"sort-numeric-ascending",hex:"F1389",version:"5.0.45"},{name:"sort-numeric-ascending-variant",hex:"F090D",version:"2.3.50"},{name:"sort-numeric-descending",hex:"F138A",version:"5.0.45"},{name:"sort-numeric-descending-variant",hex:"F0AD2",version:"2.7.94"},{name:"sort-numeric-variant",hex:"F04BE",version:"1.5.54"},{name:"sort-reverse-variant",hex:"F033C",version:"1.5.54"},{name:"sort-variant",hex:"F04BF",version:"1.5.54"},{name:"sort-variant-lock",hex:"F0CCD",version:"3.2.89"},{name:"sort-variant-lock-open",hex:"F0CCE",version:"3.2.89"},{name:"sort-variant-remove",hex:"F1147",version:"4.4.95"},{name:"soundbar",hex:"F17DB",version:"6.1.95"},{name:"soundcloud",hex:"F04C0",version:"1.5.54"},{name:"source-branch",hex:"F062C",version:"1.6.50"},{name:"source-branch-check",hex:"F14CF",version:"5.3.45"},{name:"source-branch-minus",hex:"F14CB",version:"5.3.45"},{name:"source-branch-plus",hex:"F14CA",version:"5.3.45"},{name:"source-branch-refresh",hex:"F14CD",version:"5.3.45"},{name:"source-branch-remove",hex:"F14CC",version:"5.3.45"},{name:"source-branch-sync",hex:"F14CE",version:"5.3.45"},{name:"source-commit",hex:"F0718",version:"1.8.36"},{name:"source-commit-end",hex:"F0719",version:"1.8.36"},{name:"source-commit-end-local",hex:"F071A",version:"1.8.36"},{name:"source-commit-local",hex:"F071B",version:"1.8.36"},{name:"source-commit-next-local",hex:"F071C",version:"1.8.36"},{name:"source-commit-start",hex:"F071D",version:"1.8.36"},{name:"source-commit-start-next-local",hex:"F071E",version:"1.8.36"},{name:"source-fork",hex:"F04C1",version:"1.5.54"},{name:"source-merge",hex:"F062D",version:"1.6.50"},{name:"source-pull",hex:"F04C2",version:"1.5.54"},{name:"source-repository",hex:"F0CCF",version:"3.2.89"},{name:"source-repository-multiple",hex:"F0CD0",version:"3.2.89"},{name:"soy-sauce",hex:"F07EE",version:"2.0.46"},{name:"soy-sauce-off",hex:"F13FC",version:"5.1.45"},{name:"spa",hex:"F0CD1",version:"3.2.89"},{name:"spa-outline",hex:"F0CD2",version:"3.2.89"},{name:"space-invaders",hex:"F0BC9",version:"3.0.39"},{name:"space-station",hex:"F1383",version:"4.9.95"},{name:"spade",hex:"F0E65",version:"3.6.95"},{name:"speaker",hex:"F04C3",version:"1.5.54"},{name:"speaker-bluetooth",hex:"F09A2",version:"2.4.85"},{name:"speaker-multiple",hex:"F0D38",version:"3.3.92"},{name:"speaker-off",hex:"F04C4",version:"1.5.54"},{name:"speaker-wireless",hex:"F071F",version:"1.8.36"},{name:"spear",hex:"F1845",version:"6.2.95"},{name:"speedometer",hex:"F04C5",version:"1.5.54"},{name:"speedometer-medium",hex:"F0F85",version:"3.9.97"},{name:"speedometer-slow",hex:"F0F86",version:"3.9.97"},{name:"spellcheck",hex:"F04C6",version:"1.5.54"},{name:"sphere",hex:"F1954",version:"6.4.95"},{name:"sphere-off",hex:"F1955",version:"6.4.95"},{name:"spider",hex:"F11EA",version:"4.5.95"},{name:"spider-thread",hex:"F11EB",version:"4.5.95"},{name:"spider-web",hex:"F0BCA",version:"3.0.39"},{name:"spirit-level",hex:"F14F1",version:"5.4.55"},{name:"spoon-sugar",hex:"F1429",version:"5.2.45"},{name:"spotify",hex:"F04C7",version:"1.5.54"},{name:"spotlight",hex:"F04C8",version:"1.5.54"},{name:"spotlight-beam",hex:"F04C9",version:"1.5.54"},{name:"spray",hex:"F0665",version:"1.6.50"},{name:"spray-bottle",hex:"F0AE0",version:"2.7.94"},{name:"sprinkler",hex:"F105F",version:"4.1.95"},{name:"sprinkler-fire",hex:"F199D",version:"6.5.95"},{name:"sprinkler-variant",hex:"F1060",version:"4.1.95"},{name:"sprout",hex:"F0E66",version:"3.6.95"},{name:"sprout-outline",hex:"F0E67",version:"3.6.95"},{name:"square",hex:"F0764",version:"1.9.32"},{name:"square-circle",hex:"F1500",version:"5.4.55"},{name:"square-edit-outline",hex:"F090C",version:"2.3.50"},{name:"square-medium",hex:"F0A13",version:"2.5.94"},{name:"square-medium-outline",hex:"F0A14",version:"2.5.94"},{name:"square-off",hex:"F12EE",version:"4.8.95"},{name:"square-off-outline",hex:"F12EF",version:"4.8.95"},{name:"square-opacity",hex:"F1854",version:"6.2.95"},{name:"square-outline",hex:"F0763",version:"1.9.32"},{name:"square-root",hex:"F0784",version:"1.9.32"},{name:"square-root-box",hex:"F09A3",version:"2.4.85"},{name:"square-rounded",hex:"F14FB",version:"5.4.55"},{name:"square-rounded-outline",hex:"F14FC",version:"5.4.55"},{name:"square-small",hex:"F0A15",version:"2.5.94"},{name:"square-wave",hex:"F147B",version:"5.2.45"},{name:"squeegee",hex:"F0AE1",version:"2.7.94"},{name:"ssh",hex:"F08C0",version:"2.2.43"},{name:"stack-exchange",hex:"F060B",version:"1.5.54"},{name:"stack-overflow",hex:"F04CC",version:"1.5.54"},{name:"stackpath",hex:"F0359",version:"1.5.54"},{name:"stadium",hex:"F0FF9",version:"4.0.96"},{name:"stadium-variant",hex:"F0720",version:"1.8.36"},{name:"stairs",hex:"F04CD",version:"1.5.54"},{name:"stairs-box",hex:"F139E",version:"5.0.45"},{name:"stairs-down",hex:"F12BE",version:"4.8.95"},{name:"stairs-up",hex:"F12BD",version:"4.8.95"},{name:"stamper",hex:"F0D39",version:"3.3.92"},{name:"standard-definition",hex:"F07EF",version:"2.0.46"},{name:"star",hex:"F04CE",version:"1.5.54"},{name:"star-box",hex:"F0A73",version:"2.6.95"},{name:"star-box-multiple",hex:"F1286",version:"4.7.95"},{name:"star-box-multiple-outline",hex:"F1287",version:"4.7.95"},{name:"star-box-outline",hex:"F0A74",version:"2.6.95"},{name:"star-check",hex:"F1566",version:"5.5.55"},{name:"star-check-outline",hex:"F156A",version:"5.5.55"},{name:"star-circle",hex:"F04CF",version:"1.5.54"},{name:"star-circle-outline",hex:"F09A4",version:"2.4.85"},{name:"star-cog",hex:"F1668",version:"5.7.55"},{name:"star-cog-outline",hex:"F1669",version:"5.7.55"},{name:"star-crescent",hex:"F0979",version:"2.4.85"},{name:"star-david",hex:"F097A",version:"2.4.85"},{name:"star-face",hex:"F09A5",version:"2.4.85"},{name:"star-four-points",hex:"F0AE2",version:"2.7.94"},{name:"star-four-points-outline",hex:"F0AE3",version:"2.7.94"},{name:"star-half",hex:"F0246",version:"1.5.54"},{name:"star-half-full",hex:"F04D0",version:"1.5.54"},{name:"star-minus",hex:"F1564",version:"5.5.55"},{name:"star-minus-outline",hex:"F1568",version:"5.5.55"},{name:"star-off",hex:"F04D1",version:"1.5.54"},{name:"star-off-outline",hex:"F155B",version:"5.5.55"},{name:"star-outline",hex:"F04D2",version:"1.5.54"},{name:"star-plus",hex:"F1563",version:"5.5.55"},{name:"star-plus-outline",hex:"F1567",version:"5.5.55"},{name:"star-remove",hex:"F1565",version:"5.5.55"},{name:"star-remove-outline",hex:"F1569",version:"5.5.55"},{name:"star-settings",hex:"F166A",version:"5.7.55"},{name:"star-settings-outline",hex:"F166B",version:"5.7.55"},{name:"star-shooting",hex:"F1741",version:"5.9.55"},{name:"star-shooting-outline",hex:"F1742",version:"5.9.55"},{name:"star-three-points",hex:"F0AE4",version:"2.7.94"},{name:"star-three-points-outline",hex:"F0AE5",version:"2.7.94"},{name:"state-machine",hex:"F11EF",version:"4.5.95"},{name:"steam",hex:"F04D3",version:"1.5.54"},{name:"steering",hex:"F04D4",version:"1.5.54"},{name:"steering-off",hex:"F090E",version:"2.3.50"},{name:"step-backward",hex:"F04D5",version:"1.5.54"},{name:"step-backward-2",hex:"F04D6",version:"1.5.54"},{name:"step-forward",hex:"F04D7",version:"1.5.54"},{name:"step-forward-2",hex:"F04D8",version:"1.5.54"},{name:"stethoscope",hex:"F04D9",version:"1.5.54"},{name:"sticker",hex:"F1364",version:"4.9.95"},{name:"sticker-alert",hex:"F1365",version:"4.9.95"},{name:"sticker-alert-outline",hex:"F1366",version:"4.9.95"},{name:"sticker-check",hex:"F1367",version:"4.9.95"},{name:"sticker-check-outline",hex:"F1368",version:"4.9.95"},{name:"sticker-circle-outline",hex:"F05D0",version:"1.5.54"},{name:"sticker-emoji",hex:"F0785",version:"1.9.32"},{name:"sticker-minus",hex:"F1369",version:"4.9.95"},{name:"sticker-minus-outline",hex:"F136A",version:"4.9.95"},{name:"sticker-outline",hex:"F136B",version:"4.9.95"},{name:"sticker-plus",hex:"F136C",version:"4.9.95"},{name:"sticker-plus-outline",hex:"F136D",version:"4.9.95"},{name:"sticker-remove",hex:"F136E",version:"4.9.95"},{name:"sticker-remove-outline",hex:"F136F",version:"4.9.95"},{name:"sticker-text",hex:"F178E",version:"6.1.95"},{name:"sticker-text-outline",hex:"F178F",version:"6.1.95"},{name:"stocking",hex:"F04DA",version:"1.5.54"},{name:"stomach",hex:"F1093",version:"4.2.95"},{name:"stool",hex:"F195D",version:"6.4.95"},{name:"stool-outline",hex:"F195E",version:"6.4.95"},{name:"stop",hex:"F04DB",version:"1.5.54"},{name:"stop-circle",hex:"F0666",version:"1.6.50"},{name:"stop-circle-outline",hex:"F0667",version:"1.6.50"},{name:"store",hex:"F04DC",version:"1.5.54"},{name:"store-24-hour",hex:"F04DD",version:"1.5.54"},{name:"store-alert",hex:"F18C1",version:"6.3.95"},{name:"store-alert-outline",hex:"F18C2",version:"6.3.95"},{name:"store-check",hex:"F18C3",version:"6.3.95"},{name:"store-check-outline",hex:"F18C4",version:"6.3.95"},{name:"store-clock",hex:"F18C5",version:"6.3.95"},{name:"store-clock-outline",hex:"F18C6",version:"6.3.95"},{name:"store-cog",hex:"F18C7",version:"6.3.95"},{name:"store-cog-outline",hex:"F18C8",version:"6.3.95"},{name:"store-edit",hex:"F18C9",version:"6.3.95"},{name:"store-edit-outline",hex:"F18CA",version:"6.3.95"},{name:"store-marker",hex:"F18CB",version:"6.3.95"},{name:"store-marker-outline",hex:"F18CC",version:"6.3.95"},{name:"store-minus",hex:"F165E",version:"5.7.55"},{name:"store-minus-outline",hex:"F18CD",version:"6.3.95"},{name:"store-off",hex:"F18CE",version:"6.3.95"},{name:"store-off-outline",hex:"F18CF",version:"6.3.95"},{name:"store-outline",hex:"F1361",version:"4.9.95"},{name:"store-plus",hex:"F165F",version:"5.7.55"},{name:"store-plus-outline",hex:"F18D0",version:"6.3.95"},{name:"store-remove",hex:"F1660",version:"5.7.55"},{name:"store-remove-outline",hex:"F18D1",version:"6.3.95"},{name:"store-search",hex:"F18D2",version:"6.3.95"},{name:"store-search-outline",hex:"F18D3",version:"6.3.95"},{name:"store-settings",hex:"F18D4",version:"6.3.95"},{name:"store-settings-outline",hex:"F18D5",version:"6.3.95"},{name:"storefront",hex:"F07C7",version:"2.0.46"},{name:"storefront-outline",hex:"F10C1",version:"4.2.95"},{name:"stove",hex:"F04DE",version:"1.5.54"},{name:"strategy",hex:"F11D6",version:"4.5.95"},{name:"stretch-to-page",hex:"F0F2B",version:"3.8.95"},{name:"stretch-to-page-outline",hex:"F0F2C",version:"3.8.95"},{name:"string-lights",hex:"F12BA",version:"4.7.95"},{name:"string-lights-off",hex:"F12BB",version:"4.7.95"},{name:"subdirectory-arrow-left",hex:"F060C",version:"1.5.54"},{name:"subdirectory-arrow-right",hex:"F060D",version:"1.5.54"},{name:"submarine",hex:"F156C",version:"5.5.55"},{name:"subtitles",hex:"F0A16",version:"2.5.94"},{name:"subtitles-outline",hex:"F0A17",version:"2.5.94"},{name:"subway",hex:"F06AC",version:"1.7.12"},{name:"subway-alert-variant",hex:"F0D9D",version:"3.4.93"},{name:"subway-variant",hex:"F04DF",version:"1.5.54"},{name:"summit",hex:"F0786",version:"1.9.32"},{name:"sun-compass",hex:"F19A5",version:"6.5.95"},{name:"sun-snowflake",hex:"F1796",version:"6.1.95"},{name:"sun-thermometer",hex:"F18D6",version:"6.3.95"},{name:"sun-thermometer-outline",hex:"F18D7",version:"6.3.95"},{name:"sun-wireless",hex:"F17FE",version:"6.1.95"},{name:"sun-wireless-outline",hex:"F17FF",version:"6.1.95"},{name:"sunglasses",hex:"F04E0",version:"1.5.54"},{name:"surfing",hex:"F1746",version:"6.1.95"},{name:"surround-sound",hex:"F05C5",version:"1.5.54"},{name:"surround-sound-2-0",hex:"F07F0",version:"2.0.46"},{name:"surround-sound-2-1",hex:"F1729",version:"5.9.55"},{name:"surround-sound-3-1",hex:"F07F1",version:"2.0.46"},{name:"surround-sound-5-1",hex:"F07F2",version:"2.0.46"},{name:"surround-sound-5-1-2",hex:"F172A",version:"5.9.55"},{name:"surround-sound-7-1",hex:"F07F3",version:"2.0.46"},{name:"svg",hex:"F0721",version:"1.8.36"},{name:"swap-horizontal",hex:"F04E1",version:"1.5.54"},{name:"swap-horizontal-bold",hex:"F0BCD",version:"3.0.39"},{name:"swap-horizontal-circle",hex:"F0FE1",version:"4.0.96"},{name:"swap-horizontal-circle-outline",hex:"F0FE2",version:"4.0.96"},{name:"swap-horizontal-variant",hex:"F08C1",version:"2.2.43"},{name:"swap-vertical",hex:"F04E2",version:"1.5.54"},{name:"swap-vertical-bold",hex:"F0BCE",version:"3.0.39"},{name:"swap-vertical-circle",hex:"F0FE3",version:"4.0.96"},{name:"swap-vertical-circle-outline",hex:"F0FE4",version:"4.0.96"},{name:"swap-vertical-variant",hex:"F08C2",version:"2.2.43"},{name:"swim",hex:"F04E3",version:"1.5.54"},{name:"switch",hex:"F04E4",version:"1.5.54"},{name:"sword",hex:"F04E5",version:"1.5.54"},{name:"sword-cross",hex:"F0787",version:"1.9.32"},{name:"syllabary-hangul",hex:"F1333",version:"4.9.95"},{name:"syllabary-hiragana",hex:"F1334",version:"4.9.95"},{name:"syllabary-katakana",hex:"F1335",version:"4.9.95"},{name:"syllabary-katakana-halfwidth",hex:"F1336",version:"4.9.95"},{name:"symbol",hex:"F1501",version:"5.4.55"},{name:"symfony",hex:"F0AE6",version:"2.7.94"},{name:"sync",hex:"F04E6",version:"1.5.54"},{name:"sync-alert",hex:"F04E7",version:"1.5.54"},{name:"sync-circle",hex:"F1378",version:"4.9.95"},{name:"sync-off",hex:"F04E8",version:"1.5.54"},{name:"tab",hex:"F04E9",version:"1.5.54"},{name:"tab-minus",hex:"F0B4B",version:"2.8.94"},{name:"tab-plus",hex:"F075C",version:"1.9.32"},{name:"tab-remove",hex:"F0B4C",version:"2.8.94"},{name:"tab-search",hex:"F199E",version:"6.5.95"},{name:"tab-unselected",hex:"F04EA",version:"1.5.54"},{name:"table",hex:"F04EB",version:"1.5.54"},{name:"table-account",hex:"F13B9",version:"5.1.45"},{name:"table-alert",hex:"F13BA",version:"5.1.45"},{name:"table-arrow-down",hex:"F13BB",version:"5.1.45"},{name:"table-arrow-left",hex:"F13BC",version:"5.1.45"},{name:"table-arrow-right",hex:"F13BD",version:"5.1.45"},{name:"table-arrow-up",hex:"F13BE",version:"5.1.45"},{name:"table-border",hex:"F0A18",version:"2.5.94"},{name:"table-cancel",hex:"F13BF",version:"5.1.45"},{name:"table-chair",hex:"F1061",version:"4.1.95"},{name:"table-check",hex:"F13C0",version:"5.1.45"},{name:"table-clock",hex:"F13C1",version:"5.1.45"},{name:"table-cog",hex:"F13C2",version:"5.1.45"},{name:"table-column",hex:"F0835",version:"2.1.19"},{name:"table-column-plus-after",hex:"F04EC",version:"1.5.54"},{name:"table-column-plus-before",hex:"F04ED",version:"1.5.54"},{name:"table-column-remove",hex:"F04EE",version:"1.5.54"},{name:"table-column-width",hex:"F04EF",version:"1.5.54"},{name:"table-edit",hex:"F04F0",version:"1.5.54"},{name:"table-eye",hex:"F1094",version:"4.2.95"},{name:"table-eye-off",hex:"F13C3",version:"5.1.45"},{name:"table-furniture",hex:"F05BC",version:"1.5.54"},{name:"table-headers-eye",hex:"F121D",version:"4.6.95"},{name:"table-headers-eye-off",hex:"F121E",version:"4.6.95"},{name:"table-heart",hex:"F13C4",version:"5.1.45"},{name:"table-key",hex:"F13C5",version:"5.1.45"},{name:"table-large",hex:"F04F1",version:"1.5.54"},{name:"table-large-plus",hex:"F0F87",version:"3.9.97"},{name:"table-large-remove",hex:"F0F88",version:"3.9.97"},{name:"table-lock",hex:"F13C6",version:"5.1.45"},{name:"table-merge-cells",hex:"F09A6",version:"2.4.85"},{name:"table-minus",hex:"F13C7",version:"5.1.45"},{name:"table-multiple",hex:"F13C8",version:"5.1.45"},{name:"table-network",hex:"F13C9",version:"5.1.45"},{name:"table-of-contents",hex:"F0836",version:"2.1.19"},{name:"table-off",hex:"F13CA",version:"5.1.45"},{name:"table-picnic",hex:"F1743",version:"5.9.55"},{name:"table-pivot",hex:"F183C",version:"6.2.95"},{name:"table-plus",hex:"F0A75",version:"2.6.95"},{name:"table-refresh",hex:"F13A0",version:"5.0.45"},{name:"table-remove",hex:"F0A76",version:"2.6.95"},{name:"table-row",hex:"F0837",version:"2.1.19"},{name:"table-row-height",hex:"F04F2",version:"1.5.54"},{name:"table-row-plus-after",hex:"F04F3",version:"1.5.54"},{name:"table-row-plus-before",hex:"F04F4",version:"1.5.54"},{name:"table-row-remove",hex:"F04F5",version:"1.5.54"},{name:"table-search",hex:"F090F",version:"2.3.50"},{name:"table-settings",hex:"F0838",version:"2.1.19"},{name:"table-split-cell",hex:"F142A",version:"5.2.45"},{name:"table-star",hex:"F13CB",version:"5.1.45"},{name:"table-sync",hex:"F13A1",version:"5.0.45"},{name:"table-tennis",hex:"F0E68",version:"3.6.95"},{name:"tablet",hex:"F04F6",version:"1.5.54"},{name:"tablet-android",hex:"F04F7",version:"1.5.54"},{name:"tablet-cellphone",hex:"F09A7",version:"2.4.85"},{name:"tablet-dashboard",hex:"F0ECE",version:"3.7.94"},{name:"taco",hex:"F0762",version:"1.9.32"},{name:"tag",hex:"F04F9",version:"1.5.54"},{name:"tag-arrow-down",hex:"F172B",version:"5.9.55"},{name:"tag-arrow-down-outline",hex:"F172C",version:"5.9.55"},{name:"tag-arrow-left",hex:"F172D",version:"5.9.55"},{name:"tag-arrow-left-outline",hex:"F172E",version:"5.9.55"},{name:"tag-arrow-right",hex:"F172F",version:"5.9.55"},{name:"tag-arrow-right-outline",hex:"F1730",version:"5.9.55"},{name:"tag-arrow-up",hex:"F1731",version:"5.9.55"},{name:"tag-arrow-up-outline",hex:"F1732",version:"5.9.55"},{name:"tag-faces",hex:"F04FA",version:"1.5.54"},{name:"tag-heart",hex:"F068B",version:"1.7.12"},{name:"tag-heart-outline",hex:"F0BCF",version:"3.0.39"},{name:"tag-minus",hex:"F0910",version:"2.3.50"},{name:"tag-minus-outline",hex:"F121F",version:"4.6.95"},{name:"tag-multiple",hex:"F04FB",version:"1.5.54"},{name:"tag-multiple-outline",hex:"F12F7",version:"4.8.95"},{name:"tag-off",hex:"F1220",version:"4.6.95"},{name:"tag-off-outline",hex:"F1221",version:"4.6.95"},{name:"tag-outline",hex:"F04FC",version:"1.5.54"},{name:"tag-plus",hex:"F0722",version:"1.8.36"},{name:"tag-plus-outline",hex:"F1222",version:"4.6.95"},{name:"tag-remove",hex:"F0723",version:"1.8.36"},{name:"tag-remove-outline",hex:"F1223",version:"4.6.95"},{name:"tag-search",hex:"F1907",version:"6.4.95"},{name:"tag-search-outline",hex:"F1908",version:"6.4.95"},{name:"tag-text",hex:"F1224",version:"4.6.95"},{name:"tag-text-outline",hex:"F04FD",version:"1.5.54"},{name:"tailwind",hex:"F13FF",version:"5.1.45"},{name:"tangram",hex:"F04F8",version:"1.5.54"},{name:"tank",hex:"F0D3A",version:"3.3.92"},{name:"tanker-truck",hex:"F0FE5",version:"4.0.96"},{name:"tape-drive",hex:"F16DF",version:"5.8.55"},{name:"tape-measure",hex:"F0B4D",version:"2.8.94"},{name:"target",hex:"F04FE",version:"1.5.54"},{name:"target-account",hex:"F0BD0",version:"3.0.39"},{name:"target-variant",hex:"F0A77",version:"2.6.95"},{name:"taxi",hex:"F04FF",version:"1.5.54"},{name:"tea",hex:"F0D9E",version:"3.4.93"},{name:"tea-outline",hex:"F0D9F",version:"3.4.93"},{name:"teamviewer",hex:"F0500",version:"1.5.54"},{name:"teddy-bear",hex:"F18FB",version:"6.3.95"},{name:"telescope",hex:"F0B4E",version:"2.8.94"},{name:"television",hex:"F0502",version:"1.5.54"},{name:"television-ambient-light",hex:"F1356",version:"4.9.95"},{name:"television-box",hex:"F0839",version:"2.1.19"},{name:"television-classic",hex:"F07F4",version:"2.0.46"},{name:"television-classic-off",hex:"F083A",version:"2.1.19"},{name:"television-guide",hex:"F0503",version:"1.5.54"},{name:"television-off",hex:"F083B",version:"2.1.19"},{name:"television-pause",hex:"F0F89",version:"3.9.97"},{name:"television-play",hex:"F0ECF",version:"3.7.94"},{name:"television-shimmer",hex:"F1110",version:"4.3.95"},{name:"television-stop",hex:"F0F8A",version:"3.9.97"},{name:"temperature-celsius",hex:"F0504",version:"1.5.54"},{name:"temperature-fahrenheit",hex:"F0505",version:"1.5.54"},{name:"temperature-kelvin",hex:"F0506",version:"1.5.54"},{name:"tennis",hex:"F0DA0",version:"3.4.93"},{name:"tennis-ball",hex:"F0507",version:"1.5.54"},{name:"tent",hex:"F0508",version:"1.5.54"},{name:"terraform",hex:"F1062",version:"4.1.95"},{name:"terrain",hex:"F0509",version:"1.5.54"},{name:"test-tube",hex:"F0668",version:"1.6.50"},{name:"test-tube-empty",hex:"F0911",version:"2.3.50"},{name:"test-tube-off",hex:"F0912",version:"2.3.50"},{name:"text",hex:"F09A8",version:"2.4.85"},{name:"text-account",hex:"F1570",version:"5.5.55"},{name:"text-box",hex:"F021A",version:"1.5.54"},{name:"text-box-check",hex:"F0EA6",version:"3.7.94"},{name:"text-box-check-outline",hex:"F0EA7",version:"3.7.94"},{name:"text-box-minus",hex:"F0EA8",version:"3.7.94"},{name:"text-box-minus-outline",hex:"F0EA9",version:"3.7.94"},{name:"text-box-multiple",hex:"F0AB7",version:"2.7.94"},{name:"text-box-multiple-outline",hex:"F0AB8",version:"2.7.94"},{name:"text-box-outline",hex:"F09ED",version:"2.5.94"},{name:"text-box-plus",hex:"F0EAA",version:"3.7.94"},{name:"text-box-plus-outline",hex:"F0EAB",version:"3.7.94"},{name:"text-box-remove",hex:"F0EAC",version:"3.7.94"},{name:"text-box-remove-outline",hex:"F0EAD",version:"3.7.94"},{name:"text-box-search",hex:"F0EAE",version:"3.7.94"},{name:"text-box-search-outline",hex:"F0EAF",version:"3.7.94"},{name:"text-long",hex:"F09AA",version:"2.4.85"},{name:"text-recognition",hex:"F113D",version:"4.4.95"},{name:"text-search",hex:"F13B8",version:"5.1.45"},{name:"text-shadow",hex:"F0669",version:"1.6.50"},{name:"text-short",hex:"F09A9",version:"2.4.85"},{name:"text-to-speech",hex:"F050A",version:"1.5.54"},{name:"text-to-speech-off",hex:"F050B",version:"1.5.54"},{name:"texture",hex:"F050C",version:"1.5.54"},{name:"texture-box",hex:"F0FE6",version:"4.0.96"},{name:"theater",hex:"F050D",version:"1.5.54"},{name:"theme-light-dark",hex:"F050E",version:"1.5.54"},{name:"thermometer",hex:"F050F",version:"1.5.54"},{name:"thermometer-alert",hex:"F0E01",version:"3.5.94"},{name:"thermometer-bluetooth",hex:"F1895",version:"6.2.95"},{name:"thermometer-chevron-down",hex:"F0E02",version:"3.5.94"},{name:"thermometer-chevron-up",hex:"F0E03",version:"3.5.94"},{name:"thermometer-high",hex:"F10C2",version:"4.2.95"},{name:"thermometer-lines",hex:"F0510",version:"1.5.54"},{name:"thermometer-low",hex:"F10C3",version:"4.2.95"},{name:"thermometer-minus",hex:"F0E04",version:"3.5.94"},{name:"thermometer-off",hex:"F1531",version:"5.4.55"},{name:"thermometer-plus",hex:"F0E05",version:"3.5.94"},{name:"thermostat",hex:"F0393",version:"1.5.54"},{name:"thermostat-box",hex:"F0891",version:"2.1.99"},{name:"thought-bubble",hex:"F07F6",version:"2.0.46"},{name:"thought-bubble-outline",hex:"F07F7",version:"2.0.46"},{name:"thumb-down",hex:"F0511",version:"1.5.54"},{name:"thumb-down-outline",hex:"F0512",version:"1.5.54"},{name:"thumb-up",hex:"F0513",version:"1.5.54"},{name:"thumb-up-outline",hex:"F0514",version:"1.5.54"},{name:"thumbs-up-down",hex:"F0515",version:"1.5.54"},{name:"thumbs-up-down-outline",hex:"F1914",version:"6.4.95"},{name:"ticket",hex:"F0516",version:"1.5.54"},{name:"ticket-account",hex:"F0517",version:"1.5.54"},{name:"ticket-confirmation",hex:"F0518",version:"1.5.54"},{name:"ticket-confirmation-outline",hex:"F13AA",version:"5.0.45"},{name:"ticket-outline",hex:"F0913",version:"2.3.50"},{name:"ticket-percent",hex:"F0724",version:"1.8.36"},{name:"ticket-percent-outline",hex:"F142B",version:"5.2.45"},{name:"tie",hex:"F0519",version:"1.5.54"},{name:"tilde",hex:"F0725",version:"1.8.36"},{name:"tilde-off",hex:"F18F3",version:"6.3.95"},{name:"timelapse",hex:"F051A",version:"1.5.54"},{name:"timeline",hex:"F0BD1",version:"3.0.39"},{name:"timeline-alert",hex:"F0F95",version:"3.9.97"},{name:"timeline-alert-outline",hex:"F0F98",version:"3.9.97"},{name:"timeline-check",hex:"F1532",version:"5.4.55"},{name:"timeline-check-outline",hex:"F1533",version:"5.4.55"},{name:"timeline-clock",hex:"F11FB",version:"4.6.95"},{name:"timeline-clock-outline",hex:"F11FC",version:"4.6.95"},{name:"timeline-help",hex:"F0F99",version:"3.9.97"},{name:"timeline-help-outline",hex:"F0F9A",version:"3.9.97"},{name:"timeline-minus",hex:"F1534",version:"5.4.55"},{name:"timeline-minus-outline",hex:"F1535",version:"5.4.55"},{name:"timeline-outline",hex:"F0BD2",version:"3.0.39"},{name:"timeline-plus",hex:"F0F96",version:"3.9.97"},{name:"timeline-plus-outline",hex:"F0F97",version:"3.9.97"},{name:"timeline-remove",hex:"F1536",version:"5.4.55"},{name:"timeline-remove-outline",hex:"F1537",version:"5.4.55"},{name:"timeline-text",hex:"F0BD3",version:"3.0.39"},{name:"timeline-text-outline",hex:"F0BD4",version:"3.0.39"},{name:"timer",hex:"F13AB",version:"5.0.45"},{name:"timer-10",hex:"F051C",version:"1.5.54"},{name:"timer-3",hex:"F051D",version:"1.5.54"},{name:"timer-cog",hex:"F1925",version:"6.4.95"},{name:"timer-cog-outline",hex:"F1926",version:"6.4.95"},{name:"timer-off",hex:"F13AC",version:"5.0.45"},{name:"timer-off-outline",hex:"F051E",version:"1.5.54"},{name:"timer-outline",hex:"F051B",version:"1.5.54"},{name:"timer-sand",hex:"F051F",version:"1.5.54"},{name:"timer-sand-complete",hex:"F199F",version:"6.5.95"},{name:"timer-sand-empty",hex:"F06AD",version:"1.7.12"},{name:"timer-sand-full",hex:"F078C",version:"1.9.32"},{name:"timer-sand-paused",hex:"F19A0",version:"6.5.95"},{name:"timer-settings",hex:"F1923",version:"6.4.95"},{name:"timer-settings-outline",hex:"F1924",version:"6.4.95"},{name:"timetable",hex:"F0520",version:"1.5.54"},{name:"tire",hex:"F1896",version:"6.2.95"},{name:"toaster",hex:"F1063",version:"4.1.95"},{name:"toaster-off",hex:"F11B7",version:"4.5.95"},{name:"toaster-oven",hex:"F0CD3",version:"3.2.89"},{name:"toggle-switch",hex:"F0521",version:"1.5.54"},{name:"toggle-switch-off",hex:"F0522",version:"1.5.54"},{name:"toggle-switch-off-outline",hex:"F0A19",version:"2.5.94"},{name:"toggle-switch-outline",hex:"F0A1A",version:"2.5.94"},{name:"toilet",hex:"F09AB",version:"2.4.85"},{name:"toolbox",hex:"F09AC",version:"2.4.85"},{name:"toolbox-outline",hex:"F09AD",version:"2.4.85"},{name:"tools",hex:"F1064",version:"4.1.95"},{name:"tooltip",hex:"F0523",version:"1.5.54"},{name:"tooltip-account",hex:"F000C",version:"1.5.54"},{name:"tooltip-cellphone",hex:"F183B",version:"6.2.95"},{name:"tooltip-check",hex:"F155C",version:"5.5.55"},{name:"tooltip-check-outline",hex:"F155D",version:"5.5.55"},{name:"tooltip-edit",hex:"F0524",version:"1.5.54"},{name:"tooltip-edit-outline",hex:"F12C5",version:"4.8.95"},{name:"tooltip-image",hex:"F0525",version:"1.5.54"},{name:"tooltip-image-outline",hex:"F0BD5",version:"3.0.39"},{name:"tooltip-minus",hex:"F155E",version:"5.5.55"},{name:"tooltip-minus-outline",hex:"F155F",version:"5.5.55"},{name:"tooltip-outline",hex:"F0526",version:"1.5.54"},{name:"tooltip-plus",hex:"F0BD6",version:"3.0.39"},{name:"tooltip-plus-outline",hex:"F0527",version:"1.5.54"},{name:"tooltip-remove",hex:"F1560",version:"5.5.55"},{name:"tooltip-remove-outline",hex:"F1561",version:"5.5.55"},{name:"tooltip-text",hex:"F0528",version:"1.5.54"},{name:"tooltip-text-outline",hex:"F0BD7",version:"3.0.39"},{name:"tooth",hex:"F08C3",version:"2.2.43"},{name:"tooth-outline",hex:"F0529",version:"1.5.54"},{name:"toothbrush",hex:"F1129",version:"4.3.95"},{name:"toothbrush-electric",hex:"F112C",version:"4.4.95"},{name:"toothbrush-paste",hex:"F112A",version:"4.3.95"},{name:"torch",hex:"F1606",version:"5.6.55"},{name:"tortoise",hex:"F0D3B",version:"3.3.92"},{name:"toslink",hex:"F12B8",version:"4.7.95"},{name:"tournament",hex:"F09AE",version:"2.4.85"},{name:"tow-truck",hex:"F083C",version:"2.1.19"},{name:"tower-beach",hex:"F0681",version:"1.7.12"},{name:"tower-fire",hex:"F0682",version:"1.7.12"},{name:"town-hall",hex:"F1875",version:"6.2.95"},{name:"toy-brick",hex:"F1288",version:"4.7.95"},{name:"toy-brick-marker",hex:"F1289",version:"4.7.95"},{name:"toy-brick-marker-outline",hex:"F128A",version:"4.7.95"},{name:"toy-brick-minus",hex:"F128B",version:"4.7.95"},{name:"toy-brick-minus-outline",hex:"F128C",version:"4.7.95"},{name:"toy-brick-outline",hex:"F128D",version:"4.7.95"},{name:"toy-brick-plus",hex:"F128E",version:"4.7.95"},{name:"toy-brick-plus-outline",hex:"F128F",version:"4.7.95"},{name:"toy-brick-remove",hex:"F1290",version:"4.7.95"},{name:"toy-brick-remove-outline",hex:"F1291",version:"4.7.95"},{name:"toy-brick-search",hex:"F1292",version:"4.7.95"},{name:"toy-brick-search-outline",hex:"F1293",version:"4.7.95"},{name:"track-light",hex:"F0914",version:"2.3.50"},{name:"trackpad",hex:"F07F8",version:"2.0.46"},{name:"trackpad-lock",hex:"F0933",version:"2.3.54"},{name:"tractor",hex:"F0892",version:"2.1.99"},{name:"tractor-variant",hex:"F14C4",version:"5.3.45"},{name:"trademark",hex:"F0A78",version:"2.6.95"},{name:"traffic-cone",hex:"F137C",version:"4.9.95"},{name:"traffic-light",hex:"F052B",version:"1.5.54"},{name:"traffic-light-outline",hex:"F182A",version:"6.1.95"},{name:"train",hex:"F052C",version:"1.5.54"},{name:"train-car",hex:"F0BD8",version:"3.0.39"},{name:"train-car-passenger",hex:"F1733",version:"5.9.55"},{name:"train-car-passenger-door",hex:"F1734",version:"5.9.55"},{name:"train-car-passenger-door-open",hex:"F1735",version:"5.9.55"},{name:"train-car-passenger-variant",hex:"F1736",version:"5.9.55"},{name:"train-variant",hex:"F08C4",version:"2.2.43"},{name:"tram",hex:"F052D",version:"1.5.54"},{name:"tram-side",hex:"F0FE7",version:"4.0.96"},{name:"transcribe",hex:"F052E",version:"1.5.54"},{name:"transcribe-close",hex:"F052F",version:"1.5.54"},{name:"transfer",hex:"F1065",version:"4.1.95"},{name:"transfer-down",hex:"F0DA1",version:"3.4.93"},{name:"transfer-left",hex:"F0DA2",version:"3.4.93"},{name:"transfer-right",hex:"F0530",version:"1.5.54"},{name:"transfer-up",hex:"F0DA3",version:"3.4.93"},{name:"transit-connection",hex:"F0D3C",version:"3.3.92"},{name:"transit-connection-horizontal",hex:"F1546",version:"5.4.55"},{name:"transit-connection-variant",hex:"F0D3D",version:"3.3.92"},{name:"transit-detour",hex:"F0F8B",version:"3.9.97"},{name:"transit-skip",hex:"F1515",version:"5.4.55"},{name:"transit-transfer",hex:"F06AE",version:"1.7.12"},{name:"transition",hex:"F0915",version:"2.3.50"},{name:"transition-masked",hex:"F0916",version:"2.3.50"},{name:"translate",hex:"F05CA",version:"1.5.54"},{name:"translate-off",hex:"F0E06",version:"3.5.94"},{name:"transmission-tower",hex:"F0D3E",version:"3.3.92"},{name:"transmission-tower-export",hex:"F192C",version:"6.4.95"},{name:"transmission-tower-import",hex:"F192D",version:"6.4.95"},{name:"trash-can",hex:"F0A79",version:"2.6.95"},{name:"trash-can-outline",hex:"F0A7A",version:"2.6.95"},{name:"tray",hex:"F1294",version:"4.7.95"},{name:"tray-alert",hex:"F1295",version:"4.7.95"},{name:"tray-arrow-down",hex:"F0120",version:"1.5.54"},{name:"tray-arrow-up",hex:"F011D",version:"1.5.54"},{name:"tray-full",hex:"F1296",version:"4.7.95"},{name:"tray-minus",hex:"F1297",version:"4.7.95"},{name:"tray-plus",hex:"F1298",version:"4.7.95"},{name:"tray-remove",hex:"F1299",version:"4.7.95"},{name:"treasure-chest",hex:"F0726",version:"1.8.36"},{name:"tree",hex:"F0531",version:"1.5.54"},{name:"tree-outline",hex:"F0E69",version:"3.6.95"},{name:"trello",hex:"F0532",version:"1.5.54"},{name:"trending-down",hex:"F0533",version:"1.5.54"},{name:"trending-neutral",hex:"F0534",version:"1.5.54"},{name:"trending-up",hex:"F0535",version:"1.5.54"},{name:"triangle",hex:"F0536",version:"1.5.54"},{name:"triangle-outline",hex:"F0537",version:"1.5.54"},{name:"triangle-wave",hex:"F147C",version:"5.2.45"},{name:"triforce",hex:"F0BD9",version:"3.0.39"},{name:"trophy",hex:"F0538",version:"1.5.54"},{name:"trophy-award",hex:"F0539",version:"1.5.54"},{name:"trophy-broken",hex:"F0DA4",version:"3.4.93"},{name:"trophy-outline",hex:"F053A",version:"1.5.54"},{name:"trophy-variant",hex:"F053B",version:"1.5.54"},{name:"trophy-variant-outline",hex:"F053C",version:"1.5.54"},{name:"truck",hex:"F053D",version:"1.5.54"},{name:"truck-cargo-container",hex:"F18D8",version:"6.3.95"},{name:"truck-check",hex:"F0CD4",version:"3.2.89"},{name:"truck-check-outline",hex:"F129A",version:"4.7.95"},{name:"truck-delivery",hex:"F053E",version:"1.5.54"},{name:"truck-delivery-outline",hex:"F129B",version:"4.7.95"},{name:"truck-fast",hex:"F0788",version:"1.9.32"},{name:"truck-fast-outline",hex:"F129C",version:"4.7.95"},{name:"truck-flatbed",hex:"F1891",version:"6.2.95"},{name:"truck-minus",hex:"F19AE",version:"6.5.95"},{name:"truck-minus-outline",hex:"F19BD",version:"6.5.95"},{name:"truck-outline",hex:"F129D",version:"4.7.95"},{name:"truck-plus",hex:"F19AD",version:"6.5.95"},{name:"truck-plus-outline",hex:"F19BC",version:"6.5.95"},{name:"truck-remove",hex:"F19AF",version:"6.5.95"},{name:"truck-remove-outline",hex:"F19BE",version:"6.5.95"},{name:"truck-snowflake",hex:"F19A6",version:"6.5.95"},{name:"truck-trailer",hex:"F0727",version:"1.8.36"},{name:"trumpet",hex:"F1096",version:"4.2.95"},{name:"tshirt-crew",hex:"F0A7B",version:"2.6.95"},{name:"tshirt-crew-outline",hex:"F053F",version:"1.5.54"},{name:"tshirt-v",hex:"F0A7C",version:"2.6.95"},{name:"tshirt-v-outline",hex:"F0540",version:"1.5.54"},{name:"tumble-dryer",hex:"F0917",version:"2.3.50"},{name:"tumble-dryer-alert",hex:"F11BA",version:"4.5.95"},{name:"tumble-dryer-off",hex:"F11BB",version:"4.5.95"},{name:"tune",hex:"F062E",version:"1.6.50"},{name:"tune-variant",hex:"F1542",version:"5.4.55"},{name:"tune-vertical",hex:"F066A",version:"1.6.50"},{name:"tune-vertical-variant",hex:"F1543",version:"5.4.55"},{name:"tunnel",hex:"F183D",version:"6.2.95"},{name:"tunnel-outline",hex:"F183E",version:"6.2.95"},{name:"turkey",hex:"F171B",version:"5.9.55"},{name:"turnstile",hex:"F0CD5",version:"3.2.89"},{name:"turnstile-outline",hex:"F0CD6",version:"3.2.89"},{name:"turtle",hex:"F0CD7",version:"3.2.89"},{name:"twitch",hex:"F0543",version:"1.5.54"},{name:"twitter",hex:"F0544",version:"1.5.54"},{name:"two-factor-authentication",hex:"F09AF",version:"2.4.85"},{name:"typewriter",hex:"F0F2D",version:"3.8.95"},{name:"ubisoft",hex:"F0BDA",version:"3.0.39"},{name:"ubuntu",hex:"F0548",version:"1.5.54"},{name:"ufo",hex:"F10C4",version:"4.2.95"},{name:"ufo-outline",hex:"F10C5",version:"4.2.95"},{name:"ultra-high-definition",hex:"F07F9",version:"2.0.46"},{name:"umbraco",hex:"F0549",version:"1.5.54"},{name:"umbrella",hex:"F054A",version:"1.5.54"},{name:"umbrella-beach",hex:"F188A",version:"6.2.95"},{name:"umbrella-beach-outline",hex:"F188B",version:"6.2.95"},{name:"umbrella-closed",hex:"F09B0",version:"2.4.85"},{name:"umbrella-closed-outline",hex:"F13E2",version:"5.1.45"},{name:"umbrella-closed-variant",hex:"F13E1",version:"5.1.45"},{name:"umbrella-outline",hex:"F054B",version:"1.5.54"},{name:"undo",hex:"F054C",version:"1.5.54"},{name:"undo-variant",hex:"F054D",version:"1.5.54"},{name:"unfold-less-horizontal",hex:"F054E",version:"1.5.54"},{name:"unfold-less-vertical",hex:"F0760",version:"1.9.32"},{name:"unfold-more-horizontal",hex:"F054F",version:"1.5.54"},{name:"unfold-more-vertical",hex:"F0761",version:"1.9.32"},{name:"ungroup",hex:"F0550",version:"1.5.54"},{name:"unicode",hex:"F0ED0",version:"3.7.94"},{name:"unicorn",hex:"F15C2",version:"5.6.55"},{name:"unicorn-variant",hex:"F15C3",version:"5.6.55"},{name:"unicycle",hex:"F15E5",version:"5.6.55"},{name:"unity",hex:"F06AF",version:"1.7.12"},{name:"unreal",hex:"F09B1",version:"2.4.85"},{name:"update",hex:"F06B0",version:"1.7.12"},{name:"upload",hex:"F0552",version:"1.5.54"},{name:"upload-lock",hex:"F1373",version:"4.9.95"},{name:"upload-lock-outline",hex:"F1374",version:"4.9.95"},{name:"upload-multiple",hex:"F083D",version:"2.1.19"},{name:"upload-network",hex:"F06F6",version:"1.8.36"},{name:"upload-network-outline",hex:"F0CD8",version:"3.2.89"},{name:"upload-off",hex:"F10C6",version:"4.2.95"},{name:"upload-off-outline",hex:"F10C7",version:"4.2.95"},{name:"upload-outline",hex:"F0E07",version:"3.5.94"},{name:"usb",hex:"F0553",version:"1.5.54"},{name:"usb-flash-drive",hex:"F129E",version:"4.7.95"},{name:"usb-flash-drive-outline",hex:"F129F",version:"4.7.95"},{name:"usb-port",hex:"F11F0",version:"4.5.95"},{name:"vacuum",hex:"F19A1",version:"6.5.95"},{name:"vacuum-outline",hex:"F19A2",version:"6.5.95"},{name:"valve",hex:"F1066",version:"4.1.95"},{name:"valve-closed",hex:"F1067",version:"4.1.95"},{name:"valve-open",hex:"F1068",version:"4.1.95"},{name:"van-passenger",hex:"F07FA",version:"2.0.46"},{name:"van-utility",hex:"F07FB",version:"2.0.46"},{name:"vanish",hex:"F07FC",version:"2.0.46"},{name:"vanish-quarter",hex:"F1554",version:"5.5.55"},{name:"vanity-light",hex:"F11E1",version:"4.5.95"},{name:"variable",hex:"F0AE7",version:"2.7.94"},{name:"variable-box",hex:"F1111",version:"4.3.95"},{name:"vector-arrange-above",hex:"F0554",version:"1.5.54"},{name:"vector-arrange-below",hex:"F0555",version:"1.5.54"},{name:"vector-bezier",hex:"F0AE8",version:"2.7.94"},{name:"vector-circle",hex:"F0556",version:"1.5.54"},{name:"vector-circle-variant",hex:"F0557",version:"1.5.54"},{name:"vector-combine",hex:"F0558",version:"1.5.54"},{name:"vector-curve",hex:"F0559",version:"1.5.54"},{name:"vector-difference",hex:"F055A",version:"1.5.54"},{name:"vector-difference-ab",hex:"F055B",version:"1.5.54"},{name:"vector-difference-ba",hex:"F055C",version:"1.5.54"},{name:"vector-ellipse",hex:"F0893",version:"2.1.99"},{name:"vector-intersection",hex:"F055D",version:"1.5.54"},{name:"vector-line",hex:"F055E",version:"1.5.54"},{name:"vector-link",hex:"F0FE8",version:"4.0.96"},{name:"vector-point",hex:"F055F",version:"1.5.54"},{name:"vector-polygon",hex:"F0560",version:"1.5.54"},{name:"vector-polygon-variant",hex:"F1856",version:"6.2.95"},{name:"vector-polyline",hex:"F0561",version:"1.5.54"},{name:"vector-polyline-edit",hex:"F1225",version:"4.6.95"},{name:"vector-polyline-minus",hex:"F1226",version:"4.6.95"},{name:"vector-polyline-plus",hex:"F1227",version:"4.6.95"},{name:"vector-polyline-remove",hex:"F1228",version:"4.6.95"},{name:"vector-radius",hex:"F074A",version:"1.9.32"},{name:"vector-rectangle",hex:"F05C6",version:"1.5.54"},{name:"vector-selection",hex:"F0562",version:"1.5.54"},{name:"vector-square",hex:"F0001",version:"1.5.54"},{name:"vector-square-close",hex:"F1857",version:"6.2.95"},{name:"vector-square-edit",hex:"F18D9",version:"6.3.95"},{name:"vector-square-minus",hex:"F18DA",version:"6.3.95"},{name:"vector-square-open",hex:"F1858",version:"6.2.95"},{name:"vector-square-plus",hex:"F18DB",version:"6.3.95"},{name:"vector-square-remove",hex:"F18DC",version:"6.3.95"},{name:"vector-triangle",hex:"F0563",version:"1.5.54"},{name:"vector-union",hex:"F0564",version:"1.5.54"},{name:"vhs",hex:"F0A1B",version:"2.5.94"},{name:"vibrate",hex:"F0566",version:"1.5.54"},{name:"vibrate-off",hex:"F0CD9",version:"3.2.89"},{name:"video",hex:"F0567",version:"1.5.54"},{name:"video-3d",hex:"F07FD",version:"2.0.46"},{name:"video-3d-off",hex:"F13D9",version:"5.1.45"},{name:"video-3d-variant",hex:"F0ED1",version:"3.7.94"},{name:"video-4k-box",hex:"F083E",version:"2.1.19"},{name:"video-account",hex:"F0919",version:"2.3.50"},{name:"video-box",hex:"F00FD",version:"1.5.54"},{name:"video-box-off",hex:"F00FE",version:"1.5.54"},{name:"video-check",hex:"F1069",version:"4.1.95"},{name:"video-check-outline",hex:"F106A",version:"4.1.95"},{name:"video-high-definition",hex:"F152E",version:"5.4.55"},{name:"video-image",hex:"F091A",version:"2.3.50"},{name:"video-input-antenna",hex:"F083F",version:"2.1.19"},{name:"video-input-component",hex:"F0840",version:"2.1.19"},{name:"video-input-hdmi",hex:"F0841",version:"2.1.19"},{name:"video-input-scart",hex:"F0F8C",version:"3.9.97"},{name:"video-input-svideo",hex:"F0842",version:"2.1.19"},{name:"video-marker",hex:"F19A9",version:"6.5.95"},{name:"video-marker-outline",hex:"F19AA",version:"6.5.95"},{name:"video-minus",hex:"F09B2",version:"2.4.85"},{name:"video-minus-outline",hex:"F02BA",version:"1.5.54"},{name:"video-off",hex:"F0568",version:"1.5.54"},{name:"video-off-outline",hex:"F0BDB",version:"3.0.39"},{name:"video-outline",hex:"F0BDC",version:"3.0.39"},{name:"video-plus",hex:"F09B3",version:"2.4.85"},{name:"video-plus-outline",hex:"F01D3",version:"1.5.54"},{name:"video-stabilization",hex:"F091B",version:"2.3.50"},{name:"video-switch",hex:"F0569",version:"1.5.54"},{name:"video-switch-outline",hex:"F0790",version:"2.0.46"},{name:"video-vintage",hex:"F0A1C",version:"2.5.94"},{name:"video-wireless",hex:"F0ED2",version:"3.7.94"},{name:"video-wireless-outline",hex:"F0ED3",version:"3.7.94"},{name:"view-agenda",hex:"F056A",version:"1.5.54"},{name:"view-agenda-outline",hex:"F11D8",version:"4.5.95"},{name:"view-array",hex:"F056B",version:"1.5.54"},{name:"view-array-outline",hex:"F1485",version:"5.3.45"},{name:"view-carousel",hex:"F056C",version:"1.5.54"},{name:"view-carousel-outline",hex:"F1486",version:"5.3.45"},{name:"view-column",hex:"F056D",version:"1.5.54"},{name:"view-column-outline",hex:"F1487",version:"5.3.45"},{name:"view-comfy",hex:"F0E6A",version:"3.6.95"},{name:"view-comfy-outline",hex:"F1488",version:"5.3.45"},{name:"view-compact",hex:"F0E6B",version:"3.6.95"},{name:"view-compact-outline",hex:"F0E6C",version:"3.6.95"},{name:"view-dashboard",hex:"F056E",version:"1.5.54"},{name:"view-dashboard-edit",hex:"F1947",version:"6.4.95"},{name:"view-dashboard-edit-outline",hex:"F1948",version:"6.4.95"},{name:"view-dashboard-outline",hex:"F0A1D",version:"2.5.94"},{name:"view-dashboard-variant",hex:"F0843",version:"2.1.19"},{name:"view-dashboard-variant-outline",hex:"F1489",version:"5.3.45"},{name:"view-day",hex:"F056F",version:"1.5.54"},{name:"view-day-outline",hex:"F148A",version:"5.3.45"},{name:"view-gallery",hex:"F1888",version:"6.2.95"},{name:"view-gallery-outline",hex:"F1889",version:"6.2.95"},{name:"view-grid",hex:"F0570",version:"1.5.54"},{name:"view-grid-outline",hex:"F11D9",version:"4.5.95"},{name:"view-grid-plus",hex:"F0F8D",version:"3.9.97"},{name:"view-grid-plus-outline",hex:"F11DA",version:"4.5.95"},{name:"view-headline",hex:"F0571",version:"1.5.54"},{name:"view-list",hex:"F0572",version:"1.5.54"},{name:"view-list-outline",hex:"F148B",version:"5.3.45"},{name:"view-module",hex:"F0573",version:"1.5.54"},{name:"view-module-outline",hex:"F148C",version:"5.3.45"},{name:"view-parallel",hex:"F0728",version:"1.8.36"},{name:"view-parallel-outline",hex:"F148D",version:"5.3.45"},{name:"view-quilt",hex:"F0574",version:"1.5.54"},{name:"view-quilt-outline",hex:"F148E",version:"5.3.45"},{name:"view-sequential",hex:"F0729",version:"1.8.36"},{name:"view-sequential-outline",hex:"F148F",version:"5.3.45"},{name:"view-split-horizontal",hex:"F0BCB",version:"3.0.39"},{name:"view-split-vertical",hex:"F0BCC",version:"3.0.39"},{name:"view-stream",hex:"F0575",version:"1.5.54"},{name:"view-stream-outline",hex:"F1490",version:"5.3.45"},{name:"view-week",hex:"F0576",version:"1.5.54"},{name:"view-week-outline",hex:"F1491",version:"5.3.45"},{name:"vimeo",hex:"F0577",version:"1.5.54"},{name:"violin",hex:"F060F",version:"1.5.54"},{name:"virtual-reality",hex:"F0894",version:"2.1.99"},{name:"virus",hex:"F13B6",version:"5.1.45"},{name:"virus-off",hex:"F18E1",version:"6.3.95"},{name:"virus-off-outline",hex:"F18E2",version:"6.3.95"},{name:"virus-outline",hex:"F13B7",version:"5.1.45"},{name:"vlc",hex:"F057C",version:"1.5.54"},{name:"voicemail",hex:"F057D",version:"1.5.54"},{name:"volleyball",hex:"F09B4",version:"2.4.85"},{name:"volume-high",hex:"F057E",version:"1.5.54"},{name:"volume-low",hex:"F057F",version:"1.5.54"},{name:"volume-medium",hex:"F0580",version:"1.5.54"},{name:"volume-minus",hex:"F075E",version:"1.9.32"},{name:"volume-mute",hex:"F075F",version:"1.9.32"},{name:"volume-off",hex:"F0581",version:"1.5.54"},{name:"volume-plus",hex:"F075D",version:"1.9.32"},{name:"volume-source",hex:"F1120",version:"4.3.95"},{name:"volume-variant-off",hex:"F0E08",version:"3.5.94"},{name:"volume-vibrate",hex:"F1121",version:"4.3.95"},{name:"vote",hex:"F0A1F",version:"2.5.94"},{name:"vote-outline",hex:"F0A20",version:"2.5.94"},{name:"vpn",hex:"F0582",version:"1.5.54"},{name:"vuejs",hex:"F0844",version:"2.1.19"},{name:"vuetify",hex:"F0E6D",version:"3.6.95"},{name:"walk",hex:"F0583",version:"1.5.54"},{name:"wall",hex:"F07FE",version:"2.0.46"},{name:"wall-sconce",hex:"F091C",version:"2.3.50"},{name:"wall-sconce-flat",hex:"F091D",version:"2.3.50"},{name:"wall-sconce-flat-outline",hex:"F17C9",version:"6.1.95"},{name:"wall-sconce-flat-variant",hex:"F041C",version:"1.5.54"},{name:"wall-sconce-flat-variant-outline",hex:"F17CA",version:"6.1.95"},{name:"wall-sconce-outline",hex:"F17CB",version:"6.1.95"},{name:"wall-sconce-round",hex:"F0748",version:"1.9.32"},{name:"wall-sconce-round-outline",hex:"F17CC",version:"6.1.95"},{name:"wall-sconce-round-variant",hex:"F091E",version:"2.3.50"},{name:"wall-sconce-round-variant-outline",hex:"F17CD",version:"6.1.95"},{name:"wallet",hex:"F0584",version:"1.5.54"},{name:"wallet-giftcard",hex:"F0585",version:"1.5.54"},{name:"wallet-membership",hex:"F0586",version:"1.5.54"},{name:"wallet-outline",hex:"F0BDD",version:"3.0.39"},{name:"wallet-plus",hex:"F0F8E",version:"3.9.97"},{name:"wallet-plus-outline",hex:"F0F8F",version:"3.9.97"},{name:"wallet-travel",hex:"F0587",version:"1.5.54"},{name:"wallpaper",hex:"F0E09",version:"3.5.94"},{name:"wan",hex:"F0588",version:"1.5.54"},{name:"wardrobe",hex:"F0F90",version:"3.9.97"},{name:"wardrobe-outline",hex:"F0F91",version:"3.9.97"},{name:"warehouse",hex:"F0F81",version:"3.9.97"},{name:"washing-machine",hex:"F072A",version:"1.8.36"},{name:"washing-machine-alert",hex:"F11BC",version:"4.5.95"},{name:"washing-machine-off",hex:"F11BD",version:"4.5.95"},{name:"watch",hex:"F0589",version:"1.5.54"},{name:"watch-export",hex:"F058A",version:"1.5.54"},{name:"watch-export-variant",hex:"F0895",version:"2.1.99"},{name:"watch-import",hex:"F058B",version:"1.5.54"},{name:"watch-import-variant",hex:"F0896",version:"2.1.99"},{name:"watch-variant",hex:"F0897",version:"2.1.99"},{name:"watch-vibrate",hex:"F06B1",version:"1.7.12"},{name:"watch-vibrate-off",hex:"F0CDA",version:"3.2.89"},{name:"water",hex:"F058C",version:"1.5.54"},{name:"water-alert",hex:"F1502",version:"5.4.55"},{name:"water-alert-outline",hex:"F1503",version:"5.4.55"},{name:"water-boiler",hex:"F0F92",version:"3.9.97"},{name:"water-boiler-alert",hex:"F11B3",version:"4.5.95"},{name:"water-boiler-off",hex:"F11B4",version:"4.5.95"},{name:"water-check",hex:"F1504",version:"5.4.55"},{name:"water-check-outline",hex:"F1505",version:"5.4.55"},{name:"water-circle",hex:"F1806",version:"6.1.95"},{name:"water-minus",hex:"F1506",version:"5.4.55"},{name:"water-minus-outline",hex:"F1507",version:"5.4.55"},{name:"water-off",hex:"F058D",version:"1.5.54"},{name:"water-off-outline",hex:"F1508",version:"5.4.55"},{name:"water-opacity",hex:"F1855",version:"6.2.95"},{name:"water-outline",hex:"F0E0A",version:"3.5.94"},{name:"water-percent",hex:"F058E",version:"1.5.54"},{name:"water-percent-alert",hex:"F1509",version:"5.4.55"},{name:"water-plus",hex:"F150A",version:"5.4.55"},{name:"water-plus-outline",hex:"F150B",version:"5.4.55"},{name:"water-polo",hex:"F12A0",version:"4.7.95"},{name:"water-pump",hex:"F058F",version:"1.5.54"},{name:"water-pump-off",hex:"F0F93",version:"3.9.97"},{name:"water-remove",hex:"F150C",version:"5.4.55"},{name:"water-remove-outline",hex:"F150D",version:"5.4.55"},{name:"water-sync",hex:"F17C6",version:"6.1.95"},{name:"water-well",hex:"F106B",version:"4.1.95"},{name:"water-well-outline",hex:"F106C",version:"4.1.95"},{name:"waterfall",hex:"F1849",version:"6.2.95"},{name:"watering-can",hex:"F1481",version:"5.3.45"},{name:"watering-can-outline",hex:"F1482",version:"5.3.45"},{name:"watermark",hex:"F0612",version:"1.5.54"},{name:"wave",hex:"F0F2E",version:"3.8.95"},{name:"waveform",hex:"F147D",version:"5.2.45"},{name:"waves",hex:"F078D",version:"1.9.32"},{name:"waves-arrow-left",hex:"F1859",version:"6.2.95"},{name:"waves-arrow-right",hex:"F185A",version:"6.2.95"},{name:"waves-arrow-up",hex:"F185B",version:"6.2.95"},{name:"waze",hex:"F0BDE",version:"3.0.39"},{name:"weather-cloudy",hex:"F0590",version:"1.5.54"},{name:"weather-cloudy-alert",hex:"F0F2F",version:"3.8.95"},{name:"weather-cloudy-arrow-right",hex:"F0E6E",version:"3.6.95"},{name:"weather-cloudy-clock",hex:"F18F6",version:"6.3.95"},{name:"weather-fog",hex:"F0591",version:"1.5.54"},{name:"weather-hail",hex:"F0592",version:"1.5.54"},{name:"weather-hazy",hex:"F0F30",version:"3.8.95"},{name:"weather-hurricane",hex:"F0898",version:"2.1.99"},{name:"weather-lightning",hex:"F0593",version:"1.5.54"},{name:"weather-lightning-rainy",hex:"F067E",version:"1.7.12"},{name:"weather-night",hex:"F0594",version:"1.5.54"},{name:"weather-night-partly-cloudy",hex:"F0F31",version:"3.8.95"},{name:"weather-partly-cloudy",hex:"F0595",version:"1.5.54"},{name:"weather-partly-lightning",hex:"F0F32",version:"3.8.95"},{name:"weather-partly-rainy",hex:"F0F33",version:"3.8.95"},{name:"weather-partly-snowy",hex:"F0F34",version:"3.8.95"},{name:"weather-partly-snowy-rainy",hex:"F0F35",version:"3.8.95"},{name:"weather-pouring",hex:"F0596",version:"1.5.54"},{name:"weather-rainy",hex:"F0597",version:"1.5.54"},{name:"weather-snowy",hex:"F0598",version:"1.5.54"},{name:"weather-snowy-heavy",hex:"F0F36",version:"3.8.95"},{name:"weather-snowy-rainy",hex:"F067F",version:"1.7.12"},{name:"weather-sunny",hex:"F0599",version:"1.5.54"},{name:"weather-sunny-alert",hex:"F0F37",version:"3.8.95"},{name:"weather-sunny-off",hex:"F14E4",version:"5.4.55"},{name:"weather-sunset",hex:"F059A",version:"1.5.54"},{name:"weather-sunset-down",hex:"F059B",version:"1.5.54"},{name:"weather-sunset-up",hex:"F059C",version:"1.5.54"},{name:"weather-tornado",hex:"F0F38",version:"3.8.95"},{name:"weather-windy",hex:"F059D",version:"1.5.54"},{name:"weather-windy-variant",hex:"F059E",version:"1.5.54"},{name:"web",hex:"F059F",version:"1.5.54"},{name:"web-box",hex:"F0F94",version:"3.9.97"},{name:"web-cancel",hex:"F1790",version:"6.1.95"},{name:"web-check",hex:"F0789",version:"1.9.32"},{name:"web-clock",hex:"F124A",version:"4.6.95"},{name:"web-minus",hex:"F10A0",version:"4.2.95"},{name:"web-off",hex:"F0A8E",version:"2.7.94"},{name:"web-plus",hex:"F0033",version:"1.5.54"},{name:"web-refresh",hex:"F1791",version:"6.1.95"},{name:"web-remove",hex:"F0551",version:"1.5.54"},{name:"web-sync",hex:"F1792",version:"6.1.95"},{name:"webcam",hex:"F05A0",version:"1.5.54"},{name:"webcam-off",hex:"F1737",version:"5.9.55"},{name:"webhook",hex:"F062F",version:"1.6.50"},{name:"webpack",hex:"F072B",version:"1.8.36"},{name:"webrtc",hex:"F1248",version:"4.6.95"},{name:"wechat",hex:"F0611",version:"1.5.54"},{name:"weight",hex:"F05A1",version:"1.5.54"},{name:"weight-gram",hex:"F0D3F",version:"3.3.92"},{name:"weight-kilogram",hex:"F05A2",version:"1.5.54"},{name:"weight-lifter",hex:"F115D",version:"4.4.95"},{name:"weight-pound",hex:"F09B5",version:"2.4.85"},{name:"whatsapp",hex:"F05A3",version:"1.5.54"},{name:"wheel-barrow",hex:"F14F2",version:"5.4.55"},{name:"wheelchair-accessibility",hex:"F05A4",version:"1.5.54"},{name:"whistle",hex:"F09B6",version:"2.4.85"},{name:"whistle-outline",hex:"F12BC",version:"4.8.95"},{name:"white-balance-auto",hex:"F05A5",version:"1.5.54"},{name:"white-balance-incandescent",hex:"F05A6",version:"1.5.54"},{name:"white-balance-iridescent",hex:"F05A7",version:"1.5.54"},{name:"white-balance-sunny",hex:"F05A8",version:"1.5.54"},{name:"widgets",hex:"F072C",version:"1.8.36"},{name:"widgets-outline",hex:"F1355",version:"4.9.95"},{name:"wifi",hex:"F05A9",version:"1.5.54"},{name:"wifi-alert",hex:"F16B5",version:"5.8.55"},{name:"wifi-arrow-down",hex:"F16B6",version:"5.8.55"},{name:"wifi-arrow-left",hex:"F16B7",version:"5.8.55"},{name:"wifi-arrow-left-right",hex:"F16B8",version:"5.8.55"},{name:"wifi-arrow-right",hex:"F16B9",version:"5.8.55"},{name:"wifi-arrow-up",hex:"F16BA",version:"5.8.55"},{name:"wifi-arrow-up-down",hex:"F16BB",version:"5.8.55"},{name:"wifi-cancel",hex:"F16BC",version:"5.8.55"},{name:"wifi-check",hex:"F16BD",version:"5.8.55"},{name:"wifi-cog",hex:"F16BE",version:"5.8.55"},{name:"wifi-lock",hex:"F16BF",version:"5.8.55"},{name:"wifi-lock-open",hex:"F16C0",version:"5.8.55"},{name:"wifi-marker",hex:"F16C1",version:"5.8.55"},{name:"wifi-minus",hex:"F16C2",version:"5.8.55"},{name:"wifi-off",hex:"F05AA",version:"1.5.54"},{name:"wifi-plus",hex:"F16C3",version:"5.8.55"},{name:"wifi-refresh",hex:"F16C4",version:"5.8.55"},{name:"wifi-remove",hex:"F16C5",version:"5.8.55"},{name:"wifi-settings",hex:"F16C6",version:"5.8.55"},{name:"wifi-star",hex:"F0E0B",version:"3.5.94"},{name:"wifi-strength-1",hex:"F091F",version:"2.3.50"},{name:"wifi-strength-1-alert",hex:"F0920",version:"2.3.50"},{name:"wifi-strength-1-lock",hex:"F0921",version:"2.3.50"},{name:"wifi-strength-1-lock-open",hex:"F16CB",version:"5.8.55"},{name:"wifi-strength-2",hex:"F0922",version:"2.3.50"},{name:"wifi-strength-2-alert",hex:"F0923",version:"2.3.50"},{name:"wifi-strength-2-lock",hex:"F0924",version:"2.3.50"},{name:"wifi-strength-2-lock-open",hex:"F16CC",version:"5.8.55"},{name:"wifi-strength-3",hex:"F0925",version:"2.3.50"},{name:"wifi-strength-3-alert",hex:"F0926",version:"2.3.50"},{name:"wifi-strength-3-lock",hex:"F0927",version:"2.3.50"},{name:"wifi-strength-3-lock-open",hex:"F16CD",version:"5.8.55"},{name:"wifi-strength-4",hex:"F0928",version:"2.3.50"},{name:"wifi-strength-4-alert",hex:"F0929",version:"2.3.50"},{name:"wifi-strength-4-lock",hex:"F092A",version:"2.3.50"},{name:"wifi-strength-4-lock-open",hex:"F16CE",version:"5.8.55"},{name:"wifi-strength-alert-outline",hex:"F092B",version:"2.3.50"},{name:"wifi-strength-lock-open-outline",hex:"F16CF",version:"5.8.55"},{name:"wifi-strength-lock-outline",hex:"F092C",version:"2.3.50"},{name:"wifi-strength-off",hex:"F092D",version:"2.3.50"},{name:"wifi-strength-off-outline",hex:"F092E",version:"2.3.50"},{name:"wifi-strength-outline",hex:"F092F",version:"2.3.50"},{name:"wifi-sync",hex:"F16C7",version:"5.8.55"},{name:"wikipedia",hex:"F05AC",version:"1.5.54"},{name:"wind-turbine",hex:"F0DA5",version:"3.4.93"},{name:"wind-turbine-alert",hex:"F19AB",version:"6.5.95"},{name:"wind-turbine-check",hex:"F19AC",version:"6.5.95"},{name:"window-close",hex:"F05AD",version:"1.5.54"},{name:"window-closed",hex:"F05AE",version:"1.5.54"},{name:"window-closed-variant",hex:"F11DB",version:"4.5.95"},{name:"window-maximize",hex:"F05AF",version:"1.5.54"},{name:"window-minimize",hex:"F05B0",version:"1.5.54"},{name:"window-open",hex:"F05B1",version:"1.5.54"},{name:"window-open-variant",hex:"F11DC",version:"4.5.95"},{name:"window-restore",hex:"F05B2",version:"1.5.54"},{name:"window-shutter",hex:"F111C",version:"4.3.95"},{name:"window-shutter-alert",hex:"F111D",version:"4.3.95"},{name:"window-shutter-open",hex:"F111E",version:"4.3.95"},{name:"windsock",hex:"F15FA",version:"5.6.55"},{name:"wiper",hex:"F0AE9",version:"2.7.94"},{name:"wiper-wash",hex:"F0DA6",version:"3.4.93"},{name:"wiper-wash-alert",hex:"F18DF",version:"6.3.95"},{name:"wizard-hat",hex:"F1477",version:"5.2.45"},{name:"wordpress",hex:"F05B4",version:"1.5.54"},{name:"wrap",hex:"F05B6",version:"1.5.54"},{name:"wrap-disabled",hex:"F0BDF",version:"3.0.39"},{name:"wrench",hex:"F05B7",version:"1.5.54"},{name:"wrench-clock",hex:"F19A3",version:"6.5.95"},{name:"wrench-outline",hex:"F0BE0",version:"3.0.39"},{name:"xamarin",hex:"F0845",version:"2.1.19"},{name:"xml",hex:"F05C0",version:"1.5.54"},{name:"xmpp",hex:"F07FF",version:"2.0.46"},{name:"yahoo",hex:"F0B4F",version:"2.8.94"},{name:"yeast",hex:"F05C1",version:"1.5.54"},{name:"yin-yang",hex:"F0680",version:"1.7.12"},{name:"yoga",hex:"F117C",version:"4.4.95"},{name:"youtube",hex:"F05C3",version:"1.5.54"},{name:"youtube-gaming",hex:"F0848",version:"2.1.19"},{name:"youtube-studio",hex:"F0847",version:"2.1.19"},{name:"youtube-subscription",hex:"F0D40",version:"3.3.92"},{name:"youtube-tv",hex:"F0448",version:"1.5.54"},{name:"yurt",hex:"F1516",version:"5.4.55"},{name:"z-wave",hex:"F0AEA",version:"2.7.94"},{name:"zend",hex:"F0AEB",version:"2.7.94"},{name:"zigbee",hex:"F0D41",version:"3.3.92"},{name:"zip-box",hex:"F05C4",version:"1.5.54"},{name:"zip-box-outline",hex:"F0FFA",version:"4.0.96"},{name:"zip-disk",hex:"F0A23",version:"2.5.94"},{name:"zodiac-aquarius",hex:"F0A7D",version:"2.6.95"},{name:"zodiac-aries",hex:"F0A7E",version:"2.6.95"},{name:"zodiac-cancer",hex:"F0A7F",version:"2.6.95"},{name:"zodiac-capricorn",hex:"F0A80",version:"2.6.95"},{name:"zodiac-gemini",hex:"F0A81",version:"2.6.95"},{name:"zodiac-leo",hex:"F0A82",version:"2.6.95"},{name:"zodiac-libra",hex:"F0A83",version:"2.6.95"},{name:"zodiac-pisces",hex:"F0A84",version:"2.6.95"},{name:"zodiac-sagittarius",hex:"F0A85",version:"2.6.95"},{name:"zodiac-scorpio",hex:"F0A86",version:"2.6.95"},{name:"zodiac-taurus",hex:"F0A87",version:"2.6.95"},{name:"zodiac-virgo",hex:"F0A88",version:"2.6.95"}];
+ icons.push({ "name": "blank", "hex": "f68c" });
+ Array.from(icons).forEach(function (icon) {
+ var item = getIconItem(icon, isNew(icon));
+ document.getElementById('icons').appendChild(item);
+ if (isNew(icon)) {
+ var newItem = getIconItem(icon, false, false);
+ document.getElementById('newIcons').appendChild(newItem);
+ newIconsCount++;
+ }
+ iconsCount++;
+ });
+})();
\ No newline at end of file
diff --git a/public/build/js/pages/modal.init.js b/public/build/js/pages/modal.init.js
new file mode 100644
index 0000000..9ea4d3c
--- /dev/null
+++ b/public/build/js/pages/modal.init.js
@@ -0,0 +1,27 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Modal init js
+*/
+
+
+var varyingcontentModal = document.getElementById('varyingcontentModal')
+if (varyingcontentModal) {
+ varyingcontentModal.addEventListener('show.bs.modal', function (event) {
+ // Button that triggered the modal
+ var button = event.relatedTarget
+ // Extract info from data-bs-* attributes
+ var recipient = button.getAttribute('data-bs-whatever')
+ // If necessary, you could initiate an AJAX request here
+ // and then do the updating in a callback.
+ //
+ // Update the modal's content.
+ var modalTitle = varyingcontentModal.querySelector('.modal-title')
+ var modalBodyInput = varyingcontentModal.querySelector('.modal-body input')
+
+ modalTitle.textContent = 'New message to ' + recipient
+ modalBodyInput.value = recipient
+ })
+}
\ No newline at end of file
diff --git a/public/build/js/pages/nestable.init.js b/public/build/js/pages/nestable.init.js
new file mode 100644
index 0000000..9a5e280
--- /dev/null
+++ b/public/build/js/pages/nestable.init.js
@@ -0,0 +1,35 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: nestable init js
+*/
+
+// Nested sortable demo
+var nestedSortables = [].slice.call(document.querySelectorAll('.nested-sortable'));
+
+// Loop through each nested sortable element
+if (nestedSortables)
+ Array.from(nestedSortables).forEach(function (nestedSort){
+ new Sortable(nestedSort, {
+ group: 'nested',
+ animation: 150,
+ fallbackOnBody: true,
+ swapThreshold: 0.65
+ });
+ });
+
+// Nested sortable handle demo
+var nestedSortablesHandles = [].slice.call(document.querySelectorAll('.nested-sortable-handle'));
+if (nestedSortablesHandles)
+ // Loop through each nested sortable element
+ Array.from(nestedSortablesHandles).forEach(function (nestedSortHandle){
+ new Sortable(nestedSortHandle, {
+ handle: '.handle',
+ group: 'nested',
+ animation: 150,
+ fallbackOnBody: true,
+ swapThreshold: 0.65
+ });
+ });
\ No newline at end of file
diff --git a/public/build/js/pages/notifications.init.js b/public/build/js/pages/notifications.init.js
new file mode 100644
index 0000000..e119cb6
--- /dev/null
+++ b/public/build/js/pages/notifications.init.js
@@ -0,0 +1,60 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Notifications init js
+*/
+
+// Bordered Toast
+var toastTrigger2 = document.getElementById("borderedToast1Btn");
+var toastLiveExample2 = document.getElementById("borderedToast1");
+if (toastTrigger2 && toastLiveExample2) {
+ toastTrigger2.addEventListener("click", function () {
+ var toast = new bootstrap.Toast(toastLiveExample2);
+ toast.show();
+ });
+}
+
+var toastTrigger3 = document.getElementById("borderedToast2Btn");
+var toastLiveExample3 = document.getElementById("borderedToast2");
+if (toastTrigger3 && toastLiveExample3) {
+ toastTrigger3.addEventListener("click", function () {
+ var toast = new bootstrap.Toast(toastLiveExample3);
+ toast.show();
+ });
+}
+
+var toastTrigger4 = document.getElementById("borderedTost3Btn");
+var toastLiveExample4 = document.getElementById("borderedTost3");
+if (toastTrigger4 && toastLiveExample4) {
+ toastTrigger4.addEventListener("click", function () {
+ var toast = new bootstrap.Toast(toastLiveExample4);
+ toast.show();
+ });
+}
+
+var toastTrigger5 = document.getElementById("borderedToast4Btn");
+var toastLiveExample5 = document.getElementById("borderedToast4");
+if (toastTrigger5 && toastLiveExample5) {
+ toastTrigger5.addEventListener("click", function () {
+ var toast = new bootstrap.Toast(toastLiveExample5);
+ toast.show();
+ });
+}
+
+// placement toast
+toastPlacement = document.getElementById("toastPlacement");
+toastPlacement && document.getElementById("selectToastPlacement").addEventListener("change", function () {
+ toastPlacement.dataset.originalClass ||
+ (toastPlacement.dataset.originalClass = toastPlacement.className),
+ (toastPlacement.className =
+ toastPlacement.dataset.originalClass + " " + this.value);
+}),
+
+Array.from(document.querySelectorAll(".bd-example .toast")).forEach(function (a) {
+ var b = new bootstrap.Toast(a, {
+ autohide: !1
+ });
+ b.show();
+});
\ No newline at end of file
diff --git a/public/build/js/pages/passowrd-create.init.js b/public/build/js/pages/passowrd-create.init.js
new file mode 100644
index 0000000..d19c0df
--- /dev/null
+++ b/public/build/js/pages/passowrd-create.init.js
@@ -0,0 +1,94 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Password addon Js File
+*/
+
+// password addon
+Array.from(document.querySelectorAll("form .auth-pass-inputgroup")).forEach(function (item) {
+ Array.from(item.querySelectorAll(".password-addon")).forEach(function (subitem) {
+ subitem.addEventListener("click", function (event) {
+ var passwordInput = item.querySelector(".password-input");
+ if (passwordInput.type === "password") {
+ passwordInput.type = "text";
+ } else {
+ passwordInput.type = "password";
+ }
+ });
+ });
+ });
+
+// passowrd match
+var password = document.getElementById("password-input"),
+ confirm_password = document.getElementById("confirm-password-input");
+
+function validatePassword() {
+ if (password.value != confirm_password.value) {
+ confirm_password.setCustomValidity("Passwords Don't Match");
+ } else {
+ confirm_password.setCustomValidity("");
+ }
+}
+
+//Password validation
+password.onchange = validatePassword;
+
+var myInput = document.getElementById("password-input");
+var letter = document.getElementById("pass-lower");
+var capital = document.getElementById("pass-upper");
+var number = document.getElementById("pass-number");
+var length = document.getElementById("pass-length");
+
+// When the user clicks on the password field, show the message box
+myInput.onfocus = function () {
+ document.getElementById("password-contain").style.display = "block";
+};
+
+// When the user clicks outside of the password field, hide the password-contain box
+myInput.onblur = function () {
+ document.getElementById("password-contain").style.display = "none";
+};
+
+// When the user starts to type something inside the password field
+myInput.onkeyup = function () {
+ // Validate lowercase letters
+ var lowerCaseLetters = /[a-z]/g;
+ if (myInput.value.match(lowerCaseLetters)) {
+ letter.classList.remove("invalid");
+ letter.classList.add("valid");
+ } else {
+ letter.classList.remove("valid");
+ letter.classList.add("invalid");
+ }
+
+ // Validate capital letters
+ var upperCaseLetters = /[A-Z]/g;
+ if (myInput.value.match(upperCaseLetters)) {
+ capital.classList.remove("invalid");
+ capital.classList.add("valid");
+ } else {
+ capital.classList.remove("valid");
+ capital.classList.add("invalid");
+ }
+
+ // Validate numbers
+ var numbers = /[0-9]/g;
+ if (myInput.value.match(numbers)) {
+ number.classList.remove("invalid");
+ number.classList.add("valid");
+ } else {
+ number.classList.remove("valid");
+ number.classList.add("invalid");
+ }
+
+ // Validate length
+ if (myInput.value.length >= 8) {
+ length.classList.remove("invalid");
+ length.classList.add("valid");
+ } else {
+ length.classList.remove("valid");
+ length.classList.add("invalid");
+ }
+};
\ No newline at end of file
diff --git a/public/build/js/pages/password-addon.init.js b/public/build/js/pages/password-addon.init.js
new file mode 100644
index 0000000..495c685
--- /dev/null
+++ b/public/build/js/pages/password-addon.init.js
@@ -0,0 +1,21 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Password addon Js File
+*/
+
+// password addon
+Array.from(document.querySelectorAll("form .auth-pass-inputgroup")).forEach(function (item) {
+ Array.from(item.querySelectorAll(".password-addon")).forEach(function (subitem) {
+ subitem.addEventListener("click", function (event) {
+ var passwordInput = item.querySelector(".password-input");
+ if (passwordInput.type === "password") {
+ passwordInput.type = "text";
+ } else {
+ passwordInput.type = "password";
+ }
+ });
+ });
+});
\ No newline at end of file
diff --git a/public/build/js/pages/password-match.init.js b/public/build/js/pages/password-match.init.js
new file mode 100644
index 0000000..5bdaf71
--- /dev/null
+++ b/public/build/js/pages/password-match.init.js
@@ -0,0 +1,80 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: password-match init js
+*/
+
+// passowrd match
+var password = document.getElementById("password-input"),
+ confirm_password = document.getElementById("confirm-password-input");
+
+function validatePassword() {
+ if (password.value != confirm_password.value) {
+ confirm_password.setCustomValidity("Passwords Don't Match");
+ } else {
+ confirm_password.setCustomValidity("");
+ }
+}
+
+//Password validation
+password.onchange = validatePassword;
+
+var myInput = document.getElementById("password-input");
+var letter = document.getElementById("pass-lower");
+var capital = document.getElementById("pass-upper");
+var number = document.getElementById("pass-number");
+var length = document.getElementById("pass-length");
+
+// When the user clicks on the password field, show the message box
+myInput.onfocus = function () {
+ document.getElementById("password-contain").style.display = "block";
+};
+
+// When the user clicks outside of the password field, hide the password-contain box
+myInput.onblur = function () {
+ document.getElementById("password-contain").style.display = "none";
+};
+
+// When the user starts to type something inside the password field
+myInput.onkeyup = function () {
+ // Validate lowercase letters
+ var lowerCaseLetters = /[a-z]/g;
+ if (myInput.value.match(lowerCaseLetters)) {
+ letter.classList.remove("invalid");
+ letter.classList.add("valid");
+ } else {
+ letter.classList.remove("valid");
+ letter.classList.add("invalid");
+ }
+
+ // Validate capital letters
+ var upperCaseLetters = /[A-Z]/g;
+ if (myInput.value.match(upperCaseLetters)) {
+ capital.classList.remove("invalid");
+ capital.classList.add("valid");
+ } else {
+ capital.classList.remove("valid");
+ capital.classList.add("invalid");
+ }
+
+ // Validate numbers
+ var numbers = /[0-9]/g;
+ if (myInput.value.match(numbers)) {
+ number.classList.remove("invalid");
+ number.classList.add("valid");
+ } else {
+ number.classList.remove("valid");
+ number.classList.add("invalid");
+ }
+
+ // Validate length
+ if (myInput.value.length >= 8) {
+ length.classList.remove("invalid");
+ length.classList.add("valid");
+ } else {
+ length.classList.remove("valid");
+ length.classList.add("invalid");
+ }
+};
\ No newline at end of file
diff --git a/public/build/js/pages/phosphor-icons.init.js b/public/build/js/pages/phosphor-icons.init.js
new file mode 100644
index 0000000..e8da75f
--- /dev/null
+++ b/public/build/js/pages/phosphor-icons.init.js
@@ -0,0 +1,39 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://themesbrand.com/
+Contact: themesbrand@gmail.com
+File: Material design Init Js File
+*/
+
+// icons
+
+var icons = { "ph-activity-thin": 59906, "ph-address-book-thin": 59907, "ph-airplane-in-flight-thin": 59908, "ph-airplane-landing-thin": 59909, "ph-airplane-takeoff-thin": 59910, "ph-airplane-thin": 59911, "ph-airplane-tilt-thin": 59912, "ph-airplay-thin": 59913, "ph-alarm-thin": 59914, "ph-alien-thin": 59915, "ph-align-bottom-simple-thin": 59916, "ph-align-bottom-thin": 59917, "ph-align-center-horizontal-simple-thin": 59918, "ph-align-center-horizontal-thin": 59919, "ph-align-center-vertical-simple-thin": 59920, "ph-align-center-vertical-thin": 59921, "ph-align-left-simple-thin": 59922, "ph-align-left-thin": 59923, "ph-align-right-simple-thin": 59924, "ph-align-right-thin": 59925, "ph-align-top-simple-thin": 59926, "ph-align-top-thin": 59927, "ph-anchor-simple-thin": 59928, "ph-anchor-thin": 59929, "ph-android-logo-thin": 59930, "ph-angular-logo-thin": 59931, "ph-aperture-thin": 59932, "ph-app-store-logo-thin": 59933, "ph-app-window-thin": 59934, "ph-apple-logo-thin": 59935, "ph-apple-podcasts-logo-thin": 59936, "ph-archive-box-thin": 59937, "ph-archive-thin": 59938, "ph-archive-tray-thin": 59939, "ph-armchair-thin": 59940, "ph-arrow-arc-left-thin": 59941, "ph-arrow-arc-right-thin": 59942, "ph-arrow-bend-double-up-left-thin": 59943, "ph-arrow-bend-double-up-right-thin": 59944, "ph-arrow-bend-down-left-thin": 59945, "ph-arrow-bend-down-right-thin": 59946, "ph-arrow-bend-left-down-thin": 59947, "ph-arrow-bend-left-up-thin": 59948, "ph-arrow-bend-right-down-thin": 59949, "ph-arrow-bend-right-up-thin": 59950, "ph-arrow-bend-up-left-thin": 59951, "ph-arrow-bend-up-right-thin": 59952, "ph-arrow-circle-down-left-thin": 59953, "ph-arrow-circle-down-right-thin": 59954, "ph-arrow-circle-down-thin": 59955, "ph-arrow-circle-left-thin": 59956, "ph-arrow-circle-right-thin": 59957, "ph-arrow-circle-up-left-thin": 59958, "ph-arrow-circle-up-right-thin": 59959, "ph-arrow-circle-up-thin": 59960, "ph-arrow-clockwise-thin": 59961, "ph-arrow-counter-clockwise-thin": 59962, "ph-arrow-down-left-thin": 59963, "ph-arrow-down-right-thin": 59964, "ph-arrow-down-thin": 59965, "ph-arrow-elbow-down-left-thin": 59966, "ph-arrow-elbow-down-right-thin": 59967, "ph-arrow-elbow-left-down-thin": 59968, "ph-arrow-elbow-left-thin": 59969, "ph-arrow-elbow-left-up-thin": 59970, "ph-arrow-elbow-right-down-thin": 59971, "ph-arrow-elbow-right-thin": 59972, "ph-arrow-elbow-right-up-thin": 59973, "ph-arrow-elbow-up-left-thin": 59974, "ph-arrow-elbow-up-right-thin": 59975, "ph-arrow-fat-down-thin": 59976, "ph-arrow-fat-left-thin": 59977, "ph-arrow-fat-line-down-thin": 59978, "ph-arrow-fat-line-left-thin": 59979, "ph-arrow-fat-line-right-thin": 59980, "ph-arrow-fat-line-up-thin": 59981, "ph-arrow-fat-lines-down-thin": 59982, "ph-arrow-fat-lines-left-thin": 59983, "ph-arrow-fat-lines-right-thin": 59984, "ph-arrow-fat-lines-up-thin": 59985, "ph-arrow-fat-right-thin": 59986, "ph-arrow-fat-up-thin": 59987, "ph-arrow-left-thin": 59988, "ph-arrow-line-down-left-thin": 59989, "ph-arrow-line-down-right-thin": 59990, "ph-arrow-line-down-thin": 59991, "ph-arrow-line-left-thin": 59992, "ph-arrow-line-right-thin": 59993, "ph-arrow-line-up-left-thin": 59994, "ph-arrow-line-up-right-thin": 59995, "ph-arrow-line-up-thin": 59996, "ph-arrow-right-thin": 59997, "ph-arrow-square-down-left-thin": 59998, "ph-arrow-square-down-right-thin": 59999, "ph-arrow-square-down-thin": 60000, "ph-arrow-square-in-thin": 60001, "ph-arrow-square-left-thin": 60002, "ph-arrow-square-out-thin": 60003, "ph-arrow-square-right-thin": 60004, "ph-arrow-square-up-left-thin": 60005, "ph-arrow-square-up-right-thin": 60006, "ph-arrow-square-up-thin": 60007, "ph-arrow-u-down-left-thin": 60008, "ph-arrow-u-down-right-thin": 60009, "ph-arrow-u-left-down-thin": 60010, "ph-arrow-u-left-up-thin": 60011, "ph-arrow-u-right-down-thin": 60012, "ph-arrow-u-right-up-thin": 60013, "ph-arrow-u-up-left-thin": 60014, "ph-arrow-u-up-right-thin": 60015, "ph-arrow-up-left-thin": 60016, "ph-arrow-up-right-thin": 60017, "ph-arrow-up-thin": 60018, "ph-arrows-clockwise-thin": 60019, "ph-arrows-counter-clockwise-thin": 60020, "ph-arrows-down-up-thin": 60021, "ph-arrows-horizontal-thin": 60022, "ph-arrows-in-cardinal-thin": 60023, "ph-arrows-in-line-horizontal-thin": 60024, "ph-arrows-in-line-vertical-thin": 60025, "ph-arrows-in-simple-thin": 60026, "ph-arrows-in-thin": 60027, "ph-arrows-left-right-thin": 60028, "ph-arrows-out-cardinal-thin": 60029, "ph-arrows-out-line-horizontal-thin": 60030, "ph-arrows-out-line-vertical-thin": 60031, "ph-arrows-out-simple-thin": 60032, "ph-arrows-out-thin": 60033, "ph-arrows-vertical-thin": 60034, "ph-article-medium-thin": 60035, "ph-article-ny-times-thin": 60036, "ph-article-thin": 60037, "ph-asterisk-simple-thin": 60038, "ph-asterisk-thin": 60039, "ph-at-thin": 60040, "ph-atom-thin": 60041, "ph-baby-thin": 60042, "ph-backpack-thin": 60043, "ph-backspace-thin": 60044, "ph-bag-simple-thin": 60045, "ph-bag-thin": 60046, "ph-balloon-thin": 60047, "ph-bandaids-thin": 60048, "ph-bank-thin": 60049, "ph-barbell-thin": 60050, "ph-barcode-thin": 60051, "ph-barricade-thin": 60052, "ph-baseball-thin": 60053, "ph-basketball-thin": 60054, "ph-bathtub-thin": 60055, "ph-battery-charging-thin": 60056, "ph-battery-charging-vertical-thin": 60057, "ph-battery-empty-thin": 60058, "ph-battery-full-thin": 60059, "ph-battery-high-thin": 60060, "ph-battery-low-thin": 60061, "ph-battery-medium-thin": 60062, "ph-battery-plus-thin": 60063, "ph-battery-warning-thin": 60064, "ph-battery-warning-vertical-thin": 60065, "ph-bed-thin": 60066, "ph-beer-bottle-thin": 60067, "ph-behance-logo-thin": 60068, "ph-bell-ringing-thin": 60069, "ph-bell-simple-ringing-thin": 60070, "ph-bell-simple-slash-thin": 60071, "ph-bell-simple-thin": 60072, "ph-bell-simple-z-thin": 60073, "ph-bell-slash-thin": 60074, "ph-bell-thin": 60075, "ph-bell-z-thin": 60076, "ph-bezier-curve-thin": 60077, "ph-bicycle-thin": 60078, "ph-binoculars-thin": 60079, "ph-bird-thin": 60080, "ph-bluetooth-connected-thin": 60081, "ph-bluetooth-slash-thin": 60082, "ph-bluetooth-thin": 60083, "ph-bluetooth-x-thin": 60084, "ph-boat-thin": 60085, "ph-book-bookmark-thin": 60086, "ph-book-open-thin": 60087, "ph-book-thin": 60088, "ph-bookmark-simple-thin": 60089, "ph-bookmark-thin": 60090, "ph-bookmarks-simple-thin": 60091, "ph-bookmarks-thin": 60092, "ph-books-thin": 60093, "ph-bounding-box-thin": 60094, "ph-brackets-angle-thin": 60095, "ph-brackets-curly-thin": 60096, "ph-brackets-round-thin": 60097, "ph-brackets-square-thin": 60098, "ph-brain-thin": 60099, "ph-brandy-thin": 60100, "ph-briefcase-metal-thin": 60101, "ph-briefcase-thin": 60102, "ph-broadcast-thin": 60103, "ph-browser-thin": 60104, "ph-browsers-thin": 60105, "ph-bug-beetle-thin": 60106, "ph-bug-droid-thin": 60107, "ph-bug-thin": 60108, "ph-buildings-thin": 60109, "ph-bus-thin": 60110, "ph-butterfly-thin": 60111, "ph-cactus-thin": 60112, "ph-cake-thin": 60113, "ph-calculator-thin": 60114, "ph-calendar-blank-thin": 60115, "ph-calendar-check-thin": 60116, "ph-calendar-plus-thin": 60117, "ph-calendar-thin": 60118, "ph-calendar-x-thin": 60119, "ph-camera-rotate-thin": 60120, "ph-camera-slash-thin": 60121, "ph-camera-thin": 60122, "ph-campfire-thin": 60123, "ph-car-simple-thin": 60124, "ph-car-thin": 60125, "ph-cardholder-thin": 60126, "ph-cards-thin": 60127, "ph-caret-circle-double-down-thin": 60128, "ph-caret-circle-double-left-thin": 60129, "ph-caret-circle-double-right-thin": 60130, "ph-caret-circle-double-up-thin": 60131, "ph-caret-circle-down-thin": 60132, "ph-caret-circle-left-thin": 60133, "ph-caret-circle-right-thin": 60134, "ph-caret-circle-up-thin": 60135, "ph-caret-double-down-thin": 60136, "ph-caret-double-left-thin": 60137, "ph-caret-double-right-thin": 60138, "ph-caret-double-up-thin": 60139, "ph-caret-down-thin": 60140, "ph-caret-left-thin": 60141, "ph-caret-right-thin": 60142, "ph-caret-up-thin": 60143, "ph-cat-thin": 60144, "ph-cell-signal-full-thin": 60145, "ph-cell-signal-high-thin": 60146, "ph-cell-signal-low-thin": 60147, "ph-cell-signal-medium-thin": 60148, "ph-cell-signal-none-thin": 60149, "ph-cell-signal-slash-thin": 60150, "ph-cell-signal-x-thin": 60151, "ph-chalkboard-simple-thin": 60152, "ph-chalkboard-teacher-thin": 60153, "ph-chalkboard-thin": 60154, "ph-chart-bar-horizontal-thin": 60155, "ph-chart-bar-thin": 60156, "ph-chart-line-thin": 60157, "ph-chart-line-up-thin": 60158, "ph-chart-pie-slice-thin": 60159, "ph-chart-pie-thin": 60160, "ph-chat-centered-dots-thin": 60161, "ph-chat-centered-text-thin": 60162, "ph-chat-centered-thin": 60163, "ph-chat-circle-dots-thin": 60164, "ph-chat-circle-text-thin": 60165, "ph-chat-circle-thin": 60166, "ph-chat-dots-thin": 60167, "ph-chat-teardrop-dots-thin": 60168, "ph-chat-teardrop-text-thin": 60169, "ph-chat-teardrop-thin": 60170, "ph-chat-text-thin": 60171, "ph-chat-thin": 60172, "ph-chats-circle-thin": 60173, "ph-chats-teardrop-thin": 60174, "ph-chats-thin": 60175, "ph-check-circle-thin": 60176, "ph-check-square-offset-thin": 60177, "ph-check-square-thin": 60178, "ph-check-thin": 60179, "ph-checks-thin": 60180, "ph-circle-dashed-thin": 60181, "ph-circle-half-thin": 60182, "ph-circle-half-tilt-thin": 60183, "ph-circle-notch-thin": 60184, "ph-circle-thin": 60185, "ph-circle-wavy-check-thin": 60186, "ph-circle-wavy-question-thin": 60187, "ph-circle-wavy-thin": 60188, "ph-circle-wavy-warning-thin": 60189, "ph-circles-four-thin": 60190, "ph-circles-three-plus-thin": 60191, "ph-circles-three-thin": 60192, "ph-clipboard-text-thin": 60193, "ph-clipboard-thin": 60194, "ph-clock-afternoon-thin": 60195, "ph-clock-clockwise-thin": 60196, "ph-clock-counter-clockwise-thin": 60197, "ph-clock-thin": 60198, "ph-closed-captioning-thin": 60199, "ph-cloud-arrow-down-thin": 60200, "ph-cloud-arrow-up-thin": 60201, "ph-cloud-check-thin": 60202, "ph-cloud-fog-thin": 60203, "ph-cloud-lightning-thin": 60204, "ph-cloud-moon-thin": 60205, "ph-cloud-rain-thin": 60206, "ph-cloud-slash-thin": 60207, "ph-cloud-snow-thin": 60208, "ph-cloud-sun-thin": 60209, "ph-cloud-thin": 60210, "ph-club-thin": 60211, "ph-coat-hanger-thin": 60212, "ph-code-simple-thin": 60213, "ph-code-thin": 60214, "ph-codepen-logo-thin": 60215, "ph-codesandbox-logo-thin": 60216, "ph-coffee-thin": 60217, "ph-coin-thin": 60218, "ph-coin-vertical-thin": 60219, "ph-coins-thin": 60220, "ph-columns-thin": 60221, "ph-command-thin": 60222, "ph-compass-thin": 60223, "ph-computer-tower-thin": 60224, "ph-confetti-thin": 60225, "ph-cookie-thin": 60226, "ph-cooking-pot-thin": 60227, "ph-copy-simple-thin": 60228, "ph-copy-thin": 60229, "ph-copyleft-thin": 60230, "ph-copyright-thin": 60231, "ph-corners-in-thin": 60232, "ph-corners-out-thin": 60233, "ph-cpu-thin": 60234, "ph-credit-card-thin": 60235, "ph-crop-thin": 60236, "ph-crosshair-simple-thin": 60237, "ph-crosshair-thin": 60238, "ph-crown-simple-thin": 60239, "ph-crown-thin": 60240, "ph-cube-thin": 60241, "ph-currency-btc-thin": 60242, "ph-currency-circle-dollar-thin": 60243, "ph-currency-cny-thin": 60244, "ph-currency-dollar-simple-thin": 60245, "ph-currency-dollar-thin": 60246, "ph-currency-eth-thin": 60247, "ph-currency-eur-thin": 60248, "ph-currency-gbp-thin": 60249, "ph-currency-inr-thin": 60250, "ph-currency-jpy-thin": 60251, "ph-currency-krw-thin": 60252, "ph-currency-kzt-thin": 60253, "ph-currency-ngn-thin": 60254, "ph-currency-rub-thin": 60255, "ph-cursor-text-thin": 60256, "ph-cursor-thin": 60257, "ph-cylinder-thin": 60258, "ph-database-thin": 60259, "ph-desktop-thin": 60260, "ph-desktop-tower-thin": 60261, "ph-detective-thin": 60262, "ph-device-mobile-camera-thin": 60263, "ph-device-mobile-speaker-thin": 60264, "ph-device-mobile-thin": 60265, "ph-device-tablet-camera-thin": 60266, "ph-device-tablet-speaker-thin": 60267, "ph-device-tablet-thin": 60268, "ph-diamond-thin": 60269, "ph-diamonds-four-thin": 60270, "ph-dice-five-thin": 60271, "ph-dice-four-thin": 60272, "ph-dice-one-thin": 60273, "ph-dice-six-thin": 60274, "ph-dice-three-thin": 60275, "ph-dice-two-thin": 60276, "ph-disc-thin": 60277, "ph-discord-logo-thin": 60278, "ph-divide-thin": 60279, "ph-dog-thin": 60280, "ph-door-thin": 60281, "ph-dots-nine-thin": 60282, "ph-dots-six-thin": 60283, "ph-dots-six-vertical-thin": 60284, "ph-dots-three-circle-thin": 60285, "ph-dots-three-circle-vertical-thin": 60286, "ph-dots-three-outline-thin": 60287, "ph-dots-three-outline-vertical-thin": 60288, "ph-dots-three-thin": 60289, "ph-dots-three-vertical-thin": 60290, "ph-download-simple-thin": 60291, "ph-download-thin": 60292, "ph-dribbble-logo-thin": 60293, "ph-drop-half-bottom-thin": 60294, "ph-drop-half-thin": 60295, "ph-drop-thin": 60296, "ph-ear-slash-thin": 60297, "ph-ear-thin": 60298, "ph-egg-crack-thin": 60299, "ph-egg-thin": 60300, "ph-eject-simple-thin": 60301, "ph-eject-thin": 60302, "ph-envelope-open-thin": 60303, "ph-envelope-simple-open-thin": 60304, "ph-envelope-simple-thin": 60305, "ph-envelope-thin": 60306, "ph-equalizer-thin": 60307, "ph-equals-thin": 60308, "ph-eraser-thin": 60309, "ph-exam-thin": 60310, "ph-export-thin": 60311, "ph-eye-closed-thin": 60312, "ph-eye-slash-thin": 60313, "ph-eye-thin": 60314, "ph-eyedropper-sample-thin": 60315, "ph-eyedropper-thin": 60316, "ph-eyeglasses-thin": 60317, "ph-face-mask-thin": 60318, "ph-facebook-logo-thin": 60319, "ph-factory-thin": 60320, "ph-faders-horizontal-thin": 60321, "ph-faders-thin": 60322, "ph-fast-forward-circle-thin": 60323, "ph-fast-forward-thin": 60324, "ph-figma-logo-thin": 60325, "ph-file-arrow-down-thin": 60326, "ph-file-arrow-up-thin": 60327, "ph-file-audio-thin": 60328, "ph-file-cloud-thin": 60329, "ph-file-code-thin": 60330, "ph-file-css-thin": 60331, "ph-file-csv-thin": 60332, "ph-file-doc-thin": 60333, "ph-file-dotted-thin": 60334, "ph-file-html-thin": 60335, "ph-file-image-thin": 60336, "ph-file-jpg-thin": 60337, "ph-file-js-thin": 60338, "ph-file-jsx-thin": 60339, "ph-file-lock-thin": 60340, "ph-file-minus-thin": 60341, "ph-file-pdf-thin": 60342, "ph-file-plus-thin": 60343, "ph-file-png-thin": 60344, "ph-file-ppt-thin": 60345, "ph-file-rs-thin": 60346, "ph-file-search-thin": 60347, "ph-file-text-thin": 60348, "ph-file-thin": 60349, "ph-file-ts-thin": 60350, "ph-file-tsx-thin": 60351, "ph-file-video-thin": 60352, "ph-file-vue-thin": 60353, "ph-file-x-thin": 60354, "ph-file-xls-thin": 60355, "ph-file-zip-thin": 60356, "ph-files-thin": 60357, "ph-film-script-thin": 60358, "ph-film-slate-thin": 60359, "ph-film-strip-thin": 60360, "ph-fingerprint-simple-thin": 60361, "ph-fingerprint-thin": 60362, "ph-finn-the-human-thin": 60363, "ph-fire-simple-thin": 60364, "ph-fire-thin": 60365, "ph-first-aid-kit-thin": 60366, "ph-first-aid-thin": 60367, "ph-fish-simple-thin": 60368, "ph-fish-thin": 60369, "ph-flag-banner-thin": 60370, "ph-flag-checkered-thin": 60371, "ph-flag-thin": 60372, "ph-flame-thin": 60373, "ph-flashlight-thin": 60374, "ph-flask-thin": 60375, "ph-floppy-disk-back-thin": 60376, "ph-floppy-disk-thin": 60377, "ph-flow-arrow-thin": 60378, "ph-flower-lotus-thin": 60379, "ph-flower-thin": 60380, "ph-flying-saucer-thin": 60381, "ph-folder-dotted-thin": 60382, "ph-folder-lock-thin": 60383, "ph-folder-minus-thin": 60384, "ph-folder-notch-minus-thin": 60385, "ph-folder-notch-open-thin": 60386, "ph-folder-notch-plus-thin": 60387, "ph-folder-notch-thin": 60388, "ph-folder-open-thin": 60389, "ph-folder-plus-thin": 60390, "ph-folder-simple-dotted-thin": 60391, "ph-folder-simple-lock-thin": 60392, "ph-folder-simple-minus-thin": 60393, "ph-folder-simple-plus-thin": 60394, "ph-folder-simple-star-thin": 60395, "ph-folder-simple-thin": 60396, "ph-folder-simple-user-thin": 60397, "ph-folder-star-thin": 60398, "ph-folder-thin": 60399, "ph-folder-user-thin": 60400, "ph-folders-thin": 60401, "ph-football-thin": 60402, "ph-fork-knife-thin": 60403, "ph-frame-corners-thin": 60404, "ph-framer-logo-thin": 60405, "ph-function-thin": 60406, "ph-funnel-simple-thin": 60407, "ph-funnel-thin": 60408, "ph-game-controller-thin": 60409, "ph-gas-pump-thin": 60410, "ph-gauge-thin": 60411, "ph-gear-six-thin": 60412, "ph-gear-thin": 60413, "ph-gender-female-thin": 60414, "ph-gender-intersex-thin": 60415, "ph-gender-male-thin": 60416, "ph-gender-neuter-thin": 60417, "ph-gender-nonbinary-thin": 60418, "ph-gender-transgender-thin": 60419, "ph-ghost-thin": 60420, "ph-gif-thin": 60421, "ph-gift-thin": 60422, "ph-git-branch-thin": 60423, "ph-git-commit-thin": 60424, "ph-git-diff-thin": 60425, "ph-git-fork-thin": 60426, "ph-git-merge-thin": 60427, "ph-git-pull-request-thin": 60428, "ph-github-logo-thin": 60429, "ph-gitlab-logo-simple-thin": 60430, "ph-gitlab-logo-thin": 60431, "ph-globe-hemisphere-east-thin": 60432, "ph-globe-hemisphere-west-thin": 60433, "ph-globe-simple-thin": 60434, "ph-globe-stand-thin": 60435, "ph-globe-thin": 60436, "ph-google-chrome-logo-thin": 60437, "ph-google-logo-thin": 60438, "ph-google-photos-logo-thin": 60439, "ph-google-play-logo-thin": 60440, "ph-google-podcasts-logo-thin": 60441, "ph-gradient-thin": 60442, "ph-graduation-cap-thin": 60443, "ph-graph-thin": 60444, "ph-grid-four-thin": 60445, "ph-hamburger-thin": 60446, "ph-hand-eye-thin": 60447, "ph-hand-fist-thin": 60448, "ph-hand-grabbing-thin": 60449, "ph-hand-palm-thin": 60450, "ph-hand-pointing-thin": 60451, "ph-hand-soap-thin": 60452, "ph-hand-thin": 60453, "ph-hand-waving-thin": 60454, "ph-handbag-simple-thin": 60455, "ph-handbag-thin": 60456, "ph-hands-clapping-thin": 60457, "ph-handshake-thin": 60458, "ph-hard-drive-thin": 60459, "ph-hard-drives-thin": 60460, "ph-hash-straight-thin": 60461, "ph-hash-thin": 60462, "ph-headlights-thin": 60463, "ph-headphones-thin": 60464, "ph-headset-thin": 60465, "ph-heart-break-thin": 60466, "ph-heart-straight-break-thin": 60467, "ph-heart-straight-thin": 60468, "ph-heart-thin": 60469, "ph-heartbeat-thin": 60470, "ph-hexagon-thin": 60471, "ph-highlighter-circle-thin": 60472, "ph-horse-thin": 60473, "ph-hourglass-high-thin": 60474, "ph-hourglass-low-thin": 60475, "ph-hourglass-medium-thin": 60476, "ph-hourglass-simple-high-thin": 60477, "ph-hourglass-simple-low-thin": 60478, "ph-hourglass-simple-medium-thin": 60479, "ph-hourglass-simple-thin": 60480, "ph-hourglass-thin": 60481, "ph-house-line-thin": 60482, "ph-house-simple-thin": 60483, "ph-house-thin": 60484, "ph-identification-badge-thin": 60485, "ph-identification-card-thin": 60486, "ph-image-square-thin": 60487, "ph-image-thin": 60488, "ph-infinity-thin": 60489, "ph-info-thin": 60490, "ph-instagram-logo-thin": 60491, "ph-intersect-thin": 60492, "ph-jeep-thin": 60493, "ph-kanban-thin": 60494, "ph-key-return-thin": 60495, "ph-key-thin": 60496, "ph-keyboard-thin": 60497, "ph-keyhole-thin": 60498, "ph-knife-thin": 60499, "ph-ladder-simple-thin": 60500, "ph-ladder-thin": 60501, "ph-lamp-thin": 60502, "ph-laptop-thin": 60503, "ph-layout-thin": 60504, "ph-leaf-thin": 60505, "ph-lifebuoy-thin": 60506, "ph-lightbulb-filament-thin": 60507, "ph-lightbulb-thin": 60508, "ph-lightning-slash-thin": 60509, "ph-lightning-thin": 60510, "ph-line-segment-thin": 60511, "ph-line-segments-thin": 60512, "ph-link-break-thin": 60513, "ph-link-simple-break-thin": 60514, "ph-link-simple-horizontal-break-thin": 60515, "ph-link-simple-horizontal-thin": 60516, "ph-link-simple-thin": 60517, "ph-link-thin": 60518, "ph-linkedin-logo-thin": 60519, "ph-linux-logo-thin": 60520, "ph-list-bullets-thin": 60521, "ph-list-checks-thin": 60522, "ph-list-dashes-thin": 60523, "ph-list-numbers-thin": 60524, "ph-list-plus-thin": 60525, "ph-list-thin": 60526, "ph-lock-key-open-thin": 60527, "ph-lock-key-thin": 60528, "ph-lock-laminated-open-thin": 60529, "ph-lock-laminated-thin": 60530, "ph-lock-open-thin": 60531, "ph-lock-simple-open-thin": 60532, "ph-lock-simple-thin": 60533, "ph-lock-thin": 60534, "ph-magic-wand-thin": 60535, "ph-magnet-straight-thin": 60536, "ph-magnet-thin": 60537, "ph-magnifying-glass-minus-thin": 60538, "ph-magnifying-glass-plus-thin": 60539, "ph-magnifying-glass-thin": 60540, "ph-map-pin-line-thin": 60541, "ph-map-pin-thin": 60542, "ph-map-trifold-thin": 60543, "ph-marker-circle-thin": 60544, "ph-martini-thin": 60545, "ph-mask-happy-thin": 60546, "ph-mask-sad-thin": 60547, "ph-math-operations-thin": 60548, "ph-medal-thin": 60549, "ph-medium-logo-thin": 60550, "ph-megaphone-simple-thin": 60551, "ph-megaphone-thin": 60552, "ph-messenger-logo-thin": 60553, "ph-microphone-slash-thin": 60554, "ph-microphone-stage-thin": 60555, "ph-microphone-thin": 60556, "ph-microsoft-excel-logo-thin": 60557, "ph-microsoft-powerpoint-logo-thin": 60558, "ph-microsoft-teams-logo-thin": 60559, "ph-microsoft-word-logo-thin": 60560, "ph-minus-circle-thin": 60561, "ph-minus-thin": 60562, "ph-money-thin": 60563, "ph-monitor-play-thin": 60564, "ph-monitor-thin": 60565, "ph-moon-stars-thin": 60566, "ph-moon-thin": 60567, "ph-mountains-thin": 60568, "ph-mouse-simple-thin": 60569, "ph-mouse-thin": 60570, "ph-music-note-simple-thin": 60571, "ph-music-note-thin": 60572, "ph-music-notes-plus-thin": 60573, "ph-music-notes-simple-thin": 60574, "ph-music-notes-thin": 60575, "ph-navigation-arrow-thin": 60576, "ph-needle-thin": 60577, "ph-newspaper-clipping-thin": 60578, "ph-newspaper-thin": 60579, "ph-note-blank-thin": 60580, "ph-note-pencil-thin": 60581, "ph-note-thin": 60582, "ph-notebook-thin": 60583, "ph-notepad-thin": 60584, "ph-notification-thin": 60585, "ph-number-circle-eight-thin": 60586, "ph-number-circle-five-thin": 60587, "ph-number-circle-four-thin": 60588, "ph-number-circle-nine-thin": 60589, "ph-number-circle-one-thin": 60590, "ph-number-circle-seven-thin": 60591, "ph-number-circle-six-thin": 60592, "ph-number-circle-three-thin": 60593, "ph-number-circle-two-thin": 60594, "ph-number-circle-zero-thin": 60595, "ph-number-eight-thin": 60596, "ph-number-five-thin": 60597, "ph-number-four-thin": 60598, "ph-number-nine-thin": 60599, "ph-number-one-thin": 60600, "ph-number-seven-thin": 60601, "ph-number-six-thin": 60602, "ph-number-square-eight-thin": 60603, "ph-number-square-five-thin": 60604, "ph-number-square-four-thin": 60605, "ph-number-square-nine-thin": 60606, "ph-number-square-one-thin": 60607, "ph-number-square-seven-thin": 60608, "ph-number-square-six-thin": 60609, "ph-number-square-three-thin": 60610, "ph-number-square-two-thin": 60611, "ph-number-square-zero-thin": 60612, "ph-number-three-thin": 60613, "ph-number-two-thin": 60614, "ph-number-zero-thin": 60615, "ph-nut-thin": 60616, "ph-ny-times-logo-thin": 60617, "ph-octagon-thin": 60618, "ph-option-thin": 60619, "ph-package-thin": 60620, "ph-paint-brush-broad-thin": 60621, "ph-paint-brush-household-thin": 60622, "ph-paint-brush-thin": 60623, "ph-paint-bucket-thin": 60624, "ph-paint-roller-thin": 60625, "ph-palette-thin": 60626, "ph-paper-plane-right-thin": 60627, "ph-paper-plane-thin": 60628, "ph-paper-plane-tilt-thin": 60629, "ph-paperclip-horizontal-thin": 60630, "ph-paperclip-thin": 60631, "ph-parachute-thin": 60632, "ph-password-thin": 60633, "ph-path-thin": 60634, "ph-pause-circle-thin": 60635, "ph-pause-thin": 60636, "ph-paw-print-thin": 60637, "ph-peace-thin": 60638, "ph-pen-nib-straight-thin": 60639, "ph-pen-nib-thin": 60640, "ph-pen-thin": 60641, "ph-pencil-circle-thin": 60642, "ph-pencil-line-thin": 60643, "ph-pencil-simple-line-thin": 60644, "ph-pencil-simple-thin": 60645, "ph-pencil-thin": 60646, "ph-percent-thin": 60647, "ph-person-simple-run-thin": 60648, "ph-person-simple-thin": 60649, "ph-person-simple-walk-thin": 60650, "ph-person-thin": 60651, "ph-perspective-thin": 60652, "ph-phone-call-thin": 60653, "ph-phone-disconnect-thin": 60654, "ph-phone-incoming-thin": 60655, "ph-phone-outgoing-thin": 60656, "ph-phone-slash-thin": 60657, "ph-phone-thin": 60658, "ph-phone-x-thin": 60659, "ph-phosphor-logo-thin": 60660, "ph-piano-keys-thin": 60661, "ph-picture-in-picture-thin": 60662, "ph-pill-thin": 60663, "ph-pinterest-logo-thin": 60664, "ph-pinwheel-thin": 60665, "ph-pizza-thin": 60666, "ph-placeholder-thin": 60667, "ph-planet-thin": 60668, "ph-play-circle-thin": 60669, "ph-play-thin": 60670, "ph-playlist-thin": 60671, "ph-plug-thin": 60672, "ph-plugs-connected-thin": 60673, "ph-plugs-thin": 60674, "ph-plus-circle-thin": 60675, "ph-plus-minus-thin": 60676, "ph-plus-thin": 60677, "ph-poker-chip-thin": 60678, "ph-police-car-thin": 60679, "ph-polygon-thin": 60680, "ph-popcorn-thin": 60681, "ph-power-thin": 60682, "ph-prescription-thin": 60683, "ph-presentation-chart-thin": 60684, "ph-presentation-thin": 60685, "ph-printer-thin": 60686, "ph-prohibit-inset-thin": 60687, "ph-prohibit-thin": 60688, "ph-projector-screen-chart-thin": 60689, "ph-projector-screen-thin": 60690, "ph-push-pin-simple-slash-thin": 60691, "ph-push-pin-simple-thin": 60692, "ph-push-pin-slash-thin": 60693, "ph-push-pin-thin": 60694, "ph-puzzle-piece-thin": 60695, "ph-qr-code-thin": 60696, "ph-question-thin": 60697, "ph-queue-thin": 60698, "ph-quotes-thin": 60699, "ph-radical-thin": 60700, "ph-radio-button-thin": 60701, "ph-radio-thin": 60702, "ph-rainbow-cloud-thin": 60703, "ph-rainbow-thin": 60704, "ph-receipt-thin": 60705, "ph-record-thin": 60706, "ph-rectangle-thin": 60707, "ph-recycle-thin": 60708, "ph-reddit-logo-thin": 60709, "ph-repeat-once-thin": 60710, "ph-repeat-thin": 60711, "ph-rewind-circle-thin": 60712, "ph-rewind-thin": 60713, "ph-robot-thin": 60714, "ph-rocket-launch-thin": 60715, "ph-rocket-thin": 60716, "ph-rows-thin": 60717, "ph-rss-simple-thin": 60718, "ph-rss-thin": 60719, "ph-rug-thin": 60720, "ph-ruler-thin": 60721, "ph-scales-thin": 60722, "ph-scan-thin": 60723, "ph-scissors-thin": 60724, "ph-screencast-thin": 60725, "ph-scribble-loop-thin": 60726, "ph-scroll-thin": 60727, "ph-selection-all-thin": 60728, "ph-selection-background-thin": 60729, "ph-selection-foreground-thin": 60730, "ph-selection-inverse-thin": 60731, "ph-selection-plus-thin": 60732, "ph-selection-slash-thin": 60733, "ph-selection-thin": 60734, "ph-share-network-thin": 60735, "ph-share-thin": 60736, "ph-shield-check-thin": 60737, "ph-shield-checkered-thin": 60738, "ph-shield-chevron-thin": 60739, "ph-shield-plus-thin": 60740, "ph-shield-slash-thin": 60741, "ph-shield-star-thin": 60742, "ph-shield-thin": 60743, "ph-shield-warning-thin": 60744, "ph-shopping-bag-open-thin": 60745, "ph-shopping-bag-thin": 60746, "ph-shopping-cart-simple-thin": 60747, "ph-shopping-cart-thin": 60748, "ph-shower-thin": 60749, "ph-shuffle-angular-thin": 60750, "ph-shuffle-simple-thin": 60751, "ph-shuffle-thin": 60752, "ph-sidebar-simple-thin": 60753, "ph-sidebar-thin": 60754, "ph-sign-in-thin": 60755, "ph-sign-out-thin": 60756, "ph-signpost-thin": 60757, "ph-sim-card-thin": 60758, "ph-sketch-logo-thin": 60759, "ph-skip-back-circle-thin": 60760, "ph-skip-back-thin": 60761, "ph-skip-forward-circle-thin": 60762, "ph-skip-forward-thin": 60763, "ph-skull-thin": 60764, "ph-slack-logo-thin": 60765, "ph-sliders-horizontal-thin": 60766, "ph-sliders-thin": 60767, "ph-smiley-blank-thin": 60768, "ph-smiley-meh-thin": 60769, "ph-smiley-nervous-thin": 60770, "ph-smiley-sad-thin": 60771, "ph-smiley-sticker-thin": 60772, "ph-smiley-thin": 60773, "ph-smiley-wink-thin": 60774, "ph-smiley-x-eyes-thin": 60775, "ph-snapchat-logo-thin": 60776, "ph-snowflake-thin": 60777, "ph-soccer-ball-thin": 60778, "ph-sort-ascending-thin": 60779, "ph-sort-descending-thin": 60780, "ph-spade-thin": 60781, "ph-sparkle-thin": 60782, "ph-speaker-high-thin": 60783, "ph-speaker-low-thin": 60784, "ph-speaker-none-thin": 60785, "ph-speaker-simple-high-thin": 60786, "ph-speaker-simple-low-thin": 60787, "ph-speaker-simple-none-thin": 60788, "ph-speaker-simple-slash-thin": 60789, "ph-speaker-simple-x-thin": 60790, "ph-speaker-slash-thin": 60791, "ph-speaker-x-thin": 60792, "ph-spinner-gap-thin": 60793, "ph-spinner-thin": 60794, "ph-spiral-thin": 60795, "ph-spotify-logo-thin": 60796, "ph-square-half-bottom-thin": 60797, "ph-square-half-thin": 60798, "ph-square-logo-thin": 60799, "ph-square-thin": 60800, "ph-squares-four-thin": 60801, "ph-stack-overflow-logo-thin": 60802, "ph-stack-simple-thin": 60803, "ph-stack-thin": 60804, "ph-stamp-thin": 60805, "ph-star-four-thin": 60806, "ph-star-half-thin": 60807, "ph-star-thin": 60808, "ph-sticker-thin": 60809, "ph-stop-circle-thin": 60810, "ph-stop-thin": 60811, "ph-storefront-thin": 60812, "ph-strategy-thin": 60813, "ph-stripe-logo-thin": 60814, "ph-student-thin": 60815, "ph-suitcase-simple-thin": 60816, "ph-suitcase-thin": 60817, "ph-sun-dim-thin": 60818, "ph-sun-horizon-thin": 60819, "ph-sun-thin": 60820, "ph-sunglasses-thin": 60821, "ph-swap-thin": 60822, "ph-swatches-thin": 60823, "ph-sword-thin": 60824, "ph-syringe-thin": 60825, "ph-t-shirt-thin": 60826, "ph-table-thin": 60827, "ph-tabs-thin": 60828, "ph-tag-chevron-thin": 60829, "ph-tag-simple-thin": 60830, "ph-tag-thin": 60831, "ph-target-thin": 60832, "ph-taxi-thin": 60833, "ph-telegram-logo-thin": 60834, "ph-television-simple-thin": 60835, "ph-television-thin": 60836, "ph-tennis-ball-thin": 60837, "ph-terminal-thin": 60838, "ph-terminal-window-thin": 60839, "ph-test-tube-thin": 60840, "ph-text-aa-thin": 60841, "ph-text-align-center-thin": 60842, "ph-text-align-justify-thin": 60843, "ph-text-align-left-thin": 60844, "ph-text-align-right-thin": 60845, "ph-text-bolder-thin": 60846, "ph-text-h-five-thin": 60847, "ph-text-h-four-thin": 60848, "ph-text-h-one-thin": 60849, "ph-text-h-six-thin": 60850, "ph-text-h-thin": 60851, "ph-text-h-three-thin": 60852, "ph-text-h-two-thin": 60853, "ph-text-indent-thin": 60854, "ph-text-italic-thin": 60855, "ph-text-outdent-thin": 60856, "ph-text-strikethrough-thin": 60857, "ph-text-t-thin": 60858, "ph-text-underline-thin": 60859, "ph-textbox-thin": 60860, "ph-thermometer-cold-thin": 60861, "ph-thermometer-hot-thin": 60862, "ph-thermometer-simple-thin": 60863, "ph-thermometer-thin": 60864, "ph-thumbs-down-thin": 60865, "ph-thumbs-up-thin": 60866, "ph-ticket-thin": 60867, "ph-tiktok-logo-thin": 60868, "ph-timer-thin": 60869, "ph-toggle-left-thin": 60870, "ph-toggle-right-thin": 60871, "ph-toilet-paper-thin": 60872, "ph-toilet-thin": 60873, "ph-tote-simple-thin": 60874, "ph-tote-thin": 60875, "ph-trademark-registered-thin": 60876, "ph-traffic-cone-thin": 60877, "ph-traffic-sign-thin": 60878, "ph-traffic-signal-thin": 60879, "ph-train-regional-thin": 60880, "ph-train-simple-thin": 60881, "ph-train-thin": 60882, "ph-translate-thin": 60883, "ph-trash-simple-thin": 60884, "ph-trash-thin": 60885, "ph-tray-thin": 60886, "ph-tree-evergreen-thin": 60887, "ph-tree-structure-thin": 60888, "ph-tree-thin": 60889, "ph-trend-down-thin": 60890, "ph-trend-up-thin": 60891, "ph-triangle-thin": 60892, "ph-trophy-thin": 60893, "ph-truck-thin": 60894, "ph-twitch-logo-thin": 60895, "ph-twitter-logo-thin": 60896, "ph-umbrella-simple-thin": 60897, "ph-umbrella-thin": 60898, "ph-upload-simple-thin": 60899, "ph-upload-thin": 60900, "ph-user-circle-gear-thin": 60901, "ph-user-circle-minus-thin": 60902, "ph-user-circle-plus-thin": 60903, "ph-user-circle-thin": 60904, "ph-user-focus-thin": 60905, "ph-user-gear-thin": 60906, "ph-user-list-thin": 60907, "ph-user-minus-thin": 60908, "ph-user-plus-thin": 60909, "ph-user-rectangle-thin": 60910, "ph-user-square-thin": 60911, "ph-user-switch-thin": 60912, "ph-user-thin": 60913, "ph-users-four-thin": 60914, "ph-users-thin": 60915, "ph-users-three-thin": 60916, "ph-vault-thin": 60917, "ph-vibrate-thin": 60918, "ph-video-camera-slash-thin": 60919, "ph-video-camera-thin": 60920, "ph-vignette-thin": 60921, "ph-voicemail-thin": 60922, "ph-volleyball-thin": 60923, "ph-wall-thin": 60924, "ph-wallet-thin": 60925, "ph-warning-circle-thin": 60926, "ph-warning-octagon-thin": 60927, "ph-warning-thin": 60928, "ph-watch-thin": 60929, "ph-wave-sawtooth-thin": 60930, "ph-wave-sine-thin": 60931, "ph-wave-square-thin": 60932, "ph-wave-triangle-thin": 60933, "ph-waves-thin": 60934, "ph-webcam-thin": 60935, "ph-whatsapp-logo-thin": 60936, "ph-wheelchair-thin": 60937, "ph-wifi-high-thin": 60938, "ph-wifi-low-thin": 60939, "ph-wifi-medium-thin": 60940, "ph-wifi-none-thin": 60941, "ph-wifi-slash-thin": 60942, "ph-wifi-x-thin": 60943, "ph-wind-thin": 60944, "ph-windows-logo-thin": 60945, "ph-wine-thin": 60946, "ph-wrench-thin": 60947, "ph-x-circle-thin": 60948, "ph-x-square-thin": 60949, "ph-x-thin": 60950, "ph-yin-yang-thin": 60951, "ph-youtube-logo-thin": 60952, "ph-activity-light": 60953, "ph-address-book-light": 60954, "ph-airplane-in-flight-light": 60955, "ph-airplane-landing-light": 60956, "ph-airplane-light": 60957, "ph-airplane-takeoff-light": 60958, "ph-airplane-tilt-light": 60959, "ph-airplay-light": 60960, "ph-alarm-light": 60961, "ph-alien-light": 60962, "ph-align-bottom-light": 60963, "ph-align-bottom-simple-light": 60964, "ph-align-center-horizontal-light": 60965, "ph-align-center-horizontal-simple-light": 60966, "ph-align-center-vertical-light": 60967, "ph-align-center-vertical-simple-light": 60968, "ph-align-left-light": 60969, "ph-align-left-simple-light": 60970, "ph-align-right-light": 60971, "ph-align-right-simple-light": 60972, "ph-align-top-light": 60973, "ph-align-top-simple-light": 60974, "ph-anchor-light": 60975, "ph-anchor-simple-light": 60976, "ph-android-logo-light": 60977, "ph-angular-logo-light": 60978, "ph-aperture-light": 60979, "ph-app-store-logo-light": 60980, "ph-app-window-light": 60981, "ph-apple-logo-light": 60982, "ph-apple-podcasts-logo-light": 60983, "ph-archive-box-light": 60984, "ph-archive-light": 60985, "ph-archive-tray-light": 60986, "ph-armchair-light": 60987, "ph-arrow-arc-left-light": 60988, "ph-arrow-arc-right-light": 60989, "ph-arrow-bend-double-up-left-light": 60990, "ph-arrow-bend-double-up-right-light": 60991, "ph-arrow-bend-down-left-light": 60992, "ph-arrow-bend-down-right-light": 60993, "ph-arrow-bend-left-down-light": 60994, "ph-arrow-bend-left-up-light": 60995, "ph-arrow-bend-right-down-light": 60996, "ph-arrow-bend-right-up-light": 60997, "ph-arrow-bend-up-left-light": 60998, "ph-arrow-bend-up-right-light": 60999, "ph-arrow-circle-down-left-light": 61000, "ph-arrow-circle-down-light": 61001, "ph-arrow-circle-down-right-light": 61002, "ph-arrow-circle-left-light": 61003, "ph-arrow-circle-right-light": 61004, "ph-arrow-circle-up-left-light": 61005, "ph-arrow-circle-up-light": 61006, "ph-arrow-circle-up-right-light": 61007, "ph-arrow-clockwise-light": 61008, "ph-arrow-counter-clockwise-light": 61009, "ph-arrow-down-left-light": 61010, "ph-arrow-down-light": 61011, "ph-arrow-down-right-light": 61012, "ph-arrow-elbow-down-left-light": 61013, "ph-arrow-elbow-down-right-light": 61014, "ph-arrow-elbow-left-down-light": 61015, "ph-arrow-elbow-left-light": 61016, "ph-arrow-elbow-left-up-light": 61017, "ph-arrow-elbow-right-down-light": 61018, "ph-arrow-elbow-right-light": 61019, "ph-arrow-elbow-right-up-light": 61020, "ph-arrow-elbow-up-left-light": 61021, "ph-arrow-elbow-up-right-light": 61022, "ph-arrow-fat-down-light": 61023, "ph-arrow-fat-left-light": 61024, "ph-arrow-fat-line-down-light": 61025, "ph-arrow-fat-line-left-light": 61026, "ph-arrow-fat-line-right-light": 61027, "ph-arrow-fat-line-up-light": 61028, "ph-arrow-fat-lines-down-light": 61029, "ph-arrow-fat-lines-left-light": 61030, "ph-arrow-fat-lines-right-light": 61031, "ph-arrow-fat-lines-up-light": 61032, "ph-arrow-fat-right-light": 61033, "ph-arrow-fat-up-light": 61034, "ph-arrow-left-light": 61035, "ph-arrow-line-down-left-light": 61036, "ph-arrow-line-down-light": 61037, "ph-arrow-line-down-right-light": 61038, "ph-arrow-line-left-light": 61039, "ph-arrow-line-right-light": 61040, "ph-arrow-line-up-left-light": 61041, "ph-arrow-line-up-light": 61042, "ph-arrow-line-up-right-light": 61043, "ph-arrow-right-light": 61044, "ph-arrow-square-down-left-light": 61045, "ph-arrow-square-down-light": 61046, "ph-arrow-square-down-right-light": 61047, "ph-arrow-square-in-light": 61048, "ph-arrow-square-left-light": 61049, "ph-arrow-square-out-light": 61050, "ph-arrow-square-right-light": 61051, "ph-arrow-square-up-left-light": 61052, "ph-arrow-square-up-light": 61053, "ph-arrow-square-up-right-light": 61054, "ph-arrow-u-down-left-light": 61055, "ph-arrow-u-down-right-light": 61056, "ph-arrow-u-left-down-light": 61057, "ph-arrow-u-left-up-light": 61058, "ph-arrow-u-right-down-light": 61059, "ph-arrow-u-right-up-light": 61060, "ph-arrow-u-up-left-light": 61061, "ph-arrow-u-up-right-light": 61062, "ph-arrow-up-left-light": 61063, "ph-arrow-up-light": 61064, "ph-arrow-up-right-light": 61065, "ph-arrows-clockwise-light": 61066, "ph-arrows-counter-clockwise-light": 61067, "ph-arrows-down-up-light": 61068, "ph-arrows-horizontal-light": 61069, "ph-arrows-in-cardinal-light": 61070, "ph-arrows-in-light": 61071, "ph-arrows-in-line-horizontal-light": 61072, "ph-arrows-in-line-vertical-light": 61073, "ph-arrows-in-simple-light": 61074, "ph-arrows-left-right-light": 61075, "ph-arrows-out-cardinal-light": 61076, "ph-arrows-out-light": 61077, "ph-arrows-out-line-horizontal-light": 61078, "ph-arrows-out-line-vertical-light": 61079, "ph-arrows-out-simple-light": 61080, "ph-arrows-vertical-light": 61081, "ph-article-light": 61082, "ph-article-medium-light": 61083, "ph-article-ny-times-light": 61084, "ph-asterisk-light": 61085, "ph-asterisk-simple-light": 61086, "ph-at-light": 61087, "ph-atom-light": 61088, "ph-baby-light": 61089, "ph-backpack-light": 61090, "ph-backspace-light": 61091, "ph-bag-light": 61092, "ph-bag-simple-light": 61093, "ph-balloon-light": 61094, "ph-bandaids-light": 61095, "ph-bank-light": 61096, "ph-barbell-light": 61097, "ph-barcode-light": 61098, "ph-barricade-light": 61099, "ph-baseball-light": 61100, "ph-basketball-light": 61101, "ph-bathtub-light": 61102, "ph-battery-charging-light": 61103, "ph-battery-charging-vertical-light": 61104, "ph-battery-empty-light": 61105, "ph-battery-full-light": 61106, "ph-battery-high-light": 61107, "ph-battery-low-light": 61108, "ph-battery-medium-light": 61109, "ph-battery-plus-light": 61110, "ph-battery-warning-light": 61111, "ph-battery-warning-vertical-light": 61112, "ph-bed-light": 61113, "ph-beer-bottle-light": 61114, "ph-behance-logo-light": 61115, "ph-bell-light": 61116, "ph-bell-ringing-light": 61117, "ph-bell-simple-light": 61118, "ph-bell-simple-ringing-light": 61119, "ph-bell-simple-slash-light": 61120, "ph-bell-simple-z-light": 61121, "ph-bell-slash-light": 61122, "ph-bell-z-light": 61123, "ph-bezier-curve-light": 61124, "ph-bicycle-light": 61125, "ph-binoculars-light": 61126, "ph-bird-light": 61127, "ph-bluetooth-connected-light": 61128, "ph-bluetooth-light": 61129, "ph-bluetooth-slash-light": 61130, "ph-bluetooth-x-light": 61131, "ph-boat-light": 61132, "ph-book-bookmark-light": 61133, "ph-book-light": 61134, "ph-book-open-light": 61135, "ph-bookmark-light": 61136, "ph-bookmark-simple-light": 61137, "ph-bookmarks-light": 61138, "ph-bookmarks-simple-light": 61139, "ph-books-light": 61140, "ph-bounding-box-light": 61141, "ph-brackets-angle-light": 61142, "ph-brackets-curly-light": 61143, "ph-brackets-round-light": 61144, "ph-brackets-square-light": 61145, "ph-brain-light": 61146, "ph-brandy-light": 61147, "ph-briefcase-light": 61148, "ph-briefcase-metal-light": 61149, "ph-broadcast-light": 61150, "ph-browser-light": 61151, "ph-browsers-light": 61152, "ph-bug-beetle-light": 61153, "ph-bug-droid-light": 61154, "ph-bug-light": 61155, "ph-buildings-light": 61156, "ph-bus-light": 61157, "ph-butterfly-light": 61158, "ph-cactus-light": 61159, "ph-cake-light": 61160, "ph-calculator-light": 61161, "ph-calendar-blank-light": 61162, "ph-calendar-check-light": 61163, "ph-calendar-light": 61164, "ph-calendar-plus-light": 61165, "ph-calendar-x-light": 61166, "ph-camera-light": 61167, "ph-camera-rotate-light": 61168, "ph-camera-slash-light": 61169, "ph-campfire-light": 61170, "ph-car-light": 61171, "ph-car-simple-light": 61172, "ph-cardholder-light": 61173, "ph-cards-light": 61174, "ph-caret-circle-double-down-light": 61175, "ph-caret-circle-double-left-light": 61176, "ph-caret-circle-double-right-light": 61177, "ph-caret-circle-double-up-light": 61178, "ph-caret-circle-down-light": 61179, "ph-caret-circle-left-light": 61180, "ph-caret-circle-right-light": 61181, "ph-caret-circle-up-light": 61182, "ph-caret-double-down-light": 61183, "ph-caret-double-left-light": 61184, "ph-caret-double-right-light": 61185, "ph-caret-double-up-light": 61186, "ph-caret-down-light": 61187, "ph-caret-left-light": 61188, "ph-caret-right-light": 61189, "ph-caret-up-light": 61190, "ph-cat-light": 61191, "ph-cell-signal-full-light": 61192, "ph-cell-signal-high-light": 61193, "ph-cell-signal-low-light": 61194, "ph-cell-signal-medium-light": 61195, "ph-cell-signal-none-light": 61196, "ph-cell-signal-slash-light": 61197, "ph-cell-signal-x-light": 61198, "ph-chalkboard-light": 61199, "ph-chalkboard-simple-light": 61200, "ph-chalkboard-teacher-light": 61201, "ph-chart-bar-horizontal-light": 61202, "ph-chart-bar-light": 61203, "ph-chart-line-light": 61204, "ph-chart-line-up-light": 61205, "ph-chart-pie-light": 61206, "ph-chart-pie-slice-light": 61207, "ph-chat-centered-dots-light": 61208, "ph-chat-centered-light": 61209, "ph-chat-centered-text-light": 61210, "ph-chat-circle-dots-light": 61211, "ph-chat-circle-light": 61212, "ph-chat-circle-text-light": 61213, "ph-chat-dots-light": 61214, "ph-chat-light": 61215, "ph-chat-teardrop-dots-light": 61216, "ph-chat-teardrop-light": 61217, "ph-chat-teardrop-text-light": 61218, "ph-chat-text-light": 61219, "ph-chats-circle-light": 61220, "ph-chats-light": 61221, "ph-chats-teardrop-light": 61222, "ph-check-circle-light": 61223, "ph-check-light": 61224, "ph-check-square-light": 61225, "ph-check-square-offset-light": 61226, "ph-checks-light": 61227, "ph-circle-dashed-light": 61228, "ph-circle-half-light": 61229, "ph-circle-half-tilt-light": 61230, "ph-circle-light": 61231, "ph-circle-notch-light": 61232, "ph-circle-wavy-check-light": 61233, "ph-circle-wavy-light": 61234, "ph-circle-wavy-question-light": 61235, "ph-circle-wavy-warning-light": 61236, "ph-circles-four-light": 61237, "ph-circles-three-light": 61238, "ph-circles-three-plus-light": 61239, "ph-clipboard-light": 61240, "ph-clipboard-text-light": 61241, "ph-clock-afternoon-light": 61242, "ph-clock-clockwise-light": 61243, "ph-clock-counter-clockwise-light": 61244, "ph-clock-light": 61245, "ph-closed-captioning-light": 61246, "ph-cloud-arrow-down-light": 61247, "ph-cloud-arrow-up-light": 61248, "ph-cloud-check-light": 61249, "ph-cloud-fog-light": 61250, "ph-cloud-light": 61251, "ph-cloud-lightning-light": 61252, "ph-cloud-moon-light": 61253, "ph-cloud-rain-light": 61254, "ph-cloud-slash-light": 61255, "ph-cloud-snow-light": 61256, "ph-cloud-sun-light": 61257, "ph-club-light": 61258, "ph-coat-hanger-light": 61259, "ph-code-light": 61260, "ph-code-simple-light": 61261, "ph-codepen-logo-light": 61262, "ph-codesandbox-logo-light": 61263, "ph-coffee-light": 61264, "ph-coin-light": 61265, "ph-coin-vertical-light": 61266, "ph-coins-light": 61267, "ph-columns-light": 61268, "ph-command-light": 61269, "ph-compass-light": 61270, "ph-computer-tower-light": 61271, "ph-confetti-light": 61272, "ph-cookie-light": 61273, "ph-cooking-pot-light": 61274, "ph-copy-light": 61275, "ph-copy-simple-light": 61276, "ph-copyleft-light": 61277, "ph-copyright-light": 61278, "ph-corners-in-light": 61279, "ph-corners-out-light": 61280, "ph-cpu-light": 61281, "ph-credit-card-light": 61282, "ph-crop-light": 61283, "ph-crosshair-light": 61284, "ph-crosshair-simple-light": 61285, "ph-crown-light": 61286, "ph-crown-simple-light": 61287, "ph-cube-light": 61288, "ph-currency-btc-light": 61289, "ph-currency-circle-dollar-light": 61290, "ph-currency-cny-light": 61291, "ph-currency-dollar-light": 61292, "ph-currency-dollar-simple-light": 61293, "ph-currency-eth-light": 61294, "ph-currency-eur-light": 61295, "ph-currency-gbp-light": 61296, "ph-currency-inr-light": 61297, "ph-currency-jpy-light": 61298, "ph-currency-krw-light": 61299, "ph-currency-kzt-light": 61300, "ph-currency-ngn-light": 61301, "ph-currency-rub-light": 61302, "ph-cursor-light": 61303, "ph-cursor-text-light": 61304, "ph-cylinder-light": 61305, "ph-database-light": 61306, "ph-desktop-light": 61307, "ph-desktop-tower-light": 61308, "ph-detective-light": 61309, "ph-device-mobile-camera-light": 61310, "ph-device-mobile-light": 61311, "ph-device-mobile-speaker-light": 61312, "ph-device-tablet-camera-light": 61313, "ph-device-tablet-light": 61314, "ph-device-tablet-speaker-light": 61315, "ph-diamond-light": 61316, "ph-diamonds-four-light": 61317, "ph-dice-five-light": 61318, "ph-dice-four-light": 61319, "ph-dice-one-light": 61320, "ph-dice-six-light": 61321, "ph-dice-three-light": 61322, "ph-dice-two-light": 61323, "ph-disc-light": 61324, "ph-discord-logo-light": 61325, "ph-divide-light": 61326, "ph-dog-light": 61327, "ph-door-light": 61328, "ph-dots-nine-light": 61329, "ph-dots-six-light": 61330, "ph-dots-six-vertical-light": 61331, "ph-dots-three-circle-light": 61332, "ph-dots-three-circle-vertical-light": 61333, "ph-dots-three-light": 61334, "ph-dots-three-outline-light": 61335, "ph-dots-three-outline-vertical-light": 61336, "ph-dots-three-vertical-light": 61337, "ph-download-light": 61338, "ph-download-simple-light": 61339, "ph-dribbble-logo-light": 61340, "ph-drop-half-bottom-light": 61341, "ph-drop-half-light": 61342, "ph-drop-light": 61343, "ph-ear-light": 61344, "ph-ear-slash-light": 61345, "ph-egg-crack-light": 61346, "ph-egg-light": 61347, "ph-eject-light": 61348, "ph-eject-simple-light": 61349, "ph-envelope-light": 61350, "ph-envelope-open-light": 61351, "ph-envelope-simple-light": 61352, "ph-envelope-simple-open-light": 61353, "ph-equalizer-light": 61354, "ph-equals-light": 61355, "ph-eraser-light": 61356, "ph-exam-light": 61357, "ph-export-light": 61358, "ph-eye-closed-light": 61359, "ph-eye-light": 61360, "ph-eye-slash-light": 61361, "ph-eyedropper-light": 61362, "ph-eyedropper-sample-light": 61363, "ph-eyeglasses-light": 61364, "ph-face-mask-light": 61365, "ph-facebook-logo-light": 61366, "ph-factory-light": 61367, "ph-faders-horizontal-light": 61368, "ph-faders-light": 61369, "ph-fast-forward-circle-light": 61370, "ph-fast-forward-light": 61371, "ph-figma-logo-light": 61372, "ph-file-arrow-down-light": 61373, "ph-file-arrow-up-light": 61374, "ph-file-audio-light": 61375, "ph-file-cloud-light": 61376, "ph-file-code-light": 61377, "ph-file-css-light": 61378, "ph-file-csv-light": 61379, "ph-file-doc-light": 61380, "ph-file-dotted-light": 61381, "ph-file-html-light": 61382, "ph-file-image-light": 61383, "ph-file-jpg-light": 61384, "ph-file-js-light": 61385, "ph-file-jsx-light": 61386, "ph-file-light": 61387, "ph-file-lock-light": 61388, "ph-file-minus-light": 61389, "ph-file-pdf-light": 61390, "ph-file-plus-light": 61391, "ph-file-png-light": 61392, "ph-file-ppt-light": 61393, "ph-file-rs-light": 61394, "ph-file-search-light": 61395, "ph-file-text-light": 61396, "ph-file-ts-light": 61397, "ph-file-tsx-light": 61398, "ph-file-video-light": 61399, "ph-file-vue-light": 61400, "ph-file-x-light": 61401, "ph-file-xls-light": 61402, "ph-file-zip-light": 61403, "ph-files-light": 61404, "ph-film-script-light": 61405, "ph-film-slate-light": 61406, "ph-film-strip-light": 61407, "ph-fingerprint-light": 61408, "ph-fingerprint-simple-light": 61409, "ph-finn-the-human-light": 61410, "ph-fire-light": 61411, "ph-fire-simple-light": 61412, "ph-first-aid-kit-light": 61413, "ph-first-aid-light": 61414, "ph-fish-light": 61415, "ph-fish-simple-light": 61416, "ph-flag-banner-light": 61417, "ph-flag-checkered-light": 61418, "ph-flag-light": 61419, "ph-flame-light": 61420, "ph-flashlight-light": 61421, "ph-flask-light": 61422, "ph-floppy-disk-back-light": 61423, "ph-floppy-disk-light": 61424, "ph-flow-arrow-light": 61425, "ph-flower-light": 61426, "ph-flower-lotus-light": 61427, "ph-flying-saucer-light": 61428, "ph-folder-dotted-light": 61429, "ph-folder-light": 61430, "ph-folder-lock-light": 61431, "ph-folder-minus-light": 61432, "ph-folder-notch-light": 61433, "ph-folder-notch-minus-light": 61434, "ph-folder-notch-open-light": 61435, "ph-folder-notch-plus-light": 61436, "ph-folder-open-light": 61437, "ph-folder-plus-light": 61438, "ph-folder-simple-dotted-light": 61439, "ph-folder-simple-light": 61440, "ph-folder-simple-lock-light": 61441, "ph-folder-simple-minus-light": 61442, "ph-folder-simple-plus-light": 61443, "ph-folder-simple-star-light": 61444, "ph-folder-simple-user-light": 61445, "ph-folder-star-light": 61446, "ph-folder-user-light": 61447, "ph-folders-light": 61448, "ph-football-light": 61449, "ph-fork-knife-light": 61450, "ph-frame-corners-light": 61451, "ph-framer-logo-light": 61452, "ph-function-light": 61453, "ph-funnel-light": 61454, "ph-funnel-simple-light": 61455, "ph-game-controller-light": 61456, "ph-gas-pump-light": 61457, "ph-gauge-light": 61458, "ph-gear-light": 61459, "ph-gear-six-light": 61460, "ph-gender-female-light": 61461, "ph-gender-intersex-light": 61462, "ph-gender-male-light": 61463, "ph-gender-neuter-light": 61464, "ph-gender-nonbinary-light": 61465, "ph-gender-transgender-light": 61466, "ph-ghost-light": 61467, "ph-gif-light": 61468, "ph-gift-light": 61469, "ph-git-branch-light": 61470, "ph-git-commit-light": 61471, "ph-git-diff-light": 61472, "ph-git-fork-light": 61473, "ph-git-merge-light": 61474, "ph-git-pull-request-light": 61475, "ph-github-logo-light": 61476, "ph-gitlab-logo-light": 61477, "ph-gitlab-logo-simple-light": 61478, "ph-globe-hemisphere-east-light": 61479, "ph-globe-hemisphere-west-light": 61480, "ph-globe-light": 61481, "ph-globe-simple-light": 61482, "ph-globe-stand-light": 61483, "ph-google-chrome-logo-light": 61484, "ph-google-logo-light": 61485, "ph-google-photos-logo-light": 61486, "ph-google-play-logo-light": 61487, "ph-google-podcasts-logo-light": 61488, "ph-gradient-light": 61489, "ph-graduation-cap-light": 61490, "ph-graph-light": 61491, "ph-grid-four-light": 61492, "ph-hamburger-light": 61493, "ph-hand-eye-light": 61494, "ph-hand-fist-light": 61495, "ph-hand-grabbing-light": 61496, "ph-hand-light": 61497, "ph-hand-palm-light": 61498, "ph-hand-pointing-light": 61499, "ph-hand-soap-light": 61500, "ph-hand-waving-light": 61501, "ph-handbag-light": 61502, "ph-handbag-simple-light": 61503, "ph-hands-clapping-light": 61504, "ph-handshake-light": 61505, "ph-hard-drive-light": 61506, "ph-hard-drives-light": 61507, "ph-hash-light": 61508, "ph-hash-straight-light": 61509, "ph-headlights-light": 61510, "ph-headphones-light": 61511, "ph-headset-light": 61512, "ph-heart-break-light": 61513, "ph-heart-light": 61514, "ph-heart-straight-break-light": 61515, "ph-heart-straight-light": 61516, "ph-heartbeat-light": 61517, "ph-hexagon-light": 61518, "ph-highlighter-circle-light": 61519, "ph-horse-light": 61520, "ph-hourglass-high-light": 61521, "ph-hourglass-light": 61522, "ph-hourglass-low-light": 61523, "ph-hourglass-medium-light": 61524, "ph-hourglass-simple-high-light": 61525, "ph-hourglass-simple-light": 61526, "ph-hourglass-simple-low-light": 61527, "ph-hourglass-simple-medium-light": 61528, "ph-house-light": 61529, "ph-house-line-light": 61530, "ph-house-simple-light": 61531, "ph-identification-badge-light": 61532, "ph-identification-card-light": 61533, "ph-image-light": 61534, "ph-image-square-light": 61535, "ph-infinity-light": 61536, "ph-info-light": 61537, "ph-instagram-logo-light": 61538, "ph-intersect-light": 61539, "ph-jeep-light": 61540, "ph-kanban-light": 61541, "ph-key-light": 61542, "ph-key-return-light": 61543, "ph-keyboard-light": 61544, "ph-keyhole-light": 61545, "ph-knife-light": 61546, "ph-ladder-light": 61547, "ph-ladder-simple-light": 61548, "ph-lamp-light": 61549, "ph-laptop-light": 61550, "ph-layout-light": 61551, "ph-leaf-light": 61552, "ph-lifebuoy-light": 61553, "ph-lightbulb-filament-light": 61554, "ph-lightbulb-light": 61555, "ph-lightning-light": 61556, "ph-lightning-slash-light": 61557, "ph-line-segment-light": 61558, "ph-line-segments-light": 61559, "ph-link-break-light": 61560, "ph-link-light": 61561, "ph-link-simple-break-light": 61562, "ph-link-simple-horizontal-break-light": 61563, "ph-link-simple-horizontal-light": 61564, "ph-link-simple-light": 61565, "ph-linkedin-logo-light": 61566, "ph-linux-logo-light": 61567, "ph-list-bullets-light": 61568, "ph-list-checks-light": 61569, "ph-list-dashes-light": 61570, "ph-list-light": 61571, "ph-list-numbers-light": 61572, "ph-list-plus-light": 61573, "ph-lock-key-light": 61574, "ph-lock-key-open-light": 61575, "ph-lock-laminated-light": 61576, "ph-lock-laminated-open-light": 61577, "ph-lock-light": 61578, "ph-lock-open-light": 61579, "ph-lock-simple-light": 61580, "ph-lock-simple-open-light": 61581, "ph-magic-wand-light": 61582, "ph-magnet-light": 61583, "ph-magnet-straight-light": 61584, "ph-magnifying-glass-light": 61585, "ph-magnifying-glass-minus-light": 61586, "ph-magnifying-glass-plus-light": 61587, "ph-map-pin-light": 61588, "ph-map-pin-line-light": 61589, "ph-map-trifold-light": 61590, "ph-marker-circle-light": 61591, "ph-martini-light": 61592, "ph-mask-happy-light": 61593, "ph-mask-sad-light": 61594, "ph-math-operations-light": 61595, "ph-medal-light": 61596, "ph-medium-logo-light": 61597, "ph-megaphone-light": 61598, "ph-megaphone-simple-light": 61599, "ph-messenger-logo-light": 61600, "ph-microphone-light": 61601, "ph-microphone-slash-light": 61602, "ph-microphone-stage-light": 61603, "ph-microsoft-excel-logo-light": 61604, "ph-microsoft-powerpoint-logo-light": 61605, "ph-microsoft-teams-logo-light": 61606, "ph-microsoft-word-logo-light": 61607, "ph-minus-circle-light": 61608, "ph-minus-light": 61609, "ph-money-light": 61610, "ph-monitor-light": 61611, "ph-monitor-play-light": 61612, "ph-moon-light": 61613, "ph-moon-stars-light": 61614, "ph-mountains-light": 61615, "ph-mouse-light": 61616, "ph-mouse-simple-light": 61617, "ph-music-note-light": 61618, "ph-music-note-simple-light": 61619, "ph-music-notes-light": 61620, "ph-music-notes-plus-light": 61621, "ph-music-notes-simple-light": 61622, "ph-navigation-arrow-light": 61623, "ph-needle-light": 61624, "ph-newspaper-clipping-light": 61625, "ph-newspaper-light": 61626, "ph-note-blank-light": 61627, "ph-note-light": 61628, "ph-note-pencil-light": 61629, "ph-notebook-light": 61630, "ph-notepad-light": 61631, "ph-notification-light": 61632, "ph-number-circle-eight-light": 61633, "ph-number-circle-five-light": 61634, "ph-number-circle-four-light": 61635, "ph-number-circle-nine-light": 61636, "ph-number-circle-one-light": 61637, "ph-number-circle-seven-light": 61638, "ph-number-circle-six-light": 61639, "ph-number-circle-three-light": 61640, "ph-number-circle-two-light": 61641, "ph-number-circle-zero-light": 61642, "ph-number-eight-light": 61643, "ph-number-five-light": 61644, "ph-number-four-light": 61645, "ph-number-nine-light": 61646, "ph-number-one-light": 61647, "ph-number-seven-light": 61648, "ph-number-six-light": 61649, "ph-number-square-eight-light": 61650, "ph-number-square-five-light": 61651, "ph-number-square-four-light": 61652, "ph-number-square-nine-light": 61653, "ph-number-square-one-light": 61654, "ph-number-square-seven-light": 61655, "ph-number-square-six-light": 61656, "ph-number-square-three-light": 61657, "ph-number-square-two-light": 61658, "ph-number-square-zero-light": 61659, "ph-number-three-light": 61660, "ph-number-two-light": 61661, "ph-number-zero-light": 61662, "ph-nut-light": 61663, "ph-ny-times-logo-light": 61664, "ph-octagon-light": 61665, "ph-option-light": 61666, "ph-package-light": 61667, "ph-paint-brush-broad-light": 61668, "ph-paint-brush-household-light": 61669, "ph-paint-brush-light": 61670, "ph-paint-bucket-light": 61671, "ph-paint-roller-light": 61672, "ph-palette-light": 61673, "ph-paper-plane-light": 61674, "ph-paper-plane-right-light": 61675, "ph-paper-plane-tilt-light": 61676, "ph-paperclip-horizontal-light": 61677, "ph-paperclip-light": 61678, "ph-parachute-light": 61679, "ph-password-light": 61680, "ph-path-light": 61681, "ph-pause-circle-light": 61682, "ph-pause-light": 61683, "ph-paw-print-light": 61684, "ph-peace-light": 61685, "ph-pen-light": 61686, "ph-pen-nib-light": 61687, "ph-pen-nib-straight-light": 61688, "ph-pencil-circle-light": 61689, "ph-pencil-light": 61690, "ph-pencil-line-light": 61691, "ph-pencil-simple-light": 61692, "ph-pencil-simple-line-light": 61693, "ph-percent-light": 61694, "ph-person-light": 61695, "ph-person-simple-light": 61696, "ph-person-simple-run-light": 61697, "ph-person-simple-walk-light": 61698, "ph-perspective-light": 61699, "ph-phone-call-light": 61700, "ph-phone-disconnect-light": 61701, "ph-phone-incoming-light": 61702, "ph-phone-light": 61703, "ph-phone-outgoing-light": 61704, "ph-phone-slash-light": 61705, "ph-phone-x-light": 61706, "ph-phosphor-logo-light": 61707, "ph-piano-keys-light": 61708, "ph-picture-in-picture-light": 61709, "ph-pill-light": 61710, "ph-pinterest-logo-light": 61711, "ph-pinwheel-light": 61712, "ph-pizza-light": 61713, "ph-placeholder-light": 61714, "ph-planet-light": 61715, "ph-play-circle-light": 61716, "ph-play-light": 61717, "ph-playlist-light": 61718, "ph-plug-light": 61719, "ph-plugs-connected-light": 61720, "ph-plugs-light": 61721, "ph-plus-circle-light": 61722, "ph-plus-light": 61723, "ph-plus-minus-light": 61724, "ph-poker-chip-light": 61725, "ph-police-car-light": 61726, "ph-polygon-light": 61727, "ph-popcorn-light": 61728, "ph-power-light": 61729, "ph-prescription-light": 61730, "ph-presentation-chart-light": 61731, "ph-presentation-light": 61732, "ph-printer-light": 61733, "ph-prohibit-inset-light": 61734, "ph-prohibit-light": 61735, "ph-projector-screen-chart-light": 61736, "ph-projector-screen-light": 61737, "ph-push-pin-light": 61738, "ph-push-pin-simple-light": 61739, "ph-push-pin-simple-slash-light": 61740, "ph-push-pin-slash-light": 61741, "ph-puzzle-piece-light": 61742, "ph-qr-code-light": 61743, "ph-question-light": 61744, "ph-queue-light": 61745, "ph-quotes-light": 61746, "ph-radical-light": 61747, "ph-radio-button-light": 61748, "ph-radio-light": 61749, "ph-rainbow-cloud-light": 61750, "ph-rainbow-light": 61751, "ph-receipt-light": 61752, "ph-record-light": 61753, "ph-rectangle-light": 61754, "ph-recycle-light": 61755, "ph-reddit-logo-light": 61756, "ph-repeat-light": 61757, "ph-repeat-once-light": 61758, "ph-rewind-circle-light": 61759, "ph-rewind-light": 61760, "ph-robot-light": 61761, "ph-rocket-launch-light": 61762, "ph-rocket-light": 61763, "ph-rows-light": 61764, "ph-rss-light": 61765, "ph-rss-simple-light": 61766, "ph-rug-light": 61767, "ph-ruler-light": 61768, "ph-scales-light": 61769, "ph-scan-light": 61770, "ph-scissors-light": 61771, "ph-screencast-light": 61772, "ph-scribble-loop-light": 61773, "ph-scroll-light": 61774, "ph-selection-all-light": 61775, "ph-selection-background-light": 61776, "ph-selection-foreground-light": 61777, "ph-selection-inverse-light": 61778, "ph-selection-light": 61779, "ph-selection-plus-light": 61780, "ph-selection-slash-light": 61781, "ph-share-light": 61782, "ph-share-network-light": 61783, "ph-shield-check-light": 61784, "ph-shield-checkered-light": 61785, "ph-shield-chevron-light": 61786, "ph-shield-light": 61787, "ph-shield-plus-light": 61788, "ph-shield-slash-light": 61789, "ph-shield-star-light": 61790, "ph-shield-warning-light": 61791, "ph-shopping-bag-light": 61792, "ph-shopping-bag-open-light": 61793, "ph-shopping-cart-light": 61794, "ph-shopping-cart-simple-light": 61795, "ph-shower-light": 61796, "ph-shuffle-angular-light": 61797, "ph-shuffle-light": 61798, "ph-shuffle-simple-light": 61799, "ph-sidebar-light": 61800, "ph-sidebar-simple-light": 61801, "ph-sign-in-light": 61802, "ph-sign-out-light": 61803, "ph-signpost-light": 61804, "ph-sim-card-light": 61805, "ph-sketch-logo-light": 61806, "ph-skip-back-circle-light": 61807, "ph-skip-back-light": 61808, "ph-skip-forward-circle-light": 61809, "ph-skip-forward-light": 61810, "ph-skull-light": 61811, "ph-slack-logo-light": 61812, "ph-sliders-horizontal-light": 61813, "ph-sliders-light": 61814, "ph-smiley-blank-light": 61815, "ph-smiley-light": 61816, "ph-smiley-meh-light": 61817, "ph-smiley-nervous-light": 61818, "ph-smiley-sad-light": 61819, "ph-smiley-sticker-light": 61820, "ph-smiley-wink-light": 61821, "ph-smiley-x-eyes-light": 61822, "ph-snapchat-logo-light": 61823, "ph-snowflake-light": 61824, "ph-soccer-ball-light": 61825, "ph-sort-ascending-light": 61826, "ph-sort-descending-light": 61827, "ph-spade-light": 61828, "ph-sparkle-light": 61829, "ph-speaker-high-light": 61830, "ph-speaker-low-light": 61831, "ph-speaker-none-light": 61832, "ph-speaker-simple-high-light": 61833, "ph-speaker-simple-low-light": 61834, "ph-speaker-simple-none-light": 61835, "ph-speaker-simple-slash-light": 61836, "ph-speaker-simple-x-light": 61837, "ph-speaker-slash-light": 61838, "ph-speaker-x-light": 61839, "ph-spinner-gap-light": 61840, "ph-spinner-light": 61841, "ph-spiral-light": 61842, "ph-spotify-logo-light": 61843, "ph-square-half-bottom-light": 61844, "ph-square-half-light": 61845, "ph-square-light": 61846, "ph-square-logo-light": 61847, "ph-squares-four-light": 61848, "ph-stack-light": 61849, "ph-stack-overflow-logo-light": 61850, "ph-stack-simple-light": 61851, "ph-stamp-light": 61852, "ph-star-four-light": 61853, "ph-star-half-light": 61854, "ph-star-light": 61855, "ph-sticker-light": 61856, "ph-stop-circle-light": 61857, "ph-stop-light": 61858, "ph-storefront-light": 61859, "ph-strategy-light": 61860, "ph-stripe-logo-light": 61861, "ph-student-light": 61862, "ph-suitcase-light": 61863, "ph-suitcase-simple-light": 61864, "ph-sun-dim-light": 61865, "ph-sun-horizon-light": 61866, "ph-sun-light": 61867, "ph-sunglasses-light": 61868, "ph-swap-light": 61869, "ph-swatches-light": 61870, "ph-sword-light": 61871, "ph-syringe-light": 61872, "ph-t-shirt-light": 61873, "ph-table-light": 61874, "ph-tabs-light": 61875, "ph-tag-chevron-light": 61876, "ph-tag-light": 61877, "ph-tag-simple-light": 61878, "ph-target-light": 61879, "ph-taxi-light": 61880, "ph-telegram-logo-light": 61881, "ph-television-light": 61882, "ph-television-simple-light": 61883, "ph-tennis-ball-light": 61884, "ph-terminal-light": 61885, "ph-terminal-window-light": 61886, "ph-test-tube-light": 61887, "ph-text-aa-light": 61888, "ph-text-align-center-light": 61889, "ph-text-align-justify-light": 61890, "ph-text-align-left-light": 61891, "ph-text-align-right-light": 61892, "ph-text-bolder-light": 61893, "ph-text-h-five-light": 61894, "ph-text-h-four-light": 61895, "ph-text-h-light": 61896, "ph-text-h-one-light": 61897, "ph-text-h-six-light": 61898, "ph-text-h-three-light": 61899, "ph-text-h-two-light": 61900, "ph-text-indent-light": 61901, "ph-text-italic-light": 61902, "ph-text-outdent-light": 61903, "ph-text-strikethrough-light": 61904, "ph-text-t-light": 61905, "ph-text-underline-light": 61906, "ph-textbox-light": 61907, "ph-thermometer-cold-light": 61908, "ph-thermometer-hot-light": 61909, "ph-thermometer-light": 61910, "ph-thermometer-simple-light": 61911, "ph-thumbs-down-light": 61912, "ph-thumbs-up-light": 61913, "ph-ticket-light": 61914, "ph-tiktok-logo-light": 61915, "ph-timer-light": 61916, "ph-toggle-left-light": 61917, "ph-toggle-right-light": 61918, "ph-toilet-light": 61919, "ph-toilet-paper-light": 61920, "ph-tote-light": 61921, "ph-tote-simple-light": 61922, "ph-trademark-registered-light": 61923, "ph-traffic-cone-light": 61924, "ph-traffic-sign-light": 61925, "ph-traffic-signal-light": 61926, "ph-train-light": 61927, "ph-train-regional-light": 61928, "ph-train-simple-light": 61929, "ph-translate-light": 61930, "ph-trash-light": 61931, "ph-trash-simple-light": 61932, "ph-tray-light": 61933, "ph-tree-evergreen-light": 61934, "ph-tree-light": 61935, "ph-tree-structure-light": 61936, "ph-trend-down-light": 61937, "ph-trend-up-light": 61938, "ph-triangle-light": 61939, "ph-trophy-light": 61940, "ph-truck-light": 61941, "ph-twitch-logo-light": 61942, "ph-twitter-logo-light": 61943, "ph-umbrella-light": 61944, "ph-umbrella-simple-light": 61945, "ph-upload-light": 61946, "ph-upload-simple-light": 61947, "ph-user-circle-gear-light": 61948, "ph-user-circle-light": 61949, "ph-user-circle-minus-light": 61950, "ph-user-circle-plus-light": 61951, "ph-user-focus-light": 61952, "ph-user-gear-light": 61953, "ph-user-light": 61954, "ph-user-list-light": 61955, "ph-user-minus-light": 61956, "ph-user-plus-light": 61957, "ph-user-rectangle-light": 61958, "ph-user-square-light": 61959, "ph-user-switch-light": 61960, "ph-users-four-light": 61961, "ph-users-light": 61962, "ph-users-three-light": 61963, "ph-vault-light": 61964, "ph-vibrate-light": 61965, "ph-video-camera-light": 61966, "ph-video-camera-slash-light": 61967, "ph-vignette-light": 61968, "ph-voicemail-light": 61969, "ph-volleyball-light": 61970, "ph-wall-light": 61971, "ph-wallet-light": 61972, "ph-warning-circle-light": 61973, "ph-warning-light": 61974, "ph-warning-octagon-light": 61975, "ph-watch-light": 61976, "ph-wave-sawtooth-light": 61977, "ph-wave-sine-light": 61978, "ph-wave-square-light": 61979, "ph-wave-triangle-light": 61980, "ph-waves-light": 61981, "ph-webcam-light": 61982, "ph-whatsapp-logo-light": 61983, "ph-wheelchair-light": 61984, "ph-wifi-high-light": 61985, "ph-wifi-low-light": 61986, "ph-wifi-medium-light": 61987, "ph-wifi-none-light": 61988, "ph-wifi-slash-light": 61989, "ph-wifi-x-light": 61990, "ph-wind-light": 61991, "ph-windows-logo-light": 61992, "ph-wine-light": 61993, "ph-wrench-light": 61994, "ph-x-circle-light": 61995, "ph-x-light": 61996, "ph-x-square-light": 61997, "ph-yin-yang-light": 61998, "ph-youtube-logo-light": 61999, "ph-activity": 62000, "ph-address-book": 62001, "ph-airplane": 62002, "ph-airplane-in-flight": 62003, "ph-airplane-landing": 62004, "ph-airplane-takeoff": 62005, "ph-airplane-tilt": 62006, "ph-airplay": 62007, "ph-alarm": 62008, "ph-alien": 62009, "ph-align-bottom": 62010, "ph-align-bottom-simple": 62011, "ph-align-center-horizontal": 62012, "ph-align-center-horizontal-simple": 62013, "ph-align-center-vertical": 62014, "ph-align-center-vertical-simple": 62015, "ph-align-left": 62016, "ph-align-left-simple": 62017, "ph-align-right": 62018, "ph-align-right-simple": 62019, "ph-align-top": 62020, "ph-align-top-simple": 62021, "ph-anchor": 62022, "ph-anchor-simple": 62023, "ph-android-logo": 62024, "ph-angular-logo": 62025, "ph-aperture": 62026, "ph-app-store-logo": 62027, "ph-app-window": 62028, "ph-apple-logo": 62029, "ph-apple-podcasts-logo": 62030, "ph-archive": 62031, "ph-archive-box": 62032, "ph-archive-tray": 62033, "ph-armchair": 62034, "ph-arrow-arc-left": 62035, "ph-arrow-arc-right": 62036, "ph-arrow-bend-double-up-left": 62037, "ph-arrow-bend-double-up-right": 62038, "ph-arrow-bend-down-left": 62039, "ph-arrow-bend-down-right": 62040, "ph-arrow-bend-left-down": 62041, "ph-arrow-bend-left-up": 62042, "ph-arrow-bend-right-down": 62043, "ph-arrow-bend-right-up": 62044, "ph-arrow-bend-up-left": 62045, "ph-arrow-bend-up-right": 62046, "ph-arrow-circle-down": 62047, "ph-arrow-circle-down-left": 62048, "ph-arrow-circle-down-right": 62049, "ph-arrow-circle-left": 62050, "ph-arrow-circle-right": 62051, "ph-arrow-circle-up": 62052, "ph-arrow-circle-up-left": 62053, "ph-arrow-circle-up-right": 62054, "ph-arrow-clockwise": 62055, "ph-arrow-counter-clockwise": 62056, "ph-arrow-down": 62057, "ph-arrow-down-left": 62058, "ph-arrow-down-right": 62059, "ph-arrow-elbow-down-left": 62060, "ph-arrow-elbow-down-right": 62061, "ph-arrow-elbow-left": 62062, "ph-arrow-elbow-left-down": 62063, "ph-arrow-elbow-left-up": 62064, "ph-arrow-elbow-right": 62065, "ph-arrow-elbow-right-down": 62066, "ph-arrow-elbow-right-up": 62067, "ph-arrow-elbow-up-left": 62068, "ph-arrow-elbow-up-right": 62069, "ph-arrow-fat-down": 62070, "ph-arrow-fat-left": 62071, "ph-arrow-fat-line-down": 62072, "ph-arrow-fat-line-left": 62073, "ph-arrow-fat-line-right": 62074, "ph-arrow-fat-line-up": 62075, "ph-arrow-fat-lines-down": 62076, "ph-arrow-fat-lines-left": 62077, "ph-arrow-fat-lines-right": 62078, "ph-arrow-fat-lines-up": 62079, "ph-arrow-fat-right": 62080, "ph-arrow-fat-up": 62081, "ph-arrow-left": 62082, "ph-arrow-line-down": 62083, "ph-arrow-line-down-left": 62084, "ph-arrow-line-down-right": 62085, "ph-arrow-line-left": 62086, "ph-arrow-line-right": 62087, "ph-arrow-line-up": 62088, "ph-arrow-line-up-left": 62089, "ph-arrow-line-up-right": 62090, "ph-arrow-right": 62091, "ph-arrow-square-down": 62092, "ph-arrow-square-down-left": 62093, "ph-arrow-square-down-right": 62094, "ph-arrow-square-in": 62095, "ph-arrow-square-left": 62096, "ph-arrow-square-out": 62097, "ph-arrow-square-right": 62098, "ph-arrow-square-up": 62099, "ph-arrow-square-up-left": 62100, "ph-arrow-square-up-right": 62101, "ph-arrow-u-down-left": 62102, "ph-arrow-u-down-right": 62103, "ph-arrow-u-left-down": 62104, "ph-arrow-u-left-up": 62105, "ph-arrow-u-right-down": 62106, "ph-arrow-u-right-up": 62107, "ph-arrow-u-up-left": 62108, "ph-arrow-u-up-right": 62109, "ph-arrow-up": 62110, "ph-arrow-up-left": 62111, "ph-arrow-up-right": 62112, "ph-arrows-clockwise": 62113, "ph-arrows-counter-clockwise": 62114, "ph-arrows-down-up": 62115, "ph-arrows-horizontal": 62116, "ph-arrows-in": 62117, "ph-arrows-in-cardinal": 62118, "ph-arrows-in-line-horizontal": 62119, "ph-arrows-in-line-vertical": 62120, "ph-arrows-in-simple": 62121, "ph-arrows-left-right": 62122, "ph-arrows-out": 62123, "ph-arrows-out-cardinal": 62124, "ph-arrows-out-line-horizontal": 62125, "ph-arrows-out-line-vertical": 62126, "ph-arrows-out-simple": 62127, "ph-arrows-vertical": 62128, "ph-article": 62129, "ph-article-medium": 62130, "ph-article-ny-times": 62131, "ph-asterisk": 62132, "ph-asterisk-simple": 62133, "ph-at": 62134, "ph-atom": 62135, "ph-baby": 62136, "ph-backpack": 62137, "ph-backspace": 62138, "ph-bag": 62139, "ph-bag-simple": 62140, "ph-balloon": 62141, "ph-bandaids": 62142, "ph-bank": 62143, "ph-barbell": 62144, "ph-barcode": 62145, "ph-barricade": 62146, "ph-baseball": 62147, "ph-basketball": 62148, "ph-bathtub": 62149, "ph-battery-charging": 62150, "ph-battery-charging-vertical": 62151, "ph-battery-empty": 62152, "ph-battery-full": 62153, "ph-battery-high": 62154, "ph-battery-low": 62155, "ph-battery-medium": 62156, "ph-battery-plus": 62157, "ph-battery-warning": 62158, "ph-battery-warning-vertical": 62159, "ph-bed": 62160, "ph-beer-bottle": 62161, "ph-behance-logo": 62162, "ph-bell": 62163, "ph-bell-ringing": 62164, "ph-bell-simple": 62165, "ph-bell-simple-ringing": 62166, "ph-bell-simple-slash": 62167, "ph-bell-simple-z": 62168, "ph-bell-slash": 62169, "ph-bell-z": 62170, "ph-bezier-curve": 62171, "ph-bicycle": 62172, "ph-binoculars": 62173, "ph-bird": 62174, "ph-bluetooth": 62175, "ph-bluetooth-connected": 62176, "ph-bluetooth-slash": 62177, "ph-bluetooth-x": 62178, "ph-boat": 62179, "ph-book": 62180, "ph-book-bookmark": 62181, "ph-book-open": 62182, "ph-bookmark": 62183, "ph-bookmark-simple": 62184, "ph-bookmarks": 62185, "ph-bookmarks-simple": 62186, "ph-books": 62187, "ph-bounding-box": 62188, "ph-brackets-angle": 62189, "ph-brackets-curly": 62190, "ph-brackets-round": 62191, "ph-brackets-square": 62192, "ph-brain": 62193, "ph-brandy": 62194, "ph-briefcase": 62195, "ph-briefcase-metal": 62196, "ph-broadcast": 62197, "ph-browser": 62198, "ph-browsers": 62199, "ph-bug": 62200, "ph-bug-beetle": 62201, "ph-bug-droid": 62202, "ph-buildings": 62203, "ph-bus": 62204, "ph-butterfly": 62205, "ph-cactus": 62206, "ph-cake": 62207, "ph-calculator": 62208, "ph-calendar": 62209, "ph-calendar-blank": 62210, "ph-calendar-check": 62211, "ph-calendar-plus": 62212, "ph-calendar-x": 62213, "ph-camera": 62214, "ph-camera-rotate": 62215, "ph-camera-slash": 62216, "ph-campfire": 62217, "ph-car": 62218, "ph-car-simple": 62219, "ph-cardholder": 62220, "ph-cards": 62221, "ph-caret-circle-double-down": 62222, "ph-caret-circle-double-left": 62223, "ph-caret-circle-double-right": 62224, "ph-caret-circle-double-up": 62225, "ph-caret-circle-down": 62226, "ph-caret-circle-left": 62227, "ph-caret-circle-right": 62228, "ph-caret-circle-up": 62229, "ph-caret-double-down": 62230, "ph-caret-double-left": 62231, "ph-caret-double-right": 62232, "ph-caret-double-up": 62233, "ph-caret-down": 62234, "ph-caret-left": 62235, "ph-caret-right": 62236, "ph-caret-up": 62237, "ph-cat": 62238, "ph-cell-signal-full": 62239, "ph-cell-signal-high": 62240, "ph-cell-signal-low": 62241, "ph-cell-signal-medium": 62242, "ph-cell-signal-none": 62243, "ph-cell-signal-slash": 62244, "ph-cell-signal-x": 62245, "ph-chalkboard": 62246, "ph-chalkboard-simple": 62247, "ph-chalkboard-teacher": 62248, "ph-chart-bar": 62249, "ph-chart-bar-horizontal": 62250, "ph-chart-line": 62251, "ph-chart-line-up": 62252, "ph-chart-pie": 62253, "ph-chart-pie-slice": 62254, "ph-chat": 62255, "ph-chat-centered": 62256, "ph-chat-centered-dots": 62257, "ph-chat-centered-text": 62258, "ph-chat-circle": 62259, "ph-chat-circle-dots": 62260, "ph-chat-circle-text": 62261, "ph-chat-dots": 62262, "ph-chat-teardrop": 62263, "ph-chat-teardrop-dots": 62264, "ph-chat-teardrop-text": 62265, "ph-chat-text": 62266, "ph-chats": 62267, "ph-chats-circle": 62268, "ph-chats-teardrop": 62269, "ph-check": 62270, "ph-check-circle": 62271, "ph-check-square": 62272, "ph-check-square-offset": 62273, "ph-checks": 62274, "ph-circle": 62275, "ph-circle-dashed": 62276, "ph-circle-half": 62277, "ph-circle-half-tilt": 62278, "ph-circle-notch": 62279, "ph-circle-wavy": 62280, "ph-circle-wavy-check": 62281, "ph-circle-wavy-question": 62282, "ph-circle-wavy-warning": 62283, "ph-circles-four": 62284, "ph-circles-three": 62285, "ph-circles-three-plus": 62286, "ph-clipboard": 62287, "ph-clipboard-text": 62288, "ph-clock": 62289, "ph-clock-afternoon": 62290, "ph-clock-clockwise": 62291, "ph-clock-counter-clockwise": 62292, "ph-closed-captioning": 62293, "ph-cloud": 62294, "ph-cloud-arrow-down": 62295, "ph-cloud-arrow-up": 62296, "ph-cloud-check": 62297, "ph-cloud-fog": 62298, "ph-cloud-lightning": 62299, "ph-cloud-moon": 62300, "ph-cloud-rain": 62301, "ph-cloud-slash": 62302, "ph-cloud-snow": 62303, "ph-cloud-sun": 62304, "ph-club": 62305, "ph-coat-hanger": 62306, "ph-code": 62307, "ph-code-simple": 62308, "ph-codepen-logo": 62309, "ph-codesandbox-logo": 62310, "ph-coffee": 62311, "ph-coin": 62312, "ph-coin-vertical": 62313, "ph-coins": 62314, "ph-columns": 62315, "ph-command": 62316, "ph-compass": 62317, "ph-computer-tower": 62318, "ph-confetti": 62319, "ph-cookie": 62320, "ph-cooking-pot": 62321, "ph-copy": 62322, "ph-copy-simple": 62323, "ph-copyleft": 62324, "ph-copyright": 62325, "ph-corners-in": 62326, "ph-corners-out": 62327, "ph-cpu": 62328, "ph-credit-card": 62329, "ph-crop": 62330, "ph-crosshair": 62331, "ph-crosshair-simple": 62332, "ph-crown": 62333, "ph-crown-simple": 62334, "ph-cube": 62335, "ph-currency-btc": 62336, "ph-currency-circle-dollar": 62337, "ph-currency-cny": 62338, "ph-currency-dollar": 62339, "ph-currency-dollar-simple": 62340, "ph-currency-eth": 62341, "ph-currency-eur": 62342, "ph-currency-gbp": 62343, "ph-currency-inr": 62344, "ph-currency-jpy": 62345, "ph-currency-krw": 62346, "ph-currency-kzt": 62347, "ph-currency-ngn": 62348, "ph-currency-rub": 62349, "ph-cursor": 62350, "ph-cursor-text": 62351, "ph-cylinder": 62352, "ph-database": 62353, "ph-desktop": 62354, "ph-desktop-tower": 62355, "ph-detective": 62356, "ph-device-mobile": 62357, "ph-device-mobile-camera": 62358, "ph-device-mobile-speaker": 62359, "ph-device-tablet": 62360, "ph-device-tablet-camera": 62361, "ph-device-tablet-speaker": 62362, "ph-diamond": 62363, "ph-diamonds-four": 62364, "ph-dice-five": 62365, "ph-dice-four": 62366, "ph-dice-one": 62367, "ph-dice-six": 62368, "ph-dice-three": 62369, "ph-dice-two": 62370, "ph-disc": 62371, "ph-discord-logo": 62372, "ph-divide": 62373, "ph-dog": 62374, "ph-door": 62375, "ph-dots-nine": 62376, "ph-dots-six": 62377, "ph-dots-six-vertical": 62378, "ph-dots-three": 62379, "ph-dots-three-circle": 62380, "ph-dots-three-circle-vertical": 62381, "ph-dots-three-outline": 62382, "ph-dots-three-outline-vertical": 62383, "ph-dots-three-vertical": 62384, "ph-download": 62385, "ph-download-simple": 62386, "ph-dribbble-logo": 62387, "ph-drop": 62388, "ph-drop-half": 62389, "ph-drop-half-bottom": 62390, "ph-ear": 62391, "ph-ear-slash": 62392, "ph-egg": 62393, "ph-egg-crack": 62394, "ph-eject": 62395, "ph-eject-simple": 62396, "ph-envelope": 62397, "ph-envelope-open": 62398, "ph-envelope-simple": 62399, "ph-envelope-simple-open": 62400, "ph-equalizer": 62401, "ph-equals": 62402, "ph-eraser": 62403, "ph-exam": 62404, "ph-export": 62405, "ph-eye": 62406, "ph-eye-closed": 62407, "ph-eye-slash": 62408, "ph-eyedropper": 62409, "ph-eyedropper-sample": 62410, "ph-eyeglasses": 62411, "ph-face-mask": 62412, "ph-facebook-logo": 62413, "ph-factory": 62414, "ph-faders": 62415, "ph-faders-horizontal": 62416, "ph-fast-forward": 62417, "ph-fast-forward-circle": 62418, "ph-figma-logo": 62419, "ph-file": 62420, "ph-file-arrow-down": 62421, "ph-file-arrow-up": 62422, "ph-file-audio": 62423, "ph-file-cloud": 62424, "ph-file-code": 62425, "ph-file-css": 62426, "ph-file-csv": 62427, "ph-file-doc": 62428, "ph-file-dotted": 62429, "ph-file-html": 62430, "ph-file-image": 62431, "ph-file-jpg": 62432, "ph-file-js": 62433, "ph-file-jsx": 62434, "ph-file-lock": 62435, "ph-file-minus": 62436, "ph-file-pdf": 62437, "ph-file-plus": 62438, "ph-file-png": 62439, "ph-file-ppt": 62440, "ph-file-rs": 62441, "ph-file-search": 62442, "ph-file-text": 62443, "ph-file-ts": 62444, "ph-file-tsx": 62445, "ph-file-video": 62446, "ph-file-vue": 62447, "ph-file-x": 62448, "ph-file-xls": 62449, "ph-file-zip": 62450, "ph-files": 62451, "ph-film-script": 62452, "ph-film-slate": 62453, "ph-film-strip": 62454, "ph-fingerprint": 62455, "ph-fingerprint-simple": 62456, "ph-finn-the-human": 62457, "ph-fire": 62458, "ph-fire-simple": 62459, "ph-first-aid": 62460, "ph-first-aid-kit": 62461, "ph-fish": 62462, "ph-fish-simple": 62463, "ph-flag": 62464, "ph-flag-banner": 62465, "ph-flag-checkered": 62466, "ph-flame": 62467, "ph-flashlight": 62468, "ph-flask": 62469, "ph-floppy-disk": 62470, "ph-floppy-disk-back": 62471, "ph-flow-arrow": 62472, "ph-flower": 62473, "ph-flower-lotus": 62474, "ph-flying-saucer": 62475, "ph-folder": 62476, "ph-folder-dotted": 62477, "ph-folder-lock": 62478, "ph-folder-minus": 62479, "ph-folder-notch": 62480, "ph-folder-notch-minus": 62481, "ph-folder-notch-open": 62482, "ph-folder-notch-plus": 62483, "ph-folder-open": 62484, "ph-folder-plus": 62485, "ph-folder-simple": 62486, "ph-folder-simple-dotted": 62487, "ph-folder-simple-lock": 62488, "ph-folder-simple-minus": 62489, "ph-folder-simple-plus": 62490, "ph-folder-simple-star": 62491, "ph-folder-simple-user": 62492, "ph-folder-star": 62493, "ph-folder-user": 62494, "ph-folders": 62495, "ph-football": 62496, "ph-fork-knife": 62497, "ph-frame-corners": 62498, "ph-framer-logo": 62499, "ph-function": 62500, "ph-funnel": 62501, "ph-funnel-simple": 62502, "ph-game-controller": 62503, "ph-gas-pump": 62504, "ph-gauge": 62505, "ph-gear": 62506, "ph-gear-six": 62507, "ph-gender-female": 62508, "ph-gender-intersex": 62509, "ph-gender-male": 62510, "ph-gender-neuter": 62511, "ph-gender-nonbinary": 62512, "ph-gender-transgender": 62513, "ph-ghost": 62514, "ph-gif": 62515, "ph-gift": 62516, "ph-git-branch": 62517, "ph-git-commit": 62518, "ph-git-diff": 62519, "ph-git-fork": 62520, "ph-git-merge": 62521, "ph-git-pull-request": 62522, "ph-github-logo": 62523, "ph-gitlab-logo": 62524, "ph-gitlab-logo-simple": 62525, "ph-globe": 62526, "ph-globe-hemisphere-east": 62527, "ph-globe-hemisphere-west": 62528, "ph-globe-simple": 62529, "ph-globe-stand": 62530, "ph-google-chrome-logo": 62531, "ph-google-logo": 62532, "ph-google-photos-logo": 62533, "ph-google-play-logo": 62534, "ph-google-podcasts-logo": 62535, "ph-gradient": 62536, "ph-graduation-cap": 62537, "ph-graph": 62538, "ph-grid-four": 62539, "ph-hamburger": 62540, "ph-hand": 62541, "ph-hand-eye": 62542, "ph-hand-fist": 62543, "ph-hand-grabbing": 62544, "ph-hand-palm": 62545, "ph-hand-pointing": 62546, "ph-hand-soap": 62547, "ph-hand-waving": 62548, "ph-handbag": 62549, "ph-handbag-simple": 62550, "ph-hands-clapping": 62551, "ph-handshake": 62552, "ph-hard-drive": 62553, "ph-hard-drives": 62554, "ph-hash": 62555, "ph-hash-straight": 62556, "ph-headlights": 62557, "ph-headphones": 62558, "ph-headset": 62559, "ph-heart": 62560, "ph-heart-break": 62561, "ph-heart-straight": 62562, "ph-heart-straight-break": 62563, "ph-heartbeat": 62564, "ph-hexagon": 62565, "ph-highlighter-circle": 62566, "ph-horse": 62567, "ph-hourglass": 62568, "ph-hourglass-high": 62569, "ph-hourglass-low": 62570, "ph-hourglass-medium": 62571, "ph-hourglass-simple": 62572, "ph-hourglass-simple-high": 62573, "ph-hourglass-simple-low": 62574, "ph-hourglass-simple-medium": 62575, "ph-house": 62576, "ph-house-line": 62577, "ph-house-simple": 62578, "ph-identification-badge": 62579, "ph-identification-card": 62580, "ph-image": 62581, "ph-image-square": 62582, "ph-infinity": 62583, "ph-info": 62584, "ph-instagram-logo": 62585, "ph-intersect": 62586, "ph-jeep": 62587, "ph-kanban": 62588, "ph-key": 62589, "ph-key-return": 62590, "ph-keyboard": 62591, "ph-keyhole": 62592, "ph-knife": 62593, "ph-ladder": 62594, "ph-ladder-simple": 62595, "ph-lamp": 62596, "ph-laptop": 62597, "ph-layout": 62598, "ph-leaf": 62599, "ph-lifebuoy": 62600, "ph-lightbulb": 62601, "ph-lightbulb-filament": 62602, "ph-lightning": 62603, "ph-lightning-slash": 62604, "ph-line-segment": 62605, "ph-line-segments": 62606, "ph-link": 62607, "ph-link-break": 62608, "ph-link-simple": 62609, "ph-link-simple-break": 62610, "ph-link-simple-horizontal": 62611, "ph-link-simple-horizontal-break": 62612, "ph-linkedin-logo": 62613, "ph-linux-logo": 62614, "ph-list": 62615, "ph-list-bullets": 62616, "ph-list-checks": 62617, "ph-list-dashes": 62618, "ph-list-numbers": 62619, "ph-list-plus": 62620, "ph-lock": 62621, "ph-lock-key": 62622, "ph-lock-key-open": 62623, "ph-lock-laminated": 62624, "ph-lock-laminated-open": 62625, "ph-lock-open": 62626, "ph-lock-simple": 62627, "ph-lock-simple-open": 62628, "ph-magic-wand": 62629, "ph-magnet": 62630, "ph-magnet-straight": 62631, "ph-magnifying-glass": 62632, "ph-magnifying-glass-minus": 62633, "ph-magnifying-glass-plus": 62634, "ph-map-pin": 62635, "ph-map-pin-line": 62636, "ph-map-trifold": 62637, "ph-marker-circle": 62638, "ph-martini": 62639, "ph-mask-happy": 62640, "ph-mask-sad": 62641, "ph-math-operations": 62642, "ph-medal": 62643, "ph-medium-logo": 62644, "ph-megaphone": 62645, "ph-megaphone-simple": 62646, "ph-messenger-logo": 62647, "ph-microphone": 62648, "ph-microphone-slash": 62649, "ph-microphone-stage": 62650, "ph-microsoft-excel-logo": 62651, "ph-microsoft-powerpoint-logo": 62652, "ph-microsoft-teams-logo": 62653, "ph-microsoft-word-logo": 62654, "ph-minus": 62655, "ph-minus-circle": 62656, "ph-money": 62657, "ph-monitor": 62658, "ph-monitor-play": 62659, "ph-moon": 62660, "ph-moon-stars": 62661, "ph-mountains": 62662, "ph-mouse": 62663, "ph-mouse-simple": 62664, "ph-music-note": 62665, "ph-music-note-simple": 62666, "ph-music-notes": 62667, "ph-music-notes-plus": 62668, "ph-music-notes-simple": 62669, "ph-navigation-arrow": 62670, "ph-needle": 62671, "ph-newspaper": 62672, "ph-newspaper-clipping": 62673, "ph-note": 62674, "ph-note-blank": 62675, "ph-note-pencil": 62676, "ph-notebook": 62677, "ph-notepad": 62678, "ph-notification": 62679, "ph-number-circle-eight": 62680, "ph-number-circle-five": 62681, "ph-number-circle-four": 62682, "ph-number-circle-nine": 62683, "ph-number-circle-one": 62684, "ph-number-circle-seven": 62685, "ph-number-circle-six": 62686, "ph-number-circle-three": 62687, "ph-number-circle-two": 62688, "ph-number-circle-zero": 62689, "ph-number-eight": 62690, "ph-number-five": 62691, "ph-number-four": 62692, "ph-number-nine": 62693, "ph-number-one": 62694, "ph-number-seven": 62695, "ph-number-six": 62696, "ph-number-square-eight": 62697, "ph-number-square-five": 62698, "ph-number-square-four": 62699, "ph-number-square-nine": 62700, "ph-number-square-one": 62701, "ph-number-square-seven": 62702, "ph-number-square-six": 62703, "ph-number-square-three": 62704, "ph-number-square-two": 62705, "ph-number-square-zero": 62706, "ph-number-three": 62707, "ph-number-two": 62708, "ph-number-zero": 62709, "ph-nut": 62710, "ph-ny-times-logo": 62711, "ph-octagon": 62712, "ph-option": 62713, "ph-package": 62714, "ph-paint-brush": 62715, "ph-paint-brush-broad": 62716, "ph-paint-brush-household": 62717, "ph-paint-bucket": 62718, "ph-paint-roller": 62719, "ph-palette": 62720, "ph-paper-plane": 62721, "ph-paper-plane-right": 62722, "ph-paper-plane-tilt": 62723, "ph-paperclip": 62724, "ph-paperclip-horizontal": 62725, "ph-parachute": 62726, "ph-password": 62727, "ph-path": 62728, "ph-pause": 62729, "ph-pause-circle": 62730, "ph-paw-print": 62731, "ph-peace": 62732, "ph-pen": 62733, "ph-pen-nib": 62734, "ph-pen-nib-straight": 62735, "ph-pencil": 62736, "ph-pencil-circle": 62737, "ph-pencil-line": 62738, "ph-pencil-simple": 62739, "ph-pencil-simple-line": 62740, "ph-percent": 62741, "ph-person": 62742, "ph-person-simple": 62743, "ph-person-simple-run": 62744, "ph-person-simple-walk": 62745, "ph-perspective": 62746, "ph-phone": 62747, "ph-phone-call": 62748, "ph-phone-disconnect": 62749, "ph-phone-incoming": 62750, "ph-phone-outgoing": 62751, "ph-phone-slash": 62752, "ph-phone-x": 62753, "ph-phosphor-logo": 62754, "ph-piano-keys": 62755, "ph-picture-in-picture": 62756, "ph-pill": 62757, "ph-pinterest-logo": 62758, "ph-pinwheel": 62759, "ph-pizza": 62760, "ph-placeholder": 62761, "ph-planet": 62762, "ph-play": 62763, "ph-play-circle": 62764, "ph-playlist": 62765, "ph-plug": 62766, "ph-plugs": 62767, "ph-plugs-connected": 62768, "ph-plus": 62769, "ph-plus-circle": 62770, "ph-plus-minus": 62771, "ph-poker-chip": 62772, "ph-police-car": 62773, "ph-polygon": 62774, "ph-popcorn": 62775, "ph-power": 62776, "ph-prescription": 62777, "ph-presentation": 62778, "ph-presentation-chart": 62779, "ph-printer": 62780, "ph-prohibit": 62781, "ph-prohibit-inset": 62782, "ph-projector-screen": 62783, "ph-projector-screen-chart": 62784, "ph-push-pin": 62785, "ph-push-pin-simple": 62786, "ph-push-pin-simple-slash": 62787, "ph-push-pin-slash": 62788, "ph-puzzle-piece": 62789, "ph-qr-code": 62790, "ph-question": 62791, "ph-queue": 62792, "ph-quotes": 62793, "ph-radical": 62794, "ph-radio": 62795, "ph-radio-button": 62796, "ph-rainbow": 62797, "ph-rainbow-cloud": 62798, "ph-receipt": 62799, "ph-record": 62800, "ph-rectangle": 62801, "ph-recycle": 62802, "ph-reddit-logo": 62803, "ph-repeat": 62804, "ph-repeat-once": 62805, "ph-rewind": 62806, "ph-rewind-circle": 62807, "ph-robot": 62808, "ph-rocket": 62809, "ph-rocket-launch": 62810, "ph-rows": 62811, "ph-rss": 62812, "ph-rss-simple": 62813, "ph-rug": 62814, "ph-ruler": 62815, "ph-scales": 62816, "ph-scan": 62817, "ph-scissors": 62818, "ph-screencast": 62819, "ph-scribble-loop": 62820, "ph-scroll": 62821, "ph-selection": 62822, "ph-selection-all": 62823, "ph-selection-background": 62824, "ph-selection-foreground": 62825, "ph-selection-inverse": 62826, "ph-selection-plus": 62827, "ph-selection-slash": 62828, "ph-share": 62829, "ph-share-network": 62830, "ph-shield": 62831, "ph-shield-check": 62832, "ph-shield-checkered": 62833, "ph-shield-chevron": 62834, "ph-shield-plus": 62835, "ph-shield-slash": 62836, "ph-shield-star": 62837, "ph-shield-warning": 62838, "ph-shopping-bag": 62839, "ph-shopping-bag-open": 62840, "ph-shopping-cart": 62841, "ph-shopping-cart-simple": 62842, "ph-shower": 62843, "ph-shuffle": 62844, "ph-shuffle-angular": 62845, "ph-shuffle-simple": 62846, "ph-sidebar": 62847, "ph-sidebar-simple": 62848, "ph-sign-in": 62849, "ph-sign-out": 62850, "ph-signpost": 62851, "ph-sim-card": 62852, "ph-sketch-logo": 62853, "ph-skip-back": 62854, "ph-skip-back-circle": 62855, "ph-skip-forward": 62856, "ph-skip-forward-circle": 62857, "ph-skull": 62858, "ph-slack-logo": 62859, "ph-sliders": 62860, "ph-sliders-horizontal": 62861, "ph-smiley": 62862, "ph-smiley-blank": 62863, "ph-smiley-meh": 62864, "ph-smiley-nervous": 62865, "ph-smiley-sad": 62866, "ph-smiley-sticker": 62867, "ph-smiley-wink": 62868, "ph-smiley-x-eyes": 62869, "ph-snapchat-logo": 62870, "ph-snowflake": 62871, "ph-soccer-ball": 62872, "ph-sort-ascending": 62873, "ph-sort-descending": 62874, "ph-spade": 62875, "ph-sparkle": 62876, "ph-speaker-high": 62877, "ph-speaker-low": 62878, "ph-speaker-none": 62879, "ph-speaker-simple-high": 62880, "ph-speaker-simple-low": 62881, "ph-speaker-simple-none": 62882, "ph-speaker-simple-slash": 62883, "ph-speaker-simple-x": 62884, "ph-speaker-slash": 62885, "ph-speaker-x": 62886, "ph-spinner": 62887, "ph-spinner-gap": 62888, "ph-spiral": 62889, "ph-spotify-logo": 62890, "ph-square": 62891, "ph-square-half": 62892, "ph-square-half-bottom": 62893, "ph-square-logo": 62894, "ph-squares-four": 62895, "ph-stack": 62896, "ph-stack-overflow-logo": 62897, "ph-stack-simple": 62898, "ph-stamp": 62899, "ph-star": 62900, "ph-star-four": 62901, "ph-star-half": 62902, "ph-sticker": 62903, "ph-stop": 62904, "ph-stop-circle": 62905, "ph-storefront": 62906, "ph-strategy": 62907, "ph-stripe-logo": 62908, "ph-student": 62909, "ph-suitcase": 62910, "ph-suitcase-simple": 62911, "ph-sun": 62912, "ph-sun-dim": 62913, "ph-sun-horizon": 62914, "ph-sunglasses": 62915, "ph-swap": 62916, "ph-swatches": 62917, "ph-sword": 62918, "ph-syringe": 62919, "ph-t-shirt": 62920, "ph-table": 62921, "ph-tabs": 62922, "ph-tag": 62923, "ph-tag-chevron": 62924, "ph-tag-simple": 62925, "ph-target": 62926, "ph-taxi": 62927, "ph-telegram-logo": 62928, "ph-television": 62929, "ph-television-simple": 62930, "ph-tennis-ball": 62931, "ph-terminal": 62932, "ph-terminal-window": 62933, "ph-test-tube": 62934, "ph-text-aa": 62935, "ph-text-align-center": 62936, "ph-text-align-justify": 62937, "ph-text-align-left": 62938, "ph-text-align-right": 62939, "ph-text-bolder": 62940, "ph-text-h": 62941, "ph-text-h-five": 62942, "ph-text-h-four": 62943, "ph-text-h-one": 62944, "ph-text-h-six": 62945, "ph-text-h-three": 62946, "ph-text-h-two": 62947, "ph-text-indent": 62948, "ph-text-italic": 62949, "ph-text-outdent": 62950, "ph-text-strikethrough": 62951, "ph-text-t": 62952, "ph-text-underline": 62953, "ph-textbox": 62954, "ph-thermometer": 62955, "ph-thermometer-cold": 62956, "ph-thermometer-hot": 62957, "ph-thermometer-simple": 62958, "ph-thumbs-down": 62959, "ph-thumbs-up": 62960, "ph-ticket": 62961, "ph-tiktok-logo": 62962, "ph-timer": 62963, "ph-toggle-left": 62964, "ph-toggle-right": 62965, "ph-toilet": 62966, "ph-toilet-paper": 62967, "ph-tote": 62968, "ph-tote-simple": 62969, "ph-trademark-registered": 62970, "ph-traffic-cone": 62971, "ph-traffic-sign": 62972, "ph-traffic-signal": 62973, "ph-train": 62974, "ph-train-regional": 62975, "ph-train-simple": 62976, "ph-translate": 62977, "ph-trash": 62978, "ph-trash-simple": 62979, "ph-tray": 62980, "ph-tree": 62981, "ph-tree-evergreen": 62982, "ph-tree-structure": 62983, "ph-trend-down": 62984, "ph-trend-up": 62985, "ph-triangle": 62986, "ph-trophy": 62987, "ph-truck": 62988, "ph-twitch-logo": 62989, "ph-twitter-logo": 62990, "ph-umbrella": 62991, "ph-umbrella-simple": 62992, "ph-upload": 62993, "ph-upload-simple": 62994, "ph-user": 62995, "ph-user-circle": 62996, "ph-user-circle-gear": 62997, "ph-user-circle-minus": 62998, "ph-user-circle-plus": 62999, "ph-user-focus": 63000, "ph-user-gear": 63001, "ph-user-list": 63002, "ph-user-minus": 63003, "ph-user-plus": 63004, "ph-user-rectangle": 63005, "ph-user-square": 63006, "ph-user-switch": 63007, "ph-users": 63008, "ph-users-four": 63009, "ph-users-three": 63010, "ph-vault": 63011, "ph-vibrate": 63012, "ph-video-camera": 63013, "ph-video-camera-slash": 63014, "ph-vignette": 63015, "ph-voicemail": 63016, "ph-volleyball": 63017, "ph-wall": 63018, "ph-wallet": 63019, "ph-warning": 63020, "ph-warning-circle": 63021, "ph-warning-octagon": 63022, "ph-watch": 63023, "ph-wave-sawtooth": 63024, "ph-wave-sine": 63025, "ph-wave-square": 63026, "ph-wave-triangle": 63027, "ph-waves": 63028, "ph-webcam": 63029, "ph-whatsapp-logo": 63030, "ph-wheelchair": 63031, "ph-wifi-high": 63032, "ph-wifi-low": 63033, "ph-wifi-medium": 63034, "ph-wifi-none": 63035, "ph-wifi-slash": 63036, "ph-wifi-x": 63037, "ph-wind": 63038, "ph-windows-logo": 63039, "ph-wine": 63040, "ph-wrench": 63041, "ph-x": 63042, "ph-x-circle": 63043, "ph-x-square": 63044, "ph-yin-yang": 63045, "ph-youtube-logo": 63046, "ph-activity-bold": 63047, "ph-address-book-bold": 63048, "ph-airplane-bold": 63049, "ph-airplane-in-flight-bold": 63050, "ph-airplane-landing-bold": 63051, "ph-airplane-takeoff-bold": 63052, "ph-airplane-tilt-bold": 63053, "ph-airplay-bold": 63054, "ph-alarm-bold": 63055, "ph-alien-bold": 63056, "ph-align-bottom-bold": 63057, "ph-align-bottom-simple-bold": 63058, "ph-align-center-horizontal-bold": 63059, "ph-align-center-horizontal-simple-bold": 63060, "ph-align-center-vertical-bold": 63061, "ph-align-center-vertical-simple-bold": 63062, "ph-align-left-bold": 63063, "ph-align-left-simple-bold": 63064, "ph-align-right-bold": 63065, "ph-align-right-simple-bold": 63066, "ph-align-top-bold": 63067, "ph-align-top-simple-bold": 63068, "ph-anchor-bold": 63069, "ph-anchor-simple-bold": 63070, "ph-android-logo-bold": 63071, "ph-angular-logo-bold": 63072, "ph-aperture-bold": 63073, "ph-app-store-logo-bold": 63074, "ph-app-window-bold": 63075, "ph-apple-logo-bold": 63076, "ph-apple-podcasts-logo-bold": 63077, "ph-archive-bold": 63078, "ph-archive-box-bold": 63079, "ph-archive-tray-bold": 63080, "ph-armchair-bold": 63081, "ph-arrow-arc-left-bold": 63082, "ph-arrow-arc-right-bold": 63083, "ph-arrow-bend-double-up-left-bold": 63084, "ph-arrow-bend-double-up-right-bold": 63085, "ph-arrow-bend-down-left-bold": 63086, "ph-arrow-bend-down-right-bold": 63087, "ph-arrow-bend-left-down-bold": 63088, "ph-arrow-bend-left-up-bold": 63089, "ph-arrow-bend-right-down-bold": 63090, "ph-arrow-bend-right-up-bold": 63091, "ph-arrow-bend-up-left-bold": 63092, "ph-arrow-bend-up-right-bold": 63093, "ph-arrow-circle-down-bold": 63094, "ph-arrow-circle-down-left-bold": 63095, "ph-arrow-circle-down-right-bold": 63096, "ph-arrow-circle-left-bold": 63097, "ph-arrow-circle-right-bold": 63098, "ph-arrow-circle-up-bold": 63099, "ph-arrow-circle-up-left-bold": 63100, "ph-arrow-circle-up-right-bold": 63101, "ph-arrow-clockwise-bold": 63102, "ph-arrow-counter-clockwise-bold": 63103, "ph-arrow-down-bold": 63104, "ph-arrow-down-left-bold": 63105, "ph-arrow-down-right-bold": 63106, "ph-arrow-elbow-down-left-bold": 63107, "ph-arrow-elbow-down-right-bold": 63108, "ph-arrow-elbow-left-bold": 63109, "ph-arrow-elbow-left-down-bold": 63110, "ph-arrow-elbow-left-up-bold": 63111, "ph-arrow-elbow-right-bold": 63112, "ph-arrow-elbow-right-down-bold": 63113, "ph-arrow-elbow-right-up-bold": 63114, "ph-arrow-elbow-up-left-bold": 63115, "ph-arrow-elbow-up-right-bold": 63116, "ph-arrow-fat-down-bold": 63117, "ph-arrow-fat-left-bold": 63118, "ph-arrow-fat-line-down-bold": 63119, "ph-arrow-fat-line-left-bold": 63120, "ph-arrow-fat-line-right-bold": 63121, "ph-arrow-fat-line-up-bold": 63122, "ph-arrow-fat-lines-down-bold": 63123, "ph-arrow-fat-lines-left-bold": 63124, "ph-arrow-fat-lines-right-bold": 63125, "ph-arrow-fat-lines-up-bold": 63126, "ph-arrow-fat-right-bold": 63127, "ph-arrow-fat-up-bold": 63128, "ph-arrow-left-bold": 63129, "ph-arrow-line-down-bold": 63130, "ph-arrow-line-down-left-bold": 63131, "ph-arrow-line-down-right-bold": 63132, "ph-arrow-line-left-bold": 63133, "ph-arrow-line-right-bold": 63134, "ph-arrow-line-up-bold": 63135, "ph-arrow-line-up-left-bold": 63136, "ph-arrow-line-up-right-bold": 63137, "ph-arrow-right-bold": 63138, "ph-arrow-square-down-bold": 63139, "ph-arrow-square-down-left-bold": 63140, "ph-arrow-square-down-right-bold": 63141, "ph-arrow-square-in-bold": 63142, "ph-arrow-square-left-bold": 63143, "ph-arrow-square-out-bold": 63144, "ph-arrow-square-right-bold": 63145, "ph-arrow-square-up-bold": 63146, "ph-arrow-square-up-left-bold": 63147, "ph-arrow-square-up-right-bold": 63148, "ph-arrow-u-down-left-bold": 63149, "ph-arrow-u-down-right-bold": 63150, "ph-arrow-u-left-down-bold": 63151, "ph-arrow-u-left-up-bold": 63152, "ph-arrow-u-right-down-bold": 63153, "ph-arrow-u-right-up-bold": 63154, "ph-arrow-u-up-left-bold": 63155, "ph-arrow-u-up-right-bold": 63156, "ph-arrow-up-bold": 63157, "ph-arrow-up-left-bold": 63158, "ph-arrow-up-right-bold": 63159, "ph-arrows-clockwise-bold": 63160, "ph-arrows-counter-clockwise-bold": 63161, "ph-arrows-down-up-bold": 63162, "ph-arrows-horizontal-bold": 63163, "ph-arrows-in-bold": 63164, "ph-arrows-in-cardinal-bold": 63165, "ph-arrows-in-line-horizontal-bold": 63166, "ph-arrows-in-line-vertical-bold": 63167, "ph-arrows-in-simple-bold": 63168, "ph-arrows-left-right-bold": 63169, "ph-arrows-out-bold": 63170, "ph-arrows-out-cardinal-bold": 63171, "ph-arrows-out-line-horizontal-bold": 63172, "ph-arrows-out-line-vertical-bold": 63173, "ph-arrows-out-simple-bold": 63174, "ph-arrows-vertical-bold": 63175, "ph-article-bold": 63176, "ph-article-medium-bold": 63177, "ph-article-ny-times-bold": 63178, "ph-asterisk-bold": 63179, "ph-asterisk-simple-bold": 63180, "ph-at-bold": 63181, "ph-atom-bold": 63182, "ph-baby-bold": 63183, "ph-backpack-bold": 63184, "ph-backspace-bold": 63185, "ph-bag-bold": 63186, "ph-bag-simple-bold": 63187, "ph-balloon-bold": 63188, "ph-bandaids-bold": 63189, "ph-bank-bold": 63190, "ph-barbell-bold": 63191, "ph-barcode-bold": 63192, "ph-barricade-bold": 63193, "ph-baseball-bold": 63194, "ph-basketball-bold": 63195, "ph-bathtub-bold": 63196, "ph-battery-charging-bold": 63197, "ph-battery-charging-vertical-bold": 63198, "ph-battery-empty-bold": 63199, "ph-battery-full-bold": 63200, "ph-battery-high-bold": 63201, "ph-battery-low-bold": 63202, "ph-battery-medium-bold": 63203, "ph-battery-plus-bold": 63204, "ph-battery-warning-bold": 63205, "ph-battery-warning-vertical-bold": 63206, "ph-bed-bold": 63207, "ph-beer-bottle-bold": 63208, "ph-behance-logo-bold": 63209, "ph-bell-bold": 63210, "ph-bell-ringing-bold": 63211, "ph-bell-simple-bold": 63212, "ph-bell-simple-ringing-bold": 63213, "ph-bell-simple-slash-bold": 63214, "ph-bell-simple-z-bold": 63215, "ph-bell-slash-bold": 63216, "ph-bell-z-bold": 63217, "ph-bezier-curve-bold": 63218, "ph-bicycle-bold": 63219, "ph-binoculars-bold": 63220, "ph-bird-bold": 63221, "ph-bluetooth-bold": 63222, "ph-bluetooth-connected-bold": 63223, "ph-bluetooth-slash-bold": 63224, "ph-bluetooth-x-bold": 63225, "ph-boat-bold": 63226, "ph-book-bold": 63227, "ph-book-bookmark-bold": 63228, "ph-book-open-bold": 63229, "ph-bookmark-bold": 63230, "ph-bookmark-simple-bold": 63231, "ph-bookmarks-bold": 63232, "ph-bookmarks-simple-bold": 63233, "ph-books-bold": 63234, "ph-bounding-box-bold": 63235, "ph-brackets-angle-bold": 63236, "ph-brackets-curly-bold": 63237, "ph-brackets-round-bold": 63238, "ph-brackets-square-bold": 63239, "ph-brain-bold": 63240, "ph-brandy-bold": 63241, "ph-briefcase-bold": 63242, "ph-briefcase-metal-bold": 63243, "ph-broadcast-bold": 63244, "ph-browser-bold": 63245, "ph-browsers-bold": 63246, "ph-bug-beetle-bold": 63247, "ph-bug-bold": 63248, "ph-bug-droid-bold": 63249, "ph-buildings-bold": 63250, "ph-bus-bold": 63251, "ph-butterfly-bold": 63252, "ph-cactus-bold": 63253, "ph-cake-bold": 63254, "ph-calculator-bold": 63255, "ph-calendar-blank-bold": 63256, "ph-calendar-bold": 63257, "ph-calendar-check-bold": 63258, "ph-calendar-plus-bold": 63259, "ph-calendar-x-bold": 63260, "ph-camera-bold": 63261, "ph-camera-rotate-bold": 63262, "ph-camera-slash-bold": 63263, "ph-campfire-bold": 63264, "ph-car-bold": 63265, "ph-car-simple-bold": 63266, "ph-cardholder-bold": 63267, "ph-cards-bold": 63268, "ph-caret-circle-double-down-bold": 63269, "ph-caret-circle-double-left-bold": 63270, "ph-caret-circle-double-right-bold": 63271, "ph-caret-circle-double-up-bold": 63272, "ph-caret-circle-down-bold": 63273, "ph-caret-circle-left-bold": 63274, "ph-caret-circle-right-bold": 63275, "ph-caret-circle-up-bold": 63276, "ph-caret-double-down-bold": 63277, "ph-caret-double-left-bold": 63278, "ph-caret-double-right-bold": 63279, "ph-caret-double-up-bold": 63280, "ph-caret-down-bold": 63281, "ph-caret-left-bold": 63282, "ph-caret-right-bold": 63283, "ph-caret-up-bold": 63284, "ph-cat-bold": 63285, "ph-cell-signal-full-bold": 63286, "ph-cell-signal-high-bold": 63287, "ph-cell-signal-low-bold": 63288, "ph-cell-signal-medium-bold": 63289, "ph-cell-signal-none-bold": 63290, "ph-cell-signal-slash-bold": 63291, "ph-cell-signal-x-bold": 63292, "ph-chalkboard-bold": 63293, "ph-chalkboard-simple-bold": 63294, "ph-chalkboard-teacher-bold": 63295, "ph-chart-bar-bold": 63296, "ph-chart-bar-horizontal-bold": 63297, "ph-chart-line-bold": 63298, "ph-chart-line-up-bold": 63299, "ph-chart-pie-bold": 63300, "ph-chart-pie-slice-bold": 63301, "ph-chat-bold": 63302, "ph-chat-centered-bold": 63303, "ph-chat-centered-dots-bold": 63304, "ph-chat-centered-text-bold": 63305, "ph-chat-circle-bold": 63306, "ph-chat-circle-dots-bold": 63307, "ph-chat-circle-text-bold": 63308, "ph-chat-dots-bold": 63309, "ph-chat-teardrop-bold": 63310, "ph-chat-teardrop-dots-bold": 63311, "ph-chat-teardrop-text-bold": 63312, "ph-chat-text-bold": 63313, "ph-chats-bold": 63314, "ph-chats-circle-bold": 63315, "ph-chats-teardrop-bold": 63316, "ph-check-bold": 63317, "ph-check-circle-bold": 63318, "ph-check-square-bold": 63319, "ph-check-square-offset-bold": 63320, "ph-checks-bold": 63321, "ph-circle-bold": 63322, "ph-circle-dashed-bold": 63323, "ph-circle-half-bold": 63324, "ph-circle-half-tilt-bold": 63325, "ph-circle-notch-bold": 63326, "ph-circle-wavy-bold": 63327, "ph-circle-wavy-check-bold": 63328, "ph-circle-wavy-question-bold": 63329, "ph-circle-wavy-warning-bold": 63330, "ph-circles-four-bold": 63331, "ph-circles-three-bold": 63332, "ph-circles-three-plus-bold": 63333, "ph-clipboard-bold": 63334, "ph-clipboard-text-bold": 63335, "ph-clock-afternoon-bold": 63336, "ph-clock-bold": 63337, "ph-clock-clockwise-bold": 63338, "ph-clock-counter-clockwise-bold": 63339, "ph-closed-captioning-bold": 63340, "ph-cloud-arrow-down-bold": 63341, "ph-cloud-arrow-up-bold": 63342, "ph-cloud-bold": 63343, "ph-cloud-check-bold": 63344, "ph-cloud-fog-bold": 63345, "ph-cloud-lightning-bold": 63346, "ph-cloud-moon-bold": 63347, "ph-cloud-rain-bold": 63348, "ph-cloud-slash-bold": 63349, "ph-cloud-snow-bold": 63350, "ph-cloud-sun-bold": 63351, "ph-club-bold": 63352, "ph-coat-hanger-bold": 63353, "ph-code-bold": 63354, "ph-code-simple-bold": 63355, "ph-codepen-logo-bold": 63356, "ph-codesandbox-logo-bold": 63357, "ph-coffee-bold": 63358, "ph-coin-bold": 63359, "ph-coin-vertical-bold": 63360, "ph-coins-bold": 63361, "ph-columns-bold": 63362, "ph-command-bold": 63363, "ph-compass-bold": 63364, "ph-computer-tower-bold": 63365, "ph-confetti-bold": 63366, "ph-cookie-bold": 63367, "ph-cooking-pot-bold": 63368, "ph-copy-bold": 63369, "ph-copy-simple-bold": 63370, "ph-copyleft-bold": 63371, "ph-copyright-bold": 63372, "ph-corners-in-bold": 63373, "ph-corners-out-bold": 63374, "ph-cpu-bold": 63375, "ph-credit-card-bold": 63376, "ph-crop-bold": 63377, "ph-crosshair-bold": 63378, "ph-crosshair-simple-bold": 63379, "ph-crown-bold": 63380, "ph-crown-simple-bold": 63381, "ph-cube-bold": 63382, "ph-currency-btc-bold": 63383, "ph-currency-circle-dollar-bold": 63384, "ph-currency-cny-bold": 63385, "ph-currency-dollar-bold": 63386, "ph-currency-dollar-simple-bold": 63387, "ph-currency-eth-bold": 63388, "ph-currency-eur-bold": 63389, "ph-currency-gbp-bold": 63390, "ph-currency-inr-bold": 63391, "ph-currency-jpy-bold": 63392, "ph-currency-krw-bold": 63393, "ph-currency-kzt-bold": 63394, "ph-currency-ngn-bold": 63395, "ph-currency-rub-bold": 63396, "ph-cursor-bold": 63397, "ph-cursor-text-bold": 63398, "ph-cylinder-bold": 63399, "ph-database-bold": 63400, "ph-desktop-bold": 63401, "ph-desktop-tower-bold": 63402, "ph-detective-bold": 63403, "ph-device-mobile-bold": 63404, "ph-device-mobile-camera-bold": 63405, "ph-device-mobile-speaker-bold": 63406, "ph-device-tablet-bold": 63407, "ph-device-tablet-camera-bold": 63408, "ph-device-tablet-speaker-bold": 63409, "ph-diamond-bold": 63410, "ph-diamonds-four-bold": 63411, "ph-dice-five-bold": 63412, "ph-dice-four-bold": 63413, "ph-dice-one-bold": 63414, "ph-dice-six-bold": 63415, "ph-dice-three-bold": 63416, "ph-dice-two-bold": 63417, "ph-disc-bold": 63418, "ph-discord-logo-bold": 63419, "ph-divide-bold": 63420, "ph-dog-bold": 63421, "ph-door-bold": 63422, "ph-dots-nine-bold": 63423, "ph-dots-six-bold": 63424, "ph-dots-six-vertical-bold": 63425, "ph-dots-three-bold": 63426, "ph-dots-three-circle-bold": 63427, "ph-dots-three-circle-vertical-bold": 63428, "ph-dots-three-outline-bold": 63429, "ph-dots-three-outline-vertical-bold": 63430, "ph-dots-three-vertical-bold": 63431, "ph-download-bold": 63432, "ph-download-simple-bold": 63433, "ph-dribbble-logo-bold": 63434, "ph-drop-bold": 63435, "ph-drop-half-bold": 63436, "ph-drop-half-bottom-bold": 63437, "ph-ear-bold": 63438, "ph-ear-slash-bold": 63439, "ph-egg-bold": 63440, "ph-egg-crack-bold": 63441, "ph-eject-bold": 63442, "ph-eject-simple-bold": 63443, "ph-envelope-bold": 63444, "ph-envelope-open-bold": 63445, "ph-envelope-simple-bold": 63446, "ph-envelope-simple-open-bold": 63447, "ph-equalizer-bold": 63448, "ph-equals-bold": 63449, "ph-eraser-bold": 63450, "ph-exam-bold": 63451, "ph-export-bold": 63452, "ph-eye-bold": 63453, "ph-eye-closed-bold": 63454, "ph-eye-slash-bold": 63455, "ph-eyedropper-bold": 63456, "ph-eyedropper-sample-bold": 63457, "ph-eyeglasses-bold": 63458, "ph-face-mask-bold": 63459, "ph-facebook-logo-bold": 63460, "ph-factory-bold": 63461, "ph-faders-bold": 63462, "ph-faders-horizontal-bold": 63463, "ph-fast-forward-bold": 63464, "ph-fast-forward-circle-bold": 63465, "ph-figma-logo-bold": 63466, "ph-file-arrow-down-bold": 63467, "ph-file-arrow-up-bold": 63468, "ph-file-audio-bold": 63469, "ph-file-bold": 63470, "ph-file-cloud-bold": 63471, "ph-file-code-bold": 63472, "ph-file-css-bold": 63473, "ph-file-csv-bold": 63474, "ph-file-doc-bold": 63475, "ph-file-dotted-bold": 63476, "ph-file-html-bold": 63477, "ph-file-image-bold": 63478, "ph-file-jpg-bold": 63479, "ph-file-js-bold": 63480, "ph-file-jsx-bold": 63481, "ph-file-lock-bold": 63482, "ph-file-minus-bold": 63483, "ph-file-pdf-bold": 63484, "ph-file-plus-bold": 63485, "ph-file-png-bold": 63486, "ph-file-ppt-bold": 63487, "ph-file-rs-bold": 63488, "ph-file-search-bold": 63489, "ph-file-text-bold": 63490, "ph-file-ts-bold": 63491, "ph-file-tsx-bold": 63492, "ph-file-video-bold": 63493, "ph-file-vue-bold": 63494, "ph-file-x-bold": 63495, "ph-file-xls-bold": 63496, "ph-file-zip-bold": 63497, "ph-files-bold": 63498, "ph-film-script-bold": 63499, "ph-film-slate-bold": 63500, "ph-film-strip-bold": 63501, "ph-fingerprint-bold": 63502, "ph-fingerprint-simple-bold": 63503, "ph-finn-the-human-bold": 63504, "ph-fire-bold": 63505, "ph-fire-simple-bold": 63506, "ph-first-aid-bold": 63507, "ph-first-aid-kit-bold": 63508, "ph-fish-bold": 63509, "ph-fish-simple-bold": 63510, "ph-flag-banner-bold": 63511, "ph-flag-bold": 63512, "ph-flag-checkered-bold": 63513, "ph-flame-bold": 63514, "ph-flashlight-bold": 63515, "ph-flask-bold": 63516, "ph-floppy-disk-back-bold": 63517, "ph-floppy-disk-bold": 63518, "ph-flow-arrow-bold": 63519, "ph-flower-bold": 63520, "ph-flower-lotus-bold": 63521, "ph-flying-saucer-bold": 63522, "ph-folder-bold": 63523, "ph-folder-dotted-bold": 63524, "ph-folder-lock-bold": 63525, "ph-folder-minus-bold": 63526, "ph-folder-notch-bold": 63527, "ph-folder-notch-minus-bold": 63528, "ph-folder-notch-open-bold": 63529, "ph-folder-notch-plus-bold": 63530, "ph-folder-open-bold": 63531, "ph-folder-plus-bold": 63532, "ph-folder-simple-bold": 63533, "ph-folder-simple-dotted-bold": 63534, "ph-folder-simple-lock-bold": 63535, "ph-folder-simple-minus-bold": 63536, "ph-folder-simple-plus-bold": 63537, "ph-folder-simple-star-bold": 63538, "ph-folder-simple-user-bold": 63539, "ph-folder-star-bold": 63540, "ph-folder-user-bold": 63541, "ph-folders-bold": 63542, "ph-football-bold": 63543, "ph-fork-knife-bold": 63544, "ph-frame-corners-bold": 63545, "ph-framer-logo-bold": 63546, "ph-function-bold": 63547, "ph-funnel-bold": 63548, "ph-funnel-simple-bold": 63549, "ph-game-controller-bold": 63550, "ph-gas-pump-bold": 63551, "ph-gauge-bold": 63552, "ph-gear-bold": 63553, "ph-gear-six-bold": 63554, "ph-gender-female-bold": 63555, "ph-gender-intersex-bold": 63556, "ph-gender-male-bold": 63557, "ph-gender-neuter-bold": 63558, "ph-gender-nonbinary-bold": 63559, "ph-gender-transgender-bold": 63560, "ph-ghost-bold": 63561, "ph-gif-bold": 63562, "ph-gift-bold": 63563, "ph-git-branch-bold": 63564, "ph-git-commit-bold": 63565, "ph-git-diff-bold": 63566, "ph-git-fork-bold": 63567, "ph-git-merge-bold": 63568, "ph-git-pull-request-bold": 63569, "ph-github-logo-bold": 63570, "ph-gitlab-logo-bold": 63571, "ph-gitlab-logo-simple-bold": 63572, "ph-globe-bold": 63573, "ph-globe-hemisphere-east-bold": 63574, "ph-globe-hemisphere-west-bold": 63575, "ph-globe-simple-bold": 63576, "ph-globe-stand-bold": 63577, "ph-google-chrome-logo-bold": 63578, "ph-google-logo-bold": 63579, "ph-google-photos-logo-bold": 63580, "ph-google-play-logo-bold": 63581, "ph-google-podcasts-logo-bold": 63582, "ph-gradient-bold": 63583, "ph-graduation-cap-bold": 63584, "ph-graph-bold": 63585, "ph-grid-four-bold": 63586, "ph-hamburger-bold": 63587, "ph-hand-bold": 63588, "ph-hand-eye-bold": 63589, "ph-hand-fist-bold": 63590, "ph-hand-grabbing-bold": 63591, "ph-hand-palm-bold": 63592, "ph-hand-pointing-bold": 63593, "ph-hand-soap-bold": 63594, "ph-hand-waving-bold": 63595, "ph-handbag-bold": 63596, "ph-handbag-simple-bold": 63597, "ph-hands-clapping-bold": 63598, "ph-handshake-bold": 63599, "ph-hard-drive-bold": 63600, "ph-hard-drives-bold": 63601, "ph-hash-bold": 63602, "ph-hash-straight-bold": 63603, "ph-headlights-bold": 63604, "ph-headphones-bold": 63605, "ph-headset-bold": 63606, "ph-heart-bold": 63607, "ph-heart-break-bold": 63608, "ph-heart-straight-bold": 63609, "ph-heart-straight-break-bold": 63610, "ph-heartbeat-bold": 63611, "ph-hexagon-bold": 63612, "ph-highlighter-circle-bold": 63613, "ph-horse-bold": 63614, "ph-hourglass-bold": 63615, "ph-hourglass-high-bold": 63616, "ph-hourglass-low-bold": 63617, "ph-hourglass-medium-bold": 63618, "ph-hourglass-simple-bold": 63619, "ph-hourglass-simple-high-bold": 63620, "ph-hourglass-simple-low-bold": 63621, "ph-hourglass-simple-medium-bold": 63622, "ph-house-bold": 63623, "ph-house-line-bold": 63624, "ph-house-simple-bold": 63625, "ph-identification-badge-bold": 63626, "ph-identification-card-bold": 63627, "ph-image-bold": 63628, "ph-image-square-bold": 63629, "ph-infinity-bold": 63630, "ph-info-bold": 63631, "ph-instagram-logo-bold": 63632, "ph-intersect-bold": 63633, "ph-jeep-bold": 63634, "ph-kanban-bold": 63635, "ph-key-bold": 63636, "ph-key-return-bold": 63637, "ph-keyboard-bold": 63638, "ph-keyhole-bold": 63639, "ph-knife-bold": 63640, "ph-ladder-bold": 63641, "ph-ladder-simple-bold": 63642, "ph-lamp-bold": 63643, "ph-laptop-bold": 63644, "ph-layout-bold": 63645, "ph-leaf-bold": 63646, "ph-lifebuoy-bold": 63647, "ph-lightbulb-bold": 63648, "ph-lightbulb-filament-bold": 63649, "ph-lightning-bold": 63650, "ph-lightning-slash-bold": 63651, "ph-line-segment-bold": 63652, "ph-line-segments-bold": 63653, "ph-link-bold": 63654, "ph-link-break-bold": 63655, "ph-link-simple-bold": 63656, "ph-link-simple-break-bold": 63657, "ph-link-simple-horizontal-bold": 63658, "ph-link-simple-horizontal-break-bold": 63659, "ph-linkedin-logo-bold": 63660, "ph-linux-logo-bold": 63661, "ph-list-bold": 63662, "ph-list-bullets-bold": 63663, "ph-list-checks-bold": 63664, "ph-list-dashes-bold": 63665, "ph-list-numbers-bold": 63666, "ph-list-plus-bold": 63667, "ph-lock-bold": 63668, "ph-lock-key-bold": 63669, "ph-lock-key-open-bold": 63670, "ph-lock-laminated-bold": 63671, "ph-lock-laminated-open-bold": 63672, "ph-lock-open-bold": 63673, "ph-lock-simple-bold": 63674, "ph-lock-simple-open-bold": 63675, "ph-magic-wand-bold": 63676, "ph-magnet-bold": 63677, "ph-magnet-straight-bold": 63678, "ph-magnifying-glass-bold": 63679, "ph-magnifying-glass-minus-bold": 63680, "ph-magnifying-glass-plus-bold": 63681, "ph-map-pin-bold": 63682, "ph-map-pin-line-bold": 63683, "ph-map-trifold-bold": 63684, "ph-marker-circle-bold": 63685, "ph-martini-bold": 63686, "ph-mask-happy-bold": 63687, "ph-mask-sad-bold": 63688, "ph-math-operations-bold": 63689, "ph-medal-bold": 63690, "ph-medium-logo-bold": 63691, "ph-megaphone-bold": 63692, "ph-megaphone-simple-bold": 63693, "ph-messenger-logo-bold": 63694, "ph-microphone-bold": 63695, "ph-microphone-slash-bold": 63696, "ph-microphone-stage-bold": 63697, "ph-microsoft-excel-logo-bold": 63698, "ph-microsoft-powerpoint-logo-bold": 63699, "ph-microsoft-teams-logo-bold": 63700, "ph-microsoft-word-logo-bold": 63701, "ph-minus-bold": 63702, "ph-minus-circle-bold": 63703, "ph-money-bold": 63704, "ph-monitor-bold": 63705, "ph-monitor-play-bold": 63706, "ph-moon-bold": 63707, "ph-moon-stars-bold": 63708, "ph-mountains-bold": 63709, "ph-mouse-bold": 63710, "ph-mouse-simple-bold": 63711, "ph-music-note-bold": 63712, "ph-music-note-simple-bold": 63713, "ph-music-notes-bold": 63714, "ph-music-notes-plus-bold": 63715, "ph-music-notes-simple-bold": 63716, "ph-navigation-arrow-bold": 63717, "ph-needle-bold": 63718, "ph-newspaper-bold": 63719, "ph-newspaper-clipping-bold": 63720, "ph-note-blank-bold": 63721, "ph-note-bold": 63722, "ph-note-pencil-bold": 63723, "ph-notebook-bold": 63724, "ph-notepad-bold": 63725, "ph-notification-bold": 63726, "ph-number-circle-eight-bold": 63727, "ph-number-circle-five-bold": 63728, "ph-number-circle-four-bold": 63729, "ph-number-circle-nine-bold": 63730, "ph-number-circle-one-bold": 63731, "ph-number-circle-seven-bold": 63732, "ph-number-circle-six-bold": 63733, "ph-number-circle-three-bold": 63734, "ph-number-circle-two-bold": 63735, "ph-number-circle-zero-bold": 63736, "ph-number-eight-bold": 63737, "ph-number-five-bold": 63738, "ph-number-four-bold": 63739, "ph-number-nine-bold": 63740, "ph-number-one-bold": 63741, "ph-number-seven-bold": 63742, "ph-number-six-bold": 63743, "ph-number-square-eight-bold": 63744, "ph-number-square-five-bold": 63745, "ph-number-square-four-bold": 63746, "ph-number-square-nine-bold": 63747, "ph-number-square-one-bold": 63748, "ph-number-square-seven-bold": 63749, "ph-number-square-six-bold": 63750, "ph-number-square-three-bold": 63751, "ph-number-square-two-bold": 63752, "ph-number-square-zero-bold": 63753, "ph-number-three-bold": 63754, "ph-number-two-bold": 63755, "ph-number-zero-bold": 63756, "ph-nut-bold": 63757, "ph-ny-times-logo-bold": 63758, "ph-octagon-bold": 63759, "ph-option-bold": 63760, "ph-package-bold": 63761, "ph-paint-brush-bold": 63762, "ph-paint-brush-broad-bold": 63763, "ph-paint-brush-household-bold": 63764, "ph-paint-bucket-bold": 63765, "ph-paint-roller-bold": 63766, "ph-palette-bold": 63767, "ph-paper-plane-bold": 63768, "ph-paper-plane-right-bold": 63769, "ph-paper-plane-tilt-bold": 63770, "ph-paperclip-bold": 63771, "ph-paperclip-horizontal-bold": 63772, "ph-parachute-bold": 63773, "ph-password-bold": 63774, "ph-path-bold": 63775, "ph-pause-bold": 63776, "ph-pause-circle-bold": 63777, "ph-paw-print-bold": 63778, "ph-peace-bold": 63779, "ph-pen-bold": 63780, "ph-pen-nib-bold": 63781, "ph-pen-nib-straight-bold": 63782, "ph-pencil-bold": 63783, "ph-pencil-circle-bold": 63784, "ph-pencil-line-bold": 63785, "ph-pencil-simple-bold": 63786, "ph-pencil-simple-line-bold": 63787, "ph-percent-bold": 63788, "ph-person-bold": 63789, "ph-person-simple-bold": 63790, "ph-person-simple-run-bold": 63791, "ph-person-simple-walk-bold": 63792, "ph-perspective-bold": 63793, "ph-phone-bold": 63794, "ph-phone-call-bold": 63795, "ph-phone-disconnect-bold": 63796, "ph-phone-incoming-bold": 63797, "ph-phone-outgoing-bold": 63798, "ph-phone-slash-bold": 63799, "ph-phone-x-bold": 63800, "ph-phosphor-logo-bold": 63801, "ph-piano-keys-bold": 63802, "ph-picture-in-picture-bold": 63803, "ph-pill-bold": 63804, "ph-pinterest-logo-bold": 63805, "ph-pinwheel-bold": 63806, "ph-pizza-bold": 63807, "ph-placeholder-bold": 63808, "ph-planet-bold": 63809, "ph-play-bold": 63810, "ph-play-circle-bold": 63811, "ph-playlist-bold": 63812, "ph-plug-bold": 63813, "ph-plugs-bold": 63814, "ph-plugs-connected-bold": 63815, "ph-plus-bold": 63816, "ph-plus-circle-bold": 63817, "ph-plus-minus-bold": 63818, "ph-poker-chip-bold": 63819, "ph-police-car-bold": 63820, "ph-polygon-bold": 63821, "ph-popcorn-bold": 63822, "ph-power-bold": 63823, "ph-prescription-bold": 63824, "ph-presentation-bold": 63825, "ph-presentation-chart-bold": 63826, "ph-printer-bold": 63827, "ph-prohibit-bold": 63828, "ph-prohibit-inset-bold": 63829, "ph-projector-screen-bold": 63830, "ph-projector-screen-chart-bold": 63831, "ph-push-pin-bold": 63832, "ph-push-pin-simple-bold": 63833, "ph-push-pin-simple-slash-bold": 63834, "ph-push-pin-slash-bold": 63835, "ph-puzzle-piece-bold": 63836, "ph-qr-code-bold": 63837, "ph-question-bold": 63838, "ph-queue-bold": 63839, "ph-quotes-bold": 63840, "ph-radical-bold": 63841, "ph-radio-bold": 63842, "ph-radio-button-bold": 63843, "ph-rainbow-bold": 63844, "ph-rainbow-cloud-bold": 63845, "ph-receipt-bold": 63846, "ph-record-bold": 63847, "ph-rectangle-bold": 63848, "ph-recycle-bold": 63849, "ph-reddit-logo-bold": 63850, "ph-repeat-bold": 63851, "ph-repeat-once-bold": 63852, "ph-rewind-bold": 63853, "ph-rewind-circle-bold": 63854, "ph-robot-bold": 63855, "ph-rocket-bold": 63856, "ph-rocket-launch-bold": 63857, "ph-rows-bold": 63858, "ph-rss-bold": 63859, "ph-rss-simple-bold": 63860, "ph-rug-bold": 63861, "ph-ruler-bold": 63862, "ph-scales-bold": 63863, "ph-scan-bold": 63864, "ph-scissors-bold": 63865, "ph-screencast-bold": 63866, "ph-scribble-loop-bold": 63867, "ph-scroll-bold": 63868, "ph-selection-all-bold": 63869, "ph-selection-background-bold": 63870, "ph-selection-bold": 63871, "ph-selection-foreground-bold": 63872, "ph-selection-inverse-bold": 63873, "ph-selection-plus-bold": 63874, "ph-selection-slash-bold": 63875, "ph-share-bold": 63876, "ph-share-network-bold": 63877, "ph-shield-bold": 63878, "ph-shield-check-bold": 63879, "ph-shield-checkered-bold": 63880, "ph-shield-chevron-bold": 63881, "ph-shield-plus-bold": 63882, "ph-shield-slash-bold": 63883, "ph-shield-star-bold": 63884, "ph-shield-warning-bold": 63885, "ph-shopping-bag-bold": 63886, "ph-shopping-bag-open-bold": 63887, "ph-shopping-cart-bold": 63888, "ph-shopping-cart-simple-bold": 63889, "ph-shower-bold": 63890, "ph-shuffle-angular-bold": 63891, "ph-shuffle-bold": 63892, "ph-shuffle-simple-bold": 63893, "ph-sidebar-bold": 63894, "ph-sidebar-simple-bold": 63895, "ph-sign-in-bold": 63896, "ph-sign-out-bold": 63897, "ph-signpost-bold": 63898, "ph-sim-card-bold": 63899, "ph-sketch-logo-bold": 63900, "ph-skip-back-bold": 63901, "ph-skip-back-circle-bold": 63902, "ph-skip-forward-bold": 63903, "ph-skip-forward-circle-bold": 63904, "ph-skull-bold": 63905, "ph-slack-logo-bold": 63906, "ph-sliders-bold": 63907, "ph-sliders-horizontal-bold": 63908, "ph-smiley-blank-bold": 63909, "ph-smiley-bold": 63910, "ph-smiley-meh-bold": 63911, "ph-smiley-nervous-bold": 63912, "ph-smiley-sad-bold": 63913, "ph-smiley-sticker-bold": 63914, "ph-smiley-wink-bold": 63915, "ph-smiley-x-eyes-bold": 63916, "ph-snapchat-logo-bold": 63917, "ph-snowflake-bold": 63918, "ph-soccer-ball-bold": 63919, "ph-sort-ascending-bold": 63920, "ph-sort-descending-bold": 63921, "ph-spade-bold": 63922, "ph-sparkle-bold": 63923, "ph-speaker-high-bold": 63924, "ph-speaker-low-bold": 63925, "ph-speaker-none-bold": 63926, "ph-speaker-simple-high-bold": 63927, "ph-speaker-simple-low-bold": 63928, "ph-speaker-simple-none-bold": 63929, "ph-speaker-simple-slash-bold": 63930, "ph-speaker-simple-x-bold": 63931, "ph-speaker-slash-bold": 63932, "ph-speaker-x-bold": 63933, "ph-spinner-bold": 63934, "ph-spinner-gap-bold": 63935, "ph-spiral-bold": 63936, "ph-spotify-logo-bold": 63937, "ph-square-bold": 63938, "ph-square-half-bold": 63939, "ph-square-half-bottom-bold": 63940, "ph-square-logo-bold": 63941, "ph-squares-four-bold": 63942, "ph-stack-bold": 63943, "ph-stack-overflow-logo-bold": 63944, "ph-stack-simple-bold": 63945, "ph-stamp-bold": 63946, "ph-star-bold": 63947, "ph-star-four-bold": 63948, "ph-star-half-bold": 63949, "ph-sticker-bold": 63950, "ph-stop-bold": 63951, "ph-stop-circle-bold": 63952, "ph-storefront-bold": 63953, "ph-strategy-bold": 63954, "ph-stripe-logo-bold": 63955, "ph-student-bold": 63956, "ph-suitcase-bold": 63957, "ph-suitcase-simple-bold": 63958, "ph-sun-bold": 63959, "ph-sun-dim-bold": 63960, "ph-sun-horizon-bold": 63961, "ph-sunglasses-bold": 63962, "ph-swap-bold": 63963, "ph-swatches-bold": 63964, "ph-sword-bold": 63965, "ph-syringe-bold": 63966, "ph-t-shirt-bold": 63967, "ph-table-bold": 63968, "ph-tabs-bold": 63969, "ph-tag-bold": 63970, "ph-tag-chevron-bold": 63971, "ph-tag-simple-bold": 63972, "ph-target-bold": 63973, "ph-taxi-bold": 63974, "ph-telegram-logo-bold": 63975, "ph-television-bold": 63976, "ph-television-simple-bold": 63977, "ph-tennis-ball-bold": 63978, "ph-terminal-bold": 63979, "ph-terminal-window-bold": 63980, "ph-test-tube-bold": 63981, "ph-text-aa-bold": 63982, "ph-text-align-center-bold": 63983, "ph-text-align-justify-bold": 63984, "ph-text-align-left-bold": 63985, "ph-text-align-right-bold": 63986, "ph-text-bolder-bold": 63987, "ph-text-h-bold": 63988, "ph-text-h-five-bold": 63989, "ph-text-h-four-bold": 63990, "ph-text-h-one-bold": 63991, "ph-text-h-six-bold": 63992, "ph-text-h-three-bold": 63993, "ph-text-h-two-bold": 63994, "ph-text-indent-bold": 63995, "ph-text-italic-bold": 63996, "ph-text-outdent-bold": 63997, "ph-text-strikethrough-bold": 63998, "ph-text-t-bold": 63999, "ph-text-underline-bold": 64000, "ph-textbox-bold": 64001, "ph-thermometer-bold": 64002, "ph-thermometer-cold-bold": 64003, "ph-thermometer-hot-bold": 64004, "ph-thermometer-simple-bold": 64005, "ph-thumbs-down-bold": 64006, "ph-thumbs-up-bold": 64007, "ph-ticket-bold": 64008, "ph-tiktok-logo-bold": 64009, "ph-timer-bold": 64010, "ph-toggle-left-bold": 64011, "ph-toggle-right-bold": 64012, "ph-toilet-bold": 64013, "ph-toilet-paper-bold": 64014, "ph-tote-bold": 64015, "ph-tote-simple-bold": 64016, "ph-trademark-registered-bold": 64017, "ph-traffic-cone-bold": 64018, "ph-traffic-sign-bold": 64019, "ph-traffic-signal-bold": 64020, "ph-train-bold": 64021, "ph-train-regional-bold": 64022, "ph-train-simple-bold": 64023, "ph-translate-bold": 64024, "ph-trash-bold": 64025, "ph-trash-simple-bold": 64026, "ph-tray-bold": 64027, "ph-tree-bold": 64028, "ph-tree-evergreen-bold": 64029, "ph-tree-structure-bold": 64030, "ph-trend-down-bold": 64031, "ph-trend-up-bold": 64032, "ph-triangle-bold": 64033, "ph-trophy-bold": 64034, "ph-truck-bold": 64035, "ph-twitch-logo-bold": 64036, "ph-twitter-logo-bold": 64037, "ph-umbrella-bold": 64038, "ph-umbrella-simple-bold": 64039, "ph-upload-bold": 64040, "ph-upload-simple-bold": 64041, "ph-user-bold": 64042, "ph-user-circle-bold": 64043, "ph-user-circle-gear-bold": 64044, "ph-user-circle-minus-bold": 64045, "ph-user-circle-plus-bold": 64046, "ph-user-focus-bold": 64047, "ph-user-gear-bold": 64048, "ph-user-list-bold": 64049, "ph-user-minus-bold": 64050, "ph-user-plus-bold": 64051, "ph-user-rectangle-bold": 64052, "ph-user-square-bold": 64053, "ph-user-switch-bold": 64054, "ph-users-bold": 64055, "ph-users-four-bold": 64056, "ph-users-three-bold": 64057, "ph-vault-bold": 64058, "ph-vibrate-bold": 64059, "ph-video-camera-bold": 64060, "ph-video-camera-slash-bold": 64061, "ph-vignette-bold": 64062, "ph-voicemail-bold": 64063, "ph-volleyball-bold": 64064, "ph-wall-bold": 64065, "ph-wallet-bold": 64066, "ph-warning-bold": 64067, "ph-warning-circle-bold": 64068, "ph-warning-octagon-bold": 64069, "ph-watch-bold": 64070, "ph-wave-sawtooth-bold": 64071, "ph-wave-sine-bold": 64072, "ph-wave-square-bold": 64073, "ph-wave-triangle-bold": 64074, "ph-waves-bold": 64075, "ph-webcam-bold": 64076, "ph-whatsapp-logo-bold": 64077, "ph-wheelchair-bold": 64078, "ph-wifi-high-bold": 64079, "ph-wifi-low-bold": 64080, "ph-wifi-medium-bold": 64081, "ph-wifi-none-bold": 64082, "ph-wifi-slash-bold": 64083, "ph-wifi-x-bold": 64084, "ph-wind-bold": 64085, "ph-windows-logo-bold": 64086, "ph-wine-bold": 64087, "ph-wrench-bold": 64088, "ph-x-bold": 64089, "ph-x-circle-bold": 64090, "ph-x-square-bold": 64091, "ph-yin-yang-bold": 64092, "ph-youtube-logo-bold": 64093, "ph-activity-fill": 64094, "ph-address-book-fill": 64095, "ph-airplane-fill": 64096, "ph-airplane-in-flight-fill": 64097, "ph-airplane-landing-fill": 64098, "ph-airplane-takeoff-fill": 64099, "ph-airplane-tilt-fill": 64100, "ph-airplay-fill": 64101, "ph-alarm-fill": 64102, "ph-alien-fill": 64103, "ph-align-bottom-fill": 64104, "ph-align-bottom-simple-fill": 64105, "ph-align-center-horizontal-fill": 64106, "ph-align-center-horizontal-simple-fill": 64107, "ph-align-center-vertical-fill": 64108, "ph-align-center-vertical-simple-fill": 64109, "ph-align-left-fill": 64110, "ph-align-left-simple-fill": 64111, "ph-align-right-fill": 64112, "ph-align-right-simple-fill": 64113, "ph-align-top-fill": 64114, "ph-align-top-simple-fill": 64115, "ph-anchor-fill": 64116, "ph-anchor-simple-fill": 64117, "ph-android-logo-fill": 64118, "ph-angular-logo-fill": 64119, "ph-aperture-fill": 64120, "ph-app-store-logo-fill": 64121, "ph-app-window-fill": 64122, "ph-apple-logo-fill": 64123, "ph-apple-podcasts-logo-fill": 64124, "ph-archive-box-fill": 64125, "ph-archive-fill": 64126, "ph-archive-tray-fill": 64127, "ph-armchair-fill": 64128, "ph-arrow-arc-left-fill": 64129, "ph-arrow-arc-right-fill": 64130, "ph-arrow-bend-double-up-left-fill": 64131, "ph-arrow-bend-double-up-right-fill": 64132, "ph-arrow-bend-down-left-fill": 64133, "ph-arrow-bend-down-right-fill": 64134, "ph-arrow-bend-left-down-fill": 64135, "ph-arrow-bend-left-up-fill": 64136, "ph-arrow-bend-right-down-fill": 64137, "ph-arrow-bend-right-up-fill": 64138, "ph-arrow-bend-up-left-fill": 64139, "ph-arrow-bend-up-right-fill": 64140, "ph-arrow-circle-down-fill": 64141, "ph-arrow-circle-down-left-fill": 64142, "ph-arrow-circle-down-right-fill": 64143, "ph-arrow-circle-left-fill": 64144, "ph-arrow-circle-right-fill": 64145, "ph-arrow-circle-up-fill": 64146, "ph-arrow-circle-up-left-fill": 64147, "ph-arrow-circle-up-right-fill": 64148, "ph-arrow-clockwise-fill": 64149, "ph-arrow-counter-clockwise-fill": 64150, "ph-arrow-down-fill": 64151, "ph-arrow-down-left-fill": 64152, "ph-arrow-down-right-fill": 64153, "ph-arrow-elbow-down-left-fill": 64154, "ph-arrow-elbow-down-right-fill": 64155, "ph-arrow-elbow-left-down-fill": 64156, "ph-arrow-elbow-left-fill": 64157, "ph-arrow-elbow-left-up-fill": 64158, "ph-arrow-elbow-right-down-fill": 64159, "ph-arrow-elbow-right-fill": 64160, "ph-arrow-elbow-right-up-fill": 64161, "ph-arrow-elbow-up-left-fill": 64162, "ph-arrow-elbow-up-right-fill": 64163, "ph-arrow-fat-down-fill": 64164, "ph-arrow-fat-left-fill": 64165, "ph-arrow-fat-line-down-fill": 64166, "ph-arrow-fat-line-left-fill": 64167, "ph-arrow-fat-line-right-fill": 64168, "ph-arrow-fat-line-up-fill": 64169, "ph-arrow-fat-lines-down-fill": 64170, "ph-arrow-fat-lines-left-fill": 64171, "ph-arrow-fat-lines-right-fill": 64172, "ph-arrow-fat-lines-up-fill": 64173, "ph-arrow-fat-right-fill": 64174, "ph-arrow-fat-up-fill": 64175, "ph-arrow-left-fill": 64176, "ph-arrow-line-down-fill": 64177, "ph-arrow-line-down-left-fill": 64178, "ph-arrow-line-down-right-fill": 64179, "ph-arrow-line-left-fill": 64180, "ph-arrow-line-right-fill": 64181, "ph-arrow-line-up-fill": 64182, "ph-arrow-line-up-left-fill": 64183, "ph-arrow-line-up-right-fill": 64184, "ph-arrow-right-fill": 64185, "ph-arrow-square-down-fill": 64186, "ph-arrow-square-down-left-fill": 64187, "ph-arrow-square-down-right-fill": 64188, "ph-arrow-square-in-fill": 64189, "ph-arrow-square-left-fill": 64190, "ph-arrow-square-out-fill": 64191, "ph-arrow-square-right-fill": 64192, "ph-arrow-square-up-fill": 64193, "ph-arrow-square-up-left-fill": 64194, "ph-arrow-square-up-right-fill": 64195, "ph-arrow-u-down-left-fill": 64196, "ph-arrow-u-down-right-fill": 64197, "ph-arrow-u-left-down-fill": 64198, "ph-arrow-u-left-up-fill": 64199, "ph-arrow-u-right-down-fill": 64200, "ph-arrow-u-right-up-fill": 64201, "ph-arrow-u-up-left-fill": 64202, "ph-arrow-u-up-right-fill": 64203, "ph-arrow-up-fill": 64204, "ph-arrow-up-left-fill": 64205, "ph-arrow-up-right-fill": 64206, "ph-arrows-clockwise-fill": 64207, "ph-arrows-counter-clockwise-fill": 64208, "ph-arrows-down-up-fill": 64209, "ph-arrows-horizontal-fill": 64210, "ph-arrows-in-cardinal-fill": 64211, "ph-arrows-in-fill": 64212, "ph-arrows-in-line-horizontal-fill": 64213, "ph-arrows-in-line-vertical-fill": 64214, "ph-arrows-in-simple-fill": 64215, "ph-arrows-left-right-fill": 64216, "ph-arrows-out-cardinal-fill": 64217, "ph-arrows-out-fill": 64218, "ph-arrows-out-line-horizontal-fill": 64219, "ph-arrows-out-line-vertical-fill": 64220, "ph-arrows-out-simple-fill": 64221, "ph-arrows-vertical-fill": 64222, "ph-article-fill": 64223, "ph-article-medium-fill": 64224, "ph-article-ny-times-fill": 64225, "ph-asterisk-fill": 64226, "ph-asterisk-simple-fill": 64227, "ph-at-fill": 64228, "ph-atom-fill": 64229, "ph-baby-fill": 64230, "ph-backpack-fill": 64231, "ph-backspace-fill": 64232, "ph-bag-fill": 64233, "ph-bag-simple-fill": 64234, "ph-balloon-fill": 64235, "ph-bandaids-fill": 64236, "ph-bank-fill": 64237, "ph-barbell-fill": 64238, "ph-barcode-fill": 64239, "ph-barricade-fill": 64240, "ph-baseball-fill": 64241, "ph-basketball-fill": 64242, "ph-bathtub-fill": 64243, "ph-battery-charging-fill": 64244, "ph-battery-charging-vertical-fill": 64245, "ph-battery-empty-fill": 64246, "ph-battery-full-fill": 64247, "ph-battery-high-fill": 64248, "ph-battery-low-fill": 64249, "ph-battery-medium-fill": 64250, "ph-battery-plus-fill": 64251, "ph-battery-warning-fill": 64252, "ph-battery-warning-vertical-fill": 64253, "ph-bed-fill": 64254, "ph-beer-bottle-fill": 64255, "ph-behance-logo-fill": 64256, "ph-bell-fill": 64257, "ph-bell-ringing-fill": 64258, "ph-bell-simple-fill": 64259, "ph-bell-simple-ringing-fill": 64260, "ph-bell-simple-slash-fill": 64261, "ph-bell-simple-z-fill": 64262, "ph-bell-slash-fill": 64263, "ph-bell-z-fill": 64264, "ph-bezier-curve-fill": 64265, "ph-bicycle-fill": 64266, "ph-binoculars-fill": 64267, "ph-bird-fill": 64268, "ph-bluetooth-connected-fill": 64269, "ph-bluetooth-fill": 64270, "ph-bluetooth-slash-fill": 64271, "ph-bluetooth-x-fill": 64272, "ph-boat-fill": 64273, "ph-book-bookmark-fill": 64274, "ph-book-fill": 64275, "ph-book-open-fill": 64276, "ph-bookmark-fill": 64277, "ph-bookmark-simple-fill": 64278, "ph-bookmarks-fill": 64279, "ph-bookmarks-simple-fill": 64280, "ph-books-fill": 64281, "ph-bounding-box-fill": 64282, "ph-brackets-angle-fill": 64283, "ph-brackets-curly-fill": 64284, "ph-brackets-round-fill": 64285, "ph-brackets-square-fill": 64286, "ph-brain-fill": 64287, "ph-brandy-fill": 64288, "ph-briefcase-fill": 64289, "ph-briefcase-metal-fill": 64290, "ph-broadcast-fill": 64291, "ph-browser-fill": 64292, "ph-browsers-fill": 64293, "ph-bug-beetle-fill": 64294, "ph-bug-droid-fill": 64295, "ph-bug-fill": 64296, "ph-buildings-fill": 64297, "ph-bus-fill": 64298, "ph-butterfly-fill": 64299, "ph-cactus-fill": 64300, "ph-cake-fill": 64301, "ph-calculator-fill": 64302, "ph-calendar-blank-fill": 64303, "ph-calendar-check-fill": 64304, "ph-calendar-fill": 64305, "ph-calendar-plus-fill": 64306, "ph-calendar-x-fill": 64307, "ph-camera-fill": 64308, "ph-camera-rotate-fill": 64309, "ph-camera-slash-fill": 64310, "ph-campfire-fill": 64311, "ph-car-fill": 64312, "ph-car-simple-fill": 64313, "ph-cardholder-fill": 64314, "ph-cards-fill": 64315, "ph-caret-circle-double-down-fill": 64316, "ph-caret-circle-double-left-fill": 64317, "ph-caret-circle-double-right-fill": 64318, "ph-caret-circle-double-up-fill": 64319, "ph-caret-circle-down-fill": 64320, "ph-caret-circle-left-fill": 64321, "ph-caret-circle-right-fill": 64322, "ph-caret-circle-up-fill": 64323, "ph-caret-double-down-fill": 64324, "ph-caret-double-left-fill": 64325, "ph-caret-double-right-fill": 64326, "ph-caret-double-up-fill": 64327, "ph-caret-down-fill": 64328, "ph-caret-left-fill": 64329, "ph-caret-right-fill": 64330, "ph-caret-up-fill": 64331, "ph-cat-fill": 64332, "ph-cell-signal-full-fill": 64333, "ph-cell-signal-high-fill": 64334, "ph-cell-signal-low-fill": 64335, "ph-cell-signal-medium-fill": 64336, "ph-cell-signal-none-fill": 64337, "ph-cell-signal-slash-fill": 64338, "ph-cell-signal-x-fill": 64339, "ph-chalkboard-fill": 64340, "ph-chalkboard-simple-fill": 64341, "ph-chalkboard-teacher-fill": 64342, "ph-chart-bar-fill": 64343, "ph-chart-bar-horizontal-fill": 64344, "ph-chart-line-fill": 64345, "ph-chart-line-up-fill": 64346, "ph-chart-pie-fill": 64347, "ph-chart-pie-slice-fill": 64348, "ph-chat-centered-dots-fill": 64349, "ph-chat-centered-fill": 64350, "ph-chat-centered-text-fill": 64351, "ph-chat-circle-dots-fill": 64352, "ph-chat-circle-fill": 64353, "ph-chat-circle-text-fill": 64354, "ph-chat-dots-fill": 64355, "ph-chat-fill": 64356, "ph-chat-teardrop-dots-fill": 64357, "ph-chat-teardrop-fill": 64358, "ph-chat-teardrop-text-fill": 64359, "ph-chat-text-fill": 64360, "ph-chats-circle-fill": 64361, "ph-chats-fill": 64362, "ph-chats-teardrop-fill": 64363, "ph-check-circle-fill": 64364, "ph-check-fill": 64365, "ph-check-square-fill": 64366, "ph-check-square-offset-fill": 64367, "ph-checks-fill": 64368, "ph-circle-dashed-fill": 64369, "ph-circle-fill": 64370, "ph-circle-half-fill": 64371, "ph-circle-half-tilt-fill": 64372, "ph-circle-notch-fill": 64373, "ph-circle-wavy-check-fill": 64374, "ph-circle-wavy-fill": 64375, "ph-circle-wavy-question-fill": 64376, "ph-circle-wavy-warning-fill": 64377, "ph-circles-four-fill": 64378, "ph-circles-three-fill": 64379, "ph-circles-three-plus-fill": 64380, "ph-clipboard-fill": 64381, "ph-clipboard-text-fill": 64382, "ph-clock-afternoon-fill": 64383, "ph-clock-clockwise-fill": 64384, "ph-clock-counter-clockwise-fill": 64385, "ph-clock-fill": 64386, "ph-closed-captioning-fill": 64387, "ph-cloud-arrow-down-fill": 64388, "ph-cloud-arrow-up-fill": 64389, "ph-cloud-check-fill": 64390, "ph-cloud-fill": 64391, "ph-cloud-fog-fill": 64392, "ph-cloud-lightning-fill": 64393, "ph-cloud-moon-fill": 64394, "ph-cloud-rain-fill": 64395, "ph-cloud-slash-fill": 64396, "ph-cloud-snow-fill": 64397, "ph-cloud-sun-fill": 64398, "ph-club-fill": 64399, "ph-coat-hanger-fill": 64400, "ph-code-fill": 64401, "ph-code-simple-fill": 64402, "ph-codepen-logo-fill": 64403, "ph-codesandbox-logo-fill": 64404, "ph-coffee-fill": 64405, "ph-coin-fill": 64406, "ph-coin-vertical-fill": 64407, "ph-coins-fill": 64408, "ph-columns-fill": 64409, "ph-command-fill": 64410, "ph-compass-fill": 64411, "ph-computer-tower-fill": 64412, "ph-confetti-fill": 64413, "ph-cookie-fill": 64414, "ph-cooking-pot-fill": 64415, "ph-copy-fill": 64416, "ph-copy-simple-fill": 64417, "ph-copyleft-fill": 64418, "ph-copyright-fill": 64419, "ph-corners-in-fill": 64420, "ph-corners-out-fill": 64421, "ph-cpu-fill": 64422, "ph-credit-card-fill": 64423, "ph-crop-fill": 64424, "ph-crosshair-fill": 64425, "ph-crosshair-simple-fill": 64426, "ph-crown-fill": 64427, "ph-crown-simple-fill": 64428, "ph-cube-fill": 64429, "ph-currency-btc-fill": 64430, "ph-currency-circle-dollar-fill": 64431, "ph-currency-cny-fill": 64432, "ph-currency-dollar-fill": 64433, "ph-currency-dollar-simple-fill": 64434, "ph-currency-eth-fill": 64435, "ph-currency-eur-fill": 64436, "ph-currency-gbp-fill": 64437, "ph-currency-inr-fill": 64438, "ph-currency-jpy-fill": 64439, "ph-currency-krw-fill": 64440, "ph-currency-kzt-fill": 64441, "ph-currency-ngn-fill": 64442, "ph-currency-rub-fill": 64443, "ph-cursor-fill": 64444, "ph-cursor-text-fill": 64445, "ph-cylinder-fill": 64446, "ph-database-fill": 64447, "ph-desktop-fill": 64448, "ph-desktop-tower-fill": 64449, "ph-detective-fill": 64450, "ph-device-mobile-camera-fill": 64451, "ph-device-mobile-fill": 64452, "ph-device-mobile-speaker-fill": 64453, "ph-device-tablet-camera-fill": 64454, "ph-device-tablet-fill": 64455, "ph-device-tablet-speaker-fill": 64456, "ph-diamond-fill": 64457, "ph-diamonds-four-fill": 64458, "ph-dice-five-fill": 64459, "ph-dice-four-fill": 64460, "ph-dice-one-fill": 64461, "ph-dice-six-fill": 64462, "ph-dice-three-fill": 64463, "ph-dice-two-fill": 64464, "ph-disc-fill": 64465, "ph-discord-logo-fill": 64466, "ph-divide-fill": 64467, "ph-dog-fill": 64468, "ph-door-fill": 64469, "ph-dots-nine-fill": 64470, "ph-dots-six-fill": 64471, "ph-dots-six-vertical-fill": 64472, "ph-dots-three-circle-fill": 64473, "ph-dots-three-circle-vertical-fill": 64474, "ph-dots-three-fill": 64475, "ph-dots-three-outline-fill": 64476, "ph-dots-three-outline-vertical-fill": 64477, "ph-dots-three-vertical-fill": 64478, "ph-download-fill": 64479, "ph-download-simple-fill": 64480, "ph-dribbble-logo-fill": 64481, "ph-drop-fill": 64482, "ph-drop-half-bottom-fill": 64483, "ph-drop-half-fill": 64484, "ph-ear-fill": 64485, "ph-ear-slash-fill": 64486, "ph-egg-crack-fill": 64487, "ph-egg-fill": 64488, "ph-eject-fill": 64489, "ph-eject-simple-fill": 64490, "ph-envelope-fill": 64491, "ph-envelope-open-fill": 64492, "ph-envelope-simple-fill": 64493, "ph-envelope-simple-open-fill": 64494, "ph-equalizer-fill": 64495, "ph-equals-fill": 64496, "ph-eraser-fill": 64497, "ph-exam-fill": 64498, "ph-export-fill": 64499, "ph-eye-closed-fill": 64500, "ph-eye-fill": 64501, "ph-eye-slash-fill": 64502, "ph-eyedropper-fill": 64503, "ph-eyedropper-sample-fill": 64504, "ph-eyeglasses-fill": 64505, "ph-face-mask-fill": 64506, "ph-facebook-logo-fill": 64507, "ph-factory-fill": 64508, "ph-faders-fill": 64509, "ph-faders-horizontal-fill": 64510, "ph-fast-forward-circle-fill": 64511, "ph-fast-forward-fill": 64512, "ph-figma-logo-fill": 64513, "ph-file-arrow-down-fill": 64514, "ph-file-arrow-up-fill": 64515, "ph-file-audio-fill": 64516, "ph-file-cloud-fill": 64517, "ph-file-code-fill": 64518, "ph-file-css-fill": 64519, "ph-file-csv-fill": 64520, "ph-file-doc-fill": 64521, "ph-file-dotted-fill": 64522, "ph-file-fill": 64523, "ph-file-html-fill": 64524, "ph-file-image-fill": 64525, "ph-file-jpg-fill": 64526, "ph-file-js-fill": 64527, "ph-file-jsx-fill": 64528, "ph-file-lock-fill": 64529, "ph-file-minus-fill": 64530, "ph-file-pdf-fill": 64531, "ph-file-plus-fill": 64532, "ph-file-png-fill": 64533, "ph-file-ppt-fill": 64534, "ph-file-rs-fill": 64535, "ph-file-search-fill": 64536, "ph-file-text-fill": 64537, "ph-file-ts-fill": 64538, "ph-file-tsx-fill": 64539, "ph-file-video-fill": 64540, "ph-file-vue-fill": 64541, "ph-file-x-fill": 64542, "ph-file-xls-fill": 64543, "ph-file-zip-fill": 64544, "ph-files-fill": 64545, "ph-film-script-fill": 64546, "ph-film-slate-fill": 64547, "ph-film-strip-fill": 64548, "ph-fingerprint-fill": 64549, "ph-fingerprint-simple-fill": 64550, "ph-finn-the-human-fill": 64551, "ph-fire-fill": 64552, "ph-fire-simple-fill": 64553, "ph-first-aid-fill": 64554, "ph-first-aid-kit-fill": 64555, "ph-fish-fill": 64556, "ph-fish-simple-fill": 64557, "ph-flag-banner-fill": 64558, "ph-flag-checkered-fill": 64559, "ph-flag-fill": 64560, "ph-flame-fill": 64561, "ph-flashlight-fill": 64562, "ph-flask-fill": 64563, "ph-floppy-disk-back-fill": 64564, "ph-floppy-disk-fill": 64565, "ph-flow-arrow-fill": 64566, "ph-flower-fill": 64567, "ph-flower-lotus-fill": 64568, "ph-flying-saucer-fill": 64569, "ph-folder-dotted-fill": 64570, "ph-folder-fill": 64571, "ph-folder-lock-fill": 64572, "ph-folder-minus-fill": 64573, "ph-folder-notch-fill": 64574, "ph-folder-notch-minus-fill": 64575, "ph-folder-notch-open-fill": 64576, "ph-folder-notch-plus-fill": 64577, "ph-folder-open-fill": 64578, "ph-folder-plus-fill": 64579, "ph-folder-simple-dotted-fill": 64580, "ph-folder-simple-fill": 64581, "ph-folder-simple-lock-fill": 64582, "ph-folder-simple-minus-fill": 64583, "ph-folder-simple-plus-fill": 64584, "ph-folder-simple-star-fill": 64585, "ph-folder-simple-user-fill": 64586, "ph-folder-star-fill": 64587, "ph-folder-user-fill": 64588, "ph-folders-fill": 64589, "ph-football-fill": 64590, "ph-fork-knife-fill": 64591, "ph-frame-corners-fill": 64592, "ph-framer-logo-fill": 64593, "ph-function-fill": 64594, "ph-funnel-fill": 64595, "ph-funnel-simple-fill": 64596, "ph-game-controller-fill": 64597, "ph-gas-pump-fill": 64598, "ph-gauge-fill": 64599, "ph-gear-fill": 64600, "ph-gear-six-fill": 64601, "ph-gender-female-fill": 64602, "ph-gender-intersex-fill": 64603, "ph-gender-male-fill": 64604, "ph-gender-neuter-fill": 64605, "ph-gender-nonbinary-fill": 64606, "ph-gender-transgender-fill": 64607, "ph-ghost-fill": 64608, "ph-gif-fill": 64609, "ph-gift-fill": 64610, "ph-git-branch-fill": 64611, "ph-git-commit-fill": 64612, "ph-git-diff-fill": 64613, "ph-git-fork-fill": 64614, "ph-git-merge-fill": 64615, "ph-git-pull-request-fill": 64616, "ph-github-logo-fill": 64617, "ph-gitlab-logo-fill": 64618, "ph-gitlab-logo-simple-fill": 64619, "ph-globe-fill": 64620, "ph-globe-hemisphere-east-fill": 64621, "ph-globe-hemisphere-west-fill": 64622, "ph-globe-simple-fill": 64623, "ph-globe-stand-fill": 64624, "ph-google-chrome-logo-fill": 64625, "ph-google-logo-fill": 64626, "ph-google-photos-logo-fill": 64627, "ph-google-play-logo-fill": 64628, "ph-google-podcasts-logo-fill": 64629, "ph-gradient-fill": 64630, "ph-graduation-cap-fill": 64631, "ph-graph-fill": 64632, "ph-grid-four-fill": 64633, "ph-hamburger-fill": 64634, "ph-hand-eye-fill": 64635, "ph-hand-fill": 64636, "ph-hand-fist-fill": 64637, "ph-hand-grabbing-fill": 64638, "ph-hand-palm-fill": 64639, "ph-hand-pointing-fill": 64640, "ph-hand-soap-fill": 64641, "ph-hand-waving-fill": 64642, "ph-handbag-fill": 64643, "ph-handbag-simple-fill": 64644, "ph-hands-clapping-fill": 64645, "ph-handshake-fill": 64646, "ph-hard-drive-fill": 64647, "ph-hard-drives-fill": 64648, "ph-hash-fill": 64649, "ph-hash-straight-fill": 64650, "ph-headlights-fill": 64651, "ph-headphones-fill": 64652, "ph-headset-fill": 64653, "ph-heart-break-fill": 64654, "ph-heart-fill": 64655, "ph-heart-straight-break-fill": 64656, "ph-heart-straight-fill": 64657, "ph-heartbeat-fill": 64658, "ph-hexagon-fill": 64659, "ph-highlighter-circle-fill": 64660, "ph-horse-fill": 64661, "ph-hourglass-fill": 64662, "ph-hourglass-high-fill": 64663, "ph-hourglass-low-fill": 64664, "ph-hourglass-medium-fill": 64665, "ph-hourglass-simple-fill": 64666, "ph-hourglass-simple-high-fill": 64667, "ph-hourglass-simple-low-fill": 64668, "ph-hourglass-simple-medium-fill": 64669, "ph-house-fill": 64670, "ph-house-line-fill": 64671, "ph-house-simple-fill": 64672, "ph-identification-badge-fill": 64673, "ph-identification-card-fill": 64674, "ph-image-fill": 64675, "ph-image-square-fill": 64676, "ph-infinity-fill": 64677, "ph-info-fill": 64678, "ph-instagram-logo-fill": 64679, "ph-intersect-fill": 64680, "ph-jeep-fill": 64681, "ph-kanban-fill": 64682, "ph-key-fill": 64683, "ph-key-return-fill": 64684, "ph-keyboard-fill": 64685, "ph-keyhole-fill": 64686, "ph-knife-fill": 64687, "ph-ladder-fill": 64688, "ph-ladder-simple-fill": 64689, "ph-lamp-fill": 64690, "ph-laptop-fill": 64691, "ph-layout-fill": 64692, "ph-leaf-fill": 64693, "ph-lifebuoy-fill": 64694, "ph-lightbulb-filament-fill": 64695, "ph-lightbulb-fill": 64696, "ph-lightning-fill": 64697, "ph-lightning-slash-fill": 64698, "ph-line-segment-fill": 64699, "ph-line-segments-fill": 64700, "ph-link-break-fill": 64701, "ph-link-fill": 64702, "ph-link-simple-break-fill": 64703, "ph-link-simple-fill": 64704, "ph-link-simple-horizontal-break-fill": 64705, "ph-link-simple-horizontal-fill": 64706, "ph-linkedin-logo-fill": 64707, "ph-linux-logo-fill": 64708, "ph-list-bullets-fill": 64709, "ph-list-checks-fill": 64710, "ph-list-dashes-fill": 64711, "ph-list-fill": 64712, "ph-list-numbers-fill": 64713, "ph-list-plus-fill": 64714, "ph-lock-fill": 64715, "ph-lock-key-fill": 64716, "ph-lock-key-open-fill": 64717, "ph-lock-laminated-fill": 64718, "ph-lock-laminated-open-fill": 64719, "ph-lock-open-fill": 64720, "ph-lock-simple-fill": 64721, "ph-lock-simple-open-fill": 64722, "ph-magic-wand-fill": 64723, "ph-magnet-fill": 64724, "ph-magnet-straight-fill": 64725, "ph-magnifying-glass-fill": 64726, "ph-magnifying-glass-minus-fill": 64727, "ph-magnifying-glass-plus-fill": 64728, "ph-map-pin-fill": 64729, "ph-map-pin-line-fill": 64730, "ph-map-trifold-fill": 64731, "ph-marker-circle-fill": 64732, "ph-martini-fill": 64733, "ph-mask-happy-fill": 64734, "ph-mask-sad-fill": 64735, "ph-math-operations-fill": 64736, "ph-medal-fill": 64737, "ph-medium-logo-fill": 64738, "ph-megaphone-fill": 64739, "ph-megaphone-simple-fill": 64740, "ph-messenger-logo-fill": 64741, "ph-microphone-fill": 64742, "ph-microphone-slash-fill": 64743, "ph-microphone-stage-fill": 64744, "ph-microsoft-excel-logo-fill": 64745, "ph-microsoft-powerpoint-logo-fill": 64746, "ph-microsoft-teams-logo-fill": 64747, "ph-microsoft-word-logo-fill": 64748, "ph-minus-circle-fill": 64749, "ph-minus-fill": 64750, "ph-money-fill": 64751, "ph-monitor-fill": 64752, "ph-monitor-play-fill": 64753, "ph-moon-fill": 64754, "ph-moon-stars-fill": 64755, "ph-mountains-fill": 64756, "ph-mouse-fill": 64757, "ph-mouse-simple-fill": 64758, "ph-music-note-fill": 64759, "ph-music-note-simple-fill": 64760, "ph-music-notes-fill": 64761, "ph-music-notes-plus-fill": 64762, "ph-music-notes-simple-fill": 64763, "ph-navigation-arrow-fill": 64764, "ph-needle-fill": 64765, "ph-newspaper-clipping-fill": 64766, "ph-newspaper-fill": 64767, "ph-note-blank-fill": 64768, "ph-note-fill": 64769, "ph-note-pencil-fill": 64770, "ph-notebook-fill": 64771, "ph-notepad-fill": 64772, "ph-notification-fill": 64773, "ph-number-circle-eight-fill": 64774, "ph-number-circle-five-fill": 64775, "ph-number-circle-four-fill": 64776, "ph-number-circle-nine-fill": 64777, "ph-number-circle-one-fill": 64778, "ph-number-circle-seven-fill": 64779, "ph-number-circle-six-fill": 64780, "ph-number-circle-three-fill": 64781, "ph-number-circle-two-fill": 64782, "ph-number-circle-zero-fill": 64783, "ph-number-eight-fill": 64784, "ph-number-five-fill": 64785, "ph-number-four-fill": 64786, "ph-number-nine-fill": 64787, "ph-number-one-fill": 64788, "ph-number-seven-fill": 64789, "ph-number-six-fill": 64790, "ph-number-square-eight-fill": 64791, "ph-number-square-five-fill": 64792, "ph-number-square-four-fill": 64793, "ph-number-square-nine-fill": 64794, "ph-number-square-one-fill": 64795, "ph-number-square-seven-fill": 64796, "ph-number-square-six-fill": 64797, "ph-number-square-three-fill": 64798, "ph-number-square-two-fill": 64799, "ph-number-square-zero-fill": 64800, "ph-number-three-fill": 64801, "ph-number-two-fill": 64802, "ph-number-zero-fill": 64803, "ph-nut-fill": 64804, "ph-ny-times-logo-fill": 64805, "ph-octagon-fill": 64806, "ph-option-fill": 64807, "ph-package-fill": 64808, "ph-paint-brush-broad-fill": 64809, "ph-paint-brush-fill": 64810, "ph-paint-brush-household-fill": 64811, "ph-paint-bucket-fill": 64812, "ph-paint-roller-fill": 64813, "ph-palette-fill": 64814, "ph-paper-plane-fill": 64815, "ph-paper-plane-right-fill": 64816, "ph-paper-plane-tilt-fill": 64817, "ph-paperclip-fill": 64818, "ph-paperclip-horizontal-fill": 64819, "ph-parachute-fill": 64820, "ph-password-fill": 64821, "ph-path-fill": 64822, "ph-pause-circle-fill": 64823, "ph-pause-fill": 64824, "ph-paw-print-fill": 64825, "ph-peace-fill": 64826, "ph-pen-fill": 64827, "ph-pen-nib-fill": 64828, "ph-pen-nib-straight-fill": 64829, "ph-pencil-circle-fill": 64830, "ph-pencil-fill": 64831, "ph-pencil-line-fill": 64832, "ph-pencil-simple-fill": 64833, "ph-pencil-simple-line-fill": 64834, "ph-percent-fill": 64835, "ph-person-fill": 64836, "ph-person-simple-fill": 64837, "ph-person-simple-run-fill": 64838, "ph-person-simple-walk-fill": 64839, "ph-perspective-fill": 64840, "ph-phone-call-fill": 64841, "ph-phone-disconnect-fill": 64842, "ph-phone-fill": 64843, "ph-phone-incoming-fill": 64844, "ph-phone-outgoing-fill": 64845, "ph-phone-slash-fill": 64846, "ph-phone-x-fill": 64847, "ph-phosphor-logo-fill": 64848, "ph-piano-keys-fill": 64849, "ph-picture-in-picture-fill": 64850, "ph-pill-fill": 64851, "ph-pinterest-logo-fill": 64852, "ph-pinwheel-fill": 64853, "ph-pizza-fill": 64854, "ph-placeholder-fill": 64855, "ph-planet-fill": 64856, "ph-play-circle-fill": 64857, "ph-play-fill": 64858, "ph-playlist-fill": 64859, "ph-plug-fill": 64860, "ph-plugs-connected-fill": 64861, "ph-plugs-fill": 64862, "ph-plus-circle-fill": 64863, "ph-plus-fill": 64864, "ph-plus-minus-fill": 64865, "ph-poker-chip-fill": 64866, "ph-police-car-fill": 64867, "ph-polygon-fill": 64868, "ph-popcorn-fill": 64869, "ph-power-fill": 64870, "ph-prescription-fill": 64871, "ph-presentation-chart-fill": 64872, "ph-presentation-fill": 64873, "ph-printer-fill": 64874, "ph-prohibit-fill": 64875, "ph-prohibit-inset-fill": 64876, "ph-projector-screen-chart-fill": 64877, "ph-projector-screen-fill": 64878, "ph-push-pin-fill": 64879, "ph-push-pin-simple-fill": 64880, "ph-push-pin-simple-slash-fill": 64881, "ph-push-pin-slash-fill": 64882, "ph-puzzle-piece-fill": 64883, "ph-qr-code-fill": 64884, "ph-question-fill": 64885, "ph-queue-fill": 64886, "ph-quotes-fill": 64887, "ph-radical-fill": 64888, "ph-radio-button-fill": 64889, "ph-radio-fill": 64890, "ph-rainbow-cloud-fill": 64891, "ph-rainbow-fill": 64892, "ph-receipt-fill": 64893, "ph-record-fill": 64894, "ph-rectangle-fill": 64895, "ph-recycle-fill": 64896, "ph-reddit-logo-fill": 64897, "ph-repeat-fill": 64898, "ph-repeat-once-fill": 64899, "ph-rewind-circle-fill": 64900, "ph-rewind-fill": 64901, "ph-robot-fill": 64902, "ph-rocket-fill": 64903, "ph-rocket-launch-fill": 64904, "ph-rows-fill": 64905, "ph-rss-fill": 64906, "ph-rss-simple-fill": 64907, "ph-rug-fill": 64908, "ph-ruler-fill": 64909, "ph-scales-fill": 64910, "ph-scan-fill": 64911, "ph-scissors-fill": 64912, "ph-screencast-fill": 64913, "ph-scribble-loop-fill": 64914, "ph-scroll-fill": 64915, "ph-selection-all-fill": 64916, "ph-selection-background-fill": 64917, "ph-selection-fill": 64918, "ph-selection-foreground-fill": 64919, "ph-selection-inverse-fill": 64920, "ph-selection-plus-fill": 64921, "ph-selection-slash-fill": 64922, "ph-share-fill": 64923, "ph-share-network-fill": 64924, "ph-shield-check-fill": 64925, "ph-shield-checkered-fill": 64926, "ph-shield-chevron-fill": 64927, "ph-shield-fill": 64928, "ph-shield-plus-fill": 64929, "ph-shield-slash-fill": 64930, "ph-shield-star-fill": 64931, "ph-shield-warning-fill": 64932, "ph-shopping-bag-fill": 64933, "ph-shopping-bag-open-fill": 64934, "ph-shopping-cart-fill": 64935, "ph-shopping-cart-simple-fill": 64936, "ph-shower-fill": 64937, "ph-shuffle-angular-fill": 64938, "ph-shuffle-fill": 64939, "ph-shuffle-simple-fill": 64940, "ph-sidebar-fill": 64941, "ph-sidebar-simple-fill": 64942, "ph-sign-in-fill": 64943, "ph-sign-out-fill": 64944, "ph-signpost-fill": 64945, "ph-sim-card-fill": 64946, "ph-sketch-logo-fill": 64947, "ph-skip-back-circle-fill": 64948, "ph-skip-back-fill": 64949, "ph-skip-forward-circle-fill": 64950, "ph-skip-forward-fill": 64951, "ph-skull-fill": 64952, "ph-slack-logo-fill": 64953, "ph-sliders-fill": 64954, "ph-sliders-horizontal-fill": 64955, "ph-smiley-blank-fill": 64956, "ph-smiley-fill": 64957, "ph-smiley-meh-fill": 64958, "ph-smiley-nervous-fill": 64959, "ph-smiley-sad-fill": 64960, "ph-smiley-sticker-fill": 64961, "ph-smiley-wink-fill": 64962, "ph-smiley-x-eyes-fill": 64963, "ph-snapchat-logo-fill": 64964, "ph-snowflake-fill": 64965, "ph-soccer-ball-fill": 64966, "ph-sort-ascending-fill": 64967, "ph-sort-descending-fill": 64968, "ph-spade-fill": 64969, "ph-sparkle-fill": 64970, "ph-speaker-high-fill": 64971, "ph-speaker-low-fill": 64972, "ph-speaker-none-fill": 64973, "ph-speaker-simple-high-fill": 64974, "ph-speaker-simple-low-fill": 64975, "ph-speaker-simple-none-fill": 64976, "ph-speaker-simple-slash-fill": 64977, "ph-speaker-simple-x-fill": 64978, "ph-speaker-slash-fill": 64979, "ph-speaker-x-fill": 64980, "ph-spinner-fill": 64981, "ph-spinner-gap-fill": 64982, "ph-spiral-fill": 64983, "ph-spotify-logo-fill": 64984, "ph-square-fill": 64985, "ph-square-half-bottom-fill": 64986, "ph-square-half-fill": 64987, "ph-square-logo-fill": 64988, "ph-squares-four-fill": 64989, "ph-stack-fill": 64990, "ph-stack-overflow-logo-fill": 64991, "ph-stack-simple-fill": 64992, "ph-stamp-fill": 64993, "ph-star-fill": 64994, "ph-star-four-fill": 64995, "ph-star-half-fill": 64996, "ph-sticker-fill": 64997, "ph-stop-circle-fill": 64998, "ph-stop-fill": 64999, "ph-storefront-fill": 65000, "ph-strategy-fill": 65001, "ph-stripe-logo-fill": 65002, "ph-student-fill": 65003, "ph-suitcase-fill": 65004, "ph-suitcase-simple-fill": 65005, "ph-sun-dim-fill": 65006, "ph-sun-fill": 65007, "ph-sun-horizon-fill": 65008, "ph-sunglasses-fill": 65009, "ph-swap-fill": 65010, "ph-swatches-fill": 65011, "ph-sword-fill": 65012, "ph-syringe-fill": 65013, "ph-t-shirt-fill": 65014, "ph-table-fill": 65015, "ph-tabs-fill": 65016, "ph-tag-chevron-fill": 65017, "ph-tag-fill": 65018, "ph-tag-simple-fill": 65019, "ph-target-fill": 65020, "ph-taxi-fill": 65021, "ph-telegram-logo-fill": 65022, "ph-television-fill": 65023, "ph-television-simple-fill": 65024, "ph-tennis-ball-fill": 65025, "ph-terminal-fill": 65026, "ph-terminal-window-fill": 65027, "ph-test-tube-fill": 65028, "ph-text-aa-fill": 65029, "ph-text-align-center-fill": 65030, "ph-text-align-justify-fill": 65031, "ph-text-align-left-fill": 65032, "ph-text-align-right-fill": 65033, "ph-text-bolder-fill": 65034, "ph-text-h-fill": 65035, "ph-text-h-five-fill": 65036, "ph-text-h-four-fill": 65037, "ph-text-h-one-fill": 65038, "ph-text-h-six-fill": 65039, "ph-text-h-three-fill": 65040, "ph-text-h-two-fill": 65041, "ph-text-indent-fill": 65042, "ph-text-italic-fill": 65043, "ph-text-outdent-fill": 65044, "ph-text-strikethrough-fill": 65045, "ph-text-t-fill": 65046, "ph-text-underline-fill": 65047, "ph-textbox-fill": 65048, "ph-thermometer-cold-fill": 65049, "ph-thermometer-fill": 65050, "ph-thermometer-hot-fill": 65051, "ph-thermometer-simple-fill": 65052, "ph-thumbs-down-fill": 65053, "ph-thumbs-up-fill": 65054, "ph-ticket-fill": 65055, "ph-tiktok-logo-fill": 65056, "ph-timer-fill": 65057, "ph-toggle-left-fill": 65058, "ph-toggle-right-fill": 65059, "ph-toilet-fill": 65060, "ph-toilet-paper-fill": 65061, "ph-tote-fill": 65062, "ph-tote-simple-fill": 65063, "ph-trademark-registered-fill": 65064, "ph-traffic-cone-fill": 65065, "ph-traffic-sign-fill": 65066, "ph-traffic-signal-fill": 65067, "ph-train-fill": 65068, "ph-train-regional-fill": 65069, "ph-train-simple-fill": 65070, "ph-translate-fill": 65071, "ph-trash-fill": 65072, "ph-trash-simple-fill": 65073, "ph-tray-fill": 65074, "ph-tree-evergreen-fill": 65075, "ph-tree-fill": 65076, "ph-tree-structure-fill": 65077, "ph-trend-down-fill": 65078, "ph-trend-up-fill": 65079, "ph-triangle-fill": 65080, "ph-trophy-fill": 65081, "ph-truck-fill": 65082, "ph-twitch-logo-fill": 65083, "ph-twitter-logo-fill": 65084, "ph-umbrella-fill": 65085, "ph-umbrella-simple-fill": 65086, "ph-upload-fill": 65087, "ph-upload-simple-fill": 65088, "ph-user-circle-fill": 65089, "ph-user-circle-gear-fill": 65090, "ph-user-circle-minus-fill": 65091, "ph-user-circle-plus-fill": 65092, "ph-user-fill": 65093, "ph-user-focus-fill": 65094, "ph-user-gear-fill": 65095, "ph-user-list-fill": 65096, "ph-user-minus-fill": 65097, "ph-user-plus-fill": 65098, "ph-user-rectangle-fill": 65099, "ph-user-square-fill": 65100, "ph-user-switch-fill": 65101, "ph-users-fill": 65102, "ph-users-four-fill": 65103, "ph-users-three-fill": 65104, "ph-vault-fill": 65105, "ph-vibrate-fill": 65106, "ph-video-camera-fill": 65107, "ph-video-camera-slash-fill": 65108, "ph-vignette-fill": 65109, "ph-voicemail-fill": 65110, "ph-volleyball-fill": 65111, "ph-wall-fill": 65112, "ph-wallet-fill": 65113, "ph-warning-circle-fill": 65114, "ph-warning-fill": 65115, "ph-warning-octagon-fill": 65116, "ph-watch-fill": 65117, "ph-wave-sawtooth-fill": 65118, "ph-wave-sine-fill": 65119, "ph-wave-square-fill": 65120, "ph-wave-triangle-fill": 65121, "ph-waves-fill": 65122, "ph-webcam-fill": 65123, "ph-whatsapp-logo-fill": 65124, "ph-wheelchair-fill": 65125, "ph-wifi-high-fill": 65126, "ph-wifi-low-fill": 65127, "ph-wifi-medium-fill": 65128, "ph-wifi-none-fill": 65129, "ph-wifi-slash-fill": 65130, "ph-wifi-x-fill": 65131, "ph-wind-fill": 65132, "ph-windows-logo-fill": 65133, "ph-wine-fill": 65134, "ph-wrench-fill": 65135, "ph-x-circle-fill": 65136, "ph-x-fill": 65137, "ph-x-square-fill": 65138, "ph-yin-yang-fill": 65139, "ph-youtube-logo-fill": 65140}
+
+
+var keys = Object.keys(icons);
+loadIconList(keys);
+
+
+function loadIconList(datas){
+ var icons = '';
+ var arr = Array.from(datas);
+ for (let index = 0; index < arr.length; index++) {
+ icons+='
\
+ '+arr[index]+'\
+
'
+ }
+ document.getElementById("iconList").innerHTML = icons;
+};
+
+document.getElementById("icon-select").addEventListener("change", function(event){
+ var selectvalue = event.target.value;
+ if(event.target.value){
+ var filterData = keys.filter(function (productlist) {
+ return productlist.split("-").slice(-1).pop() == selectvalue;
+ });
+ } else {
+ var filterData = keys;
+ }
+ loadIconList(filterData);
+})
\ No newline at end of file
diff --git a/public/build/js/pages/plugins/jsonfull-emoji-list.json b/public/build/js/pages/plugins/jsonfull-emoji-list.json
new file mode 100644
index 0000000..557af89
--- /dev/null
+++ b/public/build/js/pages/plugins/jsonfull-emoji-list.json
@@ -0,0 +1,17418 @@
+{
+ "Smileys & People":[
+ {
+ "no":1,
+ "code":"U+1F600",
+ "emoji":"😀",
+ "description":"GRINNING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "grin"
+ ]
+ },
+ {
+ "no":2,
+ "code":"U+1F601",
+ "emoji":"😁",
+ "description":"GRINNING FACE WITH SMILING EYES",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "grin",
+ "smile"
+ ]
+ },
+ {
+ "no":3,
+ "code":"U+1F602",
+ "emoji":"😂",
+ "description":"FACE WITH TEARS OF JOY",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "joy",
+ "laugh",
+ "tear"
+ ]
+ },
+ {
+ "no":4,
+ "code":"U+1F923",
+ "emoji":"🤣",
+ "description":"ROLLING ON THE FLOOR LAUGHING",
+ "flagged":true,
+ "keywords":[
+ "face",
+ "floor",
+ "laugh",
+ "lol",
+ "rofl",
+ "rolling"
+ ]
+ },
+ {
+ "no":5,
+ "code":"U+1F603",
+ "emoji":"😃",
+ "description":"SMILING FACE WITH OPEN MOUTH",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "mouth",
+ "open",
+ "smile"
+ ]
+ },
+ {
+ "no":6,
+ "code":"U+1F604",
+ "emoji":"😄",
+ "description":"SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "mouth",
+ "open",
+ "smile"
+ ]
+ },
+ {
+ "no":7,
+ "code":"U+1F605",
+ "emoji":"😅",
+ "description":"SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "face",
+ "open",
+ "smile",
+ "sweat"
+ ]
+ },
+ {
+ "no":8,
+ "code":"U+1F606",
+ "emoji":"😆",
+ "description":"SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "laugh",
+ "mouth",
+ "open",
+ "satisfied",
+ "smile"
+ ]
+ },
+ {
+ "no":9,
+ "code":"U+1F609",
+ "emoji":"😉",
+ "description":"WINKING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "wink"
+ ]
+ },
+ {
+ "no":10,
+ "code":"U+1F60A",
+ "emoji":"😊",
+ "description":"SMILING FACE WITH SMILING EYES",
+ "flagged":false,
+ "keywords":[
+ "blush",
+ "eye",
+ "face",
+ "smile"
+ ]
+ },
+ {
+ "no":11,
+ "code":"U+1F60B",
+ "emoji":"😋",
+ "description":"FACE SAVOURING DELICIOUS FOOD",
+ "flagged":false,
+ "keywords":[
+ "delicious",
+ "face",
+ "savouring",
+ "smile",
+ "um",
+ "yum"
+ ]
+ },
+ {
+ "no":12,
+ "code":"U+1F60E",
+ "emoji":"😎",
+ "description":"SMILING FACE WITH SUNGLASSES",
+ "flagged":false,
+ "keywords":[
+ "bright",
+ "cool",
+ "eye",
+ "eyewear",
+ "face",
+ "glasses",
+ "smile",
+ "sun",
+ "sunglasses",
+ "weather"
+ ]
+ },
+ {
+ "no":13,
+ "code":"U+1F60D",
+ "emoji":"😍",
+ "description":"SMILING FACE WITH HEART-SHAPED EYES",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "heart",
+ "love",
+ "smile"
+ ]
+ },
+ {
+ "no":14,
+ "code":"U+1F618",
+ "emoji":"😘",
+ "description":"FACE THROWING A KISS",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "heart",
+ "kiss"
+ ]
+ },
+ {
+ "no":15,
+ "code":"U+1F617",
+ "emoji":"😗",
+ "description":"KISSING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "kiss"
+ ]
+ },
+ {
+ "no":16,
+ "code":"U+1F619",
+ "emoji":"😙",
+ "description":"KISSING FACE WITH SMILING EYES",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "kiss",
+ "smile"
+ ]
+ },
+ {
+ "no":17,
+ "code":"U+1F61A",
+ "emoji":"😚",
+ "description":"KISSING FACE WITH CLOSED EYES",
+ "flagged":false,
+ "keywords":[
+ "closed",
+ "eye",
+ "face",
+ "kiss"
+ ]
+ },
+ {
+ "no":19,
+ "code":"U+1F642",
+ "emoji":"🙂",
+ "description":"SLIGHTLY SMILING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "smile"
+ ]
+ },
+ {
+ "no":20,
+ "code":"U+1F917",
+ "emoji":"🤗",
+ "description":"HUGGING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "hug",
+ "hugging"
+ ]
+ },
+ {
+ "no":21,
+ "code":"U+1F914",
+ "emoji":"🤔",
+ "description":"THINKING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "thinking"
+ ]
+ },
+ {
+ "no":22,
+ "code":"U+1F610",
+ "emoji":"😐",
+ "description":"NEUTRAL FACE",
+ "flagged":false,
+ "keywords":[
+ "deadpan",
+ "face",
+ "neutral"
+ ]
+ },
+ {
+ "no":23,
+ "code":"U+1F611",
+ "emoji":"😑",
+ "description":"EXPRESSIONLESS FACE",
+ "flagged":false,
+ "keywords":[
+ "expressionless",
+ "face",
+ "inexpressive",
+ "unexpressive"
+ ]
+ },
+ {
+ "no":24,
+ "code":"U+1F636",
+ "emoji":"😶",
+ "description":"FACE WITHOUT MOUTH",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "mouth",
+ "quiet",
+ "silent"
+ ]
+ },
+ {
+ "no":25,
+ "code":"U+1F644",
+ "emoji":"🙄",
+ "description":"FACE WITH ROLLING EYES",
+ "flagged":false,
+ "keywords":[
+ "eyes",
+ "face",
+ "rolling"
+ ]
+ },
+ {
+ "no":26,
+ "code":"U+1F60F",
+ "emoji":"😏",
+ "description":"SMIRKING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "smirk"
+ ]
+ },
+ {
+ "no":27,
+ "code":"U+1F623",
+ "emoji":"😣",
+ "description":"PERSEVERING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "persevere"
+ ]
+ },
+ {
+ "no":28,
+ "code":"U+1F625",
+ "emoji":"😥",
+ "description":"DISAPPOINTED BUT RELIEVED FACE",
+ "flagged":false,
+ "keywords":[
+ "disappointed",
+ "face",
+ "relieved",
+ "whew"
+ ]
+ },
+ {
+ "no":29,
+ "code":"U+1F62E",
+ "emoji":"😮",
+ "description":"FACE WITH OPEN MOUTH",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "mouth",
+ "open",
+ "sympathy"
+ ]
+ },
+ {
+ "no":30,
+ "code":"U+1F910",
+ "emoji":"🤐",
+ "description":"ZIPPER-MOUTH FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "mouth",
+ "zipper"
+ ]
+ },
+ {
+ "no":31,
+ "code":"U+1F62F",
+ "emoji":"😯",
+ "description":"HUSHED FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "hushed",
+ "stunned",
+ "surprised"
+ ]
+ },
+ {
+ "no":32,
+ "code":"U+1F62A",
+ "emoji":"😪",
+ "description":"SLEEPY FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "sleep"
+ ]
+ },
+ {
+ "no":33,
+ "code":"U+1F62B",
+ "emoji":"😫",
+ "description":"TIRED FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "tired"
+ ]
+ },
+ {
+ "no":34,
+ "code":"U+1F634",
+ "emoji":"😴",
+ "description":"SLEEPING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "sleep",
+ "zzz"
+ ]
+ },
+ {
+ "no":35,
+ "code":"U+1F60C",
+ "emoji":"😌",
+ "description":"RELIEVED FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "relieved"
+ ]
+ },
+ {
+ "no":36,
+ "code":"U+1F913",
+ "emoji":"🤓",
+ "description":"NERD FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "geek",
+ "nerd"
+ ]
+ },
+ {
+ "no":37,
+ "code":"U+1F61B",
+ "emoji":"😛",
+ "description":"FACE WITH STUCK-OUT TONGUE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "tongue"
+ ]
+ },
+ {
+ "no":38,
+ "code":"U+1F61C",
+ "emoji":"😜",
+ "description":"FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "joke",
+ "tongue",
+ "wink"
+ ]
+ },
+ {
+ "no":39,
+ "code":"U+1F61D",
+ "emoji":"😝",
+ "description":"FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
+ "flagged":false,
+ "keywords":[
+ "eye",
+ "face",
+ "horrible",
+ "taste",
+ "tongue"
+ ]
+ },
+ {
+ "no":40,
+ "code":"U+1F924",
+ "emoji":"🤤",
+ "description":"DROOLING FACE",
+ "flagged":true,
+ "keywords":[
+ "drooling",
+ "face"
+ ]
+ },
+ {
+ "no":41,
+ "code":"U+1F612",
+ "emoji":"😒",
+ "description":"UNAMUSED FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "unamused",
+ "unhappy"
+ ]
+ },
+ {
+ "no":42,
+ "code":"U+1F613",
+ "emoji":"😓",
+ "description":"FACE WITH COLD SWEAT",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "face",
+ "sweat"
+ ]
+ },
+ {
+ "no":43,
+ "code":"U+1F614",
+ "emoji":"😔",
+ "description":"PENSIVE FACE",
+ "flagged":false,
+ "keywords":[
+ "dejected",
+ "face",
+ "pensive"
+ ]
+ },
+ {
+ "no":44,
+ "code":"U+1F615",
+ "emoji":"😕",
+ "description":"CONFUSED FACE",
+ "flagged":false,
+ "keywords":[
+ "confused",
+ "face"
+ ]
+ },
+ {
+ "no":45,
+ "code":"U+1F643",
+ "emoji":"🙃",
+ "description":"UPSIDE-DOWN FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "upside-down"
+ ]
+ },
+ {
+ "no":46,
+ "code":"U+1F911",
+ "emoji":"🤑",
+ "description":"MONEY-MOUTH FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "money",
+ "mouth"
+ ]
+ },
+ {
+ "no":47,
+ "code":"U+1F632",
+ "emoji":"😲",
+ "description":"ASTONISHED FACE",
+ "flagged":false,
+ "keywords":[
+ "astonished",
+ "face",
+ "shocked",
+ "totally"
+ ]
+ },
+ {
+ "no":48,
+ "code":"U+2639",
+ "emoji":"☹",
+ "description":"WHITE FROWNING FACE≊ frowning face",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "frown"
+ ]
+ },
+ {
+ "no":49,
+ "code":"U+1F641",
+ "emoji":"🙁",
+ "description":"SLIGHTLY FROWNING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "frown"
+ ]
+ },
+ {
+ "no":50,
+ "code":"U+1F616",
+ "emoji":"😖",
+ "description":"CONFOUNDED FACE",
+ "flagged":false,
+ "keywords":[
+ "confounded",
+ "face"
+ ]
+ },
+ {
+ "no":51,
+ "code":"U+1F61E",
+ "emoji":"😞",
+ "description":"DISAPPOINTED FACE",
+ "flagged":false,
+ "keywords":[
+ "disappointed",
+ "face"
+ ]
+ },
+ {
+ "no":52,
+ "code":"U+1F61F",
+ "emoji":"😟",
+ "description":"WORRIED FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "worried"
+ ]
+ },
+ {
+ "no":53,
+ "code":"U+1F624",
+ "emoji":"😤",
+ "description":"FACE WITH LOOK OF TRIUMPH≊ face with steam from nose",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "triumph",
+ "won"
+ ]
+ },
+ {
+ "no":54,
+ "code":"U+1F622",
+ "emoji":"😢",
+ "description":"CRYING FACE",
+ "flagged":false,
+ "keywords":[
+ "cry",
+ "face",
+ "sad",
+ "tear"
+ ]
+ },
+ {
+ "no":55,
+ "code":"U+1F62D",
+ "emoji":"😭",
+ "description":"LOUDLY CRYING FACE",
+ "flagged":false,
+ "keywords":[
+ "cry",
+ "face",
+ "sad",
+ "sob",
+ "tear"
+ ]
+ },
+ {
+ "no":56,
+ "code":"U+1F626",
+ "emoji":"😦",
+ "description":"FROWNING FACE WITH OPEN MOUTH",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "frown",
+ "mouth",
+ "open"
+ ]
+ },
+ {
+ "no":57,
+ "code":"U+1F627",
+ "emoji":"😧",
+ "description":"ANGUISHED FACE",
+ "flagged":false,
+ "keywords":[
+ "anguished",
+ "face"
+ ]
+ },
+ {
+ "no":58,
+ "code":"U+1F628",
+ "emoji":"😨",
+ "description":"FEARFUL FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "fear",
+ "fearful",
+ "scared"
+ ]
+ },
+ {
+ "no":59,
+ "code":"U+1F629",
+ "emoji":"😩",
+ "description":"WEARY FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "tired",
+ "weary"
+ ]
+ },
+ {
+ "no":60,
+ "code":"U+1F62C",
+ "emoji":"😬",
+ "description":"GRIMACING FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "grimace"
+ ]
+ },
+ {
+ "no":61,
+ "code":"U+1F630",
+ "emoji":"😰",
+ "description":"FACE WITH OPEN MOUTH AND COLD SWEAT",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "cold",
+ "face",
+ "mouth",
+ "open",
+ "rushed",
+ "sweat"
+ ]
+ },
+ {
+ "no":62,
+ "code":"U+1F631",
+ "emoji":"😱",
+ "description":"FACE SCREAMING IN FEAR",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "fear",
+ "fearful",
+ "munch",
+ "scared",
+ "scream"
+ ]
+ },
+ {
+ "no":63,
+ "code":"U+1F633",
+ "emoji":"😳",
+ "description":"FLUSHED FACE",
+ "flagged":false,
+ "keywords":[
+ "dazed",
+ "face",
+ "flushed"
+ ]
+ },
+ {
+ "no":64,
+ "code":"U+1F635",
+ "emoji":"😵",
+ "description":"DIZZY FACE",
+ "flagged":false,
+ "keywords":[
+ "dizzy",
+ "face"
+ ]
+ },
+ {
+ "no":65,
+ "code":"U+1F621",
+ "emoji":"😡",
+ "description":"POUTING FACE",
+ "flagged":false,
+ "keywords":[
+ "angry",
+ "face",
+ "mad",
+ "pouting",
+ "rage",
+ "red"
+ ]
+ },
+ {
+ "no":66,
+ "code":"U+1F620",
+ "emoji":"😠",
+ "description":"ANGRY FACE",
+ "flagged":false,
+ "keywords":[
+ "angry",
+ "face",
+ "mad"
+ ]
+ },
+ {
+ "no":67,
+ "code":"U+1F607",
+ "emoji":"😇",
+ "description":"SMILING FACE WITH HALO",
+ "flagged":false,
+ "keywords":[
+ "angel",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "halo",
+ "innocent",
+ "smile"
+ ]
+ },
+ {
+ "no":68,
+ "code":"U+1F920",
+ "emoji":"🤠",
+ "description":"FACE WITH COWBOY HAT",
+ "flagged":true,
+ "keywords":[
+ "cowboy",
+ "cowgirl",
+ "face",
+ "hat"
+ ]
+ },
+ {
+ "no":69,
+ "code":"U+1F921",
+ "emoji":"🤡",
+ "description":"CLOWN FACE",
+ "flagged":true,
+ "keywords":[
+ "clown",
+ "face"
+ ]
+ },
+ {
+ "no":70,
+ "code":"U+1F925",
+ "emoji":"🤥",
+ "description":"LYING FACE",
+ "flagged":true,
+ "keywords":[
+ "face",
+ "lie",
+ "pinocchio"
+ ]
+ },
+ {
+ "no":71,
+ "code":"U+1F637",
+ "emoji":"😷",
+ "description":"FACE WITH MEDICAL MASK",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "doctor",
+ "face",
+ "mask",
+ "medicine",
+ "sick"
+ ]
+ },
+ {
+ "no":72,
+ "code":"U+1F912",
+ "emoji":"🤒",
+ "description":"FACE WITH THERMOMETER",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "ill",
+ "sick",
+ "thermometer"
+ ]
+ },
+ {
+ "no":73,
+ "code":"U+1F915",
+ "emoji":"🤕",
+ "description":"FACE WITH HEAD-BANDAGE",
+ "flagged":false,
+ "keywords":[
+ "bandage",
+ "face",
+ "hurt",
+ "injury"
+ ]
+ },
+ {
+ "no":74,
+ "code":"U+1F922",
+ "emoji":"🤢",
+ "description":"NAUSEATED FACE",
+ "flagged":true,
+ "keywords":[
+ "face",
+ "nauseated",
+ "vomit"
+ ]
+ },
+ {
+ "no":75,
+ "code":"U+1F927",
+ "emoji":"🤧",
+ "description":"SNEEZING FACE",
+ "flagged":true,
+ "keywords":[
+ "face",
+ "gesundheit",
+ "sneeze"
+ ]
+ },
+ {
+ "no":76,
+ "code":"U+1F608",
+ "emoji":"😈",
+ "description":"SMILING FACE WITH HORNS",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "fairy tale",
+ "fantasy",
+ "horns",
+ "smile"
+ ]
+ },
+ {
+ "no":77,
+ "code":"U+1F47F",
+ "emoji":"👿",
+ "description":"IMP",
+ "flagged":false,
+ "keywords":[
+ "demon",
+ "devil",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "imp"
+ ]
+ },
+ {
+ "no":78,
+ "code":"U+1F479",
+ "emoji":"👹",
+ "description":"JAPANESE OGRE≊ ogre",
+ "flagged":false,
+ "keywords":[
+ "creature",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "japanese",
+ "monster",
+ "ogre"
+ ]
+ },
+ {
+ "no":79,
+ "code":"U+1F47A",
+ "emoji":"👺",
+ "description":"JAPANESE GOBLIN≊ goblin",
+ "flagged":false,
+ "keywords":[
+ "creature",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "goblin",
+ "japanese",
+ "monster"
+ ]
+ },
+ {
+ "no":80,
+ "code":"U+1F480",
+ "emoji":"💀",
+ "description":"SKULL",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "death",
+ "face",
+ "fairy tale",
+ "monster",
+ "skull"
+ ]
+ },
+ {
+ "no":81,
+ "code":"U+2620",
+ "emoji":"☠",
+ "description":"SKULL AND CROSSBONES",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "crossbones",
+ "death",
+ "face",
+ "monster",
+ "skull"
+ ]
+ },
+ {
+ "no":82,
+ "code":"U+1F47B",
+ "emoji":"👻",
+ "description":"GHOST",
+ "flagged":false,
+ "keywords":[
+ "creature",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "ghost",
+ "monster"
+ ]
+ },
+ {
+ "no":83,
+ "code":"U+1F47D",
+ "emoji":"👽",
+ "description":"EXTRATERRESTRIAL ALIEN≊ alien",
+ "flagged":false,
+ "keywords":[
+ "alien",
+ "creature",
+ "extraterrestrial",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "monster",
+ "space",
+ "ufo"
+ ]
+ },
+ {
+ "no":84,
+ "code":"U+1F47E",
+ "emoji":"👾",
+ "description":"ALIEN MONSTER",
+ "flagged":false,
+ "keywords":[
+ "alien",
+ "creature",
+ "extraterrestrial",
+ "face",
+ "fairy tale",
+ "fantasy",
+ "monster",
+ "space",
+ "ufo"
+ ]
+ },
+ {
+ "no":85,
+ "code":"U+1F916",
+ "emoji":"🤖",
+ "description":"ROBOT FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "monster",
+ "robot"
+ ]
+ },
+ {
+ "no":86,
+ "code":"U+1F4A9",
+ "emoji":"💩",
+ "description":"PILE OF POO",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "dung",
+ "face",
+ "monster",
+ "poo",
+ "poop"
+ ]
+ },
+ {
+ "no":87,
+ "code":"U+1F63A",
+ "emoji":"😺",
+ "description":"SMILING CAT FACE WITH OPEN MOUTH",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "mouth",
+ "open",
+ "smile"
+ ]
+ },
+ {
+ "no":88,
+ "code":"U+1F638",
+ "emoji":"😸",
+ "description":"GRINNING CAT FACE WITH SMILING EYES",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "eye",
+ "face",
+ "grin",
+ "smile"
+ ]
+ },
+ {
+ "no":89,
+ "code":"U+1F639",
+ "emoji":"😹",
+ "description":"CAT FACE WITH TEARS OF JOY",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "joy",
+ "tear"
+ ]
+ },
+ {
+ "no":90,
+ "code":"U+1F63B",
+ "emoji":"😻",
+ "description":"SMILING CAT FACE WITH HEART-SHAPED EYES",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "eye",
+ "face",
+ "heart",
+ "love",
+ "smile"
+ ]
+ },
+ {
+ "no":91,
+ "code":"U+1F63C",
+ "emoji":"😼",
+ "description":"CAT FACE WITH WRY SMILE",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "ironic",
+ "smile",
+ "wry"
+ ]
+ },
+ {
+ "no":92,
+ "code":"U+1F63D",
+ "emoji":"😽",
+ "description":"KISSING CAT FACE WITH CLOSED EYES",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "eye",
+ "face",
+ "kiss"
+ ]
+ },
+ {
+ "no":93,
+ "code":"U+1F640",
+ "emoji":"🙀",
+ "description":"WEARY CAT FACE",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "oh",
+ "surprised",
+ "weary"
+ ]
+ },
+ {
+ "no":94,
+ "code":"U+1F63F",
+ "emoji":"😿",
+ "description":"CRYING CAT FACE",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "cry",
+ "face",
+ "sad",
+ "tear"
+ ]
+ },
+ {
+ "no":95,
+ "code":"U+1F63E",
+ "emoji":"😾",
+ "description":"POUTING CAT FACE",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "pouting"
+ ]
+ },
+ {
+ "no":96,
+ "code":"U+1F648",
+ "emoji":"🙈",
+ "description":"SEE-NO-EVIL MONKEY≊ see-no-evil",
+ "flagged":false,
+ "keywords":[
+ "evil",
+ "face",
+ "forbidden",
+ "gesture",
+ "monkey",
+ "no",
+ "not",
+ "prohibited",
+ "see"
+ ]
+ },
+ {
+ "no":97,
+ "code":"U+1F649",
+ "emoji":"🙉",
+ "description":"HEAR-NO-EVIL MONKEY≊ hear-no-evil",
+ "flagged":false,
+ "keywords":[
+ "evil",
+ "face",
+ "forbidden",
+ "gesture",
+ "hear",
+ "monkey",
+ "no",
+ "not",
+ "prohibited"
+ ]
+ },
+ {
+ "no":98,
+ "code":"U+1F64A",
+ "emoji":"🙊",
+ "description":"SPEAK-NO-EVIL MONKEY≊ speak-no-evil",
+ "flagged":false,
+ "keywords":[
+ "evil",
+ "face",
+ "forbidden",
+ "gesture",
+ "monkey",
+ "no",
+ "not",
+ "prohibited",
+ "speak"
+ ]
+ },
+ {
+ "no":99,
+ "code":"U+1F466",
+ "emoji":"👦",
+ "description":"BOY",
+ "flagged":false,
+ "keywords":[
+ "boy"
+ ],
+ "types":[
+ "U+1F466 U+1F3FF",
+ "U+1F466 U+1F3FE",
+ "U+1F466 U+1F3FD",
+ "U+1F466 U+1F3FC",
+ "U+1F466 U+1F3FB"
+ ]
+ },
+ {
+ "no":105,
+ "code":"U+1F467",
+ "emoji":"👧",
+ "description":"GIRL",
+ "flagged":false,
+ "keywords":[
+ "girl",
+ "maiden",
+ "virgin",
+ "virgo",
+ "zodiac"
+ ],
+ "types":[
+ "U+1F467 U+1F3FF",
+ "U+1F467 U+1F3FE",
+ "U+1F467 U+1F3FD",
+ "U+1F467 U+1F3FC",
+ "U+1F467 U+1F3FB"
+ ]
+ },
+ {
+ "no":111,
+ "code":"U+1F468",
+ "emoji":"👨",
+ "description":"MAN",
+ "flagged":false,
+ "keywords":[
+ "man"
+ ],
+ "types":[
+ "U+1F468 U+1F3FF",
+ "U+1F468 U+1F3FE",
+ "U+1F468 U+1F3FD",
+ "U+1F468 U+1F3FC",
+ "U+1F468 U+1F3FB"
+ ]
+ },
+ {
+ "no":117,
+ "code":"U+1F469",
+ "emoji":"👩",
+ "description":"WOMAN",
+ "flagged":false,
+ "keywords":[
+ "woman"
+ ],
+ "types":[
+ "U+1F469 U+1F3FF",
+ "U+1F469 U+1F3FE",
+ "U+1F469 U+1F3FD",
+ "U+1F469 U+1F3FC",
+ "U+1F469 U+1F3FB"
+ ]
+ },
+ {
+ "no":123,
+ "code":"U+1F474",
+ "emoji":"👴",
+ "description":"OLDER MAN≊ old man",
+ "flagged":false,
+ "keywords":[
+ "man",
+ "old"
+ ],
+ "types":[
+ "U+1F474 U+1F3FF",
+ "U+1F474 U+1F3FE",
+ "U+1F474 U+1F3FD",
+ "U+1F474 U+1F3FC",
+ "U+1F474 U+1F3FB"
+ ]
+ },
+ {
+ "no":129,
+ "code":"U+1F475",
+ "emoji":"👵",
+ "description":"OLDER WOMAN≊ old woman",
+ "flagged":false,
+ "keywords":[
+ "old",
+ "woman"
+ ],
+ "types":[
+ "U+1F475 U+1F3FF",
+ "U+1F475 U+1F3FE",
+ "U+1F475 U+1F3FD",
+ "U+1F475 U+1F3FC",
+ "U+1F475 U+1F3FB"
+ ]
+ },
+ {
+ "no":135,
+ "code":"U+1F476",
+ "emoji":"👶",
+ "description":"BABY",
+ "flagged":false,
+ "keywords":[
+ "baby"
+ ],
+ "types":[
+ "U+1F476 U+1F3FF",
+ "U+1F476 U+1F3FE",
+ "U+1F476 U+1F3FD",
+ "U+1F476 U+1F3FC",
+ "U+1F476 U+1F3FB"
+ ]
+ },
+ {
+ "no":141,
+ "code":"U+1F47C",
+ "emoji":"👼",
+ "description":"BABY ANGEL",
+ "flagged":false,
+ "keywords":[
+ "angel",
+ "baby",
+ "face",
+ "fairy tale",
+ "fantasy"
+ ],
+ "types":[
+ "U+1F47C U+1F3FF",
+ "U+1F47C U+1F3FE",
+ "U+1F47C U+1F3FD",
+ "U+1F47C U+1F3FC",
+ "U+1F47C U+1F3FB"
+ ]
+ },
+ {
+ "no":147,
+ "code":"U+1F471",
+ "emoji":"👱",
+ "description":"PERSON WITH BLOND HAIR",
+ "flagged":false,
+ "keywords":[
+ "blond"
+ ],
+ "types":[
+ "U+1F471 U+1F3FF",
+ "U+1F471 U+1F3FE",
+ "U+1F471 U+1F3FD",
+ "U+1F471 U+1F3FC",
+ "U+1F471 U+1F3FB"
+ ]
+ },
+ {
+ "no":153,
+ "code":"U+1F46E",
+ "emoji":"👮",
+ "description":"POLICE OFFICER",
+ "flagged":false,
+ "keywords":[
+ "cop",
+ "officer",
+ "police"
+ ],
+ "types":[
+ "U+1F46E U+1F3FF",
+ "U+1F46E U+1F3FE",
+ "U+1F46E U+1F3FD",
+ "U+1F46E U+1F3FC",
+ "U+1F46E U+1F3FB"
+ ]
+ },
+ {
+ "no":159,
+ "code":"U+1F472",
+ "emoji":"👲",
+ "description":"MAN WITH GUA PI MAO≊ man with chinese cap",
+ "flagged":false,
+ "keywords":[
+ "gua pi mao",
+ "hat",
+ "man"
+ ],
+ "types":[
+ "U+1F472 U+1F3FF",
+ "U+1F472 U+1F3FE",
+ "U+1F472 U+1F3FD",
+ "U+1F472 U+1F3FC",
+ "U+1F472 U+1F3FB"
+ ]
+ },
+ {
+ "no":165,
+ "code":"U+1F473",
+ "emoji":"👳",
+ "description":"MAN WITH TURBAN",
+ "flagged":false,
+ "keywords":[
+ "man",
+ "turban"
+ ],
+ "types":[
+ "U+1F473 U+1F3FF",
+ "U+1F473 U+1F3FE",
+ "U+1F473 U+1F3FD",
+ "U+1F473 U+1F3FC",
+ "U+1F473 U+1F3FB"
+ ]
+ },
+ {
+ "no":171,
+ "code":"U+1F477",
+ "emoji":"👷",
+ "description":"CONSTRUCTION WORKER",
+ "flagged":false,
+ "keywords":[
+ "construction",
+ "hat",
+ "worker"
+ ],
+ "types":[
+ "U+1F477 U+1F3FF",
+ "U+1F477 U+1F3FE",
+ "U+1F477 U+1F3FD",
+ "U+1F477 U+1F3FC",
+ "U+1F477 U+1F3FB"
+ ]
+ },
+ {
+ "no":177,
+ "code":"U+1F478",
+ "emoji":"👸",
+ "description":"PRINCESS",
+ "flagged":false,
+ "keywords":[
+ "fairy tale",
+ "fantasy",
+ "princess"
+ ],
+ "types":[
+ "U+1F478 U+1F3FF",
+ "U+1F478 U+1F3FE",
+ "U+1F478 U+1F3FD",
+ "U+1F478 U+1F3FC",
+ "U+1F478 U+1F3FB"
+ ]
+ },
+ {
+ "no":183,
+ "code":"U+1F934",
+ "emoji":"🤴",
+ "description":"PRINCE",
+ "flagged":true,
+ "keywords":[
+ "prince"
+ ],
+ "types":[
+ "U+1F934 U+1F3FF",
+ "U+1F934 U+1F3FE",
+ "U+1F934 U+1F3FD",
+ "U+1F934 U+1F3FC",
+ "U+1F934 U+1F3FB"
+ ]
+ },
+ {
+ "no":189,
+ "code":"U+1F482",
+ "emoji":"💂",
+ "description":"GUARDSMAN",
+ "flagged":false,
+ "keywords":[
+ "guard",
+ "guardsman"
+ ],
+ "types":[
+ "U+1F482 U+1F3FF",
+ "U+1F482 U+1F3FE",
+ "U+1F482 U+1F3FD",
+ "U+1F482 U+1F3FC",
+ "U+1F482 U+1F3FB"
+ ]
+ },
+ {
+ "no":195,
+ "code":"U+1F575",
+ "emoji":"🕵",
+ "description":"SLEUTH OR SPY≊ detective",
+ "flagged":false,
+ "keywords":[
+ "detective",
+ "sleuth",
+ "spy"
+ ],
+ "types":[
+ "U+1F575 U+1F3FF",
+ "U+1F575 U+1F3FE",
+ "U+1F575 U+1F3FD",
+ "U+1F575 U+1F3FC",
+ "U+1F575 U+1F3FB"
+ ]
+ },
+ {
+ "no":201,
+ "code":"U+1F385",
+ "emoji":"🎅",
+ "description":"FATHER CHRISTMAS≊ santa claus",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "christmas",
+ "fairy tale",
+ "fantasy",
+ "father",
+ "santa"
+ ],
+ "types":[
+ "U+1F385 U+1F3FF",
+ "U+1F385 U+1F3FE",
+ "U+1F385 U+1F3FD",
+ "U+1F385 U+1F3FC",
+ "U+1F385 U+1F3FB"
+ ]
+ },
+ {
+ "no":207,
+ "code":"U+1F936",
+ "emoji":"🤶",
+ "description":"MOTHER CHRISTMAS",
+ "flagged":true,
+ "keywords":[
+ "christmas",
+ "mother",
+ "mrs. claus"
+ ],
+ "types":[
+ "U+1F936 U+1F3FF",
+ "U+1F936 U+1F3FE",
+ "U+1F936 U+1F3FD",
+ "U+1F936 U+1F3FC",
+ "U+1F936 U+1F3FB"
+ ]
+ },
+ {
+ "no":213,
+ "code":"U+1F470",
+ "emoji":"👰",
+ "description":"BRIDE WITH VEIL",
+ "flagged":false,
+ "keywords":[
+ "bride",
+ "veil",
+ "wedding"
+ ],
+ "types":[
+ "U+1F470 U+1F3FF",
+ "U+1F470 U+1F3FE",
+ "U+1F470 U+1F3FD",
+ "U+1F470 U+1F3FC",
+ "U+1F470 U+1F3FB"
+ ]
+ },
+ {
+ "no":219,
+ "code":"U+1F935",
+ "emoji":"🤵",
+ "description":"MAN IN TUXEDO",
+ "flagged":true,
+ "keywords":[
+ "groom",
+ "man",
+ "tuxedo"
+ ],
+ "types":[
+ "U+1F935 U+1F3FF",
+ "U+1F935 U+1F3FE",
+ "U+1F935 U+1F3FD",
+ "U+1F935 U+1F3FC",
+ "U+1F935 U+1F3FB"
+ ]
+ },
+ {
+ "no":225,
+ "code":"U+1F486",
+ "emoji":"💆",
+ "description":"FACE MASSAGE",
+ "flagged":false,
+ "keywords":[
+ "massage",
+ "salon"
+ ],
+ "types":[
+ "U+1F486 U+1F3FF",
+ "U+1F486 U+1F3FE",
+ "U+1F486 U+1F3FD",
+ "U+1F486 U+1F3FC",
+ "U+1F486 U+1F3FB"
+ ]
+ },
+ {
+ "no":231,
+ "code":"U+1F487",
+ "emoji":"💇",
+ "description":"HAIRCUT",
+ "flagged":false,
+ "keywords":[
+ "barber",
+ "beauty",
+ "haircut",
+ "parlor"
+ ],
+ "types":[
+ "U+1F487 U+1F3FF",
+ "U+1F487 U+1F3FE",
+ "U+1F487 U+1F3FD",
+ "U+1F487 U+1F3FC",
+ "U+1F487 U+1F3FB"
+ ]
+ },
+ {
+ "no":237,
+ "code":"U+1F64D",
+ "emoji":"🙍",
+ "description":"PERSON FROWNING",
+ "flagged":false,
+ "keywords":[
+ "frown",
+ "gesture"
+ ],
+ "types":[
+ "U+1F64D U+1F3FF",
+ "U+1F64D U+1F3FE",
+ "U+1F64D U+1F3FD",
+ "U+1F64D U+1F3FC",
+ "U+1F64D U+1F3FB"
+ ]
+ },
+ {
+ "no":243,
+ "code":"U+1F64E",
+ "emoji":"🙎",
+ "description":"PERSON WITH POUTING FACE≊ person pouting",
+ "flagged":false,
+ "keywords":[
+ "gesture",
+ "pouting"
+ ],
+ "types":[
+ "U+1F64E U+1F3FF",
+ "U+1F64E U+1F3FE",
+ "U+1F64E U+1F3FD",
+ "U+1F64E U+1F3FC",
+ "U+1F64E U+1F3FB"
+ ]
+ },
+ {
+ "no":249,
+ "code":"U+1F645",
+ "emoji":"🙅",
+ "description":"FACE WITH NO GOOD GESTURE≊ gesturing no",
+ "flagged":false,
+ "keywords":[
+ "forbidden",
+ "gesture",
+ "hand",
+ "no",
+ "not",
+ "prohibited"
+ ],
+ "types":[
+ "U+1F645 U+1F3FF",
+ "U+1F645 U+1F3FE",
+ "U+1F645 U+1F3FD",
+ "U+1F645 U+1F3FC",
+ "U+1F645 U+1F3FB"
+ ]
+ },
+ {
+ "no":255,
+ "code":"U+1F646",
+ "emoji":"🙆",
+ "description":"FACE WITH OK GESTURE≊ gesturing ok",
+ "flagged":false,
+ "keywords":[
+ "gesture",
+ "hand",
+ "ok"
+ ],
+ "types":[
+ "U+1F646 U+1F3FF",
+ "U+1F646 U+1F3FE",
+ "U+1F646 U+1F3FD",
+ "U+1F646 U+1F3FC",
+ "U+1F646 U+1F3FB"
+ ]
+ },
+ {
+ "no":261,
+ "code":"U+1F481",
+ "emoji":"💁",
+ "description":"INFORMATION DESK PERSON",
+ "flagged":false,
+ "keywords":[
+ "hand",
+ "help",
+ "information",
+ "sassy"
+ ],
+ "types":[
+ "U+1F481 U+1F3FF",
+ "U+1F481 U+1F3FE",
+ "U+1F481 U+1F3FD",
+ "U+1F481 U+1F3FC",
+ "U+1F481 U+1F3FB"
+ ]
+ },
+ {
+ "no":267,
+ "code":"U+1F937",
+ "emoji":"🤷",
+ "description":"SHRUG",
+ "flagged":true,
+ "keywords":[
+ "doubt",
+ "ignorance",
+ "indifference",
+ "shrug"
+ ],
+ "types":[
+ "U+1F937 U+1F3FF",
+ "U+1F937 U+1F3FE",
+ "U+1F937 U+1F3FD",
+ "U+1F937 U+1F3FC",
+ "U+1F937 U+1F3FB"
+ ]
+ },
+ {
+ "no":273,
+ "code":"U+1F64B",
+ "emoji":"🙋",
+ "description":"HAPPY PERSON RAISING ONE HAND≊ happy person raising hand",
+ "flagged":false,
+ "keywords":[
+ "gesture",
+ "hand",
+ "happy",
+ "raised"
+ ],
+ "types":[
+ "U+1F64B U+1F3FF",
+ "U+1F64B U+1F3FE",
+ "U+1F64B U+1F3FD",
+ "U+1F64B U+1F3FC",
+ "U+1F64B U+1F3FB"
+ ]
+ },
+ {
+ "no":279,
+ "code":"U+1F926",
+ "emoji":"🤦",
+ "description":"FACE PALM",
+ "flagged":true,
+ "keywords":[
+ "disbelief",
+ "exasperation",
+ "face",
+ "palm"
+ ],
+ "types":[
+ "U+1F926 U+1F3FF",
+ "U+1F926 U+1F3FE",
+ "U+1F926 U+1F3FD",
+ "U+1F926 U+1F3FC",
+ "U+1F926 U+1F3FB"
+ ]
+ },
+ {
+ "no":285,
+ "code":"U+1F647",
+ "emoji":"🙇",
+ "description":"PERSON BOWING DEEPLY≊ person bowing",
+ "flagged":false,
+ "keywords":[
+ "apology",
+ "bow",
+ "gesture",
+ "sorry"
+ ],
+ "types":[
+ "U+1F647 U+1F3FF",
+ "U+1F647 U+1F3FE",
+ "U+1F647 U+1F3FD",
+ "U+1F647 U+1F3FC",
+ "U+1F647 U+1F3FB"
+ ]
+ },
+ {
+ "no":291,
+ "code":"U+1F6B6",
+ "emoji":"🚶",
+ "description":"PEDESTRIAN",
+ "flagged":false,
+ "keywords":[
+ "hike",
+ "pedestrian",
+ "walk",
+ "walking"
+ ],
+ "types":[
+ "U+1F6B6 U+1F3FF",
+ "U+1F6B6 U+1F3FE",
+ "U+1F6B6 U+1F3FD",
+ "U+1F6B6 U+1F3FC",
+ "U+1F6B6 U+1F3FB"
+ ]
+ },
+ {
+ "no":297,
+ "code":"U+1F3C3",
+ "emoji":"🏃",
+ "description":"RUNNER",
+ "flagged":false,
+ "keywords":[
+ "marathon",
+ "runner",
+ "running"
+ ],
+ "types":[
+ "U+1F3C3 U+1F3FF",
+ "U+1F3C3 U+1F3FE",
+ "U+1F3C3 U+1F3FD",
+ "U+1F3C3 U+1F3FC",
+ "U+1F3C3 U+1F3FB"
+ ]
+ },
+ {
+ "no":303,
+ "code":"U+1F483",
+ "emoji":"💃",
+ "description":"DANCER",
+ "flagged":false,
+ "keywords":[
+ "dancer"
+ ],
+ "types":[
+ "U+1F483 U+1F3FF",
+ "U+1F483 U+1F3FE",
+ "U+1F483 U+1F3FD",
+ "U+1F483 U+1F3FC",
+ "U+1F483 U+1F3FB"
+ ]
+ },
+ {
+ "no":309,
+ "code":"U+1F57A",
+ "emoji":"🕺",
+ "description":"MAN DANCING",
+ "flagged":true,
+ "keywords":[
+ "dance",
+ "man"
+ ],
+ "types":[
+ "U+1F57A U+1F3FF",
+ "U+1F57A U+1F3FE",
+ "U+1F57A U+1F3FD",
+ "U+1F57A U+1F3FC",
+ "U+1F57A U+1F3FB"
+ ]
+ },
+ {
+ "no":315,
+ "code":"U+1F930",
+ "emoji":"🤰",
+ "description":"PREGNANT WOMAN",
+ "flagged":true,
+ "keywords":[
+ "pregnant",
+ "woman"
+ ],
+ "types":[
+ "U+1F930 U+1F3FF",
+ "U+1F930 U+1F3FE",
+ "U+1F930 U+1F3FD",
+ "U+1F930 U+1F3FC",
+ "U+1F930 U+1F3FB"
+ ]
+ },
+ {
+ "no":321,
+ "code":"U+1F46F",
+ "emoji":"👯",
+ "description":"WOMAN WITH BUNNY EARS≊ women partying",
+ "flagged":false,
+ "keywords":[
+ "bunny",
+ "dancer",
+ "ear",
+ "girl",
+ "woman"
+ ]
+ },
+ {
+ "no":322,
+ "code":"U+1F574",
+ "emoji":"🕴",
+ "description":"MAN IN BUSINESS SUIT LEVITATING",
+ "flagged":false,
+ "keywords":[
+ "business",
+ "man",
+ "suit"
+ ]
+ },
+ {
+ "no":323,
+ "code":"U+1F5E3",
+ "emoji":"🗣",
+ "description":"SPEAKING HEAD IN SILHOUETTE≊ speaking head",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "head",
+ "silhouette",
+ "speak",
+ "speaking"
+ ]
+ },
+ {
+ "no":324,
+ "code":"U+1F464",
+ "emoji":"👤",
+ "description":"BUST IN SILHOUETTE",
+ "flagged":false,
+ "keywords":[
+ "bust",
+ "silhouette"
+ ]
+ },
+ {
+ "no":325,
+ "code":"U+1F465",
+ "emoji":"👥",
+ "description":"BUSTS IN SILHOUETTE",
+ "flagged":false,
+ "keywords":[
+ "bust",
+ "silhouette"
+ ]
+ },
+ {
+ "no":326,
+ "code":"U+1F46B",
+ "emoji":"👫",
+ "description":"MAN AND WOMAN HOLDING HANDS",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "hand",
+ "hold",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":327,
+ "code":"U+1F46C",
+ "emoji":"👬",
+ "description":"TWO MEN HOLDING HANDS",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "gemini",
+ "hand",
+ "hold",
+ "man",
+ "twins",
+ "zodiac"
+ ]
+ },
+ {
+ "no":328,
+ "code":"U+1F46D",
+ "emoji":"👭",
+ "description":"TWO WOMEN HOLDING HANDS",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "hand",
+ "hold",
+ "woman"
+ ]
+ },
+ {
+ "no":329,
+ "code":"U+1F48F",
+ "emoji":"💏",
+ "description":"KISS",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "kiss",
+ "romance"
+ ]
+ },
+ {
+ "no":330,
+ "code":"U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468",
+ "emoji":"👩❤️💋👨",
+ "description":"Kiss: WOMAN, MAN",
+ "flagged":false,
+ "keywords":[
+ "kiss",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":331,
+ "code":"U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468",
+ "emoji":"👨❤️💋👨",
+ "description":"Kiss: MAN, MAN",
+ "flagged":false,
+ "keywords":[
+ "kiss",
+ "man"
+ ]
+ },
+ {
+ "no":332,
+ "code":"U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469",
+ "emoji":"👩❤️💋👩",
+ "description":"Kiss: WOMAN, WOMAN",
+ "flagged":false,
+ "keywords":[
+ "kiss",
+ "woman"
+ ]
+ },
+ {
+ "no":333,
+ "code":"U+1F491",
+ "emoji":"💑",
+ "description":"COUPLE WITH HEART",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "heart",
+ "love",
+ "romance"
+ ]
+ },
+ {
+ "no":334,
+ "code":"U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468",
+ "emoji":"👩❤️👨",
+ "description":"Couple with heart: WOMAN, MAN",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":335,
+ "code":"U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468",
+ "emoji":"👨❤️👨",
+ "description":"Couple with heart: MAN, MAN",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "man"
+ ]
+ },
+ {
+ "no":336,
+ "code":"U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469",
+ "emoji":"👩❤️👩",
+ "description":"Couple with heart: WOMAN, WOMAN",
+ "flagged":false,
+ "keywords":[
+ "couple",
+ "woman"
+ ]
+ },
+ {
+ "no":337,
+ "code":"U+1F46A",
+ "emoji":"👪",
+ "description":"FAMILY",
+ "flagged":false,
+ "keywords":[
+ "child",
+ "family",
+ "father",
+ "mother"
+ ]
+ },
+ {
+ "no":338,
+ "code":"U+1F468 U+200D U+1F469 U+200D U+1F466",
+ "emoji":"👨👩👦",
+ "description":"Family: MAN, WOMAN, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":339,
+ "code":"U+1F468 U+200D U+1F469 U+200D U+1F467",
+ "emoji":"👨👩👧",
+ "description":"Family: MAN, WOMAN, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":340,
+ "code":"U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466",
+ "emoji":"👨👩👧👦",
+ "description":"Family: MAN, WOMAN, GIRL, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "girl",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":341,
+ "code":"U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466",
+ "emoji":"👨👩👦👦",
+ "description":"Family: MAN, WOMAN, BOY, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":342,
+ "code":"U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467",
+ "emoji":"👨👩👧👧",
+ "description":"Family: MAN, WOMAN, GIRL, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "man",
+ "woman"
+ ]
+ },
+ {
+ "no":343,
+ "code":"U+1F468 U+200D U+1F468 U+200D U+1F466",
+ "emoji":"👨👨👦",
+ "description":"Family: MAN, MAN, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "man"
+ ]
+ },
+ {
+ "no":344,
+ "code":"U+1F468 U+200D U+1F468 U+200D U+1F467",
+ "emoji":"👨👨👧",
+ "description":"Family: MAN, MAN, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "man"
+ ]
+ },
+ {
+ "no":345,
+ "code":"U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466",
+ "emoji":"👨👨👧👦",
+ "description":"Family: MAN, MAN, GIRL, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "girl",
+ "man"
+ ]
+ },
+ {
+ "no":346,
+ "code":"U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466",
+ "emoji":"👨👨👦👦",
+ "description":"Family: MAN, MAN, BOY, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "man"
+ ]
+ },
+ {
+ "no":347,
+ "code":"U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467",
+ "emoji":"👨👨👧👧",
+ "description":"Family: MAN, MAN, GIRL, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "man"
+ ]
+ },
+ {
+ "no":348,
+ "code":"U+1F469 U+200D U+1F469 U+200D U+1F466",
+ "emoji":"👩👩👦",
+ "description":"Family: WOMAN, WOMAN, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "woman"
+ ]
+ },
+ {
+ "no":349,
+ "code":"U+1F469 U+200D U+1F469 U+200D U+1F467",
+ "emoji":"👩👩👧",
+ "description":"Family: WOMAN, WOMAN, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "woman"
+ ]
+ },
+ {
+ "no":350,
+ "code":"U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466",
+ "emoji":"👩👩👧👦",
+ "description":"Family: WOMAN, WOMAN, GIRL, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "girl",
+ "woman"
+ ]
+ },
+ {
+ "no":351,
+ "code":"U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466",
+ "emoji":"👩👩👦👦",
+ "description":"Family: WOMAN, WOMAN, BOY, BOY",
+ "flagged":false,
+ "keywords":[
+ "boy",
+ "family",
+ "woman"
+ ]
+ },
+ {
+ "no":352,
+ "code":"U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467",
+ "emoji":"👩👩👧👧",
+ "description":"Family: WOMAN, WOMAN, GIRL, GIRL",
+ "flagged":false,
+ "keywords":[
+ "family",
+ "girl",
+ "woman"
+ ]
+ },
+ {
+ "no":353,
+ "code":"U+1F3FB",
+ "emoji":"🏻",
+ "description":"EMOJI MODIFIER FITZPATRICK TYPE-1-2≊ skin type-1-2",
+ "flagged":true,
+ "keywords":[
+ "emoji modifier",
+ "fitzpatrick",
+ "skin",
+ "tone"
+ ]
+ },
+ {
+ "no":354,
+ "code":"U+1F3FC",
+ "emoji":"🏼",
+ "description":"EMOJI MODIFIER FITZPATRICK TYPE-3≊ skin type-3",
+ "flagged":true,
+ "keywords":[
+ "emoji modifier",
+ "fitzpatrick",
+ "skin",
+ "tone"
+ ]
+ },
+ {
+ "no":355,
+ "code":"U+1F3FD",
+ "emoji":"🏽",
+ "description":"EMOJI MODIFIER FITZPATRICK TYPE-4≊ skin type-4",
+ "flagged":true,
+ "keywords":[
+ "emoji modifier",
+ "fitzpatrick",
+ "skin",
+ "tone"
+ ]
+ },
+ {
+ "no":356,
+ "code":"U+1F3FE",
+ "emoji":"🏾",
+ "description":"EMOJI MODIFIER FITZPATRICK TYPE-5≊ skin type-5",
+ "flagged":true,
+ "keywords":[
+ "emoji modifier",
+ "fitzpatrick",
+ "skin",
+ "tone"
+ ]
+ },
+ {
+ "no":357,
+ "code":"U+1F3FF",
+ "emoji":"🏿",
+ "description":"EMOJI MODIFIER FITZPATRICK TYPE-6≊ skin type-6",
+ "flagged":true,
+ "keywords":[
+ "emoji modifier",
+ "fitzpatrick",
+ "skin",
+ "tone"
+ ]
+ },
+ {
+ "no":358,
+ "code":"U+1F4AA",
+ "emoji":"💪",
+ "description":"FLEXED BICEPS",
+ "flagged":false,
+ "keywords":[
+ "biceps",
+ "body",
+ "comic",
+ "flex",
+ "muscle"
+ ],
+ "types":[
+ "U+1F4AA U+1F3FF",
+ "U+1F4AA U+1F3FE",
+ "U+1F4AA U+1F3FD",
+ "U+1F4AA U+1F3FC",
+ "U+1F4AA U+1F3FB"
+ ]
+ },
+ {
+ "no":364,
+ "code":"U+1F933",
+ "emoji":"🤳",
+ "description":"SELFIE",
+ "flagged":true,
+ "keywords":[
+ "camera",
+ "phone",
+ "selfie"
+ ],
+ "types":[
+ "U+1F933 U+1F3FF",
+ "U+1F933 U+1F3FE",
+ "U+1F933 U+1F3FD",
+ "U+1F933 U+1F3FC",
+ "U+1F933 U+1F3FB"
+ ]
+ },
+ {
+ "no":370,
+ "code":"U+1F448",
+ "emoji":"👈",
+ "description":"WHITE LEFT POINTING BACKHAND INDEX≊ backhand index pointing left",
+ "flagged":false,
+ "keywords":[
+ "backhand",
+ "body",
+ "finger",
+ "hand",
+ "index",
+ "point"
+ ],
+ "types":[
+ "U+1F448 U+1F3FF",
+ "U+1F448 U+1F3FE",
+ "U+1F448 U+1F3FD",
+ "U+1F448 U+1F3FC",
+ "U+1F448 U+1F3FB"
+ ]
+ },
+ {
+ "no":376,
+ "code":"U+1F449",
+ "emoji":"👉",
+ "description":"WHITE RIGHT POINTING BACKHAND INDEX≊ backhand index pointing right",
+ "flagged":false,
+ "keywords":[
+ "backhand",
+ "body",
+ "finger",
+ "hand",
+ "index",
+ "point"
+ ],
+ "types":[
+ "U+1F449 U+1F3FF",
+ "U+1F449 U+1F3FE",
+ "U+1F449 U+1F3FD",
+ "U+1F449 U+1F3FC",
+ "U+1F449 U+1F3FB"
+ ]
+ },
+ {
+ "no":382,
+ "code":"U+261D",
+ "emoji":"☝",
+ "description":"WHITE UP POINTING INDEX≊ index pointing up",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "finger",
+ "hand",
+ "index",
+ "point",
+ "up"
+ ],
+ "types":[
+ "U+261D U+1F3FF",
+ "U+261D U+1F3FE",
+ "U+261D U+1F3FD",
+ "U+261D U+1F3FC",
+ "U+261D U+1F3FB"
+ ]
+ },
+ {
+ "no":388,
+ "code":"U+1F446",
+ "emoji":"👆",
+ "description":"WHITE UP POINTING BACKHAND INDEX≊ backhand index pointing up",
+ "flagged":false,
+ "keywords":[
+ "backhand",
+ "body",
+ "finger",
+ "hand",
+ "index",
+ "point",
+ "up"
+ ],
+ "types":[
+ "U+1F446 U+1F3FF",
+ "U+1F446 U+1F3FE",
+ "U+1F446 U+1F3FD",
+ "U+1F446 U+1F3FC",
+ "U+1F446 U+1F3FB"
+ ]
+ },
+ {
+ "no":394,
+ "code":"U+1F595",
+ "emoji":"🖕",
+ "description":"REVERSED HAND WITH MIDDLE FINGER EXTENDED≊ middle finger",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "finger",
+ "hand",
+ "middle finger"
+ ],
+ "types":[
+ "U+1F595 U+1F3FF",
+ "U+1F595 U+1F3FE",
+ "U+1F595 U+1F3FD",
+ "U+1F595 U+1F3FC",
+ "U+1F595 U+1F3FB"
+ ]
+ },
+ {
+ "no":400,
+ "code":"U+1F447",
+ "emoji":"👇",
+ "description":"WHITE DOWN POINTING BACKHAND INDEX≊ backhand index pointing down",
+ "flagged":false,
+ "keywords":[
+ "backhand",
+ "body",
+ "down",
+ "finger",
+ "hand",
+ "index",
+ "point"
+ ],
+ "types":[
+ "U+1F447 U+1F3FF",
+ "U+1F447 U+1F3FE",
+ "U+1F447 U+1F3FD",
+ "U+1F447 U+1F3FC",
+ "U+1F447 U+1F3FB"
+ ]
+ },
+ {
+ "no":406,
+ "code":"U+270C",
+ "emoji":"✌",
+ "description":"VICTORY HAND",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand",
+ "v",
+ "victory"
+ ],
+ "types":[
+ "U+270C U+1F3FF",
+ "U+270C U+1F3FE",
+ "U+270C U+1F3FD",
+ "U+270C U+1F3FC",
+ "U+270C U+1F3FB"
+ ]
+ },
+ {
+ "no":412,
+ "code":"U+1F91E",
+ "emoji":"🤞",
+ "description":"HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
+ "flagged":true,
+ "keywords":[
+ "cross",
+ "finger",
+ "hand",
+ "luck"
+ ],
+ "types":[
+ "U+1F91E U+1F3FF",
+ "U+1F91E U+1F3FE",
+ "U+1F91E U+1F3FD",
+ "U+1F91E U+1F3FC",
+ "U+1F91E U+1F3FB"
+ ]
+ },
+ {
+ "no":418,
+ "code":"U+1F596",
+ "emoji":"🖖",
+ "description":"RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS≊ vulcan salute",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "finger",
+ "hand",
+ "spock",
+ "vulcan"
+ ],
+ "types":[
+ "U+1F596 U+1F3FF",
+ "U+1F596 U+1F3FE",
+ "U+1F596 U+1F3FD",
+ "U+1F596 U+1F3FC",
+ "U+1F596 U+1F3FB"
+ ]
+ },
+ {
+ "no":424,
+ "code":"U+1F918",
+ "emoji":"🤘",
+ "description":"SIGN OF THE HORNS",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "finger",
+ "hand",
+ "horns",
+ "rock-on"
+ ],
+ "types":[
+ "U+1F918 U+1F3FF",
+ "U+1F918 U+1F3FE",
+ "U+1F918 U+1F3FD",
+ "U+1F918 U+1F3FC",
+ "U+1F918 U+1F3FB"
+ ]
+ },
+ {
+ "no":430,
+ "code":"U+1F919",
+ "emoji":"🤙",
+ "description":"CALL ME HAND",
+ "flagged":true,
+ "keywords":[
+ "call",
+ "hand"
+ ],
+ "types":[
+ "U+1F919 U+1F3FF",
+ "U+1F919 U+1F3FE",
+ "U+1F919 U+1F3FD",
+ "U+1F919 U+1F3FC",
+ "U+1F919 U+1F3FB"
+ ]
+ },
+ {
+ "no":436,
+ "code":"U+1F590",
+ "emoji":"🖐",
+ "description":"RAISED HAND WITH FINGERS SPLAYED",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "finger",
+ "hand",
+ "splayed"
+ ],
+ "types":[
+ "U+1F590 U+1F3FF",
+ "U+1F590 U+1F3FE",
+ "U+1F590 U+1F3FD",
+ "U+1F590 U+1F3FC",
+ "U+1F590 U+1F3FB"
+ ]
+ },
+ {
+ "no":442,
+ "code":"U+270B",
+ "emoji":"✋",
+ "description":"RAISED HAND",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand"
+ ],
+ "types":[
+ "U+270B U+1F3FF",
+ "U+270B U+1F3FE",
+ "U+270B U+1F3FD",
+ "U+270B U+1F3FC",
+ "U+270B U+1F3FB"
+ ]
+ },
+ {
+ "no":448,
+ "code":"U+1F44C",
+ "emoji":"👌",
+ "description":"OK HAND SIGN≊ ok hand",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand",
+ "ok"
+ ],
+ "types":[
+ "U+1F44C U+1F3FF",
+ "U+1F44C U+1F3FE",
+ "U+1F44C U+1F3FD",
+ "U+1F44C U+1F3FC",
+ "U+1F44C U+1F3FB"
+ ]
+ },
+ {
+ "no":454,
+ "code":"U+1F44D",
+ "emoji":"👍",
+ "description":"THUMBS UP SIGN≊ thumbs up",
+ "flagged":false,
+ "keywords":[
+ "+1",
+ "body",
+ "hand",
+ "thumb",
+ "thumbs up",
+ "up"
+ ],
+ "types":[
+ "U+1F44D U+1F3FF",
+ "U+1F44D U+1F3FE",
+ "U+1F44D U+1F3FD",
+ "U+1F44D U+1F3FC",
+ "U+1F44D U+1F3FB"
+ ]
+ },
+ {
+ "no":460,
+ "code":"U+1F44E",
+ "emoji":"👎",
+ "description":"THUMBS DOWN SIGN≊ thumbs down",
+ "flagged":false,
+ "keywords":[
+ "-1",
+ "body",
+ "down",
+ "hand",
+ "thumb",
+ "thumbs down"
+ ],
+ "types":[
+ "U+1F44E U+1F3FF",
+ "U+1F44E U+1F3FE",
+ "U+1F44E U+1F3FD",
+ "U+1F44E U+1F3FC",
+ "U+1F44E U+1F3FB"
+ ]
+ },
+ {
+ "no":466,
+ "code":"U+270A",
+ "emoji":"✊",
+ "description":"RAISED FIST",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "clenched",
+ "fist",
+ "hand",
+ "punch"
+ ],
+ "types":[
+ "U+270A U+1F3FF",
+ "U+270A U+1F3FE",
+ "U+270A U+1F3FD",
+ "U+270A U+1F3FC",
+ "U+270A U+1F3FB"
+ ]
+ },
+ {
+ "no":472,
+ "code":"U+1F44A",
+ "emoji":"👊",
+ "description":"FISTED HAND SIGN≊ oncoming fist",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "clenched",
+ "fist",
+ "hand",
+ "punch"
+ ],
+ "types":[
+ "U+1F44A U+1F3FF",
+ "U+1F44A U+1F3FE",
+ "U+1F44A U+1F3FD",
+ "U+1F44A U+1F3FC",
+ "U+1F44A U+1F3FB"
+ ]
+ },
+ {
+ "no":478,
+ "code":"U+1F91B",
+ "emoji":"🤛",
+ "description":"LEFT-FACING FIST",
+ "flagged":true,
+ "keywords":[
+ "fist",
+ "leftwards"
+ ],
+ "types":[
+ "U+1F91B U+1F3FF",
+ "U+1F91B U+1F3FE",
+ "U+1F91B U+1F3FD",
+ "U+1F91B U+1F3FC",
+ "U+1F91B U+1F3FB"
+ ]
+ },
+ {
+ "no":484,
+ "code":"U+1F91C",
+ "emoji":"🤜",
+ "description":"RIGHT-FACING FIST",
+ "flagged":true,
+ "keywords":[
+ "fist",
+ "rightwards"
+ ],
+ "types":[
+ "U+1F91C U+1F3FF",
+ "U+1F91C U+1F3FE",
+ "U+1F91C U+1F3FD",
+ "U+1F91C U+1F3FC",
+ "U+1F91C U+1F3FB"
+ ]
+ },
+ {
+ "no":490,
+ "code":"U+1F91A",
+ "emoji":"🤚",
+ "description":"RAISED BACK OF HAND",
+ "flagged":true,
+ "keywords":[
+ "backhand",
+ "raised"
+ ],
+ "types":[
+ "U+1F91A U+1F3FF",
+ "U+1F91A U+1F3FE",
+ "U+1F91A U+1F3FD",
+ "U+1F91A U+1F3FC",
+ "U+1F91A U+1F3FB"
+ ]
+ },
+ {
+ "no":496,
+ "code":"U+1F44B",
+ "emoji":"👋",
+ "description":"WAVING HAND SIGN≊ waving hand",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand",
+ "wave",
+ "waving"
+ ],
+ "types":[
+ "U+1F44B U+1F3FF",
+ "U+1F44B U+1F3FE",
+ "U+1F44B U+1F3FD",
+ "U+1F44B U+1F3FC",
+ "U+1F44B U+1F3FB"
+ ]
+ },
+ {
+ "no":502,
+ "code":"U+1F44F",
+ "emoji":"👏",
+ "description":"CLAPPING HANDS SIGN≊ clapping hands",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "clap",
+ "hand"
+ ],
+ "types":[
+ "U+1F44F U+1F3FF",
+ "U+1F44F U+1F3FE",
+ "U+1F44F U+1F3FD",
+ "U+1F44F U+1F3FC",
+ "U+1F44F U+1F3FB"
+ ]
+ },
+ {
+ "no":508,
+ "code":"U+270D",
+ "emoji":"✍",
+ "description":"WRITING HAND",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand",
+ "write"
+ ],
+ "types":[
+ "U+270D U+1F3FF",
+ "U+270D U+1F3FE",
+ "U+270D U+1F3FD",
+ "U+270D U+1F3FC",
+ "U+270D U+1F3FB"
+ ]
+ },
+ {
+ "no":514,
+ "code":"U+1F450",
+ "emoji":"👐",
+ "description":"OPEN HANDS SIGN≊ open hands",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "hand",
+ "open"
+ ],
+ "types":[
+ "U+1F450 U+1F3FF",
+ "U+1F450 U+1F3FE",
+ "U+1F450 U+1F3FD",
+ "U+1F450 U+1F3FC",
+ "U+1F450 U+1F3FB"
+ ]
+ },
+ {
+ "no":520,
+ "code":"U+1F64C",
+ "emoji":"🙌",
+ "description":"PERSON RAISING BOTH HANDS IN CELEBRATION≊ person raising hands",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "celebration",
+ "gesture",
+ "hand",
+ "hooray",
+ "raised"
+ ],
+ "types":[
+ "U+1F64C U+1F3FF",
+ "U+1F64C U+1F3FE",
+ "U+1F64C U+1F3FD",
+ "U+1F64C U+1F3FC",
+ "U+1F64C U+1F3FB"
+ ]
+ },
+ {
+ "no":526,
+ "code":"U+1F64F",
+ "emoji":"🙏",
+ "description":"PERSON WITH FOLDED HANDS≊ folded hands",
+ "flagged":false,
+ "keywords":[
+ "ask",
+ "body",
+ "bow",
+ "folded",
+ "gesture",
+ "hand",
+ "please",
+ "pray",
+ "thanks"
+ ],
+ "types":[
+ "U+1F64F U+1F3FF",
+ "U+1F64F U+1F3FE",
+ "U+1F64F U+1F3FD",
+ "U+1F64F U+1F3FC",
+ "U+1F64F U+1F3FB"
+ ]
+ },
+ {
+ "no":532,
+ "code":"U+1F91D",
+ "emoji":"🤝",
+ "description":"HANDSHAKE",
+ "flagged":true,
+ "keywords":[
+ "agreement",
+ "hand",
+ "handshake",
+ "meeting",
+ "shake"
+ ],
+ "types":[
+ "U+1F91D U+1F3FF",
+ "U+1F91D U+1F3FE",
+ "U+1F91D U+1F3FD",
+ "U+1F91D U+1F3FC",
+ "U+1F91D U+1F3FB"
+ ]
+ },
+ {
+ "no":538,
+ "code":"U+1F485",
+ "emoji":"💅",
+ "description":"NAIL POLISH",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "care",
+ "cosmetics",
+ "manicure",
+ "nail",
+ "polish"
+ ],
+ "types":[
+ "U+1F485 U+1F3FF",
+ "U+1F485 U+1F3FE",
+ "U+1F485 U+1F3FD",
+ "U+1F485 U+1F3FC",
+ "U+1F485 U+1F3FB"
+ ]
+ },
+ {
+ "no":544,
+ "code":"U+1F442",
+ "emoji":"👂",
+ "description":"EAR",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "ear"
+ ],
+ "types":[
+ "U+1F442 U+1F3FF",
+ "U+1F442 U+1F3FE",
+ "U+1F442 U+1F3FD",
+ "U+1F442 U+1F3FC",
+ "U+1F442 U+1F3FB"
+ ]
+ },
+ {
+ "no":550,
+ "code":"U+1F443",
+ "emoji":"👃",
+ "description":"NOSE",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "nose"
+ ],
+ "types":[
+ "U+1F443 U+1F3FF",
+ "U+1F443 U+1F3FE",
+ "U+1F443 U+1F3FD",
+ "U+1F443 U+1F3FC",
+ "U+1F443 U+1F3FB"
+ ]
+ },
+ {
+ "no":556,
+ "code":"U+1F463",
+ "emoji":"👣",
+ "description":"FOOTPRINTS",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "clothing",
+ "footprint",
+ "print"
+ ]
+ },
+ {
+ "no":557,
+ "code":"U+1F440",
+ "emoji":"👀",
+ "description":"EYES",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "eye",
+ "face"
+ ]
+ },
+ {
+ "no":558,
+ "code":"U+1F441",
+ "emoji":"👁",
+ "description":"EYE",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "eye"
+ ]
+ },
+ {
+ "no":559,
+ "code":"U+1F441 U+200D U+1F5E8",
+ "emoji":"👁🗨",
+ "description":"EYE, LEFT SPEECH BUBBLE≊ eye in speech bubble",
+ "flagged":false,
+ "keywords":[
+ "bubble",
+ "eye",
+ "speech",
+ "witness"
+ ]
+ },
+ {
+ "no":560,
+ "code":"U+1F445",
+ "emoji":"👅",
+ "description":"TONGUE",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "tongue"
+ ]
+ },
+ {
+ "no":561,
+ "code":"U+1F444",
+ "emoji":"👄",
+ "description":"MOUTH",
+ "flagged":false,
+ "keywords":[
+ "body",
+ "lips",
+ "mouth"
+ ]
+ },
+ {
+ "no":562,
+ "code":"U+1F48B",
+ "emoji":"💋",
+ "description":"KISS MARK",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "kiss",
+ "lips",
+ "mark",
+ "romance"
+ ]
+ },
+ {
+ "no":563,
+ "code":"U+1F498",
+ "emoji":"💘",
+ "description":"HEART WITH ARROW",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "cupid",
+ "heart",
+ "romance"
+ ]
+ },
+ {
+ "no":564,
+ "code":"U+2764",
+ "emoji":"❤",
+ "description":"HEAVY BLACK HEART≊ red heart",
+ "flagged":false,
+ "keywords":[
+ "heart"
+ ]
+ },
+ {
+ "no":565,
+ "code":"U+1F493",
+ "emoji":"💓",
+ "description":"BEATING HEART",
+ "flagged":false,
+ "keywords":[
+ "beating",
+ "heart",
+ "heartbeat",
+ "pulsating"
+ ]
+ },
+ {
+ "no":566,
+ "code":"U+1F494",
+ "emoji":"💔",
+ "description":"BROKEN HEART",
+ "flagged":false,
+ "keywords":[
+ "break",
+ "broken",
+ "heart"
+ ]
+ },
+ {
+ "no":567,
+ "code":"U+1F495",
+ "emoji":"💕",
+ "description":"TWO HEARTS",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "love"
+ ]
+ },
+ {
+ "no":568,
+ "code":"U+1F496",
+ "emoji":"💖",
+ "description":"SPARKLING HEART",
+ "flagged":false,
+ "keywords":[
+ "excited",
+ "heart",
+ "sparkle"
+ ]
+ },
+ {
+ "no":569,
+ "code":"U+1F497",
+ "emoji":"💗",
+ "description":"GROWING HEART",
+ "flagged":false,
+ "keywords":[
+ "excited",
+ "growing",
+ "heart",
+ "heartpulse",
+ "nervous"
+ ]
+ },
+ {
+ "no":570,
+ "code":"U+1F499",
+ "emoji":"💙",
+ "description":"BLUE HEART",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "heart"
+ ]
+ },
+ {
+ "no":571,
+ "code":"U+1F49A",
+ "emoji":"💚",
+ "description":"GREEN HEART",
+ "flagged":false,
+ "keywords":[
+ "green",
+ "heart"
+ ]
+ },
+ {
+ "no":572,
+ "code":"U+1F49B",
+ "emoji":"💛",
+ "description":"YELLOW HEART",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "yellow"
+ ]
+ },
+ {
+ "no":573,
+ "code":"U+1F49C",
+ "emoji":"💜",
+ "description":"PURPLE HEART",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "purple"
+ ]
+ },
+ {
+ "no":574,
+ "code":"U+1F5A4",
+ "emoji":"🖤",
+ "description":"BLACK HEART",
+ "flagged":true,
+ "keywords":[
+ "black",
+ "evil",
+ "heart",
+ "wicked"
+ ]
+ },
+ {
+ "no":575,
+ "code":"U+1F49D",
+ "emoji":"💝",
+ "description":"HEART WITH RIBBON",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "ribbon",
+ "valentine"
+ ]
+ },
+ {
+ "no":576,
+ "code":"U+1F49E",
+ "emoji":"💞",
+ "description":"REVOLVING HEARTS",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "revolving"
+ ]
+ },
+ {
+ "no":577,
+ "code":"U+1F49F",
+ "emoji":"💟",
+ "description":"HEART DECORATION",
+ "flagged":false,
+ "keywords":[
+ "heart"
+ ]
+ },
+ {
+ "no":578,
+ "code":"U+2763",
+ "emoji":"❣",
+ "description":"HEAVY HEART EXCLAMATION MARK ORNAMENT",
+ "flagged":false,
+ "keywords":[
+ "exclamation",
+ "heart",
+ "mark",
+ "punctuation"
+ ]
+ },
+ {
+ "no":579,
+ "code":"U+1F48C",
+ "emoji":"💌",
+ "description":"LOVE LETTER",
+ "flagged":false,
+ "keywords":[
+ "heart",
+ "letter",
+ "love",
+ "mail",
+ "romance"
+ ]
+ },
+ {
+ "no":580,
+ "code":"U+1F4A4",
+ "emoji":"💤",
+ "description":"SLEEPING SYMBOL≊ zzz",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "sleep",
+ "zzz"
+ ]
+ },
+ {
+ "no":581,
+ "code":"U+1F4A2",
+ "emoji":"💢",
+ "description":"ANGER SYMBOL",
+ "flagged":false,
+ "keywords":[
+ "angry",
+ "comic",
+ "mad"
+ ]
+ },
+ {
+ "no":582,
+ "code":"U+1F4A3",
+ "emoji":"💣",
+ "description":"BOMB",
+ "flagged":false,
+ "keywords":[
+ "bomb",
+ "comic"
+ ]
+ },
+ {
+ "no":583,
+ "code":"U+1F4A5",
+ "emoji":"💥",
+ "description":"COLLISION SYMBOL≊ collision",
+ "flagged":false,
+ "keywords":[
+ "boom",
+ "collision",
+ "comic"
+ ]
+ },
+ {
+ "no":584,
+ "code":"U+1F4A6",
+ "emoji":"💦",
+ "description":"SPLASHING SWEAT SYMBOL≊ sweat droplets",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "splashing",
+ "sweat"
+ ]
+ },
+ {
+ "no":585,
+ "code":"U+1F4A8",
+ "emoji":"💨",
+ "description":"DASH SYMBOL≊ dashing",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "dash",
+ "running"
+ ]
+ },
+ {
+ "no":586,
+ "code":"U+1F4AB",
+ "emoji":"💫",
+ "description":"DIZZY SYMBOL≊ dizzy",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "dizzy",
+ "star"
+ ]
+ },
+ {
+ "no":587,
+ "code":"U+1F4AC",
+ "emoji":"💬",
+ "description":"SPEECH BALLOON",
+ "flagged":false,
+ "keywords":[
+ "balloon",
+ "bubble",
+ "comic",
+ "dialog",
+ "speech"
+ ]
+ },
+ {
+ "no":588,
+ "code":"U+1F5E8",
+ "emoji":"🗨",
+ "description":"LEFT SPEECH BUBBLE",
+ "flagged":false,
+ "keywords":[
+ "dialog",
+ "speech"
+ ]
+ },
+ {
+ "no":589,
+ "code":"U+1F5EF",
+ "emoji":"🗯",
+ "description":"RIGHT ANGER BUBBLE",
+ "flagged":false,
+ "keywords":[
+ "angry",
+ "balloon",
+ "bubble",
+ "mad"
+ ]
+ },
+ {
+ "no":590,
+ "code":"U+1F4AD",
+ "emoji":"💭",
+ "description":"THOUGHT BALLOON",
+ "flagged":false,
+ "keywords":[
+ "balloon",
+ "bubble",
+ "comic",
+ "thought"
+ ]
+ },
+ {
+ "no":591,
+ "code":"U+1F573",
+ "emoji":"🕳",
+ "description":"HOLE",
+ "flagged":false,
+ "keywords":[
+ "hole"
+ ]
+ },
+ {
+ "no":592,
+ "code":"U+1F453",
+ "emoji":"👓",
+ "description":"EYEGLASSES≊ glasses",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "eye",
+ "eyeglasses",
+ "eyewear",
+ "glasses"
+ ]
+ },
+ {
+ "no":593,
+ "code":"U+1F576",
+ "emoji":"🕶",
+ "description":"DARK SUNGLASSES≊ sunglasses",
+ "flagged":false,
+ "keywords":[
+ "dark",
+ "eye",
+ "eyewear",
+ "glasses",
+ "sunglasses"
+ ]
+ },
+ {
+ "no":594,
+ "code":"U+1F454",
+ "emoji":"👔",
+ "description":"NECKTIE",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "necktie"
+ ]
+ },
+ {
+ "no":595,
+ "code":"U+1F455",
+ "emoji":"👕",
+ "description":"T-SHIRT",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "shirt",
+ "tshirt"
+ ]
+ },
+ {
+ "no":596,
+ "code":"U+1F456",
+ "emoji":"👖",
+ "description":"JEANS",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "jeans",
+ "pants",
+ "trousers"
+ ]
+ },
+ {
+ "no":597,
+ "code":"U+1F457",
+ "emoji":"👗",
+ "description":"DRESS",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "dress"
+ ]
+ },
+ {
+ "no":598,
+ "code":"U+1F458",
+ "emoji":"👘",
+ "description":"KIMONO",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "kimono"
+ ]
+ },
+ {
+ "no":599,
+ "code":"U+1F459",
+ "emoji":"👙",
+ "description":"BIKINI",
+ "flagged":false,
+ "keywords":[
+ "bikini",
+ "clothing",
+ "swim"
+ ]
+ },
+ {
+ "no":600,
+ "code":"U+1F45A",
+ "emoji":"👚",
+ "description":"WOMANS CLOTHES≊ woman’s clothes",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "woman"
+ ]
+ },
+ {
+ "no":601,
+ "code":"U+1F45B",
+ "emoji":"👛",
+ "description":"PURSE",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "coin",
+ "purse"
+ ]
+ },
+ {
+ "no":602,
+ "code":"U+1F45C",
+ "emoji":"👜",
+ "description":"HANDBAG",
+ "flagged":false,
+ "keywords":[
+ "bag",
+ "clothing",
+ "handbag"
+ ]
+ },
+ {
+ "no":603,
+ "code":"U+1F45D",
+ "emoji":"👝",
+ "description":"POUCH",
+ "flagged":false,
+ "keywords":[
+ "bag",
+ "clothing",
+ "pouch"
+ ]
+ },
+ {
+ "no":604,
+ "code":"U+1F6CD",
+ "emoji":"🛍",
+ "description":"SHOPPING BAGS",
+ "flagged":false,
+ "keywords":[
+ "bag",
+ "hotel",
+ "shopping"
+ ]
+ },
+ {
+ "no":605,
+ "code":"U+1F392",
+ "emoji":"🎒",
+ "description":"SCHOOL SATCHEL≊ school backpack",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "bag",
+ "satchel",
+ "school"
+ ]
+ },
+ {
+ "no":606,
+ "code":"U+1F45E",
+ "emoji":"👞",
+ "description":"MANS SHOE≊ man’s shoe",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "man",
+ "shoe"
+ ]
+ },
+ {
+ "no":607,
+ "code":"U+1F45F",
+ "emoji":"👟",
+ "description":"ATHLETIC SHOE≊ running shoe",
+ "flagged":false,
+ "keywords":[
+ "athletic",
+ "clothing",
+ "shoe",
+ "sneaker"
+ ]
+ },
+ {
+ "no":608,
+ "code":"U+1F460",
+ "emoji":"👠",
+ "description":"HIGH-HEELED SHOE",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "heel",
+ "shoe",
+ "woman"
+ ]
+ },
+ {
+ "no":609,
+ "code":"U+1F461",
+ "emoji":"👡",
+ "description":"WOMANS SANDAL≊ woman’s sandal",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "sandal",
+ "shoe",
+ "woman"
+ ]
+ },
+ {
+ "no":610,
+ "code":"U+1F462",
+ "emoji":"👢",
+ "description":"WOMANS BOOTS≊ woman’s boot",
+ "flagged":false,
+ "keywords":[
+ "boot",
+ "clothing",
+ "shoe",
+ "woman"
+ ]
+ },
+ {
+ "no":611,
+ "code":"U+1F451",
+ "emoji":"👑",
+ "description":"CROWN",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "crown",
+ "king",
+ "queen"
+ ]
+ },
+ {
+ "no":612,
+ "code":"U+1F452",
+ "emoji":"👒",
+ "description":"WOMANS HAT≊ woman’s hat",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "hat",
+ "woman"
+ ]
+ },
+ {
+ "no":613,
+ "code":"U+1F3A9",
+ "emoji":"🎩",
+ "description":"TOP HAT",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "clothing",
+ "entertainment",
+ "hat",
+ "top",
+ "tophat"
+ ]
+ },
+ {
+ "no":614,
+ "code":"U+1F393",
+ "emoji":"🎓",
+ "description":"GRADUATION CAP",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "cap",
+ "celebration",
+ "clothing",
+ "graduation",
+ "hat"
+ ]
+ },
+ {
+ "no":615,
+ "code":"U+26D1",
+ "emoji":"⛑",
+ "description":"HELMET WITH WHITE CROSS",
+ "flagged":false,
+ "keywords":[
+ "aid",
+ "cross",
+ "face",
+ "hat",
+ "helmet"
+ ]
+ },
+ {
+ "no":616,
+ "code":"U+1F4FF",
+ "emoji":"📿",
+ "description":"PRAYER BEADS",
+ "flagged":false,
+ "keywords":[
+ "beads",
+ "clothing",
+ "necklace",
+ "prayer",
+ "religion"
+ ]
+ },
+ {
+ "no":617,
+ "code":"U+1F484",
+ "emoji":"💄",
+ "description":"LIPSTICK",
+ "flagged":false,
+ "keywords":[
+ "cosmetics",
+ "lipstick",
+ "makeup"
+ ]
+ },
+ {
+ "no":618,
+ "code":"U+1F48D",
+ "emoji":"💍",
+ "description":"RING",
+ "flagged":false,
+ "keywords":[
+ "diamond",
+ "ring",
+ "romance"
+ ]
+ },
+ {
+ "no":619,
+ "code":"U+1F48E",
+ "emoji":"💎",
+ "description":"GEM STONE",
+ "flagged":false,
+ "keywords":[
+ "diamond",
+ "gem",
+ "jewel",
+ "romance"
+ ]
+ }
+ ],
+ "Animals & Nature":[
+ {
+ "no":620,
+ "code":"U+1F435",
+ "emoji":"🐵",
+ "description":"MONKEY FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "monkey"
+ ]
+ },
+ {
+ "no":621,
+ "code":"U+1F412",
+ "emoji":"🐒",
+ "description":"MONKEY",
+ "flagged":false,
+ "keywords":[
+ "monkey"
+ ]
+ },
+ {
+ "no":622,
+ "code":"U+1F98D",
+ "emoji":"🦍",
+ "description":"GORILLA",
+ "flagged":true,
+ "keywords":[
+ "gorilla"
+ ]
+ },
+ {
+ "no":623,
+ "code":"U+1F436",
+ "emoji":"🐶",
+ "description":"DOG FACE",
+ "flagged":false,
+ "keywords":[
+ "dog",
+ "face",
+ "pet"
+ ]
+ },
+ {
+ "no":624,
+ "code":"U+1F415",
+ "emoji":"🐕",
+ "description":"DOG",
+ "flagged":false,
+ "keywords":[
+ "dog",
+ "pet"
+ ]
+ },
+ {
+ "no":625,
+ "code":"U+1F429",
+ "emoji":"🐩",
+ "description":"POODLE",
+ "flagged":false,
+ "keywords":[
+ "dog",
+ "poodle"
+ ]
+ },
+ {
+ "no":626,
+ "code":"U+1F43A",
+ "emoji":"🐺",
+ "description":"WOLF FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "wolf"
+ ]
+ },
+ {
+ "no":627,
+ "code":"U+1F98A",
+ "emoji":"🦊",
+ "description":"FOX FACE",
+ "flagged":true,
+ "keywords":[
+ "face",
+ "fox"
+ ]
+ },
+ {
+ "no":628,
+ "code":"U+1F431",
+ "emoji":"🐱",
+ "description":"CAT FACE",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "face",
+ "pet"
+ ]
+ },
+ {
+ "no":629,
+ "code":"U+1F408",
+ "emoji":"🐈",
+ "description":"CAT",
+ "flagged":false,
+ "keywords":[
+ "cat",
+ "pet"
+ ]
+ },
+ {
+ "no":630,
+ "code":"U+1F981",
+ "emoji":"🦁",
+ "description":"LION FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "leo",
+ "lion",
+ "zodiac"
+ ]
+ },
+ {
+ "no":631,
+ "code":"U+1F42F",
+ "emoji":"🐯",
+ "description":"TIGER FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "tiger"
+ ]
+ },
+ {
+ "no":632,
+ "code":"U+1F405",
+ "emoji":"🐅",
+ "description":"TIGER",
+ "flagged":false,
+ "keywords":[
+ "tiger"
+ ]
+ },
+ {
+ "no":633,
+ "code":"U+1F406",
+ "emoji":"🐆",
+ "description":"LEOPARD",
+ "flagged":false,
+ "keywords":[
+ "leopard"
+ ]
+ },
+ {
+ "no":634,
+ "code":"U+1F434",
+ "emoji":"🐴",
+ "description":"HORSE FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "horse"
+ ]
+ },
+ {
+ "no":635,
+ "code":"U+1F40E",
+ "emoji":"🐎",
+ "description":"HORSE",
+ "flagged":false,
+ "keywords":[
+ "horse",
+ "racehorse",
+ "racing"
+ ]
+ },
+ {
+ "no":636,
+ "code":"U+1F98C",
+ "emoji":"🦌",
+ "description":"DEER",
+ "flagged":true,
+ "keywords":[
+ "deer"
+ ]
+ },
+ {
+ "no":637,
+ "code":"U+1F984",
+ "emoji":"🦄",
+ "description":"UNICORN FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "unicorn"
+ ]
+ },
+ {
+ "no":638,
+ "code":"U+1F42E",
+ "emoji":"🐮",
+ "description":"COW FACE",
+ "flagged":false,
+ "keywords":[
+ "cow",
+ "face"
+ ]
+ },
+ {
+ "no":639,
+ "code":"U+1F402",
+ "emoji":"🐂",
+ "description":"OX",
+ "flagged":false,
+ "keywords":[
+ "bull",
+ "ox",
+ "taurus",
+ "zodiac"
+ ]
+ },
+ {
+ "no":640,
+ "code":"U+1F403",
+ "emoji":"🐃",
+ "description":"WATER BUFFALO",
+ "flagged":false,
+ "keywords":[
+ "buffalo",
+ "water"
+ ]
+ },
+ {
+ "no":641,
+ "code":"U+1F404",
+ "emoji":"🐄",
+ "description":"COW",
+ "flagged":false,
+ "keywords":[
+ "cow"
+ ]
+ },
+ {
+ "no":642,
+ "code":"U+1F437",
+ "emoji":"🐷",
+ "description":"PIG FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "pig"
+ ]
+ },
+ {
+ "no":643,
+ "code":"U+1F416",
+ "emoji":"🐖",
+ "description":"PIG",
+ "flagged":false,
+ "keywords":[
+ "pig",
+ "sow"
+ ]
+ },
+ {
+ "no":644,
+ "code":"U+1F417",
+ "emoji":"🐗",
+ "description":"BOAR",
+ "flagged":false,
+ "keywords":[
+ "boar",
+ "pig"
+ ]
+ },
+ {
+ "no":645,
+ "code":"U+1F43D",
+ "emoji":"🐽",
+ "description":"PIG NOSE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "nose",
+ "pig"
+ ]
+ },
+ {
+ "no":646,
+ "code":"U+1F40F",
+ "emoji":"🐏",
+ "description":"RAM",
+ "flagged":false,
+ "keywords":[
+ "aries",
+ "ram",
+ "sheep",
+ "zodiac"
+ ]
+ },
+ {
+ "no":647,
+ "code":"U+1F411",
+ "emoji":"🐑",
+ "description":"SHEEP",
+ "flagged":false,
+ "keywords":[
+ "ewe",
+ "sheep"
+ ]
+ },
+ {
+ "no":648,
+ "code":"U+1F410",
+ "emoji":"🐐",
+ "description":"GOAT",
+ "flagged":false,
+ "keywords":[
+ "capricorn",
+ "goat",
+ "zodiac"
+ ]
+ },
+ {
+ "no":649,
+ "code":"U+1F42A",
+ "emoji":"🐪",
+ "description":"DROMEDARY CAMEL≊ camel",
+ "flagged":false,
+ "keywords":[
+ "camel",
+ "dromedary",
+ "hump"
+ ]
+ },
+ {
+ "no":650,
+ "code":"U+1F42B",
+ "emoji":"🐫",
+ "description":"BACTRIAN CAMEL≊ two-hump camel",
+ "flagged":false,
+ "keywords":[
+ "bactrian",
+ "camel",
+ "hump"
+ ]
+ },
+ {
+ "no":651,
+ "code":"U+1F418",
+ "emoji":"🐘",
+ "description":"ELEPHANT",
+ "flagged":false,
+ "keywords":[
+ "elephant"
+ ]
+ },
+ {
+ "no":652,
+ "code":"U+1F98F",
+ "emoji":"🦏",
+ "description":"RHINOCEROS",
+ "flagged":true,
+ "keywords":[
+ "rhinoceros"
+ ]
+ },
+ {
+ "no":653,
+ "code":"U+1F42D",
+ "emoji":"🐭",
+ "description":"MOUSE FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "mouse"
+ ]
+ },
+ {
+ "no":654,
+ "code":"U+1F401",
+ "emoji":"🐁",
+ "description":"MOUSE",
+ "flagged":false,
+ "keywords":[
+ "mouse"
+ ]
+ },
+ {
+ "no":655,
+ "code":"U+1F400",
+ "emoji":"🐀",
+ "description":"RAT",
+ "flagged":false,
+ "keywords":[
+ "rat"
+ ]
+ },
+ {
+ "no":656,
+ "code":"U+1F439",
+ "emoji":"🐹",
+ "description":"HAMSTER FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "hamster",
+ "pet"
+ ]
+ },
+ {
+ "no":657,
+ "code":"U+1F430",
+ "emoji":"🐰",
+ "description":"RABBIT FACE",
+ "flagged":false,
+ "keywords":[
+ "bunny",
+ "face",
+ "pet",
+ "rabbit"
+ ]
+ },
+ {
+ "no":658,
+ "code":"U+1F407",
+ "emoji":"🐇",
+ "description":"RABBIT",
+ "flagged":false,
+ "keywords":[
+ "bunny",
+ "pet",
+ "rabbit"
+ ]
+ },
+ {
+ "no":659,
+ "code":"U+1F43F",
+ "emoji":"🐿",
+ "description":"CHIPMUNK",
+ "flagged":false,
+ "keywords":[
+ "chipmunk"
+ ]
+ },
+ {
+ "no":660,
+ "code":"U+1F987",
+ "emoji":"🦇",
+ "description":"BAT",
+ "flagged":true,
+ "keywords":[
+ "bat",
+ "vampire"
+ ]
+ },
+ {
+ "no":661,
+ "code":"U+1F43B",
+ "emoji":"🐻",
+ "description":"BEAR FACE",
+ "flagged":false,
+ "keywords":[
+ "bear",
+ "face"
+ ]
+ },
+ {
+ "no":662,
+ "code":"U+1F428",
+ "emoji":"🐨",
+ "description":"KOALA",
+ "flagged":false,
+ "keywords":[
+ "bear",
+ "koala"
+ ]
+ },
+ {
+ "no":663,
+ "code":"U+1F43C",
+ "emoji":"🐼",
+ "description":"PANDA FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "panda"
+ ]
+ },
+ {
+ "no":664,
+ "code":"U+1F43E",
+ "emoji":"🐾",
+ "description":"PAW PRINTS",
+ "flagged":false,
+ "keywords":[
+ "feet",
+ "paw",
+ "print"
+ ]
+ },
+ {
+ "no":665,
+ "code":"U+1F983",
+ "emoji":"🦃",
+ "description":"TURKEY",
+ "flagged":false,
+ "keywords":[
+ "turkey"
+ ]
+ },
+ {
+ "no":666,
+ "code":"U+1F414",
+ "emoji":"🐔",
+ "description":"CHICKEN",
+ "flagged":false,
+ "keywords":[
+ "chicken"
+ ]
+ },
+ {
+ "no":667,
+ "code":"U+1F413",
+ "emoji":"🐓",
+ "description":"ROOSTER",
+ "flagged":false,
+ "keywords":[
+ "rooster"
+ ]
+ },
+ {
+ "no":668,
+ "code":"U+1F423",
+ "emoji":"🐣",
+ "description":"HATCHING CHICK",
+ "flagged":false,
+ "keywords":[
+ "baby",
+ "chick",
+ "hatching"
+ ]
+ },
+ {
+ "no":669,
+ "code":"U+1F424",
+ "emoji":"🐤",
+ "description":"BABY CHICK",
+ "flagged":false,
+ "keywords":[
+ "baby",
+ "chick"
+ ]
+ },
+ {
+ "no":670,
+ "code":"U+1F425",
+ "emoji":"🐥",
+ "description":"FRONT-FACING BABY CHICK",
+ "flagged":false,
+ "keywords":[
+ "baby",
+ "chick"
+ ]
+ },
+ {
+ "no":671,
+ "code":"U+1F426",
+ "emoji":"🐦",
+ "description":"BIRD",
+ "flagged":false,
+ "keywords":[
+ "bird"
+ ]
+ },
+ {
+ "no":672,
+ "code":"U+1F427",
+ "emoji":"🐧",
+ "description":"PENGUIN",
+ "flagged":false,
+ "keywords":[
+ "penguin"
+ ]
+ },
+ {
+ "no":673,
+ "code":"U+1F54A",
+ "emoji":"🕊",
+ "description":"DOVE OF PEACE≊ dove",
+ "flagged":false,
+ "keywords":[
+ "bird",
+ "dove",
+ "fly",
+ "peace"
+ ]
+ },
+ {
+ "no":674,
+ "code":"U+1F985",
+ "emoji":"🦅",
+ "description":"EAGLE",
+ "flagged":true,
+ "keywords":[
+ "bird",
+ "eagle"
+ ]
+ },
+ {
+ "no":675,
+ "code":"U+1F986",
+ "emoji":"🦆",
+ "description":"DUCK",
+ "flagged":true,
+ "keywords":[
+ "bird",
+ "duck"
+ ]
+ },
+ {
+ "no":676,
+ "code":"U+1F989",
+ "emoji":"🦉",
+ "description":"OWL",
+ "flagged":true,
+ "keywords":[
+ "bird",
+ "owl",
+ "wise"
+ ]
+ },
+ {
+ "no":677,
+ "code":"U+1F438",
+ "emoji":"🐸",
+ "description":"FROG FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "frog"
+ ]
+ },
+ {
+ "no":678,
+ "code":"U+1F40A",
+ "emoji":"🐊",
+ "description":"CROCODILE",
+ "flagged":false,
+ "keywords":[
+ "crocodile"
+ ]
+ },
+ {
+ "no":679,
+ "code":"U+1F422",
+ "emoji":"🐢",
+ "description":"TURTLE",
+ "flagged":false,
+ "keywords":[
+ "turtle"
+ ]
+ },
+ {
+ "no":680,
+ "code":"U+1F98E",
+ "emoji":"🦎",
+ "description":"LIZARD",
+ "flagged":true,
+ "keywords":[
+ "lizard",
+ "reptile"
+ ]
+ },
+ {
+ "no":681,
+ "code":"U+1F40D",
+ "emoji":"🐍",
+ "description":"SNAKE",
+ "flagged":false,
+ "keywords":[
+ "bearer",
+ "ophiuchus",
+ "serpent",
+ "snake",
+ "zodiac"
+ ]
+ },
+ {
+ "no":682,
+ "code":"U+1F432",
+ "emoji":"🐲",
+ "description":"DRAGON FACE",
+ "flagged":false,
+ "keywords":[
+ "dragon",
+ "face",
+ "fairy tale"
+ ]
+ },
+ {
+ "no":683,
+ "code":"U+1F409",
+ "emoji":"🐉",
+ "description":"DRAGON",
+ "flagged":false,
+ "keywords":[
+ "dragon",
+ "fairy tale"
+ ]
+ },
+ {
+ "no":684,
+ "code":"U+1F433",
+ "emoji":"🐳",
+ "description":"SPOUTING WHALE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "spouting",
+ "whale"
+ ]
+ },
+ {
+ "no":685,
+ "code":"U+1F40B",
+ "emoji":"🐋",
+ "description":"WHALE",
+ "flagged":false,
+ "keywords":[
+ "whale"
+ ]
+ },
+ {
+ "no":686,
+ "code":"U+1F42C",
+ "emoji":"🐬",
+ "description":"DOLPHIN",
+ "flagged":false,
+ "keywords":[
+ "dolphin",
+ "flipper"
+ ]
+ },
+ {
+ "no":687,
+ "code":"U+1F41F",
+ "emoji":"🐟",
+ "description":"FISH",
+ "flagged":false,
+ "keywords":[
+ "fish",
+ "pisces",
+ "zodiac"
+ ]
+ },
+ {
+ "no":688,
+ "code":"U+1F420",
+ "emoji":"🐠",
+ "description":"TROPICAL FISH",
+ "flagged":false,
+ "keywords":[
+ "fish",
+ "tropical"
+ ]
+ },
+ {
+ "no":689,
+ "code":"U+1F421",
+ "emoji":"🐡",
+ "description":"BLOWFISH",
+ "flagged":false,
+ "keywords":[
+ "blowfish",
+ "fish"
+ ]
+ },
+ {
+ "no":690,
+ "code":"U+1F988",
+ "emoji":"🦈",
+ "description":"SHARK",
+ "flagged":true,
+ "keywords":[
+ "fish",
+ "shark"
+ ]
+ },
+ {
+ "no":691,
+ "code":"U+1F419",
+ "emoji":"🐙",
+ "description":"OCTOPUS",
+ "flagged":false,
+ "keywords":[
+ "octopus"
+ ]
+ },
+ {
+ "no":692,
+ "code":"U+1F41A",
+ "emoji":"🐚",
+ "description":"SPIRAL SHELL",
+ "flagged":false,
+ "keywords":[
+ "shell",
+ "spiral"
+ ]
+ },
+ {
+ "no":693,
+ "code":"U+1F980",
+ "emoji":"🦀",
+ "description":"CRAB",
+ "flagged":false,
+ "keywords":[
+ "cancer",
+ "crab",
+ "zodiac"
+ ]
+ },
+ {
+ "no":694,
+ "code":"U+1F990",
+ "emoji":"🦐",
+ "description":"SHRIMP",
+ "flagged":true,
+ "keywords":[
+ "shellfish",
+ "shrimp",
+ "small"
+ ]
+ },
+ {
+ "no":695,
+ "code":"U+1F991",
+ "emoji":"🦑",
+ "description":"SQUID",
+ "flagged":true,
+ "keywords":[
+ "molusc",
+ "squid"
+ ]
+ },
+ {
+ "no":696,
+ "code":"U+1F98B",
+ "emoji":"🦋",
+ "description":"BUTTERFLY",
+ "flagged":true,
+ "keywords":[
+ "butterfly",
+ "insect",
+ "pretty"
+ ]
+ },
+ {
+ "no":697,
+ "code":"U+1F40C",
+ "emoji":"🐌",
+ "description":"SNAIL",
+ "flagged":false,
+ "keywords":[
+ "snail"
+ ]
+ },
+ {
+ "no":698,
+ "code":"U+1F41B",
+ "emoji":"🐛",
+ "description":"BUG",
+ "flagged":false,
+ "keywords":[
+ "bug",
+ "insect"
+ ]
+ },
+ {
+ "no":699,
+ "code":"U+1F41C",
+ "emoji":"🐜",
+ "description":"ANT",
+ "flagged":false,
+ "keywords":[
+ "ant",
+ "insect"
+ ]
+ },
+ {
+ "no":700,
+ "code":"U+1F41D",
+ "emoji":"🐝",
+ "description":"HONEYBEE",
+ "flagged":false,
+ "keywords":[
+ "bee",
+ "honeybee",
+ "insect"
+ ]
+ },
+ {
+ "no":701,
+ "code":"U+1F41E",
+ "emoji":"🐞",
+ "description":"LADY BEETLE",
+ "flagged":false,
+ "keywords":[
+ "beetle",
+ "insect",
+ "lady beetle",
+ "ladybird",
+ "ladybug"
+ ]
+ },
+ {
+ "no":702,
+ "code":"U+1F577",
+ "emoji":"🕷",
+ "description":"SPIDER",
+ "flagged":false,
+ "keywords":[
+ "insect",
+ "spider"
+ ]
+ },
+ {
+ "no":703,
+ "code":"U+1F578",
+ "emoji":"🕸",
+ "description":"SPIDER WEB",
+ "flagged":false,
+ "keywords":[
+ "spider",
+ "web"
+ ]
+ },
+ {
+ "no":704,
+ "code":"U+1F982",
+ "emoji":"🦂",
+ "description":"SCORPION",
+ "flagged":false,
+ "keywords":[
+ "scorpio",
+ "scorpion",
+ "scorpius",
+ "zodiac"
+ ]
+ },
+ {
+ "no":705,
+ "code":"U+1F490",
+ "emoji":"💐",
+ "description":"BOUQUET",
+ "flagged":false,
+ "keywords":[
+ "bouquet",
+ "flower",
+ "plant",
+ "romance"
+ ]
+ },
+ {
+ "no":706,
+ "code":"U+1F338",
+ "emoji":"🌸",
+ "description":"CHERRY BLOSSOM",
+ "flagged":false,
+ "keywords":[
+ "blossom",
+ "cherry",
+ "flower",
+ "plant"
+ ]
+ },
+ {
+ "no":707,
+ "code":"U+1F4AE",
+ "emoji":"💮",
+ "description":"WHITE FLOWER",
+ "flagged":false,
+ "keywords":[
+ "flower"
+ ]
+ },
+ {
+ "no":708,
+ "code":"U+1F3F5",
+ "emoji":"🏵",
+ "description":"ROSETTE",
+ "flagged":false,
+ "keywords":[
+ "plant",
+ "rosette"
+ ]
+ },
+ {
+ "no":709,
+ "code":"U+1F339",
+ "emoji":"🌹",
+ "description":"ROSE",
+ "flagged":false,
+ "keywords":[
+ "flower",
+ "plant",
+ "rose"
+ ]
+ },
+ {
+ "no":710,
+ "code":"U+1F940",
+ "emoji":"🥀",
+ "description":"WILTED FLOWER",
+ "flagged":true,
+ "keywords":[
+ "flower",
+ "wilted"
+ ]
+ },
+ {
+ "no":711,
+ "code":"U+1F33A",
+ "emoji":"🌺",
+ "description":"HIBISCUS",
+ "flagged":false,
+ "keywords":[
+ "flower",
+ "hibiscus",
+ "plant"
+ ]
+ },
+ {
+ "no":712,
+ "code":"U+1F33B",
+ "emoji":"🌻",
+ "description":"SUNFLOWER",
+ "flagged":false,
+ "keywords":[
+ "flower",
+ "plant",
+ "sun",
+ "sunflower"
+ ]
+ },
+ {
+ "no":713,
+ "code":"U+1F33C",
+ "emoji":"🌼",
+ "description":"BLOSSOM",
+ "flagged":false,
+ "keywords":[
+ "blossom",
+ "flower",
+ "plant"
+ ]
+ },
+ {
+ "no":714,
+ "code":"U+1F337",
+ "emoji":"🌷",
+ "description":"TULIP",
+ "flagged":false,
+ "keywords":[
+ "flower",
+ "plant",
+ "tulip"
+ ]
+ },
+ {
+ "no":715,
+ "code":"U+1F331",
+ "emoji":"🌱",
+ "description":"SEEDLING",
+ "flagged":false,
+ "keywords":[
+ "plant",
+ "seedling",
+ "young"
+ ]
+ },
+ {
+ "no":716,
+ "code":"U+1F332",
+ "emoji":"🌲",
+ "description":"EVERGREEN TREE≊ evergreen",
+ "flagged":false,
+ "keywords":[
+ "evergreen",
+ "plant",
+ "tree"
+ ]
+ },
+ {
+ "no":717,
+ "code":"U+1F333",
+ "emoji":"🌳",
+ "description":"DECIDUOUS TREE",
+ "flagged":false,
+ "keywords":[
+ "deciduous",
+ "plant",
+ "shedding",
+ "tree"
+ ]
+ },
+ {
+ "no":718,
+ "code":"U+1F334",
+ "emoji":"🌴",
+ "description":"PALM TREE",
+ "flagged":false,
+ "keywords":[
+ "palm",
+ "plant",
+ "tree"
+ ]
+ },
+ {
+ "no":719,
+ "code":"U+1F335",
+ "emoji":"🌵",
+ "description":"CACTUS",
+ "flagged":false,
+ "keywords":[
+ "cactus",
+ "plant"
+ ]
+ },
+ {
+ "no":720,
+ "code":"U+1F33E",
+ "emoji":"🌾",
+ "description":"EAR OF RICE≊ sheaf of rice",
+ "flagged":false,
+ "keywords":[
+ "ear",
+ "plant",
+ "rice"
+ ]
+ },
+ {
+ "no":721,
+ "code":"U+1F33F",
+ "emoji":"🌿",
+ "description":"HERB",
+ "flagged":false,
+ "keywords":[
+ "herb",
+ "leaf",
+ "plant"
+ ]
+ },
+ {
+ "no":722,
+ "code":"U+2618",
+ "emoji":"☘",
+ "description":"SHAMROCK",
+ "flagged":false,
+ "keywords":[
+ "plant",
+ "shamrock"
+ ]
+ },
+ {
+ "no":723,
+ "code":"U+1F340",
+ "emoji":"🍀",
+ "description":"FOUR LEAF CLOVER",
+ "flagged":false,
+ "keywords":[
+ "4",
+ "clover",
+ "four",
+ "leaf",
+ "plant"
+ ]
+ },
+ {
+ "no":724,
+ "code":"U+1F341",
+ "emoji":"🍁",
+ "description":"MAPLE LEAF",
+ "flagged":false,
+ "keywords":[
+ "falling",
+ "leaf",
+ "maple",
+ "plant"
+ ]
+ },
+ {
+ "no":725,
+ "code":"U+1F342",
+ "emoji":"🍂",
+ "description":"FALLEN LEAF",
+ "flagged":false,
+ "keywords":[
+ "falling",
+ "leaf",
+ "plant"
+ ]
+ },
+ {
+ "no":726,
+ "code":"U+1F343",
+ "emoji":"🍃",
+ "description":"LEAF FLUTTERING IN WIND",
+ "flagged":false,
+ "keywords":[
+ "blow",
+ "flutter",
+ "leaf",
+ "plant",
+ "wind"
+ ]
+ },
+ {
+ "no":727,
+ "code":"U+1F347",
+ "emoji":"🍇",
+ "description":"GRAPES",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "grape",
+ "plant"
+ ]
+ },
+ {
+ "no":728,
+ "code":"U+1F348",
+ "emoji":"🍈",
+ "description":"MELON",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "melon",
+ "plant"
+ ]
+ },
+ {
+ "no":729,
+ "code":"U+1F349",
+ "emoji":"🍉",
+ "description":"WATERMELON",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "plant",
+ "watermelon"
+ ]
+ },
+ {
+ "no":730,
+ "code":"U+1F34A",
+ "emoji":"🍊",
+ "description":"TANGERINE",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "orange",
+ "plant",
+ "tangerine"
+ ]
+ },
+ {
+ "no":731,
+ "code":"U+1F34B",
+ "emoji":"🍋",
+ "description":"LEMON",
+ "flagged":false,
+ "keywords":[
+ "citrus",
+ "fruit",
+ "lemon",
+ "plant"
+ ]
+ },
+ {
+ "no":732,
+ "code":"U+1F34C",
+ "emoji":"🍌",
+ "description":"BANANA",
+ "flagged":false,
+ "keywords":[
+ "banana",
+ "fruit",
+ "plant"
+ ]
+ },
+ {
+ "no":733,
+ "code":"U+1F34D",
+ "emoji":"🍍",
+ "description":"PINEAPPLE",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "pineapple",
+ "plant"
+ ]
+ },
+ {
+ "no":734,
+ "code":"U+1F34E",
+ "emoji":"🍎",
+ "description":"RED APPLE",
+ "flagged":false,
+ "keywords":[
+ "apple",
+ "fruit",
+ "plant",
+ "red"
+ ]
+ },
+ {
+ "no":735,
+ "code":"U+1F34F",
+ "emoji":"🍏",
+ "description":"GREEN APPLE",
+ "flagged":false,
+ "keywords":[
+ "apple",
+ "fruit",
+ "green",
+ "plant"
+ ]
+ },
+ {
+ "no":736,
+ "code":"U+1F350",
+ "emoji":"🍐",
+ "description":"PEAR",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "pear",
+ "plant"
+ ]
+ },
+ {
+ "no":737,
+ "code":"U+1F351",
+ "emoji":"🍑",
+ "description":"PEACH",
+ "flagged":false,
+ "keywords":[
+ "fruit",
+ "peach",
+ "plant"
+ ]
+ },
+ {
+ "no":738,
+ "code":"U+1F352",
+ "emoji":"🍒",
+ "description":"CHERRIES",
+ "flagged":false,
+ "keywords":[
+ "cherry",
+ "fruit",
+ "plant"
+ ]
+ },
+ {
+ "no":739,
+ "code":"U+1F353",
+ "emoji":"🍓",
+ "description":"STRAWBERRY",
+ "flagged":false,
+ "keywords":[
+ "berry",
+ "fruit",
+ "plant",
+ "strawberry"
+ ]
+ },
+ {
+ "no":740,
+ "code":"U+1F345",
+ "emoji":"🍅",
+ "description":"TOMATO",
+ "flagged":false,
+ "keywords":[
+ "plant",
+ "tomato",
+ "vegetable"
+ ]
+ },
+ {
+ "no":741,
+ "code":"U+1F95D",
+ "emoji":"🥝",
+ "description":"KIWIFRUIT",
+ "flagged":true,
+ "keywords":[
+ "fruit",
+ "kiwi"
+ ]
+ },
+ {
+ "no":742,
+ "code":"U+1F951",
+ "emoji":"🥑",
+ "description":"AVOCADO",
+ "flagged":true,
+ "keywords":[
+ "avocado",
+ "fruit"
+ ]
+ },
+ {
+ "no":743,
+ "code":"U+1F346",
+ "emoji":"🍆",
+ "description":"AUBERGINE≊ eggplant",
+ "flagged":false,
+ "keywords":[
+ "aubergine",
+ "eggplant",
+ "plant",
+ "vegetable"
+ ]
+ },
+ {
+ "no":744,
+ "code":"U+1F954",
+ "emoji":"🥔",
+ "description":"POTATO",
+ "flagged":true,
+ "keywords":[
+ "potato",
+ "vegetable"
+ ]
+ },
+ {
+ "no":745,
+ "code":"U+1F955",
+ "emoji":"🥕",
+ "description":"CARROT",
+ "flagged":true,
+ "keywords":[
+ "carrot",
+ "vegetable"
+ ]
+ },
+ {
+ "no":746,
+ "code":"U+1F33D",
+ "emoji":"🌽",
+ "description":"EAR OF MAIZE≊ ear of corn",
+ "flagged":false,
+ "keywords":[
+ "corn",
+ "ear",
+ "maize",
+ "maze",
+ "plant"
+ ]
+ },
+ {
+ "no":747,
+ "code":"U+1F336",
+ "emoji":"🌶",
+ "description":"HOT PEPPER",
+ "flagged":false,
+ "keywords":[
+ "hot",
+ "pepper",
+ "plant"
+ ]
+ },
+ {
+ "no":748,
+ "code":"U+1F952",
+ "emoji":"🥒",
+ "description":"CUCUMBER",
+ "flagged":true,
+ "keywords":[
+ "cucumber",
+ "pickle",
+ "vegetable"
+ ]
+ },
+ {
+ "no":749,
+ "code":"U+1F344",
+ "emoji":"🍄",
+ "description":"MUSHROOM",
+ "flagged":false,
+ "keywords":[
+ "mushroom",
+ "plant"
+ ]
+ },
+ {
+ "no":750,
+ "code":"U+1F95C",
+ "emoji":"🥜",
+ "description":"PEANUTS",
+ "flagged":false,
+ "keywords":[
+ "nut",
+ "peanut",
+ "vegetable"
+ ]
+ },
+ {
+ "no":751,
+ "code":"U+1F330",
+ "emoji":"🌰",
+ "description":"CHESTNUT",
+ "flagged":false,
+ "keywords":[
+ "chestnut",
+ "plant"
+ ]
+ },
+ {
+ "no":752,
+ "code":"U+1F35E",
+ "emoji":"🍞",
+ "description":"BREAD",
+ "flagged":false,
+ "keywords":[
+ "bread",
+ "loaf"
+ ]
+ },
+ {
+ "no":753,
+ "code":"U+1F950",
+ "emoji":"🥐",
+ "description":"CROISSANT",
+ "flagged":true,
+ "keywords":[
+ "bread",
+ "crescent roll",
+ "croissant",
+ "french"
+ ]
+ },
+ {
+ "no":754,
+ "code":"U+1F956",
+ "emoji":"🥖",
+ "description":"BAGUETTE BREAD",
+ "flagged":true,
+ "keywords":[
+ "baguette",
+ "bread",
+ "french"
+ ]
+ },
+ {
+ "no":755,
+ "code":"U+1F95E",
+ "emoji":"🥞",
+ "description":"PANCAKES",
+ "flagged":true,
+ "keywords":[
+ "crêpe",
+ "hotcake",
+ "pancake"
+ ]
+ },
+ {
+ "no":756,
+ "code":"U+1F9C0",
+ "emoji":"🧀",
+ "description":"CHEESE WEDGE",
+ "flagged":false,
+ "keywords":[
+ "cheese"
+ ]
+ },
+ {
+ "no":757,
+ "code":"U+1F356",
+ "emoji":"🍖",
+ "description":"MEAT ON BONE",
+ "flagged":false,
+ "keywords":[
+ "bone",
+ "meat"
+ ]
+ },
+ {
+ "no":758,
+ "code":"U+1F357",
+ "emoji":"🍗",
+ "description":"POULTRY LEG",
+ "flagged":false,
+ "keywords":[
+ "bone",
+ "chicken",
+ "leg",
+ "poultry"
+ ]
+ },
+ {
+ "no":759,
+ "code":"U+1F953",
+ "emoji":"🥓",
+ "description":"BACON",
+ "flagged":true,
+ "keywords":[
+ "bacon",
+ "meat"
+ ]
+ },
+ {
+ "no":760,
+ "code":"U+1F354",
+ "emoji":"🍔",
+ "description":"HAMBURGER",
+ "flagged":false,
+ "keywords":[
+ "burger",
+ "hamburger"
+ ]
+ },
+ {
+ "no":761,
+ "code":"U+1F35F",
+ "emoji":"🍟",
+ "description":"FRENCH FRIES",
+ "flagged":false,
+ "keywords":[
+ "french",
+ "fries"
+ ]
+ },
+ {
+ "no":762,
+ "code":"U+1F355",
+ "emoji":"🍕",
+ "description":"SLICE OF PIZZA≊ pizza",
+ "flagged":false,
+ "keywords":[
+ "cheese",
+ "pizza",
+ "slice"
+ ]
+ },
+ {
+ "no":763,
+ "code":"U+1F32D",
+ "emoji":"🌭",
+ "description":"HOT DOG",
+ "flagged":false,
+ "keywords":[
+ "frankfurter",
+ "hot dog",
+ "hotdog",
+ "sausage"
+ ]
+ },
+ {
+ "no":764,
+ "code":"U+1F32E",
+ "emoji":"🌮",
+ "description":"TACO",
+ "flagged":false,
+ "keywords":[
+ "mexican",
+ "taco"
+ ]
+ },
+ {
+ "no":765,
+ "code":"U+1F32F",
+ "emoji":"🌯",
+ "description":"BURRITO",
+ "flagged":false,
+ "keywords":[
+ "burrito",
+ "mexican"
+ ]
+ },
+ {
+ "no":766,
+ "code":"U+1F959",
+ "emoji":"🥙",
+ "description":"STUFFED FLATBREAD",
+ "flagged":true,
+ "keywords":[
+ "falafel",
+ "flatbread",
+ "gyro",
+ "kebab",
+ "stuffed"
+ ]
+ },
+ {
+ "no":767,
+ "code":"U+1F95A",
+ "emoji":"🥚",
+ "description":"EGG",
+ "flagged":true,
+ "keywords":[
+ "egg"
+ ]
+ },
+ {
+ "no":768,
+ "code":"U+1F373",
+ "emoji":"🍳",
+ "description":"COOKING",
+ "flagged":false,
+ "keywords":[
+ "cooking",
+ "egg",
+ "frying",
+ "pan"
+ ]
+ },
+ {
+ "no":769,
+ "code":"U+1F958",
+ "emoji":"🥘",
+ "description":"SHALLOW PAN OF FOOD",
+ "flagged":true,
+ "keywords":[
+ "casserole",
+ "paella",
+ "pan",
+ "shallow"
+ ]
+ },
+ {
+ "no":770,
+ "code":"U+1F372",
+ "emoji":"🍲",
+ "description":"POT OF FOOD",
+ "flagged":false,
+ "keywords":[
+ "pot",
+ "stew"
+ ]
+ },
+ {
+ "no":771,
+ "code":"U+1F957",
+ "emoji":"🥗",
+ "description":"GREEN SALAD",
+ "flagged":true,
+ "keywords":[
+ "green",
+ "salad"
+ ]
+ },
+ {
+ "no":772,
+ "code":"U+1F37F",
+ "emoji":"🍿",
+ "description":"POPCORN",
+ "flagged":false,
+ "keywords":[
+ "popcorn"
+ ]
+ },
+ {
+ "no":773,
+ "code":"U+1F371",
+ "emoji":"🍱",
+ "description":"BENTO BOX",
+ "flagged":false,
+ "keywords":[
+ "bento",
+ "box"
+ ]
+ },
+ {
+ "no":774,
+ "code":"U+1F358",
+ "emoji":"🍘",
+ "description":"RICE CRACKER",
+ "flagged":false,
+ "keywords":[
+ "cracker",
+ "rice"
+ ]
+ },
+ {
+ "no":775,
+ "code":"U+1F359",
+ "emoji":"🍙",
+ "description":"RICE BALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "japanese",
+ "rice"
+ ]
+ },
+ {
+ "no":776,
+ "code":"U+1F35A",
+ "emoji":"🍚",
+ "description":"COOKED RICE",
+ "flagged":false,
+ "keywords":[
+ "cooked",
+ "rice"
+ ]
+ },
+ {
+ "no":777,
+ "code":"U+1F35B",
+ "emoji":"🍛",
+ "description":"CURRY AND RICE≊ curry rice",
+ "flagged":false,
+ "keywords":[
+ "curry",
+ "rice"
+ ]
+ },
+ {
+ "no":778,
+ "code":"U+1F35C",
+ "emoji":"🍜",
+ "description":"STEAMING BOWL",
+ "flagged":false,
+ "keywords":[
+ "bowl",
+ "noodle",
+ "ramen",
+ "steaming"
+ ]
+ },
+ {
+ "no":779,
+ "code":"U+1F35D",
+ "emoji":"🍝",
+ "description":"SPAGHETTI",
+ "flagged":false,
+ "keywords":[
+ "pasta",
+ "spaghetti"
+ ]
+ },
+ {
+ "no":780,
+ "code":"U+1F360",
+ "emoji":"🍠",
+ "description":"ROASTED SWEET POTATO",
+ "flagged":false,
+ "keywords":[
+ "potato",
+ "roasted",
+ "sweet"
+ ]
+ },
+ {
+ "no":781,
+ "code":"U+1F362",
+ "emoji":"🍢",
+ "description":"ODEN",
+ "flagged":false,
+ "keywords":[
+ "kebab",
+ "oden",
+ "seafood",
+ "skewer",
+ "stick"
+ ]
+ },
+ {
+ "no":782,
+ "code":"U+1F363",
+ "emoji":"🍣",
+ "description":"SUSHI",
+ "flagged":false,
+ "keywords":[
+ "sushi"
+ ]
+ },
+ {
+ "no":783,
+ "code":"U+1F364",
+ "emoji":"🍤",
+ "description":"FRIED SHRIMP",
+ "flagged":false,
+ "keywords":[
+ "fried",
+ "prawn",
+ "shrimp",
+ "tempura"
+ ]
+ },
+ {
+ "no":784,
+ "code":"U+1F365",
+ "emoji":"🍥",
+ "description":"FISH CAKE WITH SWIRL DESIGN≊ fish cake with swirl",
+ "flagged":false,
+ "keywords":[
+ "cake",
+ "fish",
+ "pastry",
+ "swirl"
+ ]
+ },
+ {
+ "no":785,
+ "code":"U+1F361",
+ "emoji":"🍡",
+ "description":"DANGO",
+ "flagged":false,
+ "keywords":[
+ "dango",
+ "dessert",
+ "japanese",
+ "skewer",
+ "stick",
+ "sweet"
+ ]
+ },
+ {
+ "no":786,
+ "code":"U+1F366",
+ "emoji":"🍦",
+ "description":"SOFT ICE CREAM",
+ "flagged":false,
+ "keywords":[
+ "cream",
+ "dessert",
+ "ice",
+ "icecream",
+ "soft",
+ "sweet"
+ ]
+ },
+ {
+ "no":787,
+ "code":"U+1F367",
+ "emoji":"🍧",
+ "description":"SHAVED ICE",
+ "flagged":false,
+ "keywords":[
+ "dessert",
+ "ice",
+ "shaved",
+ "sweet"
+ ]
+ },
+ {
+ "no":788,
+ "code":"U+1F368",
+ "emoji":"🍨",
+ "description":"ICE CREAM",
+ "flagged":false,
+ "keywords":[
+ "cream",
+ "dessert",
+ "ice",
+ "sweet"
+ ]
+ },
+ {
+ "no":789,
+ "code":"U+1F369",
+ "emoji":"🍩",
+ "description":"DOUGHNUT",
+ "flagged":false,
+ "keywords":[
+ "dessert",
+ "donut",
+ "doughnut",
+ "sweet"
+ ]
+ },
+ {
+ "no":790,
+ "code":"U+1F36A",
+ "emoji":"🍪",
+ "description":"COOKIE",
+ "flagged":false,
+ "keywords":[
+ "cookie",
+ "dessert",
+ "sweet"
+ ]
+ },
+ {
+ "no":791,
+ "code":"U+1F382",
+ "emoji":"🎂",
+ "description":"BIRTHDAY CAKE",
+ "flagged":false,
+ "keywords":[
+ "birthday",
+ "cake",
+ "celebration",
+ "dessert",
+ "pastry",
+ "sweet"
+ ]
+ },
+ {
+ "no":792,
+ "code":"U+1F370",
+ "emoji":"🍰",
+ "description":"SHORTCAKE",
+ "flagged":false,
+ "keywords":[
+ "cake",
+ "dessert",
+ "pastry",
+ "shortcake",
+ "slice",
+ "sweet"
+ ]
+ },
+ {
+ "no":793,
+ "code":"U+1F36B",
+ "emoji":"🍫",
+ "description":"CHOCOLATE BAR",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "chocolate",
+ "dessert",
+ "sweet"
+ ]
+ },
+ {
+ "no":794,
+ "code":"U+1F36C",
+ "emoji":"🍬",
+ "description":"CANDY",
+ "flagged":false,
+ "keywords":[
+ "candy",
+ "dessert",
+ "sweet"
+ ]
+ },
+ {
+ "no":795,
+ "code":"U+1F36D",
+ "emoji":"🍭",
+ "description":"LOLLIPOP",
+ "flagged":false,
+ "keywords":[
+ "candy",
+ "dessert",
+ "lollipop",
+ "sweet"
+ ]
+ },
+ {
+ "no":796,
+ "code":"U+1F36E",
+ "emoji":"🍮",
+ "description":"CUSTARD",
+ "flagged":false,
+ "keywords":[
+ "custard",
+ "dessert",
+ "pudding",
+ "sweet"
+ ]
+ },
+ {
+ "no":797,
+ "code":"U+1F36F",
+ "emoji":"🍯",
+ "description":"HONEY POT",
+ "flagged":false,
+ "keywords":[
+ "honey",
+ "honeypot",
+ "pot",
+ "sweet"
+ ]
+ },
+ {
+ "no":798,
+ "code":"U+1F37C",
+ "emoji":"🍼",
+ "description":"BABY BOTTLE",
+ "flagged":false,
+ "keywords":[
+ "baby",
+ "bottle",
+ "drink",
+ "milk"
+ ]
+ },
+ {
+ "no":799,
+ "code":"U+1F95B",
+ "emoji":"🥛",
+ "description":"GLASS OF MILK",
+ "flagged":true,
+ "keywords":[
+ "drink",
+ "glass",
+ "milk"
+ ]
+ },
+ {
+ "no":800,
+ "code":"U+2615",
+ "emoji":"☕",
+ "description":"HOT BEVERAGE",
+ "flagged":false,
+ "keywords":[
+ "beverage",
+ "coffee",
+ "drink",
+ "hot",
+ "steaming",
+ "tea"
+ ]
+ },
+ {
+ "no":801,
+ "code":"U+1F375",
+ "emoji":"🍵",
+ "description":"TEACUP WITHOUT HANDLE",
+ "flagged":false,
+ "keywords":[
+ "beverage",
+ "cup",
+ "drink",
+ "tea",
+ "teacup"
+ ]
+ },
+ {
+ "no":802,
+ "code":"U+1F376",
+ "emoji":"🍶",
+ "description":"SAKE BOTTLE AND CUP≊ sake",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "beverage",
+ "bottle",
+ "cup",
+ "drink",
+ "sake"
+ ]
+ },
+ {
+ "no":803,
+ "code":"U+1F37E",
+ "emoji":"🍾",
+ "description":"BOTTLE WITH POPPING CORK",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "bottle",
+ "cork",
+ "drink",
+ "popping"
+ ]
+ },
+ {
+ "no":804,
+ "code":"U+1F377",
+ "emoji":"🍷",
+ "description":"WINE GLASS",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "beverage",
+ "drink",
+ "glass",
+ "wine"
+ ]
+ },
+ {
+ "no":805,
+ "code":"U+1F378",
+ "emoji":"🍸",
+ "description":"COCKTAIL GLASS",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "cocktail",
+ "drink",
+ "glass"
+ ]
+ },
+ {
+ "no":806,
+ "code":"U+1F379",
+ "emoji":"🍹",
+ "description":"TROPICAL DRINK",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "drink",
+ "tropical"
+ ]
+ },
+ {
+ "no":807,
+ "code":"U+1F37A",
+ "emoji":"🍺",
+ "description":"BEER MUG",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "beer",
+ "drink",
+ "mug"
+ ]
+ },
+ {
+ "no":808,
+ "code":"U+1F37B",
+ "emoji":"🍻",
+ "description":"CLINKING BEER MUGS",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "beer",
+ "clink",
+ "drink",
+ "mug"
+ ]
+ },
+ {
+ "no":809,
+ "code":"U+1F942",
+ "emoji":"🥂",
+ "description":"CLINKING GLASSES",
+ "flagged":true,
+ "keywords":[
+ "celebrate",
+ "clink",
+ "drink",
+ "glass"
+ ]
+ },
+ {
+ "no":810,
+ "code":"U+1F943",
+ "emoji":"🥃",
+ "description":"TUMBLER GLASS",
+ "flagged":true,
+ "keywords":[
+ "glass",
+ "liquor",
+ "shot",
+ "tumbler",
+ "whisky"
+ ]
+ },
+ {
+ "no":811,
+ "code":"U+1F37D",
+ "emoji":"🍽",
+ "description":"FORK AND KNIFE WITH PLATE",
+ "flagged":false,
+ "keywords":[
+ "cooking",
+ "fork",
+ "knife",
+ "plate"
+ ]
+ },
+ {
+ "no":812,
+ "code":"U+1F374",
+ "emoji":"🍴",
+ "description":"FORK AND KNIFE",
+ "flagged":false,
+ "keywords":[
+ "cooking",
+ "fork",
+ "knife"
+ ]
+ },
+ {
+ "no":813,
+ "code":"U+1F944",
+ "emoji":"🥄",
+ "description":"SPOON",
+ "flagged":true,
+ "keywords":[
+ "spoon",
+ "tableware"
+ ]
+ },
+ {
+ "no":814,
+ "code":"U+1F52A",
+ "emoji":"🔪",
+ "description":"HOCHO≊ kitchen knife",
+ "flagged":false,
+ "keywords":[
+ "cooking",
+ "hocho",
+ "knife",
+ "tool",
+ "weapon"
+ ]
+ },
+ {
+ "no":815,
+ "code":"U+1F3FA",
+ "emoji":"🏺",
+ "description":"AMPHORA",
+ "flagged":false,
+ "keywords":[
+ "amphora",
+ "aquarius",
+ "cooking",
+ "drink",
+ "jug",
+ "tool",
+ "weapon",
+ "zodiac"
+ ]
+ }
+ ],
+ "Travel & Places":[
+ {
+ "no":816,
+ "code":"U+1F30D",
+ "emoji":"🌍",
+ "description":"EARTH GLOBE EUROPE-AFRICA≊ globe showing europe-africa",
+ "flagged":false,
+ "keywords":[
+ "africa",
+ "earth",
+ "europe",
+ "globe",
+ "world"
+ ]
+ },
+ {
+ "no":817,
+ "code":"U+1F30E",
+ "emoji":"🌎",
+ "description":"EARTH GLOBE AMERICAS≊ globe showing americas",
+ "flagged":false,
+ "keywords":[
+ "americas",
+ "earth",
+ "globe",
+ "world"
+ ]
+ },
+ {
+ "no":818,
+ "code":"U+1F30F",
+ "emoji":"🌏",
+ "description":"EARTH GLOBE ASIA-AUSTRALIA≊ globe showing asia-australia",
+ "flagged":false,
+ "keywords":[
+ "asia",
+ "australia",
+ "earth",
+ "globe",
+ "world"
+ ]
+ },
+ {
+ "no":819,
+ "code":"U+1F310",
+ "emoji":"🌐",
+ "description":"GLOBE WITH MERIDIANS",
+ "flagged":false,
+ "keywords":[
+ "earth",
+ "globe",
+ "meridians",
+ "world"
+ ]
+ },
+ {
+ "no":820,
+ "code":"U+1F5FA",
+ "emoji":"🗺",
+ "description":"WORLD MAP",
+ "flagged":false,
+ "keywords":[
+ "map",
+ "world"
+ ]
+ },
+ {
+ "no":821,
+ "code":"U+1F5FE",
+ "emoji":"🗾",
+ "description":"SILHOUETTE OF JAPAN≊ map of japan",
+ "flagged":false,
+ "keywords":[
+ "japan",
+ "map"
+ ]
+ },
+ {
+ "no":822,
+ "code":"U+1F3D4",
+ "emoji":"🏔",
+ "description":"SNOW CAPPED MOUNTAIN≊ snow-capped mountain",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "mountain",
+ "snow"
+ ]
+ },
+ {
+ "no":823,
+ "code":"U+26F0",
+ "emoji":"⛰",
+ "description":"MOUNTAIN",
+ "flagged":false,
+ "keywords":[
+ "mountain"
+ ]
+ },
+ {
+ "no":824,
+ "code":"U+1F30B",
+ "emoji":"🌋",
+ "description":"VOLCANO",
+ "flagged":false,
+ "keywords":[
+ "eruption",
+ "mountain",
+ "volcano",
+ "weather"
+ ]
+ },
+ {
+ "no":825,
+ "code":"U+1F5FB",
+ "emoji":"🗻",
+ "description":"MOUNT FUJI",
+ "flagged":false,
+ "keywords":[
+ "fuji",
+ "mountain"
+ ]
+ },
+ {
+ "no":826,
+ "code":"U+1F3D5",
+ "emoji":"🏕",
+ "description":"CAMPING",
+ "flagged":false,
+ "keywords":[
+ "camping"
+ ]
+ },
+ {
+ "no":827,
+ "code":"U+1F3D6",
+ "emoji":"🏖",
+ "description":"BEACH WITH UMBRELLA",
+ "flagged":false,
+ "keywords":[
+ "beach",
+ "umbrella"
+ ]
+ },
+ {
+ "no":828,
+ "code":"U+1F3DC",
+ "emoji":"🏜",
+ "description":"DESERT",
+ "flagged":false,
+ "keywords":[
+ "desert"
+ ]
+ },
+ {
+ "no":829,
+ "code":"U+1F3DD",
+ "emoji":"🏝",
+ "description":"DESERT ISLAND",
+ "flagged":false,
+ "keywords":[
+ "desert",
+ "island"
+ ]
+ },
+ {
+ "no":830,
+ "code":"U+1F3DE",
+ "emoji":"🏞",
+ "description":"NATIONAL PARK",
+ "flagged":false,
+ "keywords":[
+ "national park",
+ "park"
+ ]
+ },
+ {
+ "no":831,
+ "code":"U+1F3DF",
+ "emoji":"🏟",
+ "description":"STADIUM",
+ "flagged":false,
+ "keywords":[
+ "stadium"
+ ]
+ },
+ {
+ "no":832,
+ "code":"U+1F3DB",
+ "emoji":"🏛",
+ "description":"CLASSICAL BUILDING",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "classical"
+ ]
+ },
+ {
+ "no":833,
+ "code":"U+1F3D7",
+ "emoji":"🏗",
+ "description":"BUILDING CONSTRUCTION",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "construction"
+ ]
+ },
+ {
+ "no":834,
+ "code":"U+1F3D8",
+ "emoji":"🏘",
+ "description":"HOUSE BUILDINGS",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "house"
+ ]
+ },
+ {
+ "no":835,
+ "code":"U+1F3D9",
+ "emoji":"🏙",
+ "description":"CITYSCAPE",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "city"
+ ]
+ },
+ {
+ "no":836,
+ "code":"U+1F3DA",
+ "emoji":"🏚",
+ "description":"DERELICT HOUSE BUILDING",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "derelict",
+ "house"
+ ]
+ },
+ {
+ "no":837,
+ "code":"U+1F3E0",
+ "emoji":"🏠",
+ "description":"HOUSE BUILDING",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "home",
+ "house"
+ ]
+ },
+ {
+ "no":838,
+ "code":"U+1F3E1",
+ "emoji":"🏡",
+ "description":"HOUSE WITH GARDEN",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "garden",
+ "home",
+ "house"
+ ]
+ },
+ {
+ "no":839,
+ "code":"U+1F3E2",
+ "emoji":"🏢",
+ "description":"OFFICE BUILDING",
+ "flagged":false,
+ "keywords":[
+ "building"
+ ]
+ },
+ {
+ "no":840,
+ "code":"U+1F3E3",
+ "emoji":"🏣",
+ "description":"JAPANESE POST OFFICE",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "japanese",
+ "post"
+ ]
+ },
+ {
+ "no":841,
+ "code":"U+1F3E4",
+ "emoji":"🏤",
+ "description":"EUROPEAN POST OFFICE≊ post office",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "european",
+ "post"
+ ]
+ },
+ {
+ "no":842,
+ "code":"U+1F3E5",
+ "emoji":"🏥",
+ "description":"HOSPITAL",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "doctor",
+ "hospital",
+ "medicine"
+ ]
+ },
+ {
+ "no":843,
+ "code":"U+1F3E6",
+ "emoji":"🏦",
+ "description":"BANK",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "building"
+ ]
+ },
+ {
+ "no":844,
+ "code":"U+1F3E8",
+ "emoji":"🏨",
+ "description":"HOTEL",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "hotel"
+ ]
+ },
+ {
+ "no":845,
+ "code":"U+1F3E9",
+ "emoji":"🏩",
+ "description":"LOVE HOTEL",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "hotel",
+ "love"
+ ]
+ },
+ {
+ "no":846,
+ "code":"U+1F3EA",
+ "emoji":"🏪",
+ "description":"CONVENIENCE STORE",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "convenience",
+ "store"
+ ]
+ },
+ {
+ "no":847,
+ "code":"U+1F3EB",
+ "emoji":"🏫",
+ "description":"SCHOOL",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "school"
+ ]
+ },
+ {
+ "no":848,
+ "code":"U+1F3EC",
+ "emoji":"🏬",
+ "description":"DEPARTMENT STORE",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "department",
+ "store"
+ ]
+ },
+ {
+ "no":849,
+ "code":"U+1F3ED",
+ "emoji":"🏭",
+ "description":"FACTORY",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "factory"
+ ]
+ },
+ {
+ "no":850,
+ "code":"U+1F3EF",
+ "emoji":"🏯",
+ "description":"JAPANESE CASTLE",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "castle",
+ "japanese"
+ ]
+ },
+ {
+ "no":851,
+ "code":"U+1F3F0",
+ "emoji":"🏰",
+ "description":"EUROPEAN CASTLE≊ castle",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "castle",
+ "european"
+ ]
+ },
+ {
+ "no":852,
+ "code":"U+1F492",
+ "emoji":"💒",
+ "description":"WEDDING",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "chapel",
+ "romance",
+ "wedding"
+ ]
+ },
+ {
+ "no":853,
+ "code":"U+1F5FC",
+ "emoji":"🗼",
+ "description":"TOKYO TOWER",
+ "flagged":false,
+ "keywords":[
+ "tokyo",
+ "tower"
+ ]
+ },
+ {
+ "no":854,
+ "code":"U+1F5FD",
+ "emoji":"🗽",
+ "description":"STATUE OF LIBERTY",
+ "flagged":false,
+ "keywords":[
+ "liberty",
+ "statue"
+ ]
+ },
+ {
+ "no":855,
+ "code":"U+26EA",
+ "emoji":"⛪",
+ "description":"CHURCH",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "christian",
+ "church",
+ "cross",
+ "religion"
+ ]
+ },
+ {
+ "no":856,
+ "code":"U+1F54C",
+ "emoji":"🕌",
+ "description":"MOSQUE",
+ "flagged":false,
+ "keywords":[
+ "islam",
+ "mosque",
+ "muslim",
+ "religion"
+ ]
+ },
+ {
+ "no":857,
+ "code":"U+1F54D",
+ "emoji":"🕍",
+ "description":"SYNAGOGUE",
+ "flagged":false,
+ "keywords":[
+ "jew",
+ "jewish",
+ "religion",
+ "synagogue",
+ "temple"
+ ]
+ },
+ {
+ "no":858,
+ "code":"U+26E9",
+ "emoji":"⛩",
+ "description":"SHINTO SHRINE",
+ "flagged":false,
+ "keywords":[
+ "religion",
+ "shinto",
+ "shrine"
+ ]
+ },
+ {
+ "no":859,
+ "code":"U+1F54B",
+ "emoji":"🕋",
+ "description":"KAABA",
+ "flagged":false,
+ "keywords":[
+ "islam",
+ "kaaba",
+ "muslim",
+ "religion"
+ ]
+ },
+ {
+ "no":860,
+ "code":"U+26F2",
+ "emoji":"⛲",
+ "description":"FOUNTAIN",
+ "flagged":false,
+ "keywords":[
+ "fountain"
+ ]
+ },
+ {
+ "no":861,
+ "code":"U+26FA",
+ "emoji":"⛺",
+ "description":"TENT",
+ "flagged":false,
+ "keywords":[
+ "camping",
+ "tent"
+ ]
+ },
+ {
+ "no":862,
+ "code":"U+1F301",
+ "emoji":"🌁",
+ "description":"FOGGY",
+ "flagged":false,
+ "keywords":[
+ "fog",
+ "weather"
+ ]
+ },
+ {
+ "no":863,
+ "code":"U+1F303",
+ "emoji":"🌃",
+ "description":"NIGHT WITH STARS",
+ "flagged":false,
+ "keywords":[
+ "night",
+ "star",
+ "weather"
+ ]
+ },
+ {
+ "no":864,
+ "code":"U+1F304",
+ "emoji":"🌄",
+ "description":"SUNRISE OVER MOUNTAINS",
+ "flagged":false,
+ "keywords":[
+ "morning",
+ "mountain",
+ "sun",
+ "sunrise",
+ "weather"
+ ]
+ },
+ {
+ "no":865,
+ "code":"U+1F305",
+ "emoji":"🌅",
+ "description":"SUNRISE",
+ "flagged":false,
+ "keywords":[
+ "morning",
+ "sun",
+ "sunrise",
+ "weather"
+ ]
+ },
+ {
+ "no":866,
+ "code":"U+1F306",
+ "emoji":"🌆",
+ "description":"CITYSCAPE AT DUSK",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "city",
+ "dusk",
+ "evening",
+ "landscape",
+ "sun",
+ "sunset",
+ "weather"
+ ]
+ },
+ {
+ "no":867,
+ "code":"U+1F307",
+ "emoji":"🌇",
+ "description":"SUNSET OVER BUILDINGS≊ sunset",
+ "flagged":false,
+ "keywords":[
+ "building",
+ "dusk",
+ "sun",
+ "sunset",
+ "weather"
+ ]
+ },
+ {
+ "no":868,
+ "code":"U+1F309",
+ "emoji":"🌉",
+ "description":"BRIDGE AT NIGHT",
+ "flagged":false,
+ "keywords":[
+ "bridge",
+ "night",
+ "weather"
+ ]
+ },
+ {
+ "no":869,
+ "code":"U+2668",
+ "emoji":"♨",
+ "description":"HOT SPRINGS",
+ "flagged":false,
+ "keywords":[
+ "hot",
+ "hotsprings",
+ "springs",
+ "steaming"
+ ]
+ },
+ {
+ "no":870,
+ "code":"U+1F30C",
+ "emoji":"🌌",
+ "description":"MILKY WAY",
+ "flagged":false,
+ "keywords":[
+ "milky way",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":871,
+ "code":"U+1F3A0",
+ "emoji":"🎠",
+ "description":"CAROUSEL HORSE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "carousel",
+ "entertainment",
+ "horse"
+ ]
+ },
+ {
+ "no":872,
+ "code":"U+1F3A1",
+ "emoji":"🎡",
+ "description":"FERRIS WHEEL",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "amusement park",
+ "entertainment",
+ "ferris",
+ "wheel"
+ ]
+ },
+ {
+ "no":873,
+ "code":"U+1F3A2",
+ "emoji":"🎢",
+ "description":"ROLLER COASTER",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "amusement park",
+ "coaster",
+ "entertainment",
+ "roller"
+ ]
+ },
+ {
+ "no":874,
+ "code":"U+1F488",
+ "emoji":"💈",
+ "description":"BARBER POLE",
+ "flagged":false,
+ "keywords":[
+ "barber",
+ "haircut",
+ "pole"
+ ]
+ },
+ {
+ "no":875,
+ "code":"U+1F3AA",
+ "emoji":"🎪",
+ "description":"CIRCUS TENT",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "circus",
+ "entertainment",
+ "tent"
+ ]
+ },
+ {
+ "no":876,
+ "code":"U+1F3AD",
+ "emoji":"🎭",
+ "description":"PERFORMING ARTS",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "art",
+ "entertainment",
+ "mask",
+ "performing",
+ "theater",
+ "theatre"
+ ]
+ },
+ {
+ "no":877,
+ "code":"U+1F5BC",
+ "emoji":"🖼",
+ "description":"FRAME WITH PICTURE",
+ "flagged":false,
+ "keywords":[
+ "art",
+ "frame",
+ "museum",
+ "painting",
+ "picture"
+ ]
+ },
+ {
+ "no":878,
+ "code":"U+1F3A8",
+ "emoji":"🎨",
+ "description":"ARTIST PALETTE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "art",
+ "entertainment",
+ "museum",
+ "painting",
+ "palette"
+ ]
+ },
+ {
+ "no":879,
+ "code":"U+1F3B0",
+ "emoji":"🎰",
+ "description":"SLOT MACHINE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "game",
+ "slot"
+ ]
+ },
+ {
+ "no":880,
+ "code":"U+1F682",
+ "emoji":"🚂",
+ "description":"STEAM LOCOMOTIVE≊ locomotive",
+ "flagged":false,
+ "keywords":[
+ "engine",
+ "locomotive",
+ "railway",
+ "steam",
+ "train",
+ "vehicle"
+ ]
+ },
+ {
+ "no":881,
+ "code":"U+1F683",
+ "emoji":"🚃",
+ "description":"RAILWAY CAR",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "electric",
+ "railway",
+ "train",
+ "tram",
+ "trolleybus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":882,
+ "code":"U+1F684",
+ "emoji":"🚄",
+ "description":"HIGH-SPEED TRAIN",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "shinkansen",
+ "speed",
+ "train",
+ "vehicle"
+ ]
+ },
+ {
+ "no":883,
+ "code":"U+1F685",
+ "emoji":"🚅",
+ "description":"HIGH-SPEED TRAIN WITH BULLET NOSE",
+ "flagged":false,
+ "keywords":[
+ "bullet",
+ "railway",
+ "shinkansen",
+ "speed",
+ "train",
+ "vehicle"
+ ]
+ },
+ {
+ "no":884,
+ "code":"U+1F686",
+ "emoji":"🚆",
+ "description":"TRAIN",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "train",
+ "vehicle"
+ ]
+ },
+ {
+ "no":885,
+ "code":"U+1F687",
+ "emoji":"🚇",
+ "description":"METRO",
+ "flagged":false,
+ "keywords":[
+ "metro",
+ "subway",
+ "vehicle"
+ ]
+ },
+ {
+ "no":886,
+ "code":"U+1F688",
+ "emoji":"🚈",
+ "description":"LIGHT RAIL",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "vehicle"
+ ]
+ },
+ {
+ "no":887,
+ "code":"U+1F689",
+ "emoji":"🚉",
+ "description":"STATION",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "station",
+ "train",
+ "vehicle"
+ ]
+ },
+ {
+ "no":888,
+ "code":"U+1F68A",
+ "emoji":"🚊",
+ "description":"TRAM",
+ "flagged":false,
+ "keywords":[
+ "tram",
+ "trolleybus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":889,
+ "code":"U+1F69D",
+ "emoji":"🚝",
+ "description":"MONORAIL",
+ "flagged":false,
+ "keywords":[
+ "monorail",
+ "vehicle"
+ ]
+ },
+ {
+ "no":890,
+ "code":"U+1F69E",
+ "emoji":"🚞",
+ "description":"MOUNTAIN RAILWAY",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "mountain",
+ "railway",
+ "vehicle"
+ ]
+ },
+ {
+ "no":891,
+ "code":"U+1F68B",
+ "emoji":"🚋",
+ "description":"TRAM CAR",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "tram",
+ "trolleybus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":892,
+ "code":"U+1F68C",
+ "emoji":"🚌",
+ "description":"BUS",
+ "flagged":false,
+ "keywords":[
+ "bus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":893,
+ "code":"U+1F68D",
+ "emoji":"🚍",
+ "description":"ONCOMING BUS",
+ "flagged":false,
+ "keywords":[
+ "bus",
+ "oncoming",
+ "vehicle"
+ ]
+ },
+ {
+ "no":894,
+ "code":"U+1F68E",
+ "emoji":"🚎",
+ "description":"TROLLEYBUS",
+ "flagged":false,
+ "keywords":[
+ "bus",
+ "tram",
+ "trolley",
+ "trolleybus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":895,
+ "code":"U+1F68F",
+ "emoji":"🚏",
+ "description":"BUS STOP",
+ "flagged":false,
+ "keywords":[
+ "bus",
+ "busstop",
+ "stop"
+ ]
+ },
+ {
+ "no":896,
+ "code":"U+1F690",
+ "emoji":"🚐",
+ "description":"MINIBUS",
+ "flagged":false,
+ "keywords":[
+ "bus",
+ "minibus",
+ "vehicle"
+ ]
+ },
+ {
+ "no":897,
+ "code":"U+1F691",
+ "emoji":"🚑",
+ "description":"AMBULANCE",
+ "flagged":false,
+ "keywords":[
+ "ambulance",
+ "vehicle"
+ ]
+ },
+ {
+ "no":898,
+ "code":"U+1F692",
+ "emoji":"🚒",
+ "description":"FIRE ENGINE",
+ "flagged":false,
+ "keywords":[
+ "engine",
+ "fire",
+ "truck",
+ "vehicle"
+ ]
+ },
+ {
+ "no":899,
+ "code":"U+1F693",
+ "emoji":"🚓",
+ "description":"POLICE CAR",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "patrol",
+ "police",
+ "vehicle"
+ ]
+ },
+ {
+ "no":900,
+ "code":"U+1F694",
+ "emoji":"🚔",
+ "description":"ONCOMING POLICE CAR",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "oncoming",
+ "police",
+ "vehicle"
+ ]
+ },
+ {
+ "no":901,
+ "code":"U+1F695",
+ "emoji":"🚕",
+ "description":"TAXI",
+ "flagged":false,
+ "keywords":[
+ "taxi",
+ "vehicle"
+ ]
+ },
+ {
+ "no":902,
+ "code":"U+1F696",
+ "emoji":"🚖",
+ "description":"ONCOMING TAXI",
+ "flagged":false,
+ "keywords":[
+ "oncoming",
+ "taxi",
+ "vehicle"
+ ]
+ },
+ {
+ "no":903,
+ "code":"U+1F697",
+ "emoji":"🚗",
+ "description":"AUTOMOBILE",
+ "flagged":false,
+ "keywords":[
+ "automobile",
+ "car",
+ "vehicle"
+ ]
+ },
+ {
+ "no":904,
+ "code":"U+1F698",
+ "emoji":"🚘",
+ "description":"ONCOMING AUTOMOBILE",
+ "flagged":false,
+ "keywords":[
+ "automobile",
+ "car",
+ "oncoming",
+ "vehicle"
+ ]
+ },
+ {
+ "no":905,
+ "code":"U+1F699",
+ "emoji":"🚙",
+ "description":"RECREATIONAL VEHICLE",
+ "flagged":false,
+ "keywords":[
+ "recreational",
+ "rv",
+ "vehicle"
+ ]
+ },
+ {
+ "no":906,
+ "code":"U+1F69A",
+ "emoji":"🚚",
+ "description":"DELIVERY TRUCK",
+ "flagged":false,
+ "keywords":[
+ "delivery",
+ "truck",
+ "vehicle"
+ ]
+ },
+ {
+ "no":907,
+ "code":"U+1F69B",
+ "emoji":"🚛",
+ "description":"ARTICULATED LORRY",
+ "flagged":false,
+ "keywords":[
+ "lorry",
+ "semi",
+ "truck",
+ "vehicle"
+ ]
+ },
+ {
+ "no":908,
+ "code":"U+1F69C",
+ "emoji":"🚜",
+ "description":"TRACTOR",
+ "flagged":false,
+ "keywords":[
+ "tractor",
+ "vehicle"
+ ]
+ },
+ {
+ "no":909,
+ "code":"U+1F6B2",
+ "emoji":"🚲",
+ "description":"BICYCLE",
+ "flagged":false,
+ "keywords":[
+ "bicycle",
+ "bike",
+ "vehicle"
+ ]
+ },
+ {
+ "no":910,
+ "code":"U+26FD",
+ "emoji":"⛽",
+ "description":"FUEL PUMP",
+ "flagged":false,
+ "keywords":[
+ "fuel",
+ "fuelpump",
+ "gas",
+ "pump",
+ "station"
+ ]
+ },
+ {
+ "no":911,
+ "code":"U+1F6E3",
+ "emoji":"🛣",
+ "description":"MOTORWAY",
+ "flagged":false,
+ "keywords":[
+ "highway",
+ "motorway",
+ "road"
+ ]
+ },
+ {
+ "no":912,
+ "code":"U+1F6E4",
+ "emoji":"🛤",
+ "description":"RAILWAY TRACK",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "train"
+ ]
+ },
+ {
+ "no":913,
+ "code":"U+1F6A8",
+ "emoji":"🚨",
+ "description":"POLICE CARS REVOLVING LIGHT≊ police car’s light",
+ "flagged":false,
+ "keywords":[
+ "beacon",
+ "car",
+ "light",
+ "police",
+ "revolving",
+ "vehicle"
+ ]
+ },
+ {
+ "no":914,
+ "code":"U+1F6A5",
+ "emoji":"🚥",
+ "description":"HORIZONTAL TRAFFIC LIGHT",
+ "flagged":false,
+ "keywords":[
+ "light",
+ "signal",
+ "traffic"
+ ]
+ },
+ {
+ "no":915,
+ "code":"U+1F6A6",
+ "emoji":"🚦",
+ "description":"VERTICAL TRAFFIC LIGHT",
+ "flagged":false,
+ "keywords":[
+ "light",
+ "signal",
+ "traffic"
+ ]
+ },
+ {
+ "no":916,
+ "code":"U+1F6A7",
+ "emoji":"🚧",
+ "description":"CONSTRUCTION SIGN≊ construction",
+ "flagged":false,
+ "keywords":[
+ "barrier",
+ "construction"
+ ]
+ },
+ {
+ "no":917,
+ "code":"U+1F6D1",
+ "emoji":"🛑",
+ "description":"OCTAGONAL SIGN",
+ "flagged":true,
+ "keywords":[
+ "octagonal",
+ "stop"
+ ]
+ },
+ {
+ "no":918,
+ "code":"U+1F6F4",
+ "emoji":"🛴",
+ "description":"SCOOTER",
+ "flagged":true,
+ "keywords":[
+ "kick",
+ "scooter"
+ ]
+ },
+ {
+ "no":919,
+ "code":"U+1F6F5",
+ "emoji":"🛵",
+ "description":"MOTOR SCOOTER",
+ "flagged":true,
+ "keywords":[
+ "motor",
+ "scooter"
+ ]
+ },
+ {
+ "no":920,
+ "code":"U+2693",
+ "emoji":"⚓",
+ "description":"ANCHOR",
+ "flagged":false,
+ "keywords":[
+ "anchor",
+ "ship",
+ "tool"
+ ]
+ },
+ {
+ "no":921,
+ "code":"U+26F5",
+ "emoji":"⛵",
+ "description":"SAILBOAT",
+ "flagged":false,
+ "keywords":[
+ "boat",
+ "resort",
+ "sailboat",
+ "sea",
+ "vehicle",
+ "yacht"
+ ]
+ },
+ {
+ "no":922,
+ "code":"U+1F6A3",
+ "emoji":"🚣",
+ "description":"ROWBOAT",
+ "flagged":false,
+ "keywords":[
+ "boat",
+ "rowboat",
+ "vehicle"
+ ],
+ "types":[
+ "U+1F6A3 U+1F3FF",
+ "U+1F6A3 U+1F3FE",
+ "U+1F6A3 U+1F3FD",
+ "U+1F6A3 U+1F3FC",
+ "U+1F6A3 U+1F3FB"
+ ]
+ },
+ {
+ "no":928,
+ "code":"U+1F6F6",
+ "emoji":"🛶",
+ "description":"CANOE",
+ "flagged":true,
+ "keywords":[
+ "boat",
+ "canoe"
+ ]
+ },
+ {
+ "no":929,
+ "code":"U+1F6A4",
+ "emoji":"🚤",
+ "description":"SPEEDBOAT",
+ "flagged":false,
+ "keywords":[
+ "boat",
+ "speedboat",
+ "vehicle"
+ ]
+ },
+ {
+ "no":930,
+ "code":"U+1F6F3",
+ "emoji":"🛳",
+ "description":"PASSENGER SHIP",
+ "flagged":false,
+ "keywords":[
+ "passenger",
+ "ship",
+ "vehicle"
+ ]
+ },
+ {
+ "no":931,
+ "code":"U+26F4",
+ "emoji":"⛴",
+ "description":"FERRY",
+ "flagged":false,
+ "keywords":[
+ "boat",
+ "ferry"
+ ]
+ },
+ {
+ "no":932,
+ "code":"U+1F6E5",
+ "emoji":"🛥",
+ "description":"MOTOR BOAT",
+ "flagged":false,
+ "keywords":[
+ "boat",
+ "motorboat",
+ "vehicle"
+ ]
+ },
+ {
+ "no":933,
+ "code":"U+1F6A2",
+ "emoji":"🚢",
+ "description":"SHIP",
+ "flagged":false,
+ "keywords":[
+ "ship",
+ "vehicle"
+ ]
+ },
+ {
+ "no":934,
+ "code":"U+2708",
+ "emoji":"✈",
+ "description":"AIRPLANE",
+ "flagged":false,
+ "keywords":[
+ "airplane",
+ "vehicle"
+ ]
+ },
+ {
+ "no":935,
+ "code":"U+1F6E9",
+ "emoji":"🛩",
+ "description":"SMALL AIRPLANE",
+ "flagged":false,
+ "keywords":[
+ "airplane",
+ "vehicle"
+ ]
+ },
+ {
+ "no":936,
+ "code":"U+1F6EB",
+ "emoji":"🛫",
+ "description":"AIRPLANE DEPARTURE",
+ "flagged":false,
+ "keywords":[
+ "airplane",
+ "check-in",
+ "departure",
+ "departures",
+ "vehicle"
+ ]
+ },
+ {
+ "no":937,
+ "code":"U+1F6EC",
+ "emoji":"🛬",
+ "description":"AIRPLANE ARRIVING≊ airplane arrival",
+ "flagged":false,
+ "keywords":[
+ "airplane",
+ "arrivals",
+ "arriving",
+ "landing",
+ "vehicle"
+ ]
+ },
+ {
+ "no":938,
+ "code":"U+1F4BA",
+ "emoji":"💺",
+ "description":"SEAT",
+ "flagged":false,
+ "keywords":[
+ "chair",
+ "seat"
+ ]
+ },
+ {
+ "no":939,
+ "code":"U+1F681",
+ "emoji":"🚁",
+ "description":"HELICOPTER",
+ "flagged":false,
+ "keywords":[
+ "helicopter",
+ "vehicle"
+ ]
+ },
+ {
+ "no":940,
+ "code":"U+1F69F",
+ "emoji":"🚟",
+ "description":"SUSPENSION RAILWAY",
+ "flagged":false,
+ "keywords":[
+ "railway",
+ "suspension",
+ "vehicle"
+ ]
+ },
+ {
+ "no":941,
+ "code":"U+1F6A0",
+ "emoji":"🚠",
+ "description":"MOUNTAIN CABLEWAY",
+ "flagged":false,
+ "keywords":[
+ "cable",
+ "gondola",
+ "mountain",
+ "vehicle"
+ ]
+ },
+ {
+ "no":942,
+ "code":"U+1F6A1",
+ "emoji":"🚡",
+ "description":"AERIAL TRAMWAY",
+ "flagged":false,
+ "keywords":[
+ "aerial",
+ "cable",
+ "car",
+ "gondola",
+ "ropeway",
+ "tramway",
+ "vehicle"
+ ]
+ },
+ {
+ "no":943,
+ "code":"U+1F680",
+ "emoji":"🚀",
+ "description":"ROCKET",
+ "flagged":false,
+ "keywords":[
+ "rocket",
+ "space",
+ "vehicle"
+ ]
+ },
+ {
+ "no":944,
+ "code":"U+1F6F0",
+ "emoji":"🛰",
+ "description":"SATELLITE",
+ "flagged":false,
+ "keywords":[
+ "satellite",
+ "space",
+ "vehicle"
+ ]
+ },
+ {
+ "no":945,
+ "code":"U+1F6CE",
+ "emoji":"🛎",
+ "description":"BELLHOP BELL",
+ "flagged":false,
+ "keywords":[
+ "bell",
+ "bellhop",
+ "hotel"
+ ]
+ },
+ {
+ "no":946,
+ "code":"U+1F6AA",
+ "emoji":"🚪",
+ "description":"DOOR",
+ "flagged":false,
+ "keywords":[
+ "door"
+ ]
+ },
+ {
+ "no":947,
+ "code":"U+1F6CC",
+ "emoji":"🛌",
+ "description":"SLEEPING ACCOMMODATION≊ person in bed",
+ "flagged":false,
+ "keywords":[
+ "hotel",
+ "sleep"
+ ]
+ },
+ {
+ "no":948,
+ "code":"U+1F6CF",
+ "emoji":"🛏",
+ "description":"BED",
+ "flagged":false,
+ "keywords":[
+ "bed",
+ "hotel",
+ "sleep"
+ ]
+ },
+ {
+ "no":949,
+ "code":"U+1F6CB",
+ "emoji":"🛋",
+ "description":"COUCH AND LAMP",
+ "flagged":false,
+ "keywords":[
+ "couch",
+ "hotel",
+ "lamp"
+ ]
+ },
+ {
+ "no":950,
+ "code":"U+1F6BD",
+ "emoji":"🚽",
+ "description":"TOILET",
+ "flagged":false,
+ "keywords":[
+ "toilet"
+ ]
+ },
+ {
+ "no":951,
+ "code":"U+1F6BF",
+ "emoji":"🚿",
+ "description":"SHOWER",
+ "flagged":false,
+ "keywords":[
+ "shower",
+ "water"
+ ]
+ },
+ {
+ "no":952,
+ "code":"U+1F6C0",
+ "emoji":"🛀",
+ "description":"BATH≊ person taking bath",
+ "flagged":false,
+ "keywords":[
+ "bath",
+ "bathtub"
+ ],
+ "types":[
+ "U+1F6C0 U+1F3FF",
+ "U+1F6C0 U+1F3FE",
+ "U+1F6C0 U+1F3FD",
+ "U+1F6C0 U+1F3FC",
+ "U+1F6C0 U+1F3FB"
+ ]
+ },
+ {
+ "no":958,
+ "code":"U+1F6C1",
+ "emoji":"🛁",
+ "description":"BATHTUB",
+ "flagged":false,
+ "keywords":[
+ "bath",
+ "bathtub"
+ ]
+ },
+ {
+ "no":959,
+ "code":"U+231B",
+ "emoji":"⌛",
+ "description":"HOURGLASS",
+ "flagged":false,
+ "keywords":[
+ "hourglass",
+ "sand",
+ "timer"
+ ]
+ },
+ {
+ "no":960,
+ "code":"U+23F3",
+ "emoji":"⏳",
+ "description":"HOURGLASS WITH FLOWING SAND",
+ "flagged":false,
+ "keywords":[
+ "hourglass",
+ "sand",
+ "timer"
+ ]
+ },
+ {
+ "no":961,
+ "code":"U+231A",
+ "emoji":"⌚",
+ "description":"WATCH",
+ "flagged":false,
+ "keywords":[
+ "clock",
+ "watch"
+ ]
+ },
+ {
+ "no":962,
+ "code":"U+23F0",
+ "emoji":"⏰",
+ "description":"ALARM CLOCK",
+ "flagged":false,
+ "keywords":[
+ "alarm",
+ "clock"
+ ]
+ },
+ {
+ "no":963,
+ "code":"U+23F1",
+ "emoji":"⏱",
+ "description":"STOPWATCH",
+ "flagged":false,
+ "keywords":[
+ "clock",
+ "stopwatch"
+ ]
+ },
+ {
+ "no":964,
+ "code":"U+23F2",
+ "emoji":"⏲",
+ "description":"TIMER CLOCK",
+ "flagged":false,
+ "keywords":[
+ "clock",
+ "timer"
+ ]
+ },
+ {
+ "no":965,
+ "code":"U+1F570",
+ "emoji":"🕰",
+ "description":"MANTELPIECE CLOCK",
+ "flagged":false,
+ "keywords":[
+ "clock"
+ ]
+ },
+ {
+ "no":966,
+ "code":"U+1F55B",
+ "emoji":"🕛",
+ "description":"CLOCK FACE TWELVE OCLOCK≊ twelve o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "12",
+ "12:00",
+ "clock",
+ "o’clock",
+ "twelve"
+ ]
+ },
+ {
+ "no":967,
+ "code":"U+1F567",
+ "emoji":"🕧",
+ "description":"CLOCK FACE TWELVE-THIRTY≊ twelve-thirty",
+ "flagged":false,
+ "keywords":[
+ "12",
+ "12:30",
+ "30",
+ "clock",
+ "thirty",
+ "twelve"
+ ]
+ },
+ {
+ "no":968,
+ "code":"U+1F550",
+ "emoji":"🕐",
+ "description":"CLOCK FACE ONE OCLOCK≊ one o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "1",
+ "1:00",
+ "clock",
+ "o’clock",
+ "one"
+ ]
+ },
+ {
+ "no":969,
+ "code":"U+1F55C",
+ "emoji":"🕜",
+ "description":"CLOCK FACE ONE-THIRTY≊ one-thirty",
+ "flagged":false,
+ "keywords":[
+ "1",
+ "1:30",
+ "30",
+ "clock",
+ "one",
+ "thirty"
+ ]
+ },
+ {
+ "no":970,
+ "code":"U+1F551",
+ "emoji":"🕑",
+ "description":"CLOCK FACE TWO OCLOCK≊ two o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "2",
+ "2:00",
+ "clock",
+ "o’clock",
+ "two"
+ ]
+ },
+ {
+ "no":971,
+ "code":"U+1F55D",
+ "emoji":"🕝",
+ "description":"CLOCK FACE TWO-THIRTY≊ two-thirty",
+ "flagged":false,
+ "keywords":[
+ "2",
+ "2:30",
+ "30",
+ "clock",
+ "thirty",
+ "two"
+ ]
+ },
+ {
+ "no":972,
+ "code":"U+1F552",
+ "emoji":"🕒",
+ "description":"CLOCK FACE THREE OCLOCK≊ three o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "3",
+ "3:00",
+ "clock",
+ "o’clock",
+ "three"
+ ]
+ },
+ {
+ "no":973,
+ "code":"U+1F55E",
+ "emoji":"🕞",
+ "description":"CLOCK FACE THREE-THIRTY≊ three-thirty",
+ "flagged":false,
+ "keywords":[
+ "3",
+ "3:30",
+ "30",
+ "clock",
+ "thirty",
+ "three"
+ ]
+ },
+ {
+ "no":974,
+ "code":"U+1F553",
+ "emoji":"🕓",
+ "description":"CLOCK FACE FOUR OCLOCK≊ four o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "4",
+ "4:00",
+ "clock",
+ "four",
+ "o’clock"
+ ]
+ },
+ {
+ "no":975,
+ "code":"U+1F55F",
+ "emoji":"🕟",
+ "description":"CLOCK FACE FOUR-THIRTY≊ four-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "4",
+ "4:30",
+ "clock",
+ "four",
+ "thirty"
+ ]
+ },
+ {
+ "no":976,
+ "code":"U+1F554",
+ "emoji":"🕔",
+ "description":"CLOCK FACE FIVE OCLOCK≊ five o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "5",
+ "5:00",
+ "clock",
+ "five",
+ "o’clock"
+ ]
+ },
+ {
+ "no":977,
+ "code":"U+1F560",
+ "emoji":"🕠",
+ "description":"CLOCK FACE FIVE-THIRTY≊ five-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "5",
+ "5:30",
+ "clock",
+ "five",
+ "thirty"
+ ]
+ },
+ {
+ "no":978,
+ "code":"U+1F555",
+ "emoji":"🕕",
+ "description":"CLOCK FACE SIX OCLOCK≊ six o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "6",
+ "6:00",
+ "clock",
+ "o’clock",
+ "six"
+ ]
+ },
+ {
+ "no":979,
+ "code":"U+1F561",
+ "emoji":"🕡",
+ "description":"CLOCK FACE SIX-THIRTY≊ six-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "6",
+ "6:30",
+ "clock",
+ "six",
+ "thirty"
+ ]
+ },
+ {
+ "no":980,
+ "code":"U+1F556",
+ "emoji":"🕖",
+ "description":"CLOCK FACE SEVEN OCLOCK≊ seven o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "7",
+ "7:00",
+ "clock",
+ "o’clock",
+ "seven"
+ ]
+ },
+ {
+ "no":981,
+ "code":"U+1F562",
+ "emoji":"🕢",
+ "description":"CLOCK FACE SEVEN-THIRTY≊ seven-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "7",
+ "7:30",
+ "clock",
+ "seven",
+ "thirty"
+ ]
+ },
+ {
+ "no":982,
+ "code":"U+1F557",
+ "emoji":"🕗",
+ "description":"CLOCK FACE EIGHT OCLOCK≊ eight o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "8",
+ "8:00",
+ "clock",
+ "eight",
+ "o’clock"
+ ]
+ },
+ {
+ "no":983,
+ "code":"U+1F563",
+ "emoji":"🕣",
+ "description":"CLOCK FACE EIGHT-THIRTY≊ eight-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "8",
+ "8:30",
+ "clock",
+ "eight",
+ "thirty"
+ ]
+ },
+ {
+ "no":984,
+ "code":"U+1F558",
+ "emoji":"🕘",
+ "description":"CLOCK FACE NINE OCLOCK≊ nine o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "9",
+ "9:00",
+ "clock",
+ "nine",
+ "o’clock"
+ ]
+ },
+ {
+ "no":985,
+ "code":"U+1F564",
+ "emoji":"🕤",
+ "description":"CLOCK FACE NINE-THIRTY≊ nine-thirty",
+ "flagged":false,
+ "keywords":[
+ "30",
+ "9",
+ "9:30",
+ "clock",
+ "nine",
+ "thirty"
+ ]
+ },
+ {
+ "no":986,
+ "code":"U+1F559",
+ "emoji":"🕙",
+ "description":"CLOCK FACE TEN OCLOCK≊ ten o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "10",
+ "10:00",
+ "clock",
+ "o’clock",
+ "ten"
+ ]
+ },
+ {
+ "no":987,
+ "code":"U+1F565",
+ "emoji":"🕥",
+ "description":"CLOCK FACE TEN-THIRTY≊ ten-thirty",
+ "flagged":false,
+ "keywords":[
+ "10",
+ "10:30",
+ "30",
+ "clock",
+ "ten",
+ "thirty"
+ ]
+ },
+ {
+ "no":988,
+ "code":"U+1F55A",
+ "emoji":"🕚",
+ "description":"CLOCK FACE ELEVEN OCLOCK≊ eleven o’clock",
+ "flagged":false,
+ "keywords":[
+ "00",
+ "11",
+ "11:00",
+ "clock",
+ "eleven",
+ "o’clock"
+ ]
+ },
+ {
+ "no":989,
+ "code":"U+1F566",
+ "emoji":"🕦",
+ "description":"CLOCK FACE ELEVEN-THIRTY≊ eleven-thirty",
+ "flagged":false,
+ "keywords":[
+ "11",
+ "11:30",
+ "30",
+ "clock",
+ "eleven",
+ "thirty"
+ ]
+ },
+ {
+ "no":990,
+ "code":"U+1F311",
+ "emoji":"🌑",
+ "description":"NEW MOON SYMBOL≊ new moon",
+ "flagged":false,
+ "keywords":[
+ "dark",
+ "moon",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":991,
+ "code":"U+1F312",
+ "emoji":"🌒",
+ "description":"WAXING CRESCENT MOON SYMBOL≊ waxing crescent moon",
+ "flagged":false,
+ "keywords":[
+ "crescent",
+ "moon",
+ "space",
+ "waxing",
+ "weather"
+ ]
+ },
+ {
+ "no":992,
+ "code":"U+1F313",
+ "emoji":"🌓",
+ "description":"FIRST QUARTER MOON SYMBOL≊ first quarter moon",
+ "flagged":false,
+ "keywords":[
+ "moon",
+ "quarter",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":993,
+ "code":"U+1F314",
+ "emoji":"🌔",
+ "description":"WAXING GIBBOUS MOON SYMBOL≊ waxing gibbous moon",
+ "flagged":false,
+ "keywords":[
+ "gibbous",
+ "moon",
+ "space",
+ "waxing",
+ "weather"
+ ]
+ },
+ {
+ "no":994,
+ "code":"U+1F315",
+ "emoji":"🌕",
+ "description":"FULL MOON SYMBOL≊ full moon",
+ "flagged":false,
+ "keywords":[
+ "full",
+ "moon",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":995,
+ "code":"U+1F316",
+ "emoji":"🌖",
+ "description":"WANING GIBBOUS MOON SYMBOL≊ waning gibbous moon",
+ "flagged":false,
+ "keywords":[
+ "gibbous",
+ "moon",
+ "space",
+ "waning",
+ "weather"
+ ]
+ },
+ {
+ "no":996,
+ "code":"U+1F317",
+ "emoji":"🌗",
+ "description":"LAST QUARTER MOON SYMBOL≊ last quarter moon",
+ "flagged":false,
+ "keywords":[
+ "moon",
+ "quarter",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":997,
+ "code":"U+1F318",
+ "emoji":"🌘",
+ "description":"WANING CRESCENT MOON SYMBOL≊ waning crescent moon",
+ "flagged":false,
+ "keywords":[
+ "crescent",
+ "moon",
+ "space",
+ "waning",
+ "weather"
+ ]
+ },
+ {
+ "no":998,
+ "code":"U+1F319",
+ "emoji":"🌙",
+ "description":"CRESCENT MOON",
+ "flagged":false,
+ "keywords":[
+ "crescent",
+ "moon",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":999,
+ "code":"U+1F31A",
+ "emoji":"🌚",
+ "description":"NEW MOON WITH FACE≊ new moon face",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "moon",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":1000,
+ "code":"U+1F31B",
+ "emoji":"🌛",
+ "description":"FIRST QUARTER MOON WITH FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "moon",
+ "quarter",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":1001,
+ "code":"U+1F31C",
+ "emoji":"🌜",
+ "description":"LAST QUARTER MOON WITH FACE",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "moon",
+ "quarter",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":1002,
+ "code":"U+1F321",
+ "emoji":"🌡",
+ "description":"THERMOMETER",
+ "flagged":false,
+ "keywords":[
+ "thermometer",
+ "weather"
+ ]
+ },
+ {
+ "no":1003,
+ "code":"U+2600",
+ "emoji":"☀",
+ "description":"BLACK SUN WITH RAYS≊ sun",
+ "flagged":false,
+ "keywords":[
+ "bright",
+ "rays",
+ "space",
+ "sun",
+ "sunny",
+ "weather"
+ ]
+ },
+ {
+ "no":1004,
+ "code":"U+1F31D",
+ "emoji":"🌝",
+ "description":"FULL MOON WITH FACE",
+ "flagged":false,
+ "keywords":[
+ "bright",
+ "face",
+ "full",
+ "moon",
+ "space",
+ "weather"
+ ]
+ },
+ {
+ "no":1005,
+ "code":"U+1F31E",
+ "emoji":"🌞",
+ "description":"SUN WITH FACE",
+ "flagged":false,
+ "keywords":[
+ "bright",
+ "face",
+ "space",
+ "sun",
+ "weather"
+ ]
+ },
+ {
+ "no":1006,
+ "code":"U+2B50",
+ "emoji":"⭐",
+ "description":"WHITE MEDIUM STAR",
+ "flagged":false,
+ "keywords":[
+ "star"
+ ]
+ },
+ {
+ "no":1007,
+ "code":"U+1F31F",
+ "emoji":"🌟",
+ "description":"GLOWING STAR",
+ "flagged":false,
+ "keywords":[
+ "glittery",
+ "glow",
+ "shining",
+ "sparkle",
+ "star"
+ ]
+ },
+ {
+ "no":1008,
+ "code":"U+1F320",
+ "emoji":"🌠",
+ "description":"SHOOTING STAR",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "falling",
+ "shooting",
+ "space",
+ "star"
+ ]
+ },
+ {
+ "no":1009,
+ "code":"U+2601",
+ "emoji":"☁",
+ "description":"CLOUD",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "weather"
+ ]
+ },
+ {
+ "no":1010,
+ "code":"U+26C5",
+ "emoji":"⛅",
+ "description":"SUN BEHIND CLOUD",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "sun",
+ "weather"
+ ]
+ },
+ {
+ "no":1011,
+ "code":"U+26C8",
+ "emoji":"⛈",
+ "description":"THUNDER CLOUD AND RAIN≊ cloud with lightning and rain",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "rain",
+ "thunder",
+ "weather"
+ ]
+ },
+ {
+ "no":1012,
+ "code":"U+1F324",
+ "emoji":"🌤",
+ "description":"WHITE SUN WITH SMALL CLOUD≊ sun behind small cloud",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "sun",
+ "weather"
+ ]
+ },
+ {
+ "no":1013,
+ "code":"U+1F325",
+ "emoji":"🌥",
+ "description":"WHITE SUN BEHIND CLOUD≊ sun behind large cloud",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "sun",
+ "weather"
+ ]
+ },
+ {
+ "no":1014,
+ "code":"U+1F326",
+ "emoji":"🌦",
+ "description":"WHITE SUN BEHIND CLOUD WITH RAIN≊ sun behind cloud with rain",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "rain",
+ "sun",
+ "weather"
+ ]
+ },
+ {
+ "no":1015,
+ "code":"U+1F327",
+ "emoji":"🌧",
+ "description":"CLOUD WITH RAIN",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "rain",
+ "weather"
+ ]
+ },
+ {
+ "no":1016,
+ "code":"U+1F328",
+ "emoji":"🌨",
+ "description":"CLOUD WITH SNOW",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "cold",
+ "snow",
+ "weather"
+ ]
+ },
+ {
+ "no":1017,
+ "code":"U+1F329",
+ "emoji":"🌩",
+ "description":"CLOUD WITH LIGHTNING",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "lightning",
+ "weather"
+ ]
+ },
+ {
+ "no":1018,
+ "code":"U+1F32A",
+ "emoji":"🌪",
+ "description":"CLOUD WITH TORNADO≊ tornado",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "tornado",
+ "weather",
+ "whirlwind"
+ ]
+ },
+ {
+ "no":1019,
+ "code":"U+1F32B",
+ "emoji":"🌫",
+ "description":"FOG",
+ "flagged":false,
+ "keywords":[
+ "cloud",
+ "fog",
+ "weather"
+ ]
+ },
+ {
+ "no":1020,
+ "code":"U+1F32C",
+ "emoji":"🌬",
+ "description":"WIND BLOWING FACE≊ wind face",
+ "flagged":false,
+ "keywords":[
+ "blow",
+ "cloud",
+ "face",
+ "weather",
+ "wind"
+ ]
+ },
+ {
+ "no":1021,
+ "code":"U+1F300",
+ "emoji":"🌀",
+ "description":"CYCLONE",
+ "flagged":false,
+ "keywords":[
+ "cyclone",
+ "dizzy",
+ "twister",
+ "typhoon",
+ "weather"
+ ]
+ },
+ {
+ "no":1022,
+ "code":"U+1F308",
+ "emoji":"🌈",
+ "description":"RAINBOW",
+ "flagged":false,
+ "keywords":[
+ "rain",
+ "rainbow",
+ "weather"
+ ]
+ },
+ {
+ "no":1023,
+ "code":"U+1F302",
+ "emoji":"🌂",
+ "description":"CLOSED UMBRELLA",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "rain",
+ "umbrella",
+ "weather"
+ ]
+ },
+ {
+ "no":1024,
+ "code":"U+2602",
+ "emoji":"☂",
+ "description":"UMBRELLA",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "rain",
+ "umbrella",
+ "weather"
+ ]
+ },
+ {
+ "no":1025,
+ "code":"U+2614",
+ "emoji":"☔",
+ "description":"UMBRELLA WITH RAIN DROPS",
+ "flagged":false,
+ "keywords":[
+ "clothing",
+ "drop",
+ "rain",
+ "umbrella",
+ "weather"
+ ]
+ },
+ {
+ "no":1026,
+ "code":"U+26F1",
+ "emoji":"⛱",
+ "description":"UMBRELLA ON GROUND",
+ "flagged":false,
+ "keywords":[
+ "rain",
+ "sun",
+ "umbrella",
+ "weather"
+ ]
+ },
+ {
+ "no":1027,
+ "code":"U+26A1",
+ "emoji":"⚡",
+ "description":"HIGH VOLTAGE SIGN≊ high voltage",
+ "flagged":false,
+ "keywords":[
+ "danger",
+ "electric",
+ "electricity",
+ "lightning",
+ "voltage",
+ "zap"
+ ]
+ },
+ {
+ "no":1028,
+ "code":"U+2744",
+ "emoji":"❄",
+ "description":"SNOWFLAKE",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "snow",
+ "snowflake",
+ "weather"
+ ]
+ },
+ {
+ "no":1029,
+ "code":"U+2603",
+ "emoji":"☃",
+ "description":"SNOWMAN",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "snow",
+ "snowman",
+ "weather"
+ ]
+ },
+ {
+ "no":1030,
+ "code":"U+26C4",
+ "emoji":"⛄",
+ "description":"SNOWMAN WITHOUT SNOW",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "snow",
+ "snowman",
+ "weather"
+ ]
+ },
+ {
+ "no":1031,
+ "code":"U+2604",
+ "emoji":"☄",
+ "description":"COMET",
+ "flagged":false,
+ "keywords":[
+ "comet",
+ "space"
+ ]
+ },
+ {
+ "no":1032,
+ "code":"U+1F525",
+ "emoji":"🔥",
+ "description":"FIRE",
+ "flagged":false,
+ "keywords":[
+ "fire",
+ "flame",
+ "tool"
+ ]
+ },
+ {
+ "no":1033,
+ "code":"U+1F4A7",
+ "emoji":"💧",
+ "description":"DROPLET",
+ "flagged":false,
+ "keywords":[
+ "cold",
+ "comic",
+ "drop",
+ "sweat",
+ "weather"
+ ]
+ },
+ {
+ "no":1034,
+ "code":"U+1F30A",
+ "emoji":"🌊",
+ "description":"WATER WAVE",
+ "flagged":false,
+ "keywords":[
+ "ocean",
+ "water",
+ "wave",
+ "weather"
+ ]
+ }
+ ],
+ "Activities":[
+ {
+ "no":1035,
+ "code":"U+1F383",
+ "emoji":"🎃",
+ "description":"JACK-O-LANTERN",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "entertainment",
+ "halloween",
+ "jack",
+ "lantern"
+ ]
+ },
+ {
+ "no":1036,
+ "code":"U+1F384",
+ "emoji":"🎄",
+ "description":"CHRISTMAS TREE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "christmas",
+ "entertainment",
+ "tree"
+ ]
+ },
+ {
+ "no":1037,
+ "code":"U+1F386",
+ "emoji":"🎆",
+ "description":"FIREWORKS",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "entertainment",
+ "fireworks"
+ ]
+ },
+ {
+ "no":1038,
+ "code":"U+1F387",
+ "emoji":"🎇",
+ "description":"FIREWORK SPARKLER≊ sparkler",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "entertainment",
+ "fireworks",
+ "sparkle"
+ ]
+ },
+ {
+ "no":1039,
+ "code":"U+2728",
+ "emoji":"✨",
+ "description":"SPARKLES",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "sparkle",
+ "star"
+ ]
+ },
+ {
+ "no":1040,
+ "code":"U+1F388",
+ "emoji":"🎈",
+ "description":"BALLOON",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "balloon",
+ "celebration",
+ "entertainment"
+ ]
+ },
+ {
+ "no":1041,
+ "code":"U+1F389",
+ "emoji":"🎉",
+ "description":"PARTY POPPER",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "entertainment",
+ "party",
+ "popper",
+ "tada"
+ ]
+ },
+ {
+ "no":1042,
+ "code":"U+1F38A",
+ "emoji":"🎊",
+ "description":"CONFETTI BALL",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "ball",
+ "celebration",
+ "confetti",
+ "entertainment"
+ ]
+ },
+ {
+ "no":1043,
+ "code":"U+1F38B",
+ "emoji":"🎋",
+ "description":"TANABATA TREE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "banner",
+ "celebration",
+ "entertainment",
+ "japanese",
+ "tree"
+ ]
+ },
+ {
+ "no":1044,
+ "code":"U+1F38D",
+ "emoji":"🎍",
+ "description":"PINE DECORATION",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "bamboo",
+ "celebration",
+ "japanese",
+ "pine",
+ "plant"
+ ]
+ },
+ {
+ "no":1045,
+ "code":"U+1F38E",
+ "emoji":"🎎",
+ "description":"JAPANESE DOLLS",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "doll",
+ "entertainment",
+ "festival",
+ "japanese"
+ ]
+ },
+ {
+ "no":1046,
+ "code":"U+1F38F",
+ "emoji":"🎏",
+ "description":"CARP STREAMER",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "carp",
+ "celebration",
+ "entertainment",
+ "flag",
+ "streamer"
+ ]
+ },
+ {
+ "no":1047,
+ "code":"U+1F390",
+ "emoji":"🎐",
+ "description":"WIND CHIME",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "bell",
+ "celebration",
+ "chime",
+ "entertainment",
+ "wind"
+ ]
+ },
+ {
+ "no":1048,
+ "code":"U+1F391",
+ "emoji":"🎑",
+ "description":"MOON VIEWING CEREMONY≊ moon ceremony",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "ceremony",
+ "entertainment",
+ "moon"
+ ]
+ },
+ {
+ "no":1049,
+ "code":"U+1F380",
+ "emoji":"🎀",
+ "description":"RIBBON",
+ "flagged":false,
+ "keywords":[
+ "celebration",
+ "ribbon"
+ ]
+ },
+ {
+ "no":1050,
+ "code":"U+1F381",
+ "emoji":"🎁",
+ "description":"WRAPPED PRESENT",
+ "flagged":false,
+ "keywords":[
+ "box",
+ "celebration",
+ "entertainment",
+ "gift",
+ "present",
+ "wrapped"
+ ]
+ },
+ {
+ "no":1051,
+ "code":"U+1F397",
+ "emoji":"🎗",
+ "description":"REMINDER RIBBON",
+ "flagged":false,
+ "keywords":[
+ "celebration",
+ "reminder",
+ "ribbon"
+ ]
+ },
+ {
+ "no":1052,
+ "code":"U+1F39F",
+ "emoji":"🎟",
+ "description":"ADMISSION TICKETS",
+ "flagged":false,
+ "keywords":[
+ "admission",
+ "entertainment",
+ "ticket"
+ ]
+ },
+ {
+ "no":1053,
+ "code":"U+1F3AB",
+ "emoji":"🎫",
+ "description":"TICKET",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "admission",
+ "entertainment",
+ "ticket"
+ ]
+ },
+ {
+ "no":1054,
+ "code":"U+1F396",
+ "emoji":"🎖",
+ "description":"MILITARY MEDAL",
+ "flagged":false,
+ "keywords":[
+ "celebration",
+ "medal",
+ "military"
+ ]
+ },
+ {
+ "no":1055,
+ "code":"U+1F3C6",
+ "emoji":"🏆",
+ "description":"TROPHY",
+ "flagged":false,
+ "keywords":[
+ "prize",
+ "trophy"
+ ]
+ },
+ {
+ "no":1056,
+ "code":"U+1F3C5",
+ "emoji":"🏅",
+ "description":"SPORTS MEDAL",
+ "flagged":false,
+ "keywords":[
+ "medal"
+ ]
+ },
+ {
+ "no":1057,
+ "code":"U+1F947",
+ "emoji":"🥇",
+ "description":"FIRST PLACE MEDAL",
+ "flagged":true,
+ "keywords":[
+ "first",
+ "gold",
+ "medal"
+ ]
+ },
+ {
+ "no":1058,
+ "code":"U+1F948",
+ "emoji":"🥈",
+ "description":"SECOND PLACE MEDAL",
+ "flagged":true,
+ "keywords":[
+ "medal",
+ "second",
+ "silver"
+ ]
+ },
+ {
+ "no":1059,
+ "code":"U+1F949",
+ "emoji":"🥉",
+ "description":"THIRD PLACE MEDAL",
+ "flagged":true,
+ "keywords":[
+ "bronze",
+ "medal",
+ "third"
+ ]
+ },
+ {
+ "no":1060,
+ "code":"U+26BD",
+ "emoji":"⚽",
+ "description":"SOCCER BALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "soccer"
+ ]
+ },
+ {
+ "no":1061,
+ "code":"U+26BE",
+ "emoji":"⚾",
+ "description":"BASEBALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "baseball"
+ ]
+ },
+ {
+ "no":1062,
+ "code":"U+1F3C0",
+ "emoji":"🏀",
+ "description":"BASKETBALL AND HOOP≊ basketball",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "basketball",
+ "hoop"
+ ]
+ },
+ {
+ "no":1063,
+ "code":"U+1F3D0",
+ "emoji":"🏐",
+ "description":"VOLLEYBALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "game",
+ "volleyball"
+ ]
+ },
+ {
+ "no":1064,
+ "code":"U+1F3C8",
+ "emoji":"🏈",
+ "description":"AMERICAN FOOTBALL",
+ "flagged":false,
+ "keywords":[
+ "american",
+ "ball",
+ "football"
+ ]
+ },
+ {
+ "no":1065,
+ "code":"U+1F3C9",
+ "emoji":"🏉",
+ "description":"RUGBY FOOTBALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "football",
+ "rugby"
+ ]
+ },
+ {
+ "no":1066,
+ "code":"U+1F3BE",
+ "emoji":"🎾",
+ "description":"TENNIS RACQUET AND BALL≊ tennis",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "racquet",
+ "tennis"
+ ]
+ },
+ {
+ "no":1067,
+ "code":"U+1F3B1",
+ "emoji":"🎱",
+ "description":"BILLIARDS",
+ "flagged":false,
+ "keywords":[
+ "8",
+ "8 ball",
+ "ball",
+ "billiard",
+ "eight",
+ "game"
+ ]
+ },
+ {
+ "no":1068,
+ "code":"U+1F3B3",
+ "emoji":"🎳",
+ "description":"BOWLING",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "bowling",
+ "game"
+ ]
+ },
+ {
+ "no":1069,
+ "code":"U+1F3CF",
+ "emoji":"🏏",
+ "description":"CRICKET BAT AND BALL≊ cricket",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "bat",
+ "cricket",
+ "game"
+ ]
+ },
+ {
+ "no":1070,
+ "code":"U+1F3D1",
+ "emoji":"🏑",
+ "description":"FIELD HOCKEY STICK AND BALL≊ field hockey",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "field",
+ "game",
+ "hockey",
+ "stick"
+ ]
+ },
+ {
+ "no":1071,
+ "code":"U+1F3D2",
+ "emoji":"🏒",
+ "description":"ICE HOCKEY STICK AND PUCK",
+ "flagged":false,
+ "keywords":[
+ "game",
+ "hockey",
+ "ice",
+ "puck",
+ "stick"
+ ]
+ },
+ {
+ "no":1072,
+ "code":"U+1F3D3",
+ "emoji":"🏓",
+ "description":"TABLE TENNIS PADDLE AND BALL≊ ping pong",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "bat",
+ "game",
+ "paddle",
+ "table tennis"
+ ]
+ },
+ {
+ "no":1073,
+ "code":"U+1F3F8",
+ "emoji":"🏸",
+ "description":"BADMINTON RACQUET AND SHUTTLECOCK≊ badminton",
+ "flagged":false,
+ "keywords":[
+ "badminton",
+ "birdie",
+ "game",
+ "racquet",
+ "shuttlecock"
+ ]
+ },
+ {
+ "no":1074,
+ "code":"U+1F94A",
+ "emoji":"🥊",
+ "description":"BOXING GLOVE",
+ "flagged":true,
+ "keywords":[
+ "boxing",
+ "glove"
+ ]
+ },
+ {
+ "no":1075,
+ "code":"U+1F94B",
+ "emoji":"🥋",
+ "description":"MARTIAL ARTS UNIFORM",
+ "flagged":true,
+ "keywords":[
+ "judo",
+ "karate",
+ "martial arts",
+ "taekwondo",
+ "uniform"
+ ]
+ },
+ {
+ "no":1076,
+ "code":"U+26F3",
+ "emoji":"⛳",
+ "description":"FLAG IN HOLE",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "golf",
+ "hole"
+ ]
+ },
+ {
+ "no":1077,
+ "code":"U+1F3CC",
+ "emoji":"🏌",
+ "description":"GOLFER",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "golf"
+ ]
+ },
+ {
+ "no":1078,
+ "code":"U+26F8",
+ "emoji":"⛸",
+ "description":"ICE SKATE",
+ "flagged":false,
+ "keywords":[
+ "ice",
+ "skate"
+ ]
+ },
+ {
+ "no":1079,
+ "code":"U+1F3A3",
+ "emoji":"🎣",
+ "description":"FISHING POLE AND FISH≊ fishing pole",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "fish",
+ "pole"
+ ]
+ },
+ {
+ "no":1080,
+ "code":"U+1F3BD",
+ "emoji":"🎽",
+ "description":"RUNNING SHIRT WITH SASH≊ running shirt",
+ "flagged":false,
+ "keywords":[
+ "running",
+ "sash",
+ "shirt"
+ ]
+ },
+ {
+ "no":1081,
+ "code":"U+1F3BF",
+ "emoji":"🎿",
+ "description":"SKI AND SKI BOOT≊ skis",
+ "flagged":false,
+ "keywords":[
+ "ski",
+ "snow"
+ ]
+ },
+ {
+ "no":1082,
+ "code":"U+26F7",
+ "emoji":"⛷",
+ "description":"SKIER",
+ "flagged":false,
+ "keywords":[
+ "ski",
+ "snow"
+ ]
+ },
+ {
+ "no":1083,
+ "code":"U+1F3C2",
+ "emoji":"🏂",
+ "description":"SNOWBOARDER",
+ "flagged":false,
+ "keywords":[
+ "ski",
+ "snow",
+ "snowboard"
+ ]
+ },
+ {
+ "no":1084,
+ "code":"U+1F3C4",
+ "emoji":"🏄",
+ "description":"SURFER",
+ "flagged":false,
+ "keywords":[
+ "surfer",
+ "surfing"
+ ],
+ "types":[
+ "U+1F3C4 U+1F3FF",
+ "U+1F3C4 U+1F3FE",
+ "U+1F3C4 U+1F3FD",
+ "U+1F3C4 U+1F3FC",
+ "U+1F3C4 U+1F3FB"
+ ]
+ },
+ {
+ "no":1090,
+ "code":"U+1F3C7",
+ "emoji":"🏇",
+ "description":"HORSE RACING",
+ "flagged":false,
+ "keywords":[
+ "horse",
+ "jockey",
+ "racehorse",
+ "racing"
+ ]
+ },
+ {
+ "no":1091,
+ "code":"U+1F3CA",
+ "emoji":"🏊",
+ "description":"SWIMMER",
+ "flagged":false,
+ "keywords":[
+ "swim",
+ "swimmer"
+ ],
+ "types":[
+ "U+1F3CA U+1F3FF",
+ "U+1F3CA U+1F3FE",
+ "U+1F3CA U+1F3FD",
+ "U+1F3CA U+1F3FC",
+ "U+1F3CA U+1F3FB"
+ ]
+ },
+ {
+ "no":1097,
+ "code":"U+26F9",
+ "emoji":"⛹",
+ "description":"PERSON WITH BALL",
+ "flagged":false,
+ "keywords":[
+ "ball"
+ ],
+ "types":[
+ "U+26F9 U+1F3FF",
+ "U+26F9 U+1F3FE",
+ "U+26F9 U+1F3FD",
+ "U+26F9 U+1F3FC",
+ "U+26F9 U+1F3FB"
+ ]
+ },
+ {
+ "no":1103,
+ "code":"U+1F3CB",
+ "emoji":"🏋",
+ "description":"WEIGHT LIFTER",
+ "flagged":false,
+ "keywords":[
+ "lifter",
+ "weight"
+ ],
+ "types":[
+ "U+1F3CB U+1F3FF",
+ "U+1F3CB U+1F3FE",
+ "U+1F3CB U+1F3FD",
+ "U+1F3CB U+1F3FC",
+ "U+1F3CB U+1F3FB"
+ ]
+ },
+ {
+ "no":1109,
+ "code":"U+1F6B4",
+ "emoji":"🚴",
+ "description":"BICYCLIST",
+ "flagged":false,
+ "keywords":[
+ "bicycle",
+ "bicyclist",
+ "bike",
+ "cyclist"
+ ],
+ "types":[
+ "U+1F6B4 U+1F3FF",
+ "U+1F6B4 U+1F3FE",
+ "U+1F6B4 U+1F3FD",
+ "U+1F6B4 U+1F3FC",
+ "U+1F6B4 U+1F3FB"
+ ]
+ },
+ {
+ "no":1115,
+ "code":"U+1F6B5",
+ "emoji":"🚵",
+ "description":"MOUNTAIN BICYCLIST≊ mountain biker",
+ "flagged":false,
+ "keywords":[
+ "bicycle",
+ "bicyclist",
+ "bike",
+ "cyclist",
+ "mountain"
+ ],
+ "types":[
+ "U+1F6B5 U+1F3FF",
+ "U+1F6B5 U+1F3FE",
+ "U+1F6B5 U+1F3FD",
+ "U+1F6B5 U+1F3FC",
+ "U+1F6B5 U+1F3FB"
+ ]
+ },
+ {
+ "no":1121,
+ "code":"U+1F3CE",
+ "emoji":"🏎",
+ "description":"RACING CAR",
+ "flagged":false,
+ "keywords":[
+ "car",
+ "racing"
+ ]
+ },
+ {
+ "no":1122,
+ "code":"U+1F3CD",
+ "emoji":"🏍",
+ "description":"RACING MOTORCYCLE≊ motorcycle",
+ "flagged":false,
+ "keywords":[
+ "motorcycle",
+ "racing"
+ ]
+ },
+ {
+ "no":1123,
+ "code":"U+1F938",
+ "emoji":"🤸",
+ "description":"PERSON DOING CARTWHEEL",
+ "flagged":true,
+ "keywords":[
+ "cartwheel",
+ "gymnastics"
+ ],
+ "types":[
+ "U+1F938 U+1F3FF",
+ "U+1F938 U+1F3FE",
+ "U+1F938 U+1F3FD",
+ "U+1F938 U+1F3FC",
+ "U+1F938 U+1F3FB"
+ ]
+ },
+ {
+ "no":1129,
+ "code":"U+1F93C",
+ "emoji":"🤼",
+ "description":"WRESTLERS",
+ "flagged":true,
+ "keywords":[
+ "wrestle",
+ "wrestler"
+ ],
+ "types":[
+ "U+1F93C U+1F3FF",
+ "U+1F93C U+1F3FE",
+ "U+1F93C U+1F3FD",
+ "U+1F93C U+1F3FC",
+ "U+1F93C U+1F3FB"
+ ]
+ },
+ {
+ "no":1135,
+ "code":"U+1F93D",
+ "emoji":"🤽",
+ "description":"WATER POLO",
+ "flagged":true,
+ "keywords":[
+ "polo",
+ "water"
+ ],
+ "types":[
+ "U+1F93D U+1F3FF",
+ "U+1F93D U+1F3FE",
+ "U+1F93D U+1F3FD",
+ "U+1F93D U+1F3FC",
+ "U+1F93D U+1F3FB"
+ ]
+ },
+ {
+ "no":1141,
+ "code":"U+1F93E",
+ "emoji":"🤾",
+ "description":"HANDBALL",
+ "flagged":true,
+ "keywords":[
+ "ball",
+ "handball"
+ ],
+ "types":[
+ "U+1F93E U+1F3FF",
+ "U+1F93E U+1F3FE",
+ "U+1F93E U+1F3FD",
+ "U+1F93E U+1F3FC",
+ "U+1F93E U+1F3FB"
+ ]
+ },
+ {
+ "no":1147,
+ "code":"U+1F93A",
+ "emoji":"🤺",
+ "description":"FENCER",
+ "flagged":true,
+ "keywords":[
+ "fencer",
+ "fencing",
+ "sword"
+ ]
+ },
+ {
+ "no":1148,
+ "code":"U+1F945",
+ "emoji":"🥅",
+ "description":"GOAL NET",
+ "flagged":true,
+ "keywords":[
+ "goal",
+ "net"
+ ]
+ },
+ {
+ "no":1149,
+ "code":"U+1F939",
+ "emoji":"🤹",
+ "description":"JUGGLING",
+ "flagged":true,
+ "keywords":[
+ "balance",
+ "juggle",
+ "multitask",
+ "skill"
+ ],
+ "types":[
+ "U+1F939 U+1F3FF",
+ "U+1F939 U+1F3FE",
+ "U+1F939 U+1F3FD",
+ "U+1F939 U+1F3FC",
+ "U+1F939 U+1F3FB"
+ ]
+ },
+ {
+ "no":1155,
+ "code":"U+1F3AF",
+ "emoji":"🎯",
+ "description":"DIRECT HIT",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "bull",
+ "bullseye",
+ "dart",
+ "entertainment",
+ "eye",
+ "game",
+ "hit",
+ "target"
+ ]
+ },
+ {
+ "no":1156,
+ "code":"U+1F3AE",
+ "emoji":"🎮",
+ "description":"VIDEO GAME",
+ "flagged":false,
+ "keywords":[
+ "controller",
+ "entertainment",
+ "game",
+ "video game"
+ ]
+ },
+ {
+ "no":1157,
+ "code":"U+1F579",
+ "emoji":"🕹",
+ "description":"JOYSTICK",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "game",
+ "joystick",
+ "video game"
+ ]
+ },
+ {
+ "no":1158,
+ "code":"U+1F3B2",
+ "emoji":"🎲",
+ "description":"GAME DIE",
+ "flagged":false,
+ "keywords":[
+ "dice",
+ "die",
+ "entertainment",
+ "game"
+ ]
+ },
+ {
+ "no":1159,
+ "code":"U+2660",
+ "emoji":"♠",
+ "description":"BLACK SPADE SUIT≊ spade suit",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "game",
+ "spade",
+ "suit"
+ ]
+ },
+ {
+ "no":1160,
+ "code":"U+2665",
+ "emoji":"♥",
+ "description":"BLACK HEART SUIT≊ heart suit",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "game",
+ "heart",
+ "hearts",
+ "suit"
+ ]
+ },
+ {
+ "no":1161,
+ "code":"U+2666",
+ "emoji":"♦",
+ "description":"BLACK DIAMOND SUIT≊ diamond suit",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "diamond",
+ "diamonds",
+ "game",
+ "suit"
+ ]
+ },
+ {
+ "no":1162,
+ "code":"U+2663",
+ "emoji":"♣",
+ "description":"BLACK CLUB SUIT≊ club suit",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "club",
+ "clubs",
+ "game",
+ "suit"
+ ]
+ },
+ {
+ "no":1163,
+ "code":"U+1F0CF",
+ "emoji":"🃏",
+ "description":"PLAYING CARD BLACK JOKER≊ joker",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "entertainment",
+ "game",
+ "joker",
+ "playing"
+ ]
+ },
+ {
+ "no":1164,
+ "code":"U+1F004",
+ "emoji":"🀄",
+ "description":"MAHJONG TILE RED DRAGON≊ mahjong red dragon",
+ "flagged":false,
+ "keywords":[
+ "game",
+ "mahjong",
+ "red"
+ ]
+ },
+ {
+ "no":1165,
+ "code":"U+1F3B4",
+ "emoji":"🎴",
+ "description":"FLOWER PLAYING CARDS",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "card",
+ "entertainment",
+ "flower",
+ "game",
+ "japanese",
+ "playing"
+ ]
+ }
+ ],
+ "Objects":[
+ {
+ "no":1166,
+ "code":"U+1F507",
+ "emoji":"🔇",
+ "description":"SPEAKER WITH CANCELLATION STROKE≊ speaker off",
+ "flagged":false,
+ "keywords":[
+ "mute",
+ "quiet",
+ "silent",
+ "speaker",
+ "volume"
+ ]
+ },
+ {
+ "no":1167,
+ "code":"U+1F508",
+ "emoji":"🔈",
+ "description":"SPEAKER",
+ "flagged":false,
+ "keywords":[
+ "speaker",
+ "volume"
+ ]
+ },
+ {
+ "no":1168,
+ "code":"U+1F509",
+ "emoji":"🔉",
+ "description":"SPEAKER WITH ONE SOUND WAVE≊ speaker on",
+ "flagged":false,
+ "keywords":[
+ "low",
+ "speaker",
+ "volume",
+ "wave"
+ ]
+ },
+ {
+ "no":1169,
+ "code":"U+1F50A",
+ "emoji":"🔊",
+ "description":"SPEAKER WITH THREE SOUND WAVES≊ speaker loud",
+ "flagged":false,
+ "keywords":[
+ "3",
+ "entertainment",
+ "high",
+ "loud",
+ "speaker",
+ "three",
+ "volume"
+ ]
+ },
+ {
+ "no":1170,
+ "code":"U+1F4E2",
+ "emoji":"📢",
+ "description":"PUBLIC ADDRESS LOUDSPEAKER≊ loudspeaker",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "loud",
+ "loudspeaker",
+ "public address"
+ ]
+ },
+ {
+ "no":1171,
+ "code":"U+1F4E3",
+ "emoji":"📣",
+ "description":"CHEERING MEGAPHONE≊ megaphone",
+ "flagged":false,
+ "keywords":[
+ "cheering",
+ "communication",
+ "megaphone"
+ ]
+ },
+ {
+ "no":1172,
+ "code":"U+1F4EF",
+ "emoji":"📯",
+ "description":"POSTAL HORN",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "entertainment",
+ "horn",
+ "post",
+ "postal"
+ ]
+ },
+ {
+ "no":1173,
+ "code":"U+1F514",
+ "emoji":"🔔",
+ "description":"BELL",
+ "flagged":false,
+ "keywords":[
+ "bell"
+ ]
+ },
+ {
+ "no":1174,
+ "code":"U+1F515",
+ "emoji":"🔕",
+ "description":"BELL WITH CANCELLATION STROKE≊ bell with slash",
+ "flagged":false,
+ "keywords":[
+ "bell",
+ "forbidden",
+ "mute",
+ "no",
+ "not",
+ "prohibited",
+ "quiet",
+ "silent"
+ ]
+ },
+ {
+ "no":1175,
+ "code":"U+1F3BC",
+ "emoji":"🎼",
+ "description":"MUSICAL SCORE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "music",
+ "score"
+ ]
+ },
+ {
+ "no":1176,
+ "code":"U+1F3B5",
+ "emoji":"🎵",
+ "description":"MUSICAL NOTE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "music",
+ "note"
+ ]
+ },
+ {
+ "no":1177,
+ "code":"U+1F3B6",
+ "emoji":"🎶",
+ "description":"MULTIPLE MUSICAL NOTES≊ musical notes",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "music",
+ "note",
+ "notes"
+ ]
+ },
+ {
+ "no":1178,
+ "code":"U+1F399",
+ "emoji":"🎙",
+ "description":"STUDIO MICROPHONE",
+ "flagged":false,
+ "keywords":[
+ "mic",
+ "microphone",
+ "music",
+ "studio"
+ ]
+ },
+ {
+ "no":1179,
+ "code":"U+1F39A",
+ "emoji":"🎚",
+ "description":"LEVEL SLIDER",
+ "flagged":false,
+ "keywords":[
+ "level",
+ "music",
+ "slider"
+ ]
+ },
+ {
+ "no":1180,
+ "code":"U+1F39B",
+ "emoji":"🎛",
+ "description":"CONTROL KNOBS",
+ "flagged":false,
+ "keywords":[
+ "control",
+ "knobs",
+ "music"
+ ]
+ },
+ {
+ "no":1181,
+ "code":"U+1F3A4",
+ "emoji":"🎤",
+ "description":"MICROPHONE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "karaoke",
+ "mic",
+ "microphone"
+ ]
+ },
+ {
+ "no":1182,
+ "code":"U+1F3A7",
+ "emoji":"🎧",
+ "description":"HEADPHONE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "earbud",
+ "entertainment",
+ "headphone"
+ ]
+ },
+ {
+ "no":1183,
+ "code":"U+1F4FB",
+ "emoji":"📻",
+ "description":"RADIO",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "radio",
+ "video"
+ ]
+ },
+ {
+ "no":1184,
+ "code":"U+1F3B7",
+ "emoji":"🎷",
+ "description":"SAXOPHONE",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "instrument",
+ "music",
+ "sax",
+ "saxophone"
+ ]
+ },
+ {
+ "no":1185,
+ "code":"U+1F3B8",
+ "emoji":"🎸",
+ "description":"GUITAR",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "guitar",
+ "instrument",
+ "music"
+ ]
+ },
+ {
+ "no":1186,
+ "code":"U+1F3B9",
+ "emoji":"🎹",
+ "description":"MUSICAL KEYBOARD",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "instrument",
+ "keyboard",
+ "music",
+ "piano"
+ ]
+ },
+ {
+ "no":1187,
+ "code":"U+1F3BA",
+ "emoji":"🎺",
+ "description":"TRUMPET",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "instrument",
+ "music",
+ "trumpet"
+ ]
+ },
+ {
+ "no":1188,
+ "code":"U+1F3BB",
+ "emoji":"🎻",
+ "description":"VIOLIN",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "entertainment",
+ "instrument",
+ "music",
+ "violin"
+ ]
+ },
+ {
+ "no":1189,
+ "code":"U+1F941",
+ "emoji":"🥁",
+ "description":"DRUM WITH DRUMSTICKS",
+ "flagged":true,
+ "keywords":[
+ "drum",
+ "drumsticks",
+ "music"
+ ]
+ },
+ {
+ "no":1190,
+ "code":"U+1F4F1",
+ "emoji":"📱",
+ "description":"MOBILE PHONE",
+ "flagged":false,
+ "keywords":[
+ "cell",
+ "communication",
+ "mobile",
+ "phone",
+ "telephone"
+ ]
+ },
+ {
+ "no":1191,
+ "code":"U+1F4F2",
+ "emoji":"📲",
+ "description":"MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT≊ mobile phone with arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "call",
+ "cell",
+ "communication",
+ "mobile",
+ "phone",
+ "receive",
+ "telephone"
+ ]
+ },
+ {
+ "no":1192,
+ "code":"U+260E",
+ "emoji":"☎",
+ "description":"BLACK TELEPHONE≊ telephone",
+ "flagged":false,
+ "keywords":[
+ "phone",
+ "telephone"
+ ]
+ },
+ {
+ "no":1193,
+ "code":"U+1F4DE",
+ "emoji":"📞",
+ "description":"TELEPHONE RECEIVER",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "phone",
+ "receiver",
+ "telephone"
+ ]
+ },
+ {
+ "no":1194,
+ "code":"U+1F4DF",
+ "emoji":"📟",
+ "description":"PAGER",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "pager"
+ ]
+ },
+ {
+ "no":1195,
+ "code":"U+1F4E0",
+ "emoji":"📠",
+ "description":"FAX MACHINE",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "fax"
+ ]
+ },
+ {
+ "no":1196,
+ "code":"U+1F50B",
+ "emoji":"🔋",
+ "description":"BATTERY",
+ "flagged":false,
+ "keywords":[
+ "battery"
+ ]
+ },
+ {
+ "no":1197,
+ "code":"U+1F50C",
+ "emoji":"🔌",
+ "description":"ELECTRIC PLUG",
+ "flagged":false,
+ "keywords":[
+ "electric",
+ "electricity",
+ "plug"
+ ]
+ },
+ {
+ "no":1198,
+ "code":"U+1F4BB",
+ "emoji":"💻",
+ "description":"PERSONAL COMPUTER≊ laptop computer",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "pc",
+ "personal"
+ ]
+ },
+ {
+ "no":1199,
+ "code":"U+1F5A5",
+ "emoji":"🖥",
+ "description":"DESKTOP COMPUTER",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "desktop"
+ ]
+ },
+ {
+ "no":1200,
+ "code":"U+1F5A8",
+ "emoji":"🖨",
+ "description":"PRINTER",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "printer"
+ ]
+ },
+ {
+ "no":1201,
+ "code":"U+2328",
+ "emoji":"⌨",
+ "description":"KEYBOARD",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "keyboard"
+ ]
+ },
+ {
+ "no":1202,
+ "code":"U+1F5B1",
+ "emoji":"🖱",
+ "description":"THREE BUTTON MOUSE≊ computer mouse",
+ "flagged":false,
+ "keywords":[
+ "3",
+ "button",
+ "computer",
+ "mouse",
+ "three"
+ ]
+ },
+ {
+ "no":1203,
+ "code":"U+1F5B2",
+ "emoji":"🖲",
+ "description":"TRACKBALL",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "trackball"
+ ]
+ },
+ {
+ "no":1204,
+ "code":"U+1F4BD",
+ "emoji":"💽",
+ "description":"MINIDISC",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "disk",
+ "entertainment",
+ "minidisk",
+ "optical"
+ ]
+ },
+ {
+ "no":1205,
+ "code":"U+1F4BE",
+ "emoji":"💾",
+ "description":"FLOPPY DISK",
+ "flagged":false,
+ "keywords":[
+ "computer",
+ "disk",
+ "floppy"
+ ]
+ },
+ {
+ "no":1206,
+ "code":"U+1F4BF",
+ "emoji":"💿",
+ "description":"OPTICAL DISC",
+ "flagged":false,
+ "keywords":[
+ "blu-ray",
+ "cd",
+ "computer",
+ "disk",
+ "dvd",
+ "optical"
+ ]
+ },
+ {
+ "no":1207,
+ "code":"U+1F4C0",
+ "emoji":"📀",
+ "description":"DVD",
+ "flagged":false,
+ "keywords":[
+ "blu-ray",
+ "cd",
+ "computer",
+ "disk",
+ "dvd",
+ "entertainment",
+ "optical"
+ ]
+ },
+ {
+ "no":1208,
+ "code":"U+1F3A5",
+ "emoji":"🎥",
+ "description":"MOVIE CAMERA",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "camera",
+ "cinema",
+ "entertainment",
+ "movie"
+ ]
+ },
+ {
+ "no":1209,
+ "code":"U+1F39E",
+ "emoji":"🎞",
+ "description":"FILM FRAMES",
+ "flagged":false,
+ "keywords":[
+ "cinema",
+ "entertainment",
+ "film",
+ "frames",
+ "movie"
+ ]
+ },
+ {
+ "no":1210,
+ "code":"U+1F4FD",
+ "emoji":"📽",
+ "description":"FILM PROJECTOR",
+ "flagged":false,
+ "keywords":[
+ "cinema",
+ "entertainment",
+ "film",
+ "movie",
+ "projector",
+ "video"
+ ]
+ },
+ {
+ "no":1211,
+ "code":"U+1F3AC",
+ "emoji":"🎬",
+ "description":"CLAPPER BOARD",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "clapper",
+ "entertainment",
+ "movie"
+ ]
+ },
+ {
+ "no":1212,
+ "code":"U+1F4FA",
+ "emoji":"📺",
+ "description":"TELEVISION",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "television",
+ "tv",
+ "video"
+ ]
+ },
+ {
+ "no":1213,
+ "code":"U+1F4F7",
+ "emoji":"📷",
+ "description":"CAMERA",
+ "flagged":false,
+ "keywords":[
+ "camera",
+ "entertainment",
+ "video"
+ ]
+ },
+ {
+ "no":1214,
+ "code":"U+1F4F8",
+ "emoji":"📸",
+ "description":"CAMERA WITH FLASH",
+ "flagged":false,
+ "keywords":[
+ "camera",
+ "flash",
+ "video"
+ ]
+ },
+ {
+ "no":1215,
+ "code":"U+1F4F9",
+ "emoji":"📹",
+ "description":"VIDEO CAMERA",
+ "flagged":false,
+ "keywords":[
+ "camera",
+ "entertainment",
+ "video"
+ ]
+ },
+ {
+ "no":1216,
+ "code":"U+1F4FC",
+ "emoji":"📼",
+ "description":"VIDEOCASSETTE",
+ "flagged":false,
+ "keywords":[
+ "entertainment",
+ "tape",
+ "vhs",
+ "video",
+ "videocassette"
+ ]
+ },
+ {
+ "no":1217,
+ "code":"U+1F50D",
+ "emoji":"🔍",
+ "description":"LEFT-POINTING MAGNIFYING GLASS",
+ "flagged":false,
+ "keywords":[
+ "glass",
+ "magnifying",
+ "search",
+ "tool"
+ ]
+ },
+ {
+ "no":1218,
+ "code":"U+1F50E",
+ "emoji":"🔎",
+ "description":"RIGHT-POINTING MAGNIFYING GLASS",
+ "flagged":false,
+ "keywords":[
+ "glass",
+ "magnifying",
+ "search",
+ "tool"
+ ]
+ },
+ {
+ "no":1219,
+ "code":"U+1F52C",
+ "emoji":"🔬",
+ "description":"MICROSCOPE",
+ "flagged":false,
+ "keywords":[
+ "microscope",
+ "tool"
+ ]
+ },
+ {
+ "no":1220,
+ "code":"U+1F52D",
+ "emoji":"🔭",
+ "description":"TELESCOPE",
+ "flagged":false,
+ "keywords":[
+ "telescope",
+ "tool"
+ ]
+ },
+ {
+ "no":1221,
+ "code":"U+1F4E1",
+ "emoji":"📡",
+ "description":"SATELLITE ANTENNA",
+ "flagged":false,
+ "keywords":[
+ "antenna",
+ "communication",
+ "dish",
+ "satellite"
+ ]
+ },
+ {
+ "no":1222,
+ "code":"U+1F56F",
+ "emoji":"🕯",
+ "description":"CANDLE",
+ "flagged":false,
+ "keywords":[
+ "candle",
+ "light"
+ ]
+ },
+ {
+ "no":1223,
+ "code":"U+1F4A1",
+ "emoji":"💡",
+ "description":"ELECTRIC LIGHT BULB≊ light bulb",
+ "flagged":false,
+ "keywords":[
+ "bulb",
+ "comic",
+ "electric",
+ "idea",
+ "light"
+ ]
+ },
+ {
+ "no":1224,
+ "code":"U+1F526",
+ "emoji":"🔦",
+ "description":"ELECTRIC TORCH≊ flashlight",
+ "flagged":false,
+ "keywords":[
+ "electric",
+ "flashlight",
+ "light",
+ "tool",
+ "torch"
+ ]
+ },
+ {
+ "no":1225,
+ "code":"U+1F3EE",
+ "emoji":"🏮",
+ "description":"IZAKAYA LANTERN≊ red paper lantern",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "japanese",
+ "lantern",
+ "light",
+ "red"
+ ]
+ },
+ {
+ "no":1226,
+ "code":"U+1F4D4",
+ "emoji":"📔",
+ "description":"NOTEBOOK WITH DECORATIVE COVER",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "cover",
+ "decorated",
+ "notebook"
+ ]
+ },
+ {
+ "no":1227,
+ "code":"U+1F4D5",
+ "emoji":"📕",
+ "description":"CLOSED BOOK",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "closed"
+ ]
+ },
+ {
+ "no":1228,
+ "code":"U+1F4D6",
+ "emoji":"📖",
+ "description":"OPEN BOOK",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "open"
+ ]
+ },
+ {
+ "no":1229,
+ "code":"U+1F4D7",
+ "emoji":"📗",
+ "description":"GREEN BOOK",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "green"
+ ]
+ },
+ {
+ "no":1230,
+ "code":"U+1F4D8",
+ "emoji":"📘",
+ "description":"BLUE BOOK",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "book"
+ ]
+ },
+ {
+ "no":1231,
+ "code":"U+1F4D9",
+ "emoji":"📙",
+ "description":"ORANGE BOOK",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "orange"
+ ]
+ },
+ {
+ "no":1232,
+ "code":"U+1F4DA",
+ "emoji":"📚",
+ "description":"BOOKS",
+ "flagged":false,
+ "keywords":[
+ "book",
+ "books"
+ ]
+ },
+ {
+ "no":1233,
+ "code":"U+1F4D3",
+ "emoji":"📓",
+ "description":"NOTEBOOK",
+ "flagged":false,
+ "keywords":[
+ "notebook"
+ ]
+ },
+ {
+ "no":1234,
+ "code":"U+1F4D2",
+ "emoji":"📒",
+ "description":"LEDGER",
+ "flagged":false,
+ "keywords":[
+ "ledger",
+ "notebook"
+ ]
+ },
+ {
+ "no":1235,
+ "code":"U+1F4C3",
+ "emoji":"📃",
+ "description":"PAGE WITH CURL",
+ "flagged":false,
+ "keywords":[
+ "curl",
+ "document",
+ "page"
+ ]
+ },
+ {
+ "no":1236,
+ "code":"U+1F4DC",
+ "emoji":"📜",
+ "description":"SCROLL",
+ "flagged":false,
+ "keywords":[
+ "paper",
+ "scroll"
+ ]
+ },
+ {
+ "no":1237,
+ "code":"U+1F4C4",
+ "emoji":"📄",
+ "description":"PAGE FACING UP",
+ "flagged":false,
+ "keywords":[
+ "document",
+ "page"
+ ]
+ },
+ {
+ "no":1238,
+ "code":"U+1F4F0",
+ "emoji":"📰",
+ "description":"NEWSPAPER",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "news",
+ "newspaper",
+ "paper"
+ ]
+ },
+ {
+ "no":1239,
+ "code":"U+1F5DE",
+ "emoji":"🗞",
+ "description":"ROLLED-UP NEWSPAPER",
+ "flagged":false,
+ "keywords":[
+ "news",
+ "newspaper",
+ "paper",
+ "rolled"
+ ]
+ },
+ {
+ "no":1240,
+ "code":"U+1F4D1",
+ "emoji":"📑",
+ "description":"BOOKMARK TABS",
+ "flagged":false,
+ "keywords":[
+ "bookmark",
+ "mark",
+ "marker",
+ "tabs"
+ ]
+ },
+ {
+ "no":1241,
+ "code":"U+1F516",
+ "emoji":"🔖",
+ "description":"BOOKMARK",
+ "flagged":false,
+ "keywords":[
+ "bookmark",
+ "mark"
+ ]
+ },
+ {
+ "no":1242,
+ "code":"U+1F3F7",
+ "emoji":"🏷",
+ "description":"LABEL",
+ "flagged":false,
+ "keywords":[
+ "label"
+ ]
+ },
+ {
+ "no":1243,
+ "code":"U+1F4B0",
+ "emoji":"💰",
+ "description":"MONEY BAG",
+ "flagged":false,
+ "keywords":[
+ "bag",
+ "dollar",
+ "money",
+ "moneybag"
+ ]
+ },
+ {
+ "no":1244,
+ "code":"U+1F4B4",
+ "emoji":"💴",
+ "description":"BANKNOTE WITH YEN SIGN≊ yen banknote",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "banknote",
+ "bill",
+ "currency",
+ "money",
+ "note",
+ "yen"
+ ]
+ },
+ {
+ "no":1245,
+ "code":"U+1F4B5",
+ "emoji":"💵",
+ "description":"BANKNOTE WITH DOLLAR SIGN≊ dollar banknote",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "banknote",
+ "bill",
+ "currency",
+ "dollar",
+ "money",
+ "note"
+ ]
+ },
+ {
+ "no":1246,
+ "code":"U+1F4B6",
+ "emoji":"💶",
+ "description":"BANKNOTE WITH EURO SIGN≊ euro banknote",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "banknote",
+ "bill",
+ "currency",
+ "euro",
+ "money",
+ "note"
+ ]
+ },
+ {
+ "no":1247,
+ "code":"U+1F4B7",
+ "emoji":"💷",
+ "description":"BANKNOTE WITH POUND SIGN≊ pound banknote",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "banknote",
+ "bill",
+ "currency",
+ "money",
+ "note",
+ "pound"
+ ]
+ },
+ {
+ "no":1248,
+ "code":"U+1F4B8",
+ "emoji":"💸",
+ "description":"MONEY WITH WINGS",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "banknote",
+ "bill",
+ "dollar",
+ "fly",
+ "money",
+ "note",
+ "wings"
+ ]
+ },
+ {
+ "no":1249,
+ "code":"U+1F4B3",
+ "emoji":"💳",
+ "description":"CREDIT CARD",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "card",
+ "credit",
+ "money"
+ ]
+ },
+ {
+ "no":1250,
+ "code":"U+1F4B9",
+ "emoji":"💹",
+ "description":"CHART WITH UPWARDS TREND AND YEN SIGN≊ chart increasing with yen",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "chart",
+ "currency",
+ "graph",
+ "growth",
+ "market",
+ "money",
+ "rise",
+ "trend",
+ "upward",
+ "yen"
+ ]
+ },
+ {
+ "no":1251,
+ "code":"U+1F4B1",
+ "emoji":"💱",
+ "description":"CURRENCY EXCHANGE",
+ "flagged":false,
+ "keywords":[
+ "bank",
+ "currency",
+ "exchange",
+ "money"
+ ]
+ },
+ {
+ "no":1252,
+ "code":"U+1F4B2",
+ "emoji":"💲",
+ "description":"HEAVY DOLLAR SIGN",
+ "flagged":false,
+ "keywords":[
+ "currency",
+ "dollar",
+ "money"
+ ]
+ },
+ {
+ "no":1253,
+ "code":"U+2709",
+ "emoji":"✉",
+ "description":"ENVELOPE",
+ "flagged":false,
+ "keywords":[
+ "e-mail",
+ "email",
+ "envelope"
+ ]
+ },
+ {
+ "no":1254,
+ "code":"U+1F4E7",
+ "emoji":"📧",
+ "description":"E-MAIL SYMBOL≊ e-mail",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "e-mail",
+ "email",
+ "letter",
+ "mail"
+ ]
+ },
+ {
+ "no":1255,
+ "code":"U+1F4E8",
+ "emoji":"📨",
+ "description":"INCOMING ENVELOPE",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "e-mail",
+ "email",
+ "envelope",
+ "incoming",
+ "letter",
+ "mail",
+ "receive"
+ ]
+ },
+ {
+ "no":1256,
+ "code":"U+1F4E9",
+ "emoji":"📩",
+ "description":"ENVELOPE WITH DOWNWARDS ARROW ABOVE≊ envelope with arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "communication",
+ "down",
+ "e-mail",
+ "email",
+ "envelope",
+ "letter",
+ "mail",
+ "outgoing",
+ "sent"
+ ]
+ },
+ {
+ "no":1257,
+ "code":"U+1F4E4",
+ "emoji":"📤",
+ "description":"OUTBOX TRAY",
+ "flagged":false,
+ "keywords":[
+ "box",
+ "communication",
+ "letter",
+ "mail",
+ "outbox",
+ "sent",
+ "tray"
+ ]
+ },
+ {
+ "no":1258,
+ "code":"U+1F4E5",
+ "emoji":"📥",
+ "description":"INBOX TRAY",
+ "flagged":false,
+ "keywords":[
+ "box",
+ "communication",
+ "inbox",
+ "letter",
+ "mail",
+ "receive",
+ "tray"
+ ]
+ },
+ {
+ "no":1259,
+ "code":"U+1F4E6",
+ "emoji":"📦",
+ "description":"PACKAGE",
+ "flagged":false,
+ "keywords":[
+ "box",
+ "communication",
+ "package",
+ "parcel"
+ ]
+ },
+ {
+ "no":1260,
+ "code":"U+1F4EB",
+ "emoji":"📫",
+ "description":"CLOSED MAILBOX WITH RAISED FLAG",
+ "flagged":false,
+ "keywords":[
+ "closed",
+ "communication",
+ "flag",
+ "mail",
+ "mailbox",
+ "postbox"
+ ]
+ },
+ {
+ "no":1261,
+ "code":"U+1F4EA",
+ "emoji":"📪",
+ "description":"CLOSED MAILBOX WITH LOWERED FLAG",
+ "flagged":false,
+ "keywords":[
+ "closed",
+ "communication",
+ "flag",
+ "lowered",
+ "mail",
+ "mailbox",
+ "postbox"
+ ]
+ },
+ {
+ "no":1262,
+ "code":"U+1F4EC",
+ "emoji":"📬",
+ "description":"OPEN MAILBOX WITH RAISED FLAG",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "flag",
+ "mail",
+ "mailbox",
+ "open",
+ "postbox"
+ ]
+ },
+ {
+ "no":1263,
+ "code":"U+1F4ED",
+ "emoji":"📭",
+ "description":"OPEN MAILBOX WITH LOWERED FLAG",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "flag",
+ "lowered",
+ "mail",
+ "mailbox",
+ "open",
+ "postbox"
+ ]
+ },
+ {
+ "no":1264,
+ "code":"U+1F4EE",
+ "emoji":"📮",
+ "description":"POSTBOX",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "mail",
+ "mailbox",
+ "postbox"
+ ]
+ },
+ {
+ "no":1265,
+ "code":"U+1F5F3",
+ "emoji":"🗳",
+ "description":"BALLOT BOX WITH BALLOT",
+ "flagged":false,
+ "keywords":[
+ "ballot",
+ "box"
+ ]
+ },
+ {
+ "no":1266,
+ "code":"U+270F",
+ "emoji":"✏",
+ "description":"PENCIL",
+ "flagged":false,
+ "keywords":[
+ "pencil"
+ ]
+ },
+ {
+ "no":1267,
+ "code":"U+2712",
+ "emoji":"✒",
+ "description":"BLACK NIB",
+ "flagged":false,
+ "keywords":[
+ "nib",
+ "pen"
+ ]
+ },
+ {
+ "no":1268,
+ "code":"U+1F58B",
+ "emoji":"🖋",
+ "description":"LOWER LEFT FOUNTAIN PEN≊ fountain pen",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "fountain",
+ "pen"
+ ]
+ },
+ {
+ "no":1269,
+ "code":"U+1F58A",
+ "emoji":"🖊",
+ "description":"LOWER LEFT BALLPOINT PEN≊ pen",
+ "flagged":false,
+ "keywords":[
+ "ballpoint",
+ "communication",
+ "pen"
+ ]
+ },
+ {
+ "no":1270,
+ "code":"U+1F58C",
+ "emoji":"🖌",
+ "description":"LOWER LEFT PAINTBRUSH≊ paintbrush",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "paintbrush",
+ "painting"
+ ]
+ },
+ {
+ "no":1271,
+ "code":"U+1F58D",
+ "emoji":"🖍",
+ "description":"LOWER LEFT CRAYON≊ crayon",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "crayon"
+ ]
+ },
+ {
+ "no":1272,
+ "code":"U+1F4DD",
+ "emoji":"📝",
+ "description":"MEMO",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "memo",
+ "pencil"
+ ]
+ },
+ {
+ "no":1273,
+ "code":"U+1F4BC",
+ "emoji":"💼",
+ "description":"BRIEFCASE",
+ "flagged":false,
+ "keywords":[
+ "briefcase"
+ ]
+ },
+ {
+ "no":1274,
+ "code":"U+1F4C1",
+ "emoji":"📁",
+ "description":"FILE FOLDER",
+ "flagged":false,
+ "keywords":[
+ "file",
+ "folder"
+ ]
+ },
+ {
+ "no":1275,
+ "code":"U+1F4C2",
+ "emoji":"📂",
+ "description":"OPEN FILE FOLDER",
+ "flagged":false,
+ "keywords":[
+ "file",
+ "folder",
+ "open"
+ ]
+ },
+ {
+ "no":1276,
+ "code":"U+1F5C2",
+ "emoji":"🗂",
+ "description":"CARD INDEX DIVIDERS",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "dividers",
+ "index"
+ ]
+ },
+ {
+ "no":1277,
+ "code":"U+1F4C5",
+ "emoji":"📅",
+ "description":"CALENDAR",
+ "flagged":false,
+ "keywords":[
+ "calendar",
+ "date"
+ ]
+ },
+ {
+ "no":1278,
+ "code":"U+1F4C6",
+ "emoji":"📆",
+ "description":"TEAR-OFF CALENDAR",
+ "flagged":false,
+ "keywords":[
+ "calendar"
+ ]
+ },
+ {
+ "no":1279,
+ "code":"U+1F5D2",
+ "emoji":"🗒",
+ "description":"SPIRAL NOTE PAD≊ spiral notepad",
+ "flagged":false,
+ "keywords":[
+ "note",
+ "pad",
+ "spiral"
+ ]
+ },
+ {
+ "no":1280,
+ "code":"U+1F5D3",
+ "emoji":"🗓",
+ "description":"SPIRAL CALENDAR PAD≊ spiral calendar",
+ "flagged":false,
+ "keywords":[
+ "calendar",
+ "pad",
+ "spiral"
+ ]
+ },
+ {
+ "no":1281,
+ "code":"U+1F4C7",
+ "emoji":"📇",
+ "description":"CARD INDEX",
+ "flagged":false,
+ "keywords":[
+ "card",
+ "index",
+ "rolodex"
+ ]
+ },
+ {
+ "no":1282,
+ "code":"U+1F4C8",
+ "emoji":"📈",
+ "description":"CHART WITH UPWARDS TREND≊ chart increasing",
+ "flagged":false,
+ "keywords":[
+ "chart",
+ "graph",
+ "growth",
+ "trend",
+ "upward"
+ ]
+ },
+ {
+ "no":1283,
+ "code":"U+1F4C9",
+ "emoji":"📉",
+ "description":"CHART WITH DOWNWARDS TREND≊ chart decreasing",
+ "flagged":false,
+ "keywords":[
+ "chart",
+ "down",
+ "graph",
+ "trend"
+ ]
+ },
+ {
+ "no":1284,
+ "code":"U+1F4CA",
+ "emoji":"📊",
+ "description":"BAR CHART",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "chart",
+ "graph"
+ ]
+ },
+ {
+ "no":1285,
+ "code":"U+1F4CB",
+ "emoji":"📋",
+ "description":"CLIPBOARD",
+ "flagged":false,
+ "keywords":[
+ "clipboard"
+ ]
+ },
+ {
+ "no":1286,
+ "code":"U+1F4CC",
+ "emoji":"📌",
+ "description":"PUSHPIN",
+ "flagged":false,
+ "keywords":[
+ "pin",
+ "pushpin"
+ ]
+ },
+ {
+ "no":1287,
+ "code":"U+1F4CD",
+ "emoji":"📍",
+ "description":"ROUND PUSHPIN",
+ "flagged":false,
+ "keywords":[
+ "pin",
+ "pushpin"
+ ]
+ },
+ {
+ "no":1288,
+ "code":"U+1F4CE",
+ "emoji":"📎",
+ "description":"PAPERCLIP",
+ "flagged":false,
+ "keywords":[
+ "paperclip"
+ ]
+ },
+ {
+ "no":1289,
+ "code":"U+1F587",
+ "emoji":"🖇",
+ "description":"LINKED PAPERCLIPS",
+ "flagged":false,
+ "keywords":[
+ "communication",
+ "link",
+ "paperclip"
+ ]
+ },
+ {
+ "no":1290,
+ "code":"U+1F4CF",
+ "emoji":"📏",
+ "description":"STRAIGHT RULER",
+ "flagged":false,
+ "keywords":[
+ "ruler",
+ "straight edge"
+ ]
+ },
+ {
+ "no":1291,
+ "code":"U+1F4D0",
+ "emoji":"📐",
+ "description":"TRIANGULAR RULER",
+ "flagged":false,
+ "keywords":[
+ "ruler",
+ "set",
+ "triangle"
+ ]
+ },
+ {
+ "no":1292,
+ "code":"U+2702",
+ "emoji":"✂",
+ "description":"BLACK SCISSORS≊ scissors",
+ "flagged":false,
+ "keywords":[
+ "scissors",
+ "tool"
+ ]
+ },
+ {
+ "no":1293,
+ "code":"U+1F5C3",
+ "emoji":"🗃",
+ "description":"CARD FILE BOX",
+ "flagged":false,
+ "keywords":[
+ "box",
+ "card",
+ "file"
+ ]
+ },
+ {
+ "no":1294,
+ "code":"U+1F5C4",
+ "emoji":"🗄",
+ "description":"FILE CABINET",
+ "flagged":false,
+ "keywords":[
+ "cabinet",
+ "file"
+ ]
+ },
+ {
+ "no":1295,
+ "code":"U+1F5D1",
+ "emoji":"🗑",
+ "description":"WASTEBASKET",
+ "flagged":false,
+ "keywords":[
+ "wastebasket"
+ ]
+ },
+ {
+ "no":1296,
+ "code":"U+1F512",
+ "emoji":"🔒",
+ "description":"LOCK",
+ "flagged":false,
+ "keywords":[
+ "closed",
+ "lock"
+ ]
+ },
+ {
+ "no":1297,
+ "code":"U+1F513",
+ "emoji":"🔓",
+ "description":"OPEN LOCK",
+ "flagged":false,
+ "keywords":[
+ "lock",
+ "open",
+ "unlock"
+ ]
+ },
+ {
+ "no":1298,
+ "code":"U+1F50F",
+ "emoji":"🔏",
+ "description":"LOCK WITH INK PEN≊ lock with pen",
+ "flagged":false,
+ "keywords":[
+ "ink",
+ "lock",
+ "nib",
+ "pen",
+ "privacy"
+ ]
+ },
+ {
+ "no":1299,
+ "code":"U+1F510",
+ "emoji":"🔐",
+ "description":"CLOSED LOCK WITH KEY",
+ "flagged":false,
+ "keywords":[
+ "closed",
+ "key",
+ "lock",
+ "secure"
+ ]
+ },
+ {
+ "no":1300,
+ "code":"U+1F511",
+ "emoji":"🔑",
+ "description":"KEY",
+ "flagged":false,
+ "keywords":[
+ "key",
+ "lock",
+ "password"
+ ]
+ },
+ {
+ "no":1301,
+ "code":"U+1F5DD",
+ "emoji":"🗝",
+ "description":"OLD KEY",
+ "flagged":false,
+ "keywords":[
+ "clue",
+ "key",
+ "lock",
+ "old"
+ ]
+ },
+ {
+ "no":1302,
+ "code":"U+1F528",
+ "emoji":"🔨",
+ "description":"HAMMER",
+ "flagged":false,
+ "keywords":[
+ "hammer",
+ "tool"
+ ]
+ },
+ {
+ "no":1303,
+ "code":"U+26CF",
+ "emoji":"⛏",
+ "description":"PICK",
+ "flagged":false,
+ "keywords":[
+ "mining",
+ "pick",
+ "tool"
+ ]
+ },
+ {
+ "no":1304,
+ "code":"U+2692",
+ "emoji":"⚒",
+ "description":"HAMMER AND PICK",
+ "flagged":false,
+ "keywords":[
+ "hammer",
+ "pick",
+ "tool"
+ ]
+ },
+ {
+ "no":1305,
+ "code":"U+1F6E0",
+ "emoji":"🛠",
+ "description":"HAMMER AND WRENCH",
+ "flagged":false,
+ "keywords":[
+ "hammer",
+ "tool",
+ "wrench"
+ ]
+ },
+ {
+ "no":1306,
+ "code":"U+1F5E1",
+ "emoji":"🗡",
+ "description":"DAGGER KNIFE≊ dagger",
+ "flagged":false,
+ "keywords":[
+ "dagger",
+ "knife",
+ "weapon"
+ ]
+ },
+ {
+ "no":1307,
+ "code":"U+2694",
+ "emoji":"⚔",
+ "description":"CROSSED SWORDS",
+ "flagged":false,
+ "keywords":[
+ "crossed",
+ "swords",
+ "weapon"
+ ]
+ },
+ {
+ "no":1308,
+ "code":"U+1F52B",
+ "emoji":"🔫",
+ "description":"PISTOL",
+ "flagged":false,
+ "keywords":[
+ "gun",
+ "handgun",
+ "pistol",
+ "revolver",
+ "tool",
+ "weapon"
+ ]
+ },
+ {
+ "no":1309,
+ "code":"U+1F3F9",
+ "emoji":"🏹",
+ "description":"BOW AND ARROW",
+ "flagged":false,
+ "keywords":[
+ "archer",
+ "arrow",
+ "bow",
+ "sagittarius",
+ "tool",
+ "weapon",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1310,
+ "code":"U+1F6E1",
+ "emoji":"🛡",
+ "description":"SHIELD",
+ "flagged":false,
+ "keywords":[
+ "shield",
+ "weapon"
+ ]
+ },
+ {
+ "no":1311,
+ "code":"U+1F527",
+ "emoji":"🔧",
+ "description":"WRENCH",
+ "flagged":false,
+ "keywords":[
+ "tool",
+ "wrench"
+ ]
+ },
+ {
+ "no":1312,
+ "code":"U+1F529",
+ "emoji":"🔩",
+ "description":"NUT AND BOLT",
+ "flagged":false,
+ "keywords":[
+ "bolt",
+ "nut",
+ "tool"
+ ]
+ },
+ {
+ "no":1313,
+ "code":"U+2699",
+ "emoji":"⚙",
+ "description":"GEAR",
+ "flagged":false,
+ "keywords":[
+ "gear",
+ "tool"
+ ]
+ },
+ {
+ "no":1314,
+ "code":"U+1F5DC",
+ "emoji":"🗜",
+ "description":"COMPRESSION",
+ "flagged":false,
+ "keywords":[
+ "compression",
+ "tool",
+ "vice"
+ ]
+ },
+ {
+ "no":1315,
+ "code":"U+2697",
+ "emoji":"⚗",
+ "description":"ALEMBIC",
+ "flagged":false,
+ "keywords":[
+ "alembic",
+ "chemistry",
+ "tool"
+ ]
+ },
+ {
+ "no":1316,
+ "code":"U+2696",
+ "emoji":"⚖",
+ "description":"SCALES≊ balance scale",
+ "flagged":false,
+ "keywords":[
+ "balance",
+ "justice",
+ "libra",
+ "scales",
+ "tool",
+ "weight",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1317,
+ "code":"U+1F517",
+ "emoji":"🔗",
+ "description":"LINK SYMBOL≊ link",
+ "flagged":false,
+ "keywords":[
+ "link"
+ ]
+ },
+ {
+ "no":1318,
+ "code":"U+26D3",
+ "emoji":"⛓",
+ "description":"CHAINS",
+ "flagged":false,
+ "keywords":[
+ "chain"
+ ]
+ },
+ {
+ "no":1319,
+ "code":"U+1F489",
+ "emoji":"💉",
+ "description":"SYRINGE",
+ "flagged":false,
+ "keywords":[
+ "doctor",
+ "medicine",
+ "needle",
+ "shot",
+ "sick",
+ "syringe",
+ "tool"
+ ]
+ },
+ {
+ "no":1320,
+ "code":"U+1F48A",
+ "emoji":"💊",
+ "description":"PILL",
+ "flagged":false,
+ "keywords":[
+ "doctor",
+ "medicine",
+ "pill",
+ "sick"
+ ]
+ },
+ {
+ "no":1321,
+ "code":"U+1F6AC",
+ "emoji":"🚬",
+ "description":"SMOKING SYMBOL≊ smoking",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "smoking"
+ ]
+ },
+ {
+ "no":1322,
+ "code":"U+26B0",
+ "emoji":"⚰",
+ "description":"COFFIN",
+ "flagged":false,
+ "keywords":[
+ "coffin",
+ "death"
+ ]
+ },
+ {
+ "no":1323,
+ "code":"U+26B1",
+ "emoji":"⚱",
+ "description":"FUNERAL URN",
+ "flagged":false,
+ "keywords":[
+ "death",
+ "funeral",
+ "urn"
+ ]
+ },
+ {
+ "no":1324,
+ "code":"U+1F5FF",
+ "emoji":"🗿",
+ "description":"MOYAI≊ moai",
+ "flagged":false,
+ "keywords":[
+ "face",
+ "moyai",
+ "statue"
+ ]
+ },
+ {
+ "no":1325,
+ "code":"U+1F6E2",
+ "emoji":"🛢",
+ "description":"OIL DRUM",
+ "flagged":false,
+ "keywords":[
+ "drum",
+ "oil"
+ ]
+ },
+ {
+ "no":1326,
+ "code":"U+1F52E",
+ "emoji":"🔮",
+ "description":"CRYSTAL BALL",
+ "flagged":false,
+ "keywords":[
+ "ball",
+ "crystal",
+ "fairy tale",
+ "fantasy",
+ "fortune",
+ "tool"
+ ]
+ },
+ {
+ "no":1327,
+ "code":"U+1F6D2",
+ "emoji":"🛒",
+ "description":"SHOPPING TROLLEY",
+ "flagged":true,
+ "keywords":[
+ "cart",
+ "shopping",
+ "trolley"
+ ]
+ }
+ ],
+ "Symbols":[
+ {
+ "no":1328,
+ "code":"U+1F3E7",
+ "emoji":"🏧",
+ "description":"AUTOMATED TELLER MACHINE≊ ATM sign",
+ "flagged":false,
+ "keywords":[
+ "atm",
+ "automated",
+ "bank",
+ "teller"
+ ]
+ },
+ {
+ "no":1329,
+ "code":"U+1F6AE",
+ "emoji":"🚮",
+ "description":"PUT LITTER IN ITS PLACE SYMBOL≊ litter in bin sign",
+ "flagged":false,
+ "keywords":[
+ "litter",
+ "litterbox"
+ ]
+ },
+ {
+ "no":1330,
+ "code":"U+1F6B0",
+ "emoji":"🚰",
+ "description":"POTABLE WATER SYMBOL≊ potable water",
+ "flagged":false,
+ "keywords":[
+ "drink",
+ "potable",
+ "water"
+ ]
+ },
+ {
+ "no":1331,
+ "code":"U+267F",
+ "emoji":"♿",
+ "description":"WHEELCHAIR SYMBOL≊ wheelchair",
+ "flagged":false,
+ "keywords":[
+ "access",
+ "wheelchair"
+ ]
+ },
+ {
+ "no":1332,
+ "code":"U+1F6B9",
+ "emoji":"🚹",
+ "description":"MENS SYMBOL≊ men’s room",
+ "flagged":false,
+ "keywords":[
+ "lavatory",
+ "man",
+ "restroom",
+ "wc"
+ ]
+ },
+ {
+ "no":1333,
+ "code":"U+1F6BA",
+ "emoji":"🚺",
+ "description":"WOMENS SYMBOL≊ women’s room",
+ "flagged":false,
+ "keywords":[
+ "lavatory",
+ "restroom",
+ "wc",
+ "woman"
+ ]
+ },
+ {
+ "no":1334,
+ "code":"U+1F6BB",
+ "emoji":"🚻",
+ "description":"RESTROOM",
+ "flagged":false,
+ "keywords":[
+ "lavatory",
+ "restroom",
+ "wc"
+ ]
+ },
+ {
+ "no":1335,
+ "code":"U+1F6BC",
+ "emoji":"🚼",
+ "description":"BABY SYMBOL",
+ "flagged":false,
+ "keywords":[
+ "baby",
+ "changing"
+ ]
+ },
+ {
+ "no":1336,
+ "code":"U+1F6BE",
+ "emoji":"🚾",
+ "description":"WATER CLOSET",
+ "flagged":false,
+ "keywords":[
+ "closet",
+ "lavatory",
+ "restroom",
+ "water",
+ "wc"
+ ]
+ },
+ {
+ "no":1337,
+ "code":"U+1F6C2",
+ "emoji":"🛂",
+ "description":"PASSPORT CONTROL",
+ "flagged":false,
+ "keywords":[
+ "control",
+ "passport"
+ ]
+ },
+ {
+ "no":1338,
+ "code":"U+1F6C3",
+ "emoji":"🛃",
+ "description":"CUSTOMS",
+ "flagged":false,
+ "keywords":[
+ "customs"
+ ]
+ },
+ {
+ "no":1339,
+ "code":"U+1F6C4",
+ "emoji":"🛄",
+ "description":"BAGGAGE CLAIM",
+ "flagged":false,
+ "keywords":[
+ "baggage",
+ "claim"
+ ]
+ },
+ {
+ "no":1340,
+ "code":"U+1F6C5",
+ "emoji":"🛅",
+ "description":"LEFT LUGGAGE",
+ "flagged":false,
+ "keywords":[
+ "baggage",
+ "left luggage",
+ "locker",
+ "luggage"
+ ]
+ },
+ {
+ "no":1341,
+ "code":"U+26A0",
+ "emoji":"⚠",
+ "description":"WARNING SIGN≊ warning",
+ "flagged":false,
+ "keywords":[
+ "warning"
+ ]
+ },
+ {
+ "no":1342,
+ "code":"U+1F6B8",
+ "emoji":"🚸",
+ "description":"CHILDREN CROSSING",
+ "flagged":false,
+ "keywords":[
+ "child",
+ "crossing",
+ "pedestrian",
+ "traffic"
+ ]
+ },
+ {
+ "no":1343,
+ "code":"U+26D4",
+ "emoji":"⛔",
+ "description":"NO ENTRY",
+ "flagged":false,
+ "keywords":[
+ "entry",
+ "forbidden",
+ "no",
+ "not",
+ "prohibited",
+ "traffic"
+ ]
+ },
+ {
+ "no":1344,
+ "code":"U+1F6AB",
+ "emoji":"🚫",
+ "description":"NO ENTRY SIGN≊ prohibited",
+ "flagged":false,
+ "keywords":[
+ "entry",
+ "forbidden",
+ "no",
+ "not",
+ "prohibited"
+ ]
+ },
+ {
+ "no":1345,
+ "code":"U+1F6B3",
+ "emoji":"🚳",
+ "description":"NO BICYCLES",
+ "flagged":false,
+ "keywords":[
+ "bicycle",
+ "bike",
+ "forbidden",
+ "no",
+ "not",
+ "prohibited",
+ "vehicle"
+ ]
+ },
+ {
+ "no":1346,
+ "code":"U+1F6AD",
+ "emoji":"🚭",
+ "description":"NO SMOKING SYMBOL≊ no smoking",
+ "flagged":false,
+ "keywords":[
+ "forbidden",
+ "no",
+ "not",
+ "prohibited",
+ "smoking"
+ ]
+ },
+ {
+ "no":1347,
+ "code":"U+1F6AF",
+ "emoji":"🚯",
+ "description":"DO NOT LITTER SYMBOL≊ no littering",
+ "flagged":false,
+ "keywords":[
+ "forbidden",
+ "litter",
+ "no",
+ "not",
+ "prohibited"
+ ]
+ },
+ {
+ "no":1348,
+ "code":"U+1F6B1",
+ "emoji":"🚱",
+ "description":"NON-POTABLE WATER SYMBOL≊ non-potable water",
+ "flagged":false,
+ "keywords":[
+ "drink",
+ "forbidden",
+ "no",
+ "not",
+ "potable",
+ "prohibited",
+ "water"
+ ]
+ },
+ {
+ "no":1349,
+ "code":"U+1F6B7",
+ "emoji":"🚷",
+ "description":"NO PEDESTRIANS",
+ "flagged":false,
+ "keywords":[
+ "forbidden",
+ "no",
+ "not",
+ "pedestrian",
+ "prohibited"
+ ]
+ },
+ {
+ "no":1350,
+ "code":"U+1F4F5",
+ "emoji":"📵",
+ "description":"NO MOBILE PHONES",
+ "flagged":false,
+ "keywords":[
+ "cell",
+ "communication",
+ "forbidden",
+ "mobile",
+ "no",
+ "not",
+ "phone",
+ "prohibited",
+ "telephone"
+ ]
+ },
+ {
+ "no":1351,
+ "code":"U+1F51E",
+ "emoji":"🔞",
+ "description":"NO ONE UNDER EIGHTEEN SYMBOL≊ no one under eighteen",
+ "flagged":false,
+ "keywords":[
+ "18",
+ "age restriction",
+ "eighteen",
+ "forbidden",
+ "no",
+ "not",
+ "prohibited",
+ "underage"
+ ]
+ },
+ {
+ "no":1352,
+ "code":"U+2622",
+ "emoji":"☢",
+ "description":"RADIOACTIVE SIGN≊ radioactive",
+ "flagged":false,
+ "keywords":[
+ "radioactive"
+ ]
+ },
+ {
+ "no":1353,
+ "code":"U+2623",
+ "emoji":"☣",
+ "description":"BIOHAZARD SIGN≊ biohazard",
+ "flagged":false,
+ "keywords":[
+ "biohazard"
+ ]
+ },
+ {
+ "no":1354,
+ "code":"U+2B06",
+ "emoji":"⬆",
+ "description":"UPWARDS BLACK ARROW≊ up arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "cardinal",
+ "direction",
+ "north"
+ ]
+ },
+ {
+ "no":1355,
+ "code":"U+2197",
+ "emoji":"↗",
+ "description":"NORTH EAST ARROW≊ up-right arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "direction",
+ "intercardinal",
+ "northeast"
+ ]
+ },
+ {
+ "no":1356,
+ "code":"U+27A1",
+ "emoji":"➡",
+ "description":"BLACK RIGHTWARDS ARROW≊ right arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "cardinal",
+ "direction",
+ "east"
+ ]
+ },
+ {
+ "no":1357,
+ "code":"U+2198",
+ "emoji":"↘",
+ "description":"SOUTH EAST ARROW≊ down-right arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "direction",
+ "intercardinal",
+ "southeast"
+ ]
+ },
+ {
+ "no":1358,
+ "code":"U+2B07",
+ "emoji":"⬇",
+ "description":"DOWNWARDS BLACK ARROW≊ down arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "cardinal",
+ "direction",
+ "down",
+ "south"
+ ]
+ },
+ {
+ "no":1359,
+ "code":"U+2199",
+ "emoji":"↙",
+ "description":"SOUTH WEST ARROW≊ down-left arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "direction",
+ "intercardinal",
+ "southwest"
+ ]
+ },
+ {
+ "no":1360,
+ "code":"U+2B05",
+ "emoji":"⬅",
+ "description":"LEFTWARDS BLACK ARROW≊ left arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "cardinal",
+ "direction",
+ "west"
+ ]
+ },
+ {
+ "no":1361,
+ "code":"U+2196",
+ "emoji":"↖",
+ "description":"NORTH WEST ARROW≊ up-left arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "direction",
+ "intercardinal",
+ "northwest"
+ ]
+ },
+ {
+ "no":1362,
+ "code":"U+2195",
+ "emoji":"↕",
+ "description":"UP DOWN ARROW≊ up-down arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow"
+ ]
+ },
+ {
+ "no":1363,
+ "code":"U+2194",
+ "emoji":"↔",
+ "description":"LEFT RIGHT ARROW≊ left-right arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow"
+ ]
+ },
+ {
+ "no":1364,
+ "code":"U+21A9",
+ "emoji":"↩",
+ "description":"LEFTWARDS ARROW WITH HOOK≊ right arrow curving left",
+ "flagged":false,
+ "keywords":[
+ "arrow"
+ ]
+ },
+ {
+ "no":1365,
+ "code":"U+21AA",
+ "emoji":"↪",
+ "description":"RIGHTWARDS ARROW WITH HOOK≊ left arrow curving right",
+ "flagged":false,
+ "keywords":[
+ "arrow"
+ ]
+ },
+ {
+ "no":1366,
+ "code":"U+2934",
+ "emoji":"⤴",
+ "description":"ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS≊ right arrow curving up",
+ "flagged":false,
+ "keywords":[
+ "arrow"
+ ]
+ },
+ {
+ "no":1367,
+ "code":"U+2935",
+ "emoji":"⤵",
+ "description":"ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS≊ right arrow curving down",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "down"
+ ]
+ },
+ {
+ "no":1368,
+ "code":"U+1F503",
+ "emoji":"🔃",
+ "description":"CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS≊ clockwise vertical arrows",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "clockwise",
+ "reload"
+ ]
+ },
+ {
+ "no":1369,
+ "code":"U+1F504",
+ "emoji":"🔄",
+ "description":"ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS≊ anticlockwise arrows button",
+ "flagged":false,
+ "keywords":[
+ "anticlockwise",
+ "arrow",
+ "counterclockwise",
+ "withershins"
+ ]
+ },
+ {
+ "no":1370,
+ "code":"U+1F519",
+ "emoji":"🔙",
+ "description":"BACK WITH LEFTWARDS ARROW ABOVE≊ back arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "back"
+ ]
+ },
+ {
+ "no":1371,
+ "code":"U+1F51A",
+ "emoji":"🔚",
+ "description":"END WITH LEFTWARDS ARROW ABOVE≊ end arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "end"
+ ]
+ },
+ {
+ "no":1372,
+ "code":"U+1F51B",
+ "emoji":"🔛",
+ "description":"ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE≊ on! arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "mark",
+ "on"
+ ]
+ },
+ {
+ "no":1373,
+ "code":"U+1F51C",
+ "emoji":"🔜",
+ "description":"SOON WITH RIGHTWARDS ARROW ABOVE≊ soon arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "soon"
+ ]
+ },
+ {
+ "no":1374,
+ "code":"U+1F51D",
+ "emoji":"🔝",
+ "description":"TOP WITH UPWARDS ARROW ABOVE≊ top arrow",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "top",
+ "up"
+ ]
+ },
+ {
+ "no":1375,
+ "code":"U+1F6D0",
+ "emoji":"🛐",
+ "description":"PLACE OF WORSHIP",
+ "flagged":false,
+ "keywords":[
+ "religion",
+ "worship"
+ ]
+ },
+ {
+ "no":1376,
+ "code":"U+269B",
+ "emoji":"⚛",
+ "description":"ATOM SYMBOL",
+ "flagged":false,
+ "keywords":[
+ "atheist",
+ "atom"
+ ]
+ },
+ {
+ "no":1377,
+ "code":"U+1F549",
+ "emoji":"🕉",
+ "description":"OM SYMBOL≊ om",
+ "flagged":false,
+ "keywords":[
+ "hindu",
+ "om",
+ "religion"
+ ]
+ },
+ {
+ "no":1378,
+ "code":"U+2721",
+ "emoji":"✡",
+ "description":"STAR OF DAVID",
+ "flagged":false,
+ "keywords":[
+ "david",
+ "jew",
+ "jewish",
+ "religion",
+ "star"
+ ]
+ },
+ {
+ "no":1379,
+ "code":"U+2638",
+ "emoji":"☸",
+ "description":"WHEEL OF DHARMA",
+ "flagged":false,
+ "keywords":[
+ "buddhist",
+ "dharma",
+ "religion",
+ "wheel"
+ ]
+ },
+ {
+ "no":1380,
+ "code":"U+262F",
+ "emoji":"☯",
+ "description":"YIN YANG",
+ "flagged":false,
+ "keywords":[
+ "religion",
+ "tao",
+ "taoist",
+ "yang",
+ "yin"
+ ]
+ },
+ {
+ "no":1381,
+ "code":"U+271D",
+ "emoji":"✝",
+ "description":"LATIN CROSS",
+ "flagged":false,
+ "keywords":[
+ "christian",
+ "cross",
+ "religion"
+ ]
+ },
+ {
+ "no":1382,
+ "code":"U+2626",
+ "emoji":"☦",
+ "description":"ORTHODOX CROSS",
+ "flagged":false,
+ "keywords":[
+ "christian",
+ "cross",
+ "religion"
+ ]
+ },
+ {
+ "no":1383,
+ "code":"U+262A",
+ "emoji":"☪",
+ "description":"STAR AND CRESCENT",
+ "flagged":false,
+ "keywords":[
+ "islam",
+ "muslim",
+ "religion"
+ ]
+ },
+ {
+ "no":1384,
+ "code":"U+262E",
+ "emoji":"☮",
+ "description":"PEACE SYMBOL",
+ "flagged":false,
+ "keywords":[
+ "peace"
+ ]
+ },
+ {
+ "no":1385,
+ "code":"U+1F54E",
+ "emoji":"🕎",
+ "description":"MENORAH WITH NINE BRANCHES≊ menorah",
+ "flagged":false,
+ "keywords":[
+ "candelabrum",
+ "candlestick",
+ "menorah",
+ "religion"
+ ]
+ },
+ {
+ "no":1386,
+ "code":"U+1F52F",
+ "emoji":"🔯",
+ "description":"SIX POINTED STAR WITH MIDDLE DOT≊ dotted six-pointed star",
+ "flagged":false,
+ "keywords":[
+ "fortune",
+ "star"
+ ]
+ },
+ {
+ "no":1387,
+ "code":"U+267B",
+ "emoji":"♻",
+ "description":"BLACK UNIVERSAL RECYCLING SYMBOL≊ recycling symbol",
+ "flagged":false,
+ "keywords":[
+ "recycle"
+ ]
+ },
+ {
+ "no":1388,
+ "code":"U+1F4DB",
+ "emoji":"📛",
+ "description":"NAME BADGE",
+ "flagged":false,
+ "keywords":[
+ "badge",
+ "name"
+ ]
+ },
+ {
+ "no":1389,
+ "code":"U+269C",
+ "emoji":"⚜",
+ "description":"FLEUR-DE-LIS",
+ "flagged":false,
+ "keywords":[
+ "fleur-de-lis"
+ ]
+ },
+ {
+ "no":1390,
+ "code":"U+1F530",
+ "emoji":"🔰",
+ "description":"JAPANESE SYMBOL FOR BEGINNER",
+ "flagged":false,
+ "keywords":[
+ "beginner",
+ "chevron",
+ "green",
+ "japanese",
+ "leaf",
+ "tool",
+ "yellow"
+ ]
+ },
+ {
+ "no":1391,
+ "code":"U+1F531",
+ "emoji":"🔱",
+ "description":"TRIDENT EMBLEM",
+ "flagged":false,
+ "keywords":[
+ "anchor",
+ "emblem",
+ "ship",
+ "tool",
+ "trident"
+ ]
+ },
+ {
+ "no":1392,
+ "code":"U+2B55",
+ "emoji":"⭕",
+ "description":"HEAVY LARGE CIRCLE",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "o"
+ ]
+ },
+ {
+ "no":1393,
+ "code":"U+2705",
+ "emoji":"✅",
+ "description":"WHITE HEAVY CHECK MARK",
+ "flagged":false,
+ "keywords":[
+ "check",
+ "mark"
+ ]
+ },
+ {
+ "no":1394,
+ "code":"U+2611",
+ "emoji":"☑",
+ "description":"BALLOT BOX WITH CHECK",
+ "flagged":false,
+ "keywords":[
+ "ballot",
+ "box",
+ "check"
+ ]
+ },
+ {
+ "no":1395,
+ "code":"U+2714",
+ "emoji":"✔",
+ "description":"HEAVY CHECK MARK",
+ "flagged":false,
+ "keywords":[
+ "check",
+ "mark"
+ ]
+ },
+ {
+ "no":1396,
+ "code":"U+2716",
+ "emoji":"✖",
+ "description":"HEAVY MULTIPLICATION X",
+ "flagged":false,
+ "keywords":[
+ "cancel",
+ "multiplication",
+ "multiply",
+ "x"
+ ]
+ },
+ {
+ "no":1397,
+ "code":"U+274C",
+ "emoji":"❌",
+ "description":"CROSS MARK",
+ "flagged":false,
+ "keywords":[
+ "cancel",
+ "mark",
+ "multiplication",
+ "multiply",
+ "x"
+ ]
+ },
+ {
+ "no":1398,
+ "code":"U+274E",
+ "emoji":"❎",
+ "description":"NEGATIVE SQUARED CROSS MARK≊ cross mark button",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "square"
+ ]
+ },
+ {
+ "no":1399,
+ "code":"U+2795",
+ "emoji":"➕",
+ "description":"HEAVY PLUS SIGN",
+ "flagged":false,
+ "keywords":[
+ "math",
+ "plus"
+ ]
+ },
+ {
+ "no":1400,
+ "code":"U+2796",
+ "emoji":"➖",
+ "description":"HEAVY MINUS SIGN",
+ "flagged":false,
+ "keywords":[
+ "math",
+ "minus"
+ ]
+ },
+ {
+ "no":1401,
+ "code":"U+2797",
+ "emoji":"➗",
+ "description":"HEAVY DIVISION SIGN",
+ "flagged":false,
+ "keywords":[
+ "division",
+ "math"
+ ]
+ },
+ {
+ "no":1402,
+ "code":"U+27B0",
+ "emoji":"➰",
+ "description":"CURLY LOOP",
+ "flagged":false,
+ "keywords":[
+ "curl",
+ "loop"
+ ]
+ },
+ {
+ "no":1403,
+ "code":"U+27BF",
+ "emoji":"➿",
+ "description":"DOUBLE CURLY LOOP",
+ "flagged":false,
+ "keywords":[
+ "curl",
+ "double",
+ "loop"
+ ]
+ },
+ {
+ "no":1404,
+ "code":"U+303D",
+ "emoji":"〽",
+ "description":"PART ALTERNATION MARK",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "part"
+ ]
+ },
+ {
+ "no":1405,
+ "code":"U+2733",
+ "emoji":"✳",
+ "description":"EIGHT SPOKED ASTERISK≊ eight-spoked asterisk",
+ "flagged":false,
+ "keywords":[
+ "asterisk"
+ ]
+ },
+ {
+ "no":1406,
+ "code":"U+2734",
+ "emoji":"✴",
+ "description":"EIGHT POINTED BLACK STAR≊ eight-pointed star",
+ "flagged":false,
+ "keywords":[
+ "star"
+ ]
+ },
+ {
+ "no":1407,
+ "code":"U+2747",
+ "emoji":"❇",
+ "description":"SPARKLE",
+ "flagged":false,
+ "keywords":[
+ "sparkle"
+ ]
+ },
+ {
+ "no":1408,
+ "code":"U+203C",
+ "emoji":"‼",
+ "description":"DOUBLE EXCLAMATION MARK",
+ "flagged":false,
+ "keywords":[
+ "bangbang",
+ "exclamation",
+ "mark",
+ "punctuation"
+ ]
+ },
+ {
+ "no":1409,
+ "code":"U+2049",
+ "emoji":"⁉",
+ "description":"EXCLAMATION QUESTION MARK",
+ "flagged":false,
+ "keywords":[
+ "exclamation",
+ "interrobang",
+ "mark",
+ "punctuation",
+ "question"
+ ]
+ },
+ {
+ "no":1410,
+ "code":"U+2753",
+ "emoji":"❓",
+ "description":"BLACK QUESTION MARK ORNAMENT≊ question mark",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "punctuation",
+ "question"
+ ]
+ },
+ {
+ "no":1411,
+ "code":"U+2754",
+ "emoji":"❔",
+ "description":"WHITE QUESTION MARK ORNAMENT≊ white question mark",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "outlined",
+ "punctuation",
+ "question"
+ ]
+ },
+ {
+ "no":1412,
+ "code":"U+2755",
+ "emoji":"❕",
+ "description":"WHITE EXCLAMATION MARK ORNAMENT≊ white exclamation mark",
+ "flagged":false,
+ "keywords":[
+ "exclamation",
+ "mark",
+ "outlined",
+ "punctuation"
+ ]
+ },
+ {
+ "no":1413,
+ "code":"U+2757",
+ "emoji":"❗",
+ "description":"HEAVY EXCLAMATION MARK SYMBOL≊ exclamation mark",
+ "flagged":false,
+ "keywords":[
+ "exclamation",
+ "mark",
+ "punctuation"
+ ]
+ },
+ {
+ "no":1414,
+ "code":"U+3030",
+ "emoji":"〰",
+ "description":"WAVY DASH",
+ "flagged":false,
+ "keywords":[
+ "dash",
+ "punctuation",
+ "wavy"
+ ]
+ },
+ {
+ "no":1415,
+ "code":"U+00A9",
+ "emoji":"©",
+ "description":"COPYRIGHT SIGN≊ copyright",
+ "flagged":false,
+ "keywords":[
+ "copyright"
+ ]
+ },
+ {
+ "no":1416,
+ "code":"U+00AE",
+ "emoji":"®",
+ "description":"REGISTERED SIGN≊ registered",
+ "flagged":false,
+ "keywords":[
+ "registered"
+ ]
+ },
+ {
+ "no":1417,
+ "code":"U+2122",
+ "emoji":"™",
+ "description":"TRADE MARK SIGN≊ trade mark",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "tm",
+ "trademark"
+ ]
+ },
+ {
+ "no":1418,
+ "code":"U+2648",
+ "emoji":"♈",
+ "description":"ARIES",
+ "flagged":false,
+ "keywords":[
+ "aries",
+ "ram",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1419,
+ "code":"U+2649",
+ "emoji":"♉",
+ "description":"TAURUS",
+ "flagged":false,
+ "keywords":[
+ "bull",
+ "ox",
+ "taurus",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1420,
+ "code":"U+264A",
+ "emoji":"♊",
+ "description":"GEMINI",
+ "flagged":false,
+ "keywords":[
+ "gemini",
+ "twins",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1421,
+ "code":"U+264B",
+ "emoji":"♋",
+ "description":"CANCER",
+ "flagged":false,
+ "keywords":[
+ "cancer",
+ "crab",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1422,
+ "code":"U+264C",
+ "emoji":"♌",
+ "description":"LEO",
+ "flagged":false,
+ "keywords":[
+ "leo",
+ "lion",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1423,
+ "code":"U+264D",
+ "emoji":"♍",
+ "description":"VIRGO",
+ "flagged":false,
+ "keywords":[
+ "maiden",
+ "virgin",
+ "virgo",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1424,
+ "code":"U+264E",
+ "emoji":"♎",
+ "description":"LIBRA",
+ "flagged":false,
+ "keywords":[
+ "balance",
+ "justice",
+ "libra",
+ "scales",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1425,
+ "code":"U+264F",
+ "emoji":"♏",
+ "description":"SCORPIUS",
+ "flagged":false,
+ "keywords":[
+ "scorpio",
+ "scorpion",
+ "scorpius",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1426,
+ "code":"U+2650",
+ "emoji":"♐",
+ "description":"SAGITTARIUS",
+ "flagged":false,
+ "keywords":[
+ "archer",
+ "sagittarius",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1427,
+ "code":"U+2651",
+ "emoji":"♑",
+ "description":"CAPRICORN",
+ "flagged":false,
+ "keywords":[
+ "capricorn",
+ "goat",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1428,
+ "code":"U+2652",
+ "emoji":"♒",
+ "description":"AQUARIUS",
+ "flagged":false,
+ "keywords":[
+ "aquarius",
+ "bearer",
+ "water",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1429,
+ "code":"U+2653",
+ "emoji":"♓",
+ "description":"PISCES",
+ "flagged":false,
+ "keywords":[
+ "fish",
+ "pisces",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1430,
+ "code":"U+26CE",
+ "emoji":"⛎",
+ "description":"OPHIUCHUS",
+ "flagged":false,
+ "keywords":[
+ "bearer",
+ "ophiuchus",
+ "serpent",
+ "snake",
+ "zodiac"
+ ]
+ },
+ {
+ "no":1431,
+ "code":"U+1F500",
+ "emoji":"🔀",
+ "description":"TWISTED RIGHTWARDS ARROWS≊ shuffle tracks button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "crossed"
+ ]
+ },
+ {
+ "no":1432,
+ "code":"U+1F501",
+ "emoji":"🔁",
+ "description":"CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS≊ repeat button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "clockwise",
+ "repeat"
+ ]
+ },
+ {
+ "no":1433,
+ "code":"U+1F502",
+ "emoji":"🔂",
+ "description":"CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY≊ repeat single button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "clockwise",
+ "once"
+ ]
+ },
+ {
+ "no":1434,
+ "code":"U+25B6",
+ "emoji":"▶",
+ "description":"BLACK RIGHT-POINTING TRIANGLE≊ play button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "play",
+ "right",
+ "triangle"
+ ]
+ },
+ {
+ "no":1435,
+ "code":"U+23E9",
+ "emoji":"⏩",
+ "description":"BLACK RIGHT-POINTING DOUBLE TRIANGLE≊ fast-forword button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "double",
+ "fast",
+ "forward"
+ ]
+ },
+ {
+ "no":1436,
+ "code":"U+23ED",
+ "emoji":"⏭",
+ "description":"BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR≊ next track button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "next scene",
+ "next track",
+ "triangle"
+ ]
+ },
+ {
+ "no":1437,
+ "code":"U+23EF",
+ "emoji":"⏯",
+ "description":"BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR≊ play or pause button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "pause",
+ "play",
+ "right",
+ "triangle"
+ ]
+ },
+ {
+ "no":1438,
+ "code":"U+25C0",
+ "emoji":"◀",
+ "description":"BLACK LEFT-POINTING TRIANGLE≊ reverse button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "left",
+ "reverse",
+ "triangle"
+ ]
+ },
+ {
+ "no":1439,
+ "code":"U+23EA",
+ "emoji":"⏪",
+ "description":"BLACK LEFT-POINTING DOUBLE TRIANGLE≊ fast reverse button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "double",
+ "rewind"
+ ]
+ },
+ {
+ "no":1440,
+ "code":"U+23EE",
+ "emoji":"⏮",
+ "description":"BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR≊ last track button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "previous scene",
+ "previous track",
+ "triangle"
+ ]
+ },
+ {
+ "no":1441,
+ "code":"U+1F53C",
+ "emoji":"🔼",
+ "description":"UP-POINTING SMALL RED TRIANGLE≊ up button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "button",
+ "red"
+ ]
+ },
+ {
+ "no":1442,
+ "code":"U+23EB",
+ "emoji":"⏫",
+ "description":"BLACK UP-POINTING DOUBLE TRIANGLE≊ fast up button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "double"
+ ]
+ },
+ {
+ "no":1443,
+ "code":"U+1F53D",
+ "emoji":"🔽",
+ "description":"DOWN-POINTING SMALL RED TRIANGLE≊ down button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "button",
+ "down",
+ "red"
+ ]
+ },
+ {
+ "no":1444,
+ "code":"U+23EC",
+ "emoji":"⏬",
+ "description":"BLACK DOWN-POINTING DOUBLE TRIANGLE≊ fast down button",
+ "flagged":false,
+ "keywords":[
+ "arrow",
+ "double",
+ "down"
+ ]
+ },
+ {
+ "no":1445,
+ "code":"U+23F8",
+ "emoji":"⏸",
+ "description":"DOUBLE VERTICAL BAR≊ pause button",
+ "flagged":false,
+ "keywords":[
+ "bar",
+ "double",
+ "pause",
+ "vertical"
+ ]
+ },
+ {
+ "no":1446,
+ "code":"U+23F9",
+ "emoji":"⏹",
+ "description":"BLACK SQUARE FOR STOP≊ stop button",
+ "flagged":false,
+ "keywords":[
+ "square",
+ "stop"
+ ]
+ },
+ {
+ "no":1447,
+ "code":"U+23FA",
+ "emoji":"⏺",
+ "description":"BLACK CIRCLE FOR RECORD≊ record button",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "record"
+ ]
+ },
+ {
+ "no":1448,
+ "code":"U+23CF",
+ "emoji":"⏏",
+ "description":"EJECT SYMBOL≊ eject button",
+ "flagged":true,
+ "keywords":[
+ "eject"
+ ]
+ },
+ {
+ "no":1449,
+ "code":"U+1F3A6",
+ "emoji":"🎦",
+ "description":"CINEMA",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "camera",
+ "cinema",
+ "entertainment",
+ "film",
+ "movie"
+ ]
+ },
+ {
+ "no":1450,
+ "code":"U+1F505",
+ "emoji":"🔅",
+ "description":"LOW BRIGHTNESS SYMBOL≊ dim button",
+ "flagged":false,
+ "keywords":[
+ "brightness",
+ "dim",
+ "low"
+ ]
+ },
+ {
+ "no":1451,
+ "code":"U+1F506",
+ "emoji":"🔆",
+ "description":"HIGH BRIGHTNESS SYMBOL≊ bright button",
+ "flagged":false,
+ "keywords":[
+ "bright",
+ "brightness"
+ ]
+ },
+ {
+ "no":1452,
+ "code":"U+1F4F6",
+ "emoji":"📶",
+ "description":"ANTENNA WITH BARS≊ antenna bars",
+ "flagged":false,
+ "keywords":[
+ "antenna",
+ "bar",
+ "cell",
+ "communication",
+ "mobile",
+ "phone",
+ "signal",
+ "telephone"
+ ]
+ },
+ {
+ "no":1453,
+ "code":"U+1F4F3",
+ "emoji":"📳",
+ "description":"VIBRATION MODE",
+ "flagged":false,
+ "keywords":[
+ "cell",
+ "communication",
+ "mobile",
+ "mode",
+ "phone",
+ "telephone",
+ "vibration"
+ ]
+ },
+ {
+ "no":1454,
+ "code":"U+1F4F4",
+ "emoji":"📴",
+ "description":"MOBILE PHONE OFF",
+ "flagged":false,
+ "keywords":[
+ "cell",
+ "communication",
+ "mobile",
+ "off",
+ "phone",
+ "telephone"
+ ]
+ },
+ {
+ "no":1455,
+ "code":"U+0023 U+FE0F U+20E3",
+ "emoji":"#️⃣",
+ "description":"Keycap NUMBER SIGN",
+ "flagged":false,
+ "keywords":[
+ "hash",
+ "keycap",
+ "pound"
+ ]
+ },
+ {
+ "no":1456,
+ "code":"U+002A U+FE0F U+20E3",
+ "emoji":"*️⃣",
+ "description":"Keycap ASTERISK",
+ "flagged":false,
+ "keywords":[
+ "asterisk",
+ "keycap",
+ "star"
+ ]
+ },
+ {
+ "no":1457,
+ "code":"U+0030 U+FE0F U+20E3",
+ "emoji":"0️⃣",
+ "description":"Keycap DIGIT ZERO",
+ "flagged":false,
+ "keywords":[
+ "0",
+ "keycap",
+ "zero"
+ ]
+ },
+ {
+ "no":1458,
+ "code":"U+0031 U+FE0F U+20E3",
+ "emoji":"1️⃣",
+ "description":"Keycap DIGIT ONE",
+ "flagged":false,
+ "keywords":[
+ "1",
+ "keycap",
+ "one"
+ ]
+ },
+ {
+ "no":1459,
+ "code":"U+0032 U+FE0F U+20E3",
+ "emoji":"2️⃣",
+ "description":"Keycap DIGIT TWO",
+ "flagged":false,
+ "keywords":[
+ "2",
+ "keycap",
+ "two"
+ ]
+ },
+ {
+ "no":1460,
+ "code":"U+0033 U+FE0F U+20E3",
+ "emoji":"3️⃣",
+ "description":"Keycap DIGIT THREE",
+ "flagged":false,
+ "keywords":[
+ "3",
+ "keycap",
+ "three"
+ ]
+ },
+ {
+ "no":1461,
+ "code":"U+0034 U+FE0F U+20E3",
+ "emoji":"4️⃣",
+ "description":"Keycap DIGIT FOUR",
+ "flagged":false,
+ "keywords":[
+ "4",
+ "four",
+ "keycap"
+ ]
+ },
+ {
+ "no":1462,
+ "code":"U+0035 U+FE0F U+20E3",
+ "emoji":"5️⃣",
+ "description":"Keycap DIGIT FIVE",
+ "flagged":false,
+ "keywords":[
+ "5",
+ "five",
+ "keycap"
+ ]
+ },
+ {
+ "no":1463,
+ "code":"U+0036 U+FE0F U+20E3",
+ "emoji":"6️⃣",
+ "description":"Keycap DIGIT SIX",
+ "flagged":false,
+ "keywords":[
+ "6",
+ "keycap",
+ "six"
+ ]
+ },
+ {
+ "no":1464,
+ "code":"U+0037 U+FE0F U+20E3",
+ "emoji":"7️⃣",
+ "description":"Keycap DIGIT SEVEN",
+ "flagged":false,
+ "keywords":[
+ "7",
+ "keycap",
+ "seven"
+ ]
+ },
+ {
+ "no":1465,
+ "code":"U+0038 U+FE0F U+20E3",
+ "emoji":"8️⃣",
+ "description":"Keycap DIGIT EIGHT",
+ "flagged":false,
+ "keywords":[
+ "8",
+ "eight",
+ "keycap"
+ ]
+ },
+ {
+ "no":1466,
+ "code":"U+0039 U+FE0F U+20E3",
+ "emoji":"9️⃣",
+ "description":"Keycap DIGIT NINE",
+ "flagged":false,
+ "keywords":[
+ "9",
+ "keycap",
+ "nine"
+ ]
+ },
+ {
+ "no":1467,
+ "code":"U+1F51F",
+ "emoji":"🔟",
+ "description":"KEYCAP TEN",
+ "flagged":false,
+ "keywords":[
+ "10",
+ "keycap",
+ "ten"
+ ]
+ },
+ {
+ "no":1468,
+ "code":"U+1F4AF",
+ "emoji":"💯",
+ "description":"HUNDRED POINTS SYMBOL≊ hundred points",
+ "flagged":false,
+ "keywords":[
+ "100",
+ "full",
+ "hundred",
+ "score"
+ ]
+ },
+ {
+ "no":1469,
+ "code":"U+1F520",
+ "emoji":"🔠",
+ "description":"INPUT SYMBOL FOR LATIN CAPITAL LETTERS≊ input latin uppercase",
+ "flagged":false,
+ "keywords":[
+ "input",
+ "latin",
+ "letters",
+ "uppercase"
+ ]
+ },
+ {
+ "no":1470,
+ "code":"U+1F521",
+ "emoji":"🔡",
+ "description":"INPUT SYMBOL FOR LATIN SMALL LETTERS≊ input latin lowercase",
+ "flagged":false,
+ "keywords":[
+ "abcd",
+ "input",
+ "latin",
+ "letters",
+ "lowercase"
+ ]
+ },
+ {
+ "no":1471,
+ "code":"U+1F522",
+ "emoji":"🔢",
+ "description":"INPUT SYMBOL FOR NUMBERS≊ input numbers",
+ "flagged":false,
+ "keywords":[
+ "1234",
+ "input",
+ "numbers"
+ ]
+ },
+ {
+ "no":1472,
+ "code":"U+1F523",
+ "emoji":"🔣",
+ "description":"INPUT SYMBOL FOR SYMBOLS≊ input symbols",
+ "flagged":false,
+ "keywords":[
+ "input"
+ ]
+ },
+ {
+ "no":1473,
+ "code":"U+1F524",
+ "emoji":"🔤",
+ "description":"INPUT SYMBOL FOR LATIN LETTERS≊ input latin letters",
+ "flagged":false,
+ "keywords":[
+ "abc",
+ "alphabet",
+ "input",
+ "latin",
+ "letters"
+ ]
+ },
+ {
+ "no":1474,
+ "code":"U+1F170",
+ "emoji":"🅰",
+ "description":"NEGATIVE SQUARED LATIN CAPITAL LETTER A≊ a button",
+ "flagged":false,
+ "keywords":[
+ "a",
+ "blood"
+ ]
+ },
+ {
+ "no":1475,
+ "code":"U+1F18E",
+ "emoji":"🆎",
+ "description":"NEGATIVE SQUARED AB≊ ab button",
+ "flagged":false,
+ "keywords":[
+ "ab",
+ "blood"
+ ]
+ },
+ {
+ "no":1476,
+ "code":"U+1F171",
+ "emoji":"🅱",
+ "description":"NEGATIVE SQUARED LATIN CAPITAL LETTER B≊ b button",
+ "flagged":false,
+ "keywords":[
+ "b",
+ "blood"
+ ]
+ },
+ {
+ "no":1477,
+ "code":"U+1F191",
+ "emoji":"🆑",
+ "description":"SQUARED CL",
+ "flagged":false,
+ "keywords":[
+ "cl"
+ ]
+ },
+ {
+ "no":1478,
+ "code":"U+1F192",
+ "emoji":"🆒",
+ "description":"SQUARED COOL",
+ "flagged":false,
+ "keywords":[
+ "cool"
+ ]
+ },
+ {
+ "no":1479,
+ "code":"U+1F193",
+ "emoji":"🆓",
+ "description":"SQUARED FREE",
+ "flagged":false,
+ "keywords":[
+ "free"
+ ]
+ },
+ {
+ "no":1480,
+ "code":"U+2139",
+ "emoji":"ℹ",
+ "description":"INFORMATION SOURCE",
+ "flagged":false,
+ "keywords":[
+ "i",
+ "information"
+ ]
+ },
+ {
+ "no":1481,
+ "code":"U+1F194",
+ "emoji":"🆔",
+ "description":"SQUARED ID",
+ "flagged":false,
+ "keywords":[
+ "id",
+ "identity"
+ ]
+ },
+ {
+ "no":1482,
+ "code":"U+24C2",
+ "emoji":"Ⓜ",
+ "description":"CIRCLED LATIN CAPITAL LETTER M≊ circled letter m",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "m"
+ ]
+ },
+ {
+ "no":1483,
+ "code":"U+1F195",
+ "emoji":"🆕",
+ "description":"SQUARED NEW",
+ "flagged":false,
+ "keywords":[
+ "new"
+ ]
+ },
+ {
+ "no":1484,
+ "code":"U+1F196",
+ "emoji":"🆖",
+ "description":"SQUARED NG",
+ "flagged":false,
+ "keywords":[
+ "ng"
+ ]
+ },
+ {
+ "no":1485,
+ "code":"U+1F17E",
+ "emoji":"🅾",
+ "description":"NEGATIVE SQUARED LATIN CAPITAL LETTER O≊ o button",
+ "flagged":false,
+ "keywords":[
+ "blood",
+ "o"
+ ]
+ },
+ {
+ "no":1486,
+ "code":"U+1F197",
+ "emoji":"🆗",
+ "description":"SQUARED OK",
+ "flagged":false,
+ "keywords":[
+ "ok"
+ ]
+ },
+ {
+ "no":1487,
+ "code":"U+1F17F",
+ "emoji":"🅿",
+ "description":"NEGATIVE SQUARED LATIN CAPITAL LETTER P≊ p button",
+ "flagged":false,
+ "keywords":[
+ "parking"
+ ]
+ },
+ {
+ "no":1488,
+ "code":"U+1F198",
+ "emoji":"🆘",
+ "description":"SQUARED SOS",
+ "flagged":false,
+ "keywords":[
+ "help",
+ "sos"
+ ]
+ },
+ {
+ "no":1489,
+ "code":"U+1F199",
+ "emoji":"🆙",
+ "description":"SQUARED UP WITH EXCLAMATION MARK≊ up! button",
+ "flagged":false,
+ "keywords":[
+ "mark",
+ "up"
+ ]
+ },
+ {
+ "no":1490,
+ "code":"U+1F19A",
+ "emoji":"🆚",
+ "description":"SQUARED VS",
+ "flagged":false,
+ "keywords":[
+ "versus",
+ "vs"
+ ]
+ },
+ {
+ "no":1491,
+ "code":"U+1F201",
+ "emoji":"🈁",
+ "description":"SQUARED KATAKANA KOKO",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1492,
+ "code":"U+1F202",
+ "emoji":"🈂",
+ "description":"SQUARED KATAKANA SA",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1493,
+ "code":"U+1F237",
+ "emoji":"🈷",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-6708≊ squared moon ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1494,
+ "code":"U+1F236",
+ "emoji":"🈶",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-6709≊ squared exist ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1495,
+ "code":"U+1F22F",
+ "emoji":"🈯",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-6307≊ squared finger ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1496,
+ "code":"U+1F250",
+ "emoji":"🉐",
+ "description":"CIRCLED IDEOGRAPH ADVANTAGE≊ circled advantage ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1497,
+ "code":"U+1F239",
+ "emoji":"🈹",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-5272≊ squared divide ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1498,
+ "code":"U+1F21A",
+ "emoji":"🈚",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-7121≊ squared negation ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1499,
+ "code":"U+1F232",
+ "emoji":"🈲",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-7981≊ squared prohibit ideograph",
+ "flagged":false,
+ "keywords":[
+ "japanese"
+ ]
+ },
+ {
+ "no":1500,
+ "code":"U+1F251",
+ "emoji":"🉑",
+ "description":"CIRCLED IDEOGRAPH ACCEPT≊ circled accept ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1501,
+ "code":"U+1F238",
+ "emoji":"🈸",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-7533≊ squared apply ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1502,
+ "code":"U+1F234",
+ "emoji":"🈴",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-5408≊ squared together ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1503,
+ "code":"U+1F233",
+ "emoji":"🈳",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-7A7A≊ squared empty ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1504,
+ "code":"U+3297",
+ "emoji":"㊗",
+ "description":"CIRCLED IDEOGRAPH CONGRATULATION≊ circled congratulate ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese",
+ "congratulation",
+ "congratulations",
+ "ideograph"
+ ]
+ },
+ {
+ "no":1505,
+ "code":"U+3299",
+ "emoji":"㊙",
+ "description":"CIRCLED IDEOGRAPH SECRET≊ circled secret ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese",
+ "ideograph",
+ "secret"
+ ]
+ },
+ {
+ "no":1506,
+ "code":"U+1F23A",
+ "emoji":"🈺",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-55B6≊ squared operating ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1507,
+ "code":"U+1F235",
+ "emoji":"🈵",
+ "description":"SQUARED CJK UNIFIED IDEOGRAPH-6E80≊ squared fullness ideograph",
+ "flagged":false,
+ "keywords":[
+ "chinese"
+ ]
+ },
+ {
+ "no":1508,
+ "code":"U+25AA",
+ "emoji":"▪",
+ "description":"BLACK SMALL SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1509,
+ "code":"U+25AB",
+ "emoji":"▫",
+ "description":"WHITE SMALL SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1510,
+ "code":"U+25FB",
+ "emoji":"◻",
+ "description":"WHITE MEDIUM SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1511,
+ "code":"U+25FC",
+ "emoji":"◼",
+ "description":"BLACK MEDIUM SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1512,
+ "code":"U+25FD",
+ "emoji":"◽",
+ "description":"WHITE MEDIUM SMALL SQUARE≊ white medium-small square",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1513,
+ "code":"U+25FE",
+ "emoji":"◾",
+ "description":"BLACK MEDIUM SMALL SQUARE≊ black medium-small square",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1514,
+ "code":"U+2B1B",
+ "emoji":"⬛",
+ "description":"BLACK LARGE SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1515,
+ "code":"U+2B1C",
+ "emoji":"⬜",
+ "description":"WHITE LARGE SQUARE",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1516,
+ "code":"U+1F536",
+ "emoji":"🔶",
+ "description":"LARGE ORANGE DIAMOND",
+ "flagged":false,
+ "keywords":[
+ "diamond",
+ "geometric",
+ "orange"
+ ]
+ },
+ {
+ "no":1517,
+ "code":"U+1F537",
+ "emoji":"🔷",
+ "description":"LARGE BLUE DIAMOND",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "diamond",
+ "geometric"
+ ]
+ },
+ {
+ "no":1518,
+ "code":"U+1F538",
+ "emoji":"🔸",
+ "description":"SMALL ORANGE DIAMOND",
+ "flagged":false,
+ "keywords":[
+ "diamond",
+ "geometric",
+ "orange"
+ ]
+ },
+ {
+ "no":1519,
+ "code":"U+1F539",
+ "emoji":"🔹",
+ "description":"SMALL BLUE DIAMOND",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "diamond",
+ "geometric"
+ ]
+ },
+ {
+ "no":1520,
+ "code":"U+1F53A",
+ "emoji":"🔺",
+ "description":"UP-POINTING RED TRIANGLE≊ red triangle pointed up",
+ "flagged":false,
+ "keywords":[
+ "geometric",
+ "red"
+ ]
+ },
+ {
+ "no":1521,
+ "code":"U+1F53B",
+ "emoji":"🔻",
+ "description":"DOWN-POINTING RED TRIANGLE≊ red triangle pointed down",
+ "flagged":false,
+ "keywords":[
+ "down",
+ "geometric",
+ "red"
+ ]
+ },
+ {
+ "no":1522,
+ "code":"U+1F4A0",
+ "emoji":"💠",
+ "description":"DIAMOND SHAPE WITH A DOT INSIDE≊ diamond with a dot",
+ "flagged":false,
+ "keywords":[
+ "comic",
+ "diamond",
+ "geometric",
+ "inside"
+ ]
+ },
+ {
+ "no":1523,
+ "code":"U+1F518",
+ "emoji":"🔘",
+ "description":"RADIO BUTTON",
+ "flagged":false,
+ "keywords":[
+ "button",
+ "geometric",
+ "radio"
+ ]
+ },
+ {
+ "no":1524,
+ "code":"U+1F532",
+ "emoji":"🔲",
+ "description":"BLACK SQUARE BUTTON",
+ "flagged":false,
+ "keywords":[
+ "button",
+ "geometric",
+ "square"
+ ]
+ },
+ {
+ "no":1525,
+ "code":"U+1F533",
+ "emoji":"🔳",
+ "description":"WHITE SQUARE BUTTON",
+ "flagged":false,
+ "keywords":[
+ "button",
+ "geometric",
+ "outlined",
+ "square"
+ ]
+ },
+ {
+ "no":1526,
+ "code":"U+26AA",
+ "emoji":"⚪",
+ "description":"MEDIUM WHITE CIRCLE≊ white circle",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "geometric"
+ ]
+ },
+ {
+ "no":1527,
+ "code":"U+26AB",
+ "emoji":"⚫",
+ "description":"MEDIUM BLACK CIRCLE≊ black circle",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "geometric"
+ ]
+ },
+ {
+ "no":1528,
+ "code":"U+1F534",
+ "emoji":"🔴",
+ "description":"LARGE RED CIRCLE≊ red circle",
+ "flagged":false,
+ "keywords":[
+ "circle",
+ "geometric",
+ "red"
+ ]
+ },
+ {
+ "no":1529,
+ "code":"U+1F535",
+ "emoji":"🔵",
+ "description":"LARGE BLUE CIRCLE≊ blue circle",
+ "flagged":false,
+ "keywords":[
+ "blue",
+ "circle",
+ "geometric"
+ ]
+ }
+ ],
+ "Flags":[
+ {
+ "no":1530,
+ "code":"U+1F3C1",
+ "emoji":"🏁",
+ "description":"CHEQUERED FLAG",
+ "flagged":false,
+ "keywords":[
+ "checkered",
+ "chequered",
+ "flag",
+ "racing"
+ ]
+ },
+ {
+ "no":1531,
+ "code":"U+1F6A9",
+ "emoji":"🚩",
+ "description":"TRIANGULAR FLAG ON POST≊ triangular flag",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "post"
+ ]
+ },
+ {
+ "no":1532,
+ "code":"U+1F38C",
+ "emoji":"🎌",
+ "description":"CROSSED FLAGS",
+ "flagged":false,
+ "keywords":[
+ "activity",
+ "celebration",
+ "cross",
+ "crossed",
+ "flag",
+ "japanese"
+ ]
+ },
+ {
+ "no":1533,
+ "code":"U+1F3F4",
+ "emoji":"🏴",
+ "description":"WAVING BLACK FLAG",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "waving"
+ ]
+ },
+ {
+ "no":1534,
+ "code":"U+1F3F3",
+ "emoji":"🏳",
+ "description":"WAVING WHITE FLAG",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "waving"
+ ]
+ },
+ {
+ "no":1535,
+ "code":"U+1F1E6 U+1F1E8",
+ "emoji":"🇦🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "ascension",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1536,
+ "code":"U+1F1E6 U+1F1E9",
+ "emoji":"🇦🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "andorra",
+ "flag"
+ ]
+ },
+ {
+ "no":1537,
+ "code":"U+1F1E6 U+1F1EA",
+ "emoji":"🇦🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "emirates",
+ "flag",
+ "uae",
+ "united"
+ ]
+ },
+ {
+ "no":1538,
+ "code":"U+1F1E6 U+1F1EB",
+ "emoji":"🇦🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "afghanistan",
+ "flag"
+ ]
+ },
+ {
+ "no":1539,
+ "code":"U+1F1E6 U+1F1EC",
+ "emoji":"🇦🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "antigua",
+ "barbuda",
+ "flag"
+ ]
+ },
+ {
+ "no":1540,
+ "code":"U+1F1E6 U+1F1EE",
+ "emoji":"🇦🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "anguilla",
+ "flag"
+ ]
+ },
+ {
+ "no":1541,
+ "code":"U+1F1E6 U+1F1F1",
+ "emoji":"🇦🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "albania",
+ "flag"
+ ]
+ },
+ {
+ "no":1542,
+ "code":"U+1F1E6 U+1F1F2",
+ "emoji":"🇦🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "armenia",
+ "flag"
+ ]
+ },
+ {
+ "no":1543,
+ "code":"U+1F1E6 U+1F1F4",
+ "emoji":"🇦🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "angola",
+ "flag"
+ ]
+ },
+ {
+ "no":1544,
+ "code":"U+1F1E6 U+1F1F6",
+ "emoji":"🇦🇶",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER Q",
+ "flagged":false,
+ "keywords":[
+ "antarctica",
+ "flag"
+ ]
+ },
+ {
+ "no":1545,
+ "code":"U+1F1E6 U+1F1F7",
+ "emoji":"🇦🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "argentina",
+ "flag"
+ ]
+ },
+ {
+ "no":1546,
+ "code":"U+1F1E6 U+1F1F8",
+ "emoji":"🇦🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "american",
+ "flag",
+ "samoa"
+ ]
+ },
+ {
+ "no":1547,
+ "code":"U+1F1E6 U+1F1F9",
+ "emoji":"🇦🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "austria",
+ "flag"
+ ]
+ },
+ {
+ "no":1548,
+ "code":"U+1F1E6 U+1F1FA",
+ "emoji":"🇦🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "australia",
+ "flag"
+ ]
+ },
+ {
+ "no":1549,
+ "code":"U+1F1E6 U+1F1FC",
+ "emoji":"🇦🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "aruba",
+ "flag"
+ ]
+ },
+ {
+ "no":1550,
+ "code":"U+1F1E6 U+1F1FD",
+ "emoji":"🇦🇽",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER X",
+ "flagged":false,
+ "keywords":[
+ "åland",
+ "flag"
+ ]
+ },
+ {
+ "no":1551,
+ "code":"U+1F1E6 U+1F1FF",
+ "emoji":"🇦🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER A, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "azerbaijan",
+ "flag"
+ ]
+ },
+ {
+ "no":1552,
+ "code":"U+1F1E7 U+1F1E6",
+ "emoji":"🇧🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "bosnia",
+ "flag",
+ "herzegovina"
+ ]
+ },
+ {
+ "no":1553,
+ "code":"U+1F1E7 U+1F1E7",
+ "emoji":"🇧🇧",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER B",
+ "flagged":false,
+ "keywords":[
+ "barbados",
+ "flag"
+ ]
+ },
+ {
+ "no":1554,
+ "code":"U+1F1E7 U+1F1E9",
+ "emoji":"🇧🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "bangladesh",
+ "flag"
+ ]
+ },
+ {
+ "no":1555,
+ "code":"U+1F1E7 U+1F1EA",
+ "emoji":"🇧🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "belgium",
+ "flag"
+ ]
+ },
+ {
+ "no":1556,
+ "code":"U+1F1E7 U+1F1EB",
+ "emoji":"🇧🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "burkina faso",
+ "flag"
+ ]
+ },
+ {
+ "no":1557,
+ "code":"U+1F1E7 U+1F1EC",
+ "emoji":"🇧🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "bulgaria",
+ "flag"
+ ]
+ },
+ {
+ "no":1558,
+ "code":"U+1F1E7 U+1F1ED",
+ "emoji":"🇧🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "bahrain",
+ "flag"
+ ]
+ },
+ {
+ "no":1559,
+ "code":"U+1F1E7 U+1F1EE",
+ "emoji":"🇧🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "burundi",
+ "flag"
+ ]
+ },
+ {
+ "no":1560,
+ "code":"U+1F1E7 U+1F1EF",
+ "emoji":"🇧🇯",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER J",
+ "flagged":false,
+ "keywords":[
+ "benin",
+ "flag"
+ ]
+ },
+ {
+ "no":1561,
+ "code":"U+1F1E7 U+1F1F1",
+ "emoji":"🇧🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "barthelemy",
+ "barthélemy",
+ "flag",
+ "saint"
+ ]
+ },
+ {
+ "no":1562,
+ "code":"U+1F1E7 U+1F1F2",
+ "emoji":"🇧🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "bermuda",
+ "flag"
+ ]
+ },
+ {
+ "no":1563,
+ "code":"U+1F1E7 U+1F1F3",
+ "emoji":"🇧🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "brunei",
+ "darussalam",
+ "flag"
+ ]
+ },
+ {
+ "no":1564,
+ "code":"U+1F1E7 U+1F1F4",
+ "emoji":"🇧🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "bolivia",
+ "flag"
+ ]
+ },
+ {
+ "no":1565,
+ "code":"U+1F1E7 U+1F1F6",
+ "emoji":"🇧🇶",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER Q",
+ "flagged":false,
+ "keywords":[
+ "bonaire",
+ "caribbean",
+ "eustatius",
+ "flag",
+ "netherlands",
+ "saba",
+ "sint"
+ ]
+ },
+ {
+ "no":1566,
+ "code":"U+1F1E7 U+1F1F7",
+ "emoji":"🇧🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "brazil",
+ "flag"
+ ]
+ },
+ {
+ "no":1567,
+ "code":"U+1F1E7 U+1F1F8",
+ "emoji":"🇧🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "bahamas",
+ "flag"
+ ]
+ },
+ {
+ "no":1568,
+ "code":"U+1F1E7 U+1F1F9",
+ "emoji":"🇧🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "bhutan",
+ "flag"
+ ]
+ },
+ {
+ "no":1569,
+ "code":"U+1F1E7 U+1F1FB",
+ "emoji":"🇧🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "bouvet",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1570,
+ "code":"U+1F1E7 U+1F1FC",
+ "emoji":"🇧🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "botswana",
+ "flag"
+ ]
+ },
+ {
+ "no":1571,
+ "code":"U+1F1E7 U+1F1FE",
+ "emoji":"🇧🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "belarus",
+ "flag"
+ ]
+ },
+ {
+ "no":1572,
+ "code":"U+1F1E7 U+1F1FF",
+ "emoji":"🇧🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER B, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "belize",
+ "flag"
+ ]
+ },
+ {
+ "no":1573,
+ "code":"U+1F1E8 U+1F1E6",
+ "emoji":"🇨🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "canada",
+ "flag"
+ ]
+ },
+ {
+ "no":1574,
+ "code":"U+1F1E8 U+1F1E8",
+ "emoji":"🇨🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "cocos",
+ "flag",
+ "island",
+ "keeling"
+ ]
+ },
+ {
+ "no":1575,
+ "code":"U+1F1E8 U+1F1E9",
+ "emoji":"🇨🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "congo",
+ "congo-kinshasa",
+ "democratic republic of congo",
+ "drc",
+ "flag",
+ "kinshasa",
+ "republic"
+ ]
+ },
+ {
+ "no":1576,
+ "code":"U+1F1E8 U+1F1EB",
+ "emoji":"🇨🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "central african republic",
+ "flag",
+ "republic"
+ ]
+ },
+ {
+ "no":1577,
+ "code":"U+1F1E8 U+1F1EC",
+ "emoji":"🇨🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "brazzaville",
+ "congo",
+ "congo republic",
+ "congo-brazzaville",
+ "flag",
+ "republic",
+ "republic of the congo"
+ ]
+ },
+ {
+ "no":1578,
+ "code":"U+1F1E8 U+1F1ED",
+ "emoji":"🇨🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "switzerland"
+ ]
+ },
+ {
+ "no":1579,
+ "code":"U+1F1E8 U+1F1EE",
+ "emoji":"🇨🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "cote ivoire",
+ "côte ivoire",
+ "flag",
+ "ivory coast"
+ ]
+ },
+ {
+ "no":1580,
+ "code":"U+1F1E8 U+1F1F0",
+ "emoji":"🇨🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "cook",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1581,
+ "code":"U+1F1E8 U+1F1F1",
+ "emoji":"🇨🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "chile",
+ "flag"
+ ]
+ },
+ {
+ "no":1582,
+ "code":"U+1F1E8 U+1F1F2",
+ "emoji":"🇨🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "cameroon",
+ "flag"
+ ]
+ },
+ {
+ "no":1583,
+ "code":"U+1F1E8 U+1F1F3",
+ "emoji":"🇨🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "china",
+ "flag"
+ ]
+ },
+ {
+ "no":1584,
+ "code":"U+1F1E8 U+1F1F4",
+ "emoji":"🇨🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "colombia",
+ "flag"
+ ]
+ },
+ {
+ "no":1585,
+ "code":"U+1F1E8 U+1F1F5",
+ "emoji":"🇨🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "clipperton",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1586,
+ "code":"U+1F1E8 U+1F1F7",
+ "emoji":"🇨🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "costa rica",
+ "flag"
+ ]
+ },
+ {
+ "no":1587,
+ "code":"U+1F1E8 U+1F1FA",
+ "emoji":"🇨🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "cuba",
+ "flag"
+ ]
+ },
+ {
+ "no":1588,
+ "code":"U+1F1E8 U+1F1FB",
+ "emoji":"🇨🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "cabo",
+ "cape",
+ "flag",
+ "verde"
+ ]
+ },
+ {
+ "no":1589,
+ "code":"U+1F1E8 U+1F1FC",
+ "emoji":"🇨🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "antilles",
+ "curacao",
+ "curaçao",
+ "flag"
+ ]
+ },
+ {
+ "no":1590,
+ "code":"U+1F1E8 U+1F1FD",
+ "emoji":"🇨🇽",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER X",
+ "flagged":false,
+ "keywords":[
+ "christmas",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1591,
+ "code":"U+1F1E8 U+1F1FE",
+ "emoji":"🇨🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "cyprus",
+ "flag"
+ ]
+ },
+ {
+ "no":1592,
+ "code":"U+1F1E8 U+1F1FF",
+ "emoji":"🇨🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER C, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "czech republic",
+ "flag"
+ ]
+ },
+ {
+ "no":1593,
+ "code":"U+1F1E9 U+1F1EA",
+ "emoji":"🇩🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "germany"
+ ]
+ },
+ {
+ "no":1594,
+ "code":"U+1F1E9 U+1F1EC",
+ "emoji":"🇩🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "diego garcia",
+ "flag"
+ ]
+ },
+ {
+ "no":1595,
+ "code":"U+1F1E9 U+1F1EF",
+ "emoji":"🇩🇯",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER J",
+ "flagged":false,
+ "keywords":[
+ "djibouti",
+ "flag"
+ ]
+ },
+ {
+ "no":1596,
+ "code":"U+1F1E9 U+1F1F0",
+ "emoji":"🇩🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "denmark",
+ "flag"
+ ]
+ },
+ {
+ "no":1597,
+ "code":"U+1F1E9 U+1F1F2",
+ "emoji":"🇩🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "dominica",
+ "flag"
+ ]
+ },
+ {
+ "no":1598,
+ "code":"U+1F1E9 U+1F1F4",
+ "emoji":"🇩🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "dominican republic",
+ "flag"
+ ]
+ },
+ {
+ "no":1599,
+ "code":"U+1F1E9 U+1F1FF",
+ "emoji":"🇩🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER D, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "algeria",
+ "flag"
+ ]
+ },
+ {
+ "no":1600,
+ "code":"U+1F1EA U+1F1E6",
+ "emoji":"🇪🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "ceuta",
+ "flag",
+ "melilla"
+ ]
+ },
+ {
+ "no":1601,
+ "code":"U+1F1EA U+1F1E8",
+ "emoji":"🇪🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "ecuador",
+ "flag"
+ ]
+ },
+ {
+ "no":1602,
+ "code":"U+1F1EA U+1F1EA",
+ "emoji":"🇪🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "estonia",
+ "flag"
+ ]
+ },
+ {
+ "no":1603,
+ "code":"U+1F1EA U+1F1EC",
+ "emoji":"🇪🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "egypt",
+ "flag"
+ ]
+ },
+ {
+ "no":1604,
+ "code":"U+1F1EA U+1F1ED",
+ "emoji":"🇪🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "sahara",
+ "west",
+ "western sahara"
+ ]
+ },
+ {
+ "no":1605,
+ "code":"U+1F1EA U+1F1F7",
+ "emoji":"🇪🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "eritrea",
+ "flag"
+ ]
+ },
+ {
+ "no":1606,
+ "code":"U+1F1EA U+1F1F8",
+ "emoji":"🇪🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "spain"
+ ]
+ },
+ {
+ "no":1607,
+ "code":"U+1F1EA U+1F1F9",
+ "emoji":"🇪🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "ethiopia",
+ "flag"
+ ]
+ },
+ {
+ "no":1608,
+ "code":"U+1F1EA U+1F1FA",
+ "emoji":"🇪🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER E, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "european union",
+ "flag"
+ ]
+ },
+ {
+ "no":1609,
+ "code":"U+1F1EB U+1F1EE",
+ "emoji":"🇫🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "finland",
+ "flag"
+ ]
+ },
+ {
+ "no":1610,
+ "code":"U+1F1EB U+1F1EF",
+ "emoji":"🇫🇯",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER J",
+ "flagged":false,
+ "keywords":[
+ "fiji",
+ "flag"
+ ]
+ },
+ {
+ "no":1611,
+ "code":"U+1F1EB U+1F1F0",
+ "emoji":"🇫🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "falkland",
+ "falklands",
+ "flag",
+ "island",
+ "islas",
+ "malvinas"
+ ]
+ },
+ {
+ "no":1612,
+ "code":"U+1F1EB U+1F1F2",
+ "emoji":"🇫🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "micronesia"
+ ]
+ },
+ {
+ "no":1613,
+ "code":"U+1F1EB U+1F1F4",
+ "emoji":"🇫🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "faroe",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1614,
+ "code":"U+1F1EB U+1F1F7",
+ "emoji":"🇫🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER F, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "france"
+ ]
+ },
+ {
+ "no":1615,
+ "code":"U+1F1EC U+1F1E6",
+ "emoji":"🇬🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "gabon"
+ ]
+ },
+ {
+ "no":1616,
+ "code":"U+1F1EC U+1F1E7",
+ "emoji":"🇬🇧",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER B",
+ "flagged":false,
+ "keywords":[
+ "britain",
+ "british",
+ "cornwall",
+ "england",
+ "flag",
+ "great britain",
+ "ireland",
+ "northern ireland",
+ "scotland",
+ "uk",
+ "union jack",
+ "united",
+ "united kingdom",
+ "wales"
+ ]
+ },
+ {
+ "no":1617,
+ "code":"U+1F1EC U+1F1E9",
+ "emoji":"🇬🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "grenada"
+ ]
+ },
+ {
+ "no":1618,
+ "code":"U+1F1EC U+1F1EA",
+ "emoji":"🇬🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "georgia"
+ ]
+ },
+ {
+ "no":1619,
+ "code":"U+1F1EC U+1F1EB",
+ "emoji":"🇬🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "french",
+ "guiana"
+ ]
+ },
+ {
+ "no":1620,
+ "code":"U+1F1EC U+1F1EC",
+ "emoji":"🇬🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guernsey"
+ ]
+ },
+ {
+ "no":1621,
+ "code":"U+1F1EC U+1F1ED",
+ "emoji":"🇬🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "ghana"
+ ]
+ },
+ {
+ "no":1622,
+ "code":"U+1F1EC U+1F1EE",
+ "emoji":"🇬🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "gibraltar"
+ ]
+ },
+ {
+ "no":1623,
+ "code":"U+1F1EC U+1F1F1",
+ "emoji":"🇬🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "greenland"
+ ]
+ },
+ {
+ "no":1624,
+ "code":"U+1F1EC U+1F1F2",
+ "emoji":"🇬🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "gambia"
+ ]
+ },
+ {
+ "no":1625,
+ "code":"U+1F1EC U+1F1F3",
+ "emoji":"🇬🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guinea"
+ ]
+ },
+ {
+ "no":1626,
+ "code":"U+1F1EC U+1F1F5",
+ "emoji":"🇬🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guadeloupe"
+ ]
+ },
+ {
+ "no":1627,
+ "code":"U+1F1EC U+1F1F6",
+ "emoji":"🇬🇶",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER Q",
+ "flagged":false,
+ "keywords":[
+ "equatorial guinea",
+ "flag",
+ "guinea"
+ ]
+ },
+ {
+ "no":1628,
+ "code":"U+1F1EC U+1F1F7",
+ "emoji":"🇬🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "greece"
+ ]
+ },
+ {
+ "no":1629,
+ "code":"U+1F1EC U+1F1F8",
+ "emoji":"🇬🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "georgia",
+ "island",
+ "south",
+ "south georgia",
+ "south sandwich"
+ ]
+ },
+ {
+ "no":1630,
+ "code":"U+1F1EC U+1F1F9",
+ "emoji":"🇬🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guatemala"
+ ]
+ },
+ {
+ "no":1631,
+ "code":"U+1F1EC U+1F1FA",
+ "emoji":"🇬🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guam"
+ ]
+ },
+ {
+ "no":1632,
+ "code":"U+1F1EC U+1F1FC",
+ "emoji":"🇬🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "bissau",
+ "flag",
+ "guinea"
+ ]
+ },
+ {
+ "no":1633,
+ "code":"U+1F1EC U+1F1FE",
+ "emoji":"🇬🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER G, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guyana"
+ ]
+ },
+ {
+ "no":1634,
+ "code":"U+1F1ED U+1F1F0",
+ "emoji":"🇭🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "china",
+ "flag",
+ "hong kong"
+ ]
+ },
+ {
+ "no":1635,
+ "code":"U+1F1ED U+1F1F2",
+ "emoji":"🇭🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "heard",
+ "island",
+ "mcdonald"
+ ]
+ },
+ {
+ "no":1636,
+ "code":"U+1F1ED U+1F1F3",
+ "emoji":"🇭🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "honduras"
+ ]
+ },
+ {
+ "no":1637,
+ "code":"U+1F1ED U+1F1F7",
+ "emoji":"🇭🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "croatia",
+ "flag"
+ ]
+ },
+ {
+ "no":1638,
+ "code":"U+1F1ED U+1F1F9",
+ "emoji":"🇭🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "haiti"
+ ]
+ },
+ {
+ "no":1639,
+ "code":"U+1F1ED U+1F1FA",
+ "emoji":"🇭🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER H, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "hungary"
+ ]
+ },
+ {
+ "no":1640,
+ "code":"U+1F1EE U+1F1E8",
+ "emoji":"🇮🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "canary",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1641,
+ "code":"U+1F1EE U+1F1E9",
+ "emoji":"🇮🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "indonesia"
+ ]
+ },
+ {
+ "no":1642,
+ "code":"U+1F1EE U+1F1EA",
+ "emoji":"🇮🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "ireland"
+ ]
+ },
+ {
+ "no":1643,
+ "code":"U+1F1EE U+1F1F1",
+ "emoji":"🇮🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "israel"
+ ]
+ },
+ {
+ "no":1644,
+ "code":"U+1F1EE U+1F1F2",
+ "emoji":"🇮🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "isle of man"
+ ]
+ },
+ {
+ "no":1645,
+ "code":"U+1F1EE U+1F1F3",
+ "emoji":"🇮🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "india"
+ ]
+ },
+ {
+ "no":1646,
+ "code":"U+1F1EE U+1F1F4",
+ "emoji":"🇮🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "british",
+ "chagos",
+ "flag",
+ "indian ocean",
+ "island"
+ ]
+ },
+ {
+ "no":1647,
+ "code":"U+1F1EE U+1F1F6",
+ "emoji":"🇮🇶",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER Q",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "iraq"
+ ]
+ },
+ {
+ "no":1648,
+ "code":"U+1F1EE U+1F1F7",
+ "emoji":"🇮🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "iran"
+ ]
+ },
+ {
+ "no":1649,
+ "code":"U+1F1EE U+1F1F8",
+ "emoji":"🇮🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "iceland"
+ ]
+ },
+ {
+ "no":1650,
+ "code":"U+1F1EE U+1F1F9",
+ "emoji":"🇮🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER I, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "italy"
+ ]
+ },
+ {
+ "no":1651,
+ "code":"U+1F1EF U+1F1EA",
+ "emoji":"🇯🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER J, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "jersey"
+ ]
+ },
+ {
+ "no":1652,
+ "code":"U+1F1EF U+1F1F2",
+ "emoji":"🇯🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER J, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "jamaica"
+ ]
+ },
+ {
+ "no":1653,
+ "code":"U+1F1EF U+1F1F4",
+ "emoji":"🇯🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER J, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "jordan"
+ ]
+ },
+ {
+ "no":1654,
+ "code":"U+1F1EF U+1F1F5",
+ "emoji":"🇯🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER J, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "japan"
+ ]
+ },
+ {
+ "no":1655,
+ "code":"U+1F1F0 U+1F1EA",
+ "emoji":"🇰🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kenya"
+ ]
+ },
+ {
+ "no":1656,
+ "code":"U+1F1F0 U+1F1EC",
+ "emoji":"🇰🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kyrgyzstan"
+ ]
+ },
+ {
+ "no":1657,
+ "code":"U+1F1F0 U+1F1ED",
+ "emoji":"🇰🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "cambodia",
+ "flag"
+ ]
+ },
+ {
+ "no":1658,
+ "code":"U+1F1F0 U+1F1EE",
+ "emoji":"🇰🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kiribati"
+ ]
+ },
+ {
+ "no":1659,
+ "code":"U+1F1F0 U+1F1F2",
+ "emoji":"🇰🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "comoros",
+ "flag"
+ ]
+ },
+ {
+ "no":1660,
+ "code":"U+1F1F0 U+1F1F3",
+ "emoji":"🇰🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kitts",
+ "nevis",
+ "saint"
+ ]
+ },
+ {
+ "no":1661,
+ "code":"U+1F1F0 U+1F1F5",
+ "emoji":"🇰🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "korea",
+ "north",
+ "north korea"
+ ]
+ },
+ {
+ "no":1662,
+ "code":"U+1F1F0 U+1F1F7",
+ "emoji":"🇰🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "korea",
+ "south",
+ "south korea"
+ ]
+ },
+ {
+ "no":1663,
+ "code":"U+1F1F0 U+1F1FC",
+ "emoji":"🇰🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kuwait"
+ ]
+ },
+ {
+ "no":1664,
+ "code":"U+1F1F0 U+1F1FE",
+ "emoji":"🇰🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "cayman",
+ "flag",
+ "island"
+ ]
+ },
+ {
+ "no":1665,
+ "code":"U+1F1F0 U+1F1FF",
+ "emoji":"🇰🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER K, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kazakhstan"
+ ]
+ },
+ {
+ "no":1666,
+ "code":"U+1F1F1 U+1F1E6",
+ "emoji":"🇱🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "laos"
+ ]
+ },
+ {
+ "no":1667,
+ "code":"U+1F1F1 U+1F1E7",
+ "emoji":"🇱🇧",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER B",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "lebanon"
+ ]
+ },
+ {
+ "no":1668,
+ "code":"U+1F1F1 U+1F1E8",
+ "emoji":"🇱🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "lucia",
+ "saint"
+ ]
+ },
+ {
+ "no":1669,
+ "code":"U+1F1F1 U+1F1EE",
+ "emoji":"🇱🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "liechtenstein"
+ ]
+ },
+ {
+ "no":1670,
+ "code":"U+1F1F1 U+1F1F0",
+ "emoji":"🇱🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "sri lanka"
+ ]
+ },
+ {
+ "no":1671,
+ "code":"U+1F1F1 U+1F1F7",
+ "emoji":"🇱🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "liberia"
+ ]
+ },
+ {
+ "no":1672,
+ "code":"U+1F1F1 U+1F1F8",
+ "emoji":"🇱🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "lesotho"
+ ]
+ },
+ {
+ "no":1673,
+ "code":"U+1F1F1 U+1F1F9",
+ "emoji":"🇱🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "lithuania"
+ ]
+ },
+ {
+ "no":1674,
+ "code":"U+1F1F1 U+1F1FA",
+ "emoji":"🇱🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "luxembourg"
+ ]
+ },
+ {
+ "no":1675,
+ "code":"U+1F1F1 U+1F1FB",
+ "emoji":"🇱🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "latvia"
+ ]
+ },
+ {
+ "no":1676,
+ "code":"U+1F1F1 U+1F1FE",
+ "emoji":"🇱🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER L, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "libya"
+ ]
+ },
+ {
+ "no":1677,
+ "code":"U+1F1F2 U+1F1E6",
+ "emoji":"🇲🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "morocco"
+ ]
+ },
+ {
+ "no":1678,
+ "code":"U+1F1F2 U+1F1E8",
+ "emoji":"🇲🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "monaco"
+ ]
+ },
+ {
+ "no":1679,
+ "code":"U+1F1F2 U+1F1E9",
+ "emoji":"🇲🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "moldova"
+ ]
+ },
+ {
+ "no":1680,
+ "code":"U+1F1F2 U+1F1EA",
+ "emoji":"🇲🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "montenegro"
+ ]
+ },
+ {
+ "no":1681,
+ "code":"U+1F1F2 U+1F1EB",
+ "emoji":"🇲🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "french",
+ "martin",
+ "saint"
+ ]
+ },
+ {
+ "no":1682,
+ "code":"U+1F1F2 U+1F1EC",
+ "emoji":"🇲🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "madagascar"
+ ]
+ },
+ {
+ "no":1683,
+ "code":"U+1F1F2 U+1F1ED",
+ "emoji":"🇲🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "island",
+ "marshall"
+ ]
+ },
+ {
+ "no":1684,
+ "code":"U+1F1F2 U+1F1F0",
+ "emoji":"🇲🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "macedonia"
+ ]
+ },
+ {
+ "no":1685,
+ "code":"U+1F1F2 U+1F1F1",
+ "emoji":"🇲🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mali"
+ ]
+ },
+ {
+ "no":1686,
+ "code":"U+1F1F2 U+1F1F2",
+ "emoji":"🇲🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "burma",
+ "flag",
+ "myanmar"
+ ]
+ },
+ {
+ "no":1687,
+ "code":"U+1F1F2 U+1F1F3",
+ "emoji":"🇲🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mongolia"
+ ]
+ },
+ {
+ "no":1688,
+ "code":"U+1F1F2 U+1F1F4",
+ "emoji":"🇲🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "china",
+ "flag",
+ "macao",
+ "macau"
+ ]
+ },
+ {
+ "no":1689,
+ "code":"U+1F1F2 U+1F1F5",
+ "emoji":"🇲🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "island",
+ "mariana",
+ "north",
+ "northern mariana"
+ ]
+ },
+ {
+ "no":1690,
+ "code":"U+1F1F2 U+1F1F6",
+ "emoji":"🇲🇶",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER Q",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "martinique"
+ ]
+ },
+ {
+ "no":1691,
+ "code":"U+1F1F2 U+1F1F7",
+ "emoji":"🇲🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mauritania"
+ ]
+ },
+ {
+ "no":1692,
+ "code":"U+1F1F2 U+1F1F8",
+ "emoji":"🇲🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "montserrat"
+ ]
+ },
+ {
+ "no":1693,
+ "code":"U+1F1F2 U+1F1F9",
+ "emoji":"🇲🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "malta"
+ ]
+ },
+ {
+ "no":1694,
+ "code":"U+1F1F2 U+1F1FA",
+ "emoji":"🇲🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mauritius"
+ ]
+ },
+ {
+ "no":1695,
+ "code":"U+1F1F2 U+1F1FB",
+ "emoji":"🇲🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "maldives"
+ ]
+ },
+ {
+ "no":1696,
+ "code":"U+1F1F2 U+1F1FC",
+ "emoji":"🇲🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "malawi"
+ ]
+ },
+ {
+ "no":1697,
+ "code":"U+1F1F2 U+1F1FD",
+ "emoji":"🇲🇽",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER X",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mexico"
+ ]
+ },
+ {
+ "no":1698,
+ "code":"U+1F1F2 U+1F1FE",
+ "emoji":"🇲🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "malaysia"
+ ]
+ },
+ {
+ "no":1699,
+ "code":"U+1F1F2 U+1F1FF",
+ "emoji":"🇲🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER M, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mozambique"
+ ]
+ },
+ {
+ "no":1700,
+ "code":"U+1F1F3 U+1F1E6",
+ "emoji":"🇳🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "namibia"
+ ]
+ },
+ {
+ "no":1701,
+ "code":"U+1F1F3 U+1F1E8",
+ "emoji":"🇳🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "new",
+ "new caledonia"
+ ]
+ },
+ {
+ "no":1702,
+ "code":"U+1F1F3 U+1F1EA",
+ "emoji":"🇳🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "niger"
+ ]
+ },
+ {
+ "no":1703,
+ "code":"U+1F1F3 U+1F1EB",
+ "emoji":"🇳🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "island",
+ "norfolk"
+ ]
+ },
+ {
+ "no":1704,
+ "code":"U+1F1F3 U+1F1EC",
+ "emoji":"🇳🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "nigeria"
+ ]
+ },
+ {
+ "no":1705,
+ "code":"U+1F1F3 U+1F1EE",
+ "emoji":"🇳🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "nicaragua"
+ ]
+ },
+ {
+ "no":1706,
+ "code":"U+1F1F3 U+1F1F1",
+ "emoji":"🇳🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "netherlands"
+ ]
+ },
+ {
+ "no":1707,
+ "code":"U+1F1F3 U+1F1F4",
+ "emoji":"🇳🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "norway"
+ ]
+ },
+ {
+ "no":1708,
+ "code":"U+1F1F3 U+1F1F5",
+ "emoji":"🇳🇵",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER P",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "nepal"
+ ]
+ },
+ {
+ "no":1709,
+ "code":"U+1F1F3 U+1F1F7",
+ "emoji":"🇳🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "nauru"
+ ]
+ },
+ {
+ "no":1710,
+ "code":"U+1F1F3 U+1F1FA",
+ "emoji":"🇳🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "niue"
+ ]
+ },
+ {
+ "no":1711,
+ "code":"U+1F1F3 U+1F1FF",
+ "emoji":"🇳🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER N, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "new",
+ "new zealand"
+ ]
+ },
+ {
+ "no":1712,
+ "code":"U+1F1F4 U+1F1F2",
+ "emoji":"🇴🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER O, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "oman"
+ ]
+ },
+ {
+ "no":1713,
+ "code":"U+1F1F5 U+1F1E6",
+ "emoji":"🇵🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "panama"
+ ]
+ },
+ {
+ "no":1714,
+ "code":"U+1F1F5 U+1F1EA",
+ "emoji":"🇵🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "peru"
+ ]
+ },
+ {
+ "no":1715,
+ "code":"U+1F1F5 U+1F1EB",
+ "emoji":"🇵🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "french",
+ "polynesia"
+ ]
+ },
+ {
+ "no":1716,
+ "code":"U+1F1F5 U+1F1EC",
+ "emoji":"🇵🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "guinea",
+ "new",
+ "papua new guinea"
+ ]
+ },
+ {
+ "no":1717,
+ "code":"U+1F1F5 U+1F1ED",
+ "emoji":"🇵🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "philippines"
+ ]
+ },
+ {
+ "no":1718,
+ "code":"U+1F1F5 U+1F1F0",
+ "emoji":"🇵🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "pakistan"
+ ]
+ },
+ {
+ "no":1719,
+ "code":"U+1F1F5 U+1F1F1",
+ "emoji":"🇵🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "poland"
+ ]
+ },
+ {
+ "no":1720,
+ "code":"U+1F1F5 U+1F1F2",
+ "emoji":"🇵🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "miquelon",
+ "pierre",
+ "saint"
+ ]
+ },
+ {
+ "no":1721,
+ "code":"U+1F1F5 U+1F1F3",
+ "emoji":"🇵🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "island",
+ "pitcairn"
+ ]
+ },
+ {
+ "no":1722,
+ "code":"U+1F1F5 U+1F1F7",
+ "emoji":"🇵🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "puerto rico"
+ ]
+ },
+ {
+ "no":1723,
+ "code":"U+1F1F5 U+1F1F8",
+ "emoji":"🇵🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "palestine"
+ ]
+ },
+ {
+ "no":1724,
+ "code":"U+1F1F5 U+1F1F9",
+ "emoji":"🇵🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "portugal"
+ ]
+ },
+ {
+ "no":1725,
+ "code":"U+1F1F5 U+1F1FC",
+ "emoji":"🇵🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "palau"
+ ]
+ },
+ {
+ "no":1726,
+ "code":"U+1F1F5 U+1F1FE",
+ "emoji":"🇵🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER P, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "paraguay"
+ ]
+ },
+ {
+ "no":1727,
+ "code":"U+1F1F6 U+1F1E6",
+ "emoji":"🇶🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Q, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "qatar"
+ ]
+ },
+ {
+ "no":1728,
+ "code":"U+1F1F7 U+1F1EA",
+ "emoji":"🇷🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER R, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "reunion",
+ "réunion"
+ ]
+ },
+ {
+ "no":1729,
+ "code":"U+1F1F7 U+1F1F4",
+ "emoji":"🇷🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER R, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "romania"
+ ]
+ },
+ {
+ "no":1730,
+ "code":"U+1F1F7 U+1F1F8",
+ "emoji":"🇷🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER R, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "serbia"
+ ]
+ },
+ {
+ "no":1731,
+ "code":"U+1F1F7 U+1F1FA",
+ "emoji":"🇷🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER R, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "russia"
+ ]
+ },
+ {
+ "no":1732,
+ "code":"U+1F1F7 U+1F1FC",
+ "emoji":"🇷🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER R, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "rwanda"
+ ]
+ },
+ {
+ "no":1733,
+ "code":"U+1F1F8 U+1F1E6",
+ "emoji":"🇸🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "saudi arabia"
+ ]
+ },
+ {
+ "no":1734,
+ "code":"U+1F1F8 U+1F1E7",
+ "emoji":"🇸🇧",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER B",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "island",
+ "solomon"
+ ]
+ },
+ {
+ "no":1735,
+ "code":"U+1F1F8 U+1F1E8",
+ "emoji":"🇸🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "seychelles"
+ ]
+ },
+ {
+ "no":1736,
+ "code":"U+1F1F8 U+1F1E9",
+ "emoji":"🇸🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "sudan"
+ ]
+ },
+ {
+ "no":1737,
+ "code":"U+1F1F8 U+1F1EA",
+ "emoji":"🇸🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "sweden"
+ ]
+ },
+ {
+ "no":1738,
+ "code":"U+1F1F8 U+1F1EC",
+ "emoji":"🇸🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "singapore"
+ ]
+ },
+ {
+ "no":1739,
+ "code":"U+1F1F8 U+1F1ED",
+ "emoji":"🇸🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "helena",
+ "saint"
+ ]
+ },
+ {
+ "no":1740,
+ "code":"U+1F1F8 U+1F1EE",
+ "emoji":"🇸🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "slovenia"
+ ]
+ },
+ {
+ "no":1741,
+ "code":"U+1F1F8 U+1F1EF",
+ "emoji":"🇸🇯",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER J",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "jan mayen",
+ "svalbard"
+ ]
+ },
+ {
+ "no":1742,
+ "code":"U+1F1F8 U+1F1F0",
+ "emoji":"🇸🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "slovakia"
+ ]
+ },
+ {
+ "no":1743,
+ "code":"U+1F1F8 U+1F1F1",
+ "emoji":"🇸🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "sierra leone"
+ ]
+ },
+ {
+ "no":1744,
+ "code":"U+1F1F8 U+1F1F2",
+ "emoji":"🇸🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "san marino"
+ ]
+ },
+ {
+ "no":1745,
+ "code":"U+1F1F8 U+1F1F3",
+ "emoji":"🇸🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "senegal"
+ ]
+ },
+ {
+ "no":1746,
+ "code":"U+1F1F8 U+1F1F4",
+ "emoji":"🇸🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "somalia"
+ ]
+ },
+ {
+ "no":1747,
+ "code":"U+1F1F8 U+1F1F7",
+ "emoji":"🇸🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "suriname"
+ ]
+ },
+ {
+ "no":1748,
+ "code":"U+1F1F8 U+1F1F8",
+ "emoji":"🇸🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "south",
+ "south sudan",
+ "sudan"
+ ]
+ },
+ {
+ "no":1749,
+ "code":"U+1F1F8 U+1F1F9",
+ "emoji":"🇸🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "principe",
+ "príncipe",
+ "sao tome",
+ "são tomé"
+ ]
+ },
+ {
+ "no":1750,
+ "code":"U+1F1F8 U+1F1FB",
+ "emoji":"🇸🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "el salvador",
+ "flag"
+ ]
+ },
+ {
+ "no":1751,
+ "code":"U+1F1F8 U+1F1FD",
+ "emoji":"🇸🇽",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER X",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "maarten",
+ "sint"
+ ]
+ },
+ {
+ "no":1752,
+ "code":"U+1F1F8 U+1F1FE",
+ "emoji":"🇸🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "syria"
+ ]
+ },
+ {
+ "no":1753,
+ "code":"U+1F1F8 U+1F1FF",
+ "emoji":"🇸🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER S, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "swaziland"
+ ]
+ },
+ {
+ "no":1754,
+ "code":"U+1F1F9 U+1F1E6",
+ "emoji":"🇹🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tristan da cunha"
+ ]
+ },
+ {
+ "no":1755,
+ "code":"U+1F1F9 U+1F1E8",
+ "emoji":"🇹🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "caicos",
+ "flag",
+ "island",
+ "turks"
+ ]
+ },
+ {
+ "no":1756,
+ "code":"U+1F1F9 U+1F1E9",
+ "emoji":"🇹🇩",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER D",
+ "flagged":false,
+ "keywords":[
+ "chad",
+ "flag"
+ ]
+ },
+ {
+ "no":1757,
+ "code":"U+1F1F9 U+1F1EB",
+ "emoji":"🇹🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "antarctic",
+ "flag",
+ "french"
+ ]
+ },
+ {
+ "no":1758,
+ "code":"U+1F1F9 U+1F1EC",
+ "emoji":"🇹🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "togo"
+ ]
+ },
+ {
+ "no":1759,
+ "code":"U+1F1F9 U+1F1ED",
+ "emoji":"🇹🇭",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER H",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "thailand"
+ ]
+ },
+ {
+ "no":1760,
+ "code":"U+1F1F9 U+1F1EF",
+ "emoji":"🇹🇯",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER J",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tajikistan"
+ ]
+ },
+ {
+ "no":1761,
+ "code":"U+1F1F9 U+1F1F0",
+ "emoji":"🇹🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tokelau"
+ ]
+ },
+ {
+ "no":1762,
+ "code":"U+1F1F9 U+1F1F1",
+ "emoji":"🇹🇱",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER L",
+ "flagged":false,
+ "keywords":[
+ "east",
+ "east timor",
+ "flag",
+ "timor-leste"
+ ]
+ },
+ {
+ "no":1763,
+ "code":"U+1F1F9 U+1F1F2",
+ "emoji":"🇹🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "turkmenistan"
+ ]
+ },
+ {
+ "no":1764,
+ "code":"U+1F1F9 U+1F1F3",
+ "emoji":"🇹🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tunisia"
+ ]
+ },
+ {
+ "no":1765,
+ "code":"U+1F1F9 U+1F1F4",
+ "emoji":"🇹🇴",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER O",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tonga"
+ ]
+ },
+ {
+ "no":1766,
+ "code":"U+1F1F9 U+1F1F7",
+ "emoji":"🇹🇷",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER R",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "turkey"
+ ]
+ },
+ {
+ "no":1767,
+ "code":"U+1F1F9 U+1F1F9",
+ "emoji":"🇹🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tobago",
+ "trinidad"
+ ]
+ },
+ {
+ "no":1768,
+ "code":"U+1F1F9 U+1F1FB",
+ "emoji":"🇹🇻",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER V",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tuvalu"
+ ]
+ },
+ {
+ "no":1769,
+ "code":"U+1F1F9 U+1F1FC",
+ "emoji":"🇹🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "china",
+ "flag",
+ "taiwan"
+ ]
+ },
+ {
+ "no":1770,
+ "code":"U+1F1F9 U+1F1FF",
+ "emoji":"🇹🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER T, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "tanzania"
+ ]
+ },
+ {
+ "no":1771,
+ "code":"U+1F1FA U+1F1E6",
+ "emoji":"🇺🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "ukraine"
+ ]
+ },
+ {
+ "no":1772,
+ "code":"U+1F1FA U+1F1EC",
+ "emoji":"🇺🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "uganda"
+ ]
+ },
+ {
+ "no":1773,
+ "code":"U+1F1FA U+1F1F2",
+ "emoji":"🇺🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "america",
+ "flag",
+ "island",
+ "minor outlying",
+ "united",
+ "united states",
+ "us",
+ "usa"
+ ]
+ },
+ {
+ "no":1774,
+ "code":"U+1F1FA U+1F1F8",
+ "emoji":"🇺🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "america",
+ "flag",
+ "stars and stripes",
+ "united",
+ "united states"
+ ]
+ },
+ {
+ "no":1775,
+ "code":"U+1F1FA U+1F1FE",
+ "emoji":"🇺🇾",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER Y",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "uruguay"
+ ]
+ },
+ {
+ "no":1776,
+ "code":"U+1F1FA U+1F1FF",
+ "emoji":"🇺🇿",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER U, REGIONAL INDICATOR SYMBOL LETTER Z",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "uzbekistan"
+ ]
+ },
+ {
+ "no":1777,
+ "code":"U+1F1FB U+1F1E6",
+ "emoji":"🇻🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "vatican"
+ ]
+ },
+ {
+ "no":1778,
+ "code":"U+1F1FB U+1F1E8",
+ "emoji":"🇻🇨",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER C",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "grenadines",
+ "saint",
+ "vincent"
+ ]
+ },
+ {
+ "no":1779,
+ "code":"U+1F1FB U+1F1EA",
+ "emoji":"🇻🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "venezuela"
+ ]
+ },
+ {
+ "no":1780,
+ "code":"U+1F1FB U+1F1EC",
+ "emoji":"🇻🇬",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER G",
+ "flagged":false,
+ "keywords":[
+ "british",
+ "flag",
+ "island",
+ "virgin"
+ ]
+ },
+ {
+ "no":1781,
+ "code":"U+1F1FB U+1F1EE",
+ "emoji":"🇻🇮",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER I",
+ "flagged":false,
+ "keywords":[
+ "america",
+ "american",
+ "flag",
+ "island",
+ "united",
+ "united states",
+ "us",
+ "usa",
+ "virgin"
+ ]
+ },
+ {
+ "no":1782,
+ "code":"U+1F1FB U+1F1F3",
+ "emoji":"🇻🇳",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER N",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "viet nam",
+ "vietnam"
+ ]
+ },
+ {
+ "no":1783,
+ "code":"U+1F1FB U+1F1FA",
+ "emoji":"🇻🇺",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER V, REGIONAL INDICATOR SYMBOL LETTER U",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "vanuatu"
+ ]
+ },
+ {
+ "no":1784,
+ "code":"U+1F1FC U+1F1EB",
+ "emoji":"🇼🇫",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER W, REGIONAL INDICATOR SYMBOL LETTER F",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "futuna",
+ "wallis"
+ ]
+ },
+ {
+ "no":1785,
+ "code":"U+1F1FC U+1F1F8",
+ "emoji":"🇼🇸",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER W, REGIONAL INDICATOR SYMBOL LETTER S",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "samoa"
+ ]
+ },
+ {
+ "no":1786,
+ "code":"U+1F1FD U+1F1F0",
+ "emoji":"🇽🇰",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER X, REGIONAL INDICATOR SYMBOL LETTER K",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "kosovo"
+ ]
+ },
+ {
+ "no":1787,
+ "code":"U+1F1FE U+1F1EA",
+ "emoji":"🇾🇪",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Y, REGIONAL INDICATOR SYMBOL LETTER E",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "yemen"
+ ]
+ },
+ {
+ "no":1788,
+ "code":"U+1F1FE U+1F1F9",
+ "emoji":"🇾🇹",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Y, REGIONAL INDICATOR SYMBOL LETTER T",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "mayotte"
+ ]
+ },
+ {
+ "no":1789,
+ "code":"U+1F1FF U+1F1E6",
+ "emoji":"🇿🇦",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Z, REGIONAL INDICATOR SYMBOL LETTER A",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "south",
+ "south africa"
+ ]
+ },
+ {
+ "no":1790,
+ "code":"U+1F1FF U+1F1F2",
+ "emoji":"🇿🇲",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Z, REGIONAL INDICATOR SYMBOL LETTER M",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "zambia"
+ ]
+ },
+ {
+ "no":1791,
+ "code":"U+1F1FF U+1F1FC",
+ "emoji":"🇿🇼",
+ "description":"REGIONAL INDICATOR SYMBOL LETTER Z, REGIONAL INDICATOR SYMBOL LETTER W",
+ "flagged":false,
+ "keywords":[
+ "flag",
+ "zimbabwe"
+ ]
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/public/build/js/pages/range-sliders.init.js b/public/build/js/pages/range-sliders.init.js
new file mode 100644
index 0000000..dac173e
--- /dev/null
+++ b/public/build/js/pages/range-sliders.init.js
@@ -0,0 +1,465 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Range sliders Js File
+*/
+
+/*********************
+ basic example
+**********************/
+var sliderColorScheme = document.querySelectorAll('[data-rangeslider]');
+if (sliderColorScheme)
+ Array.from(sliderColorScheme).forEach(function (slider) {
+ noUiSlider.create(slider, {
+ start: 127,
+ connect: 'lower',
+ range: {
+ 'min': 0,
+ 'max': 255
+ },
+ });
+ });
+
+/*********************
+ multi range handle
+**********************/
+
+var multielementslider = document.querySelectorAll('[data-multielement]');
+if (multielementslider)
+ Array.from(multielementslider).forEach(function (slider) {
+ noUiSlider.create(slider, {
+ start: [20, 80],
+ connect: true,
+ range: {
+ 'min': 0,
+ 'max': 100
+ }
+ });
+ });
+
+/*********************
+ Colorpicker
+**********************/
+
+var resultElement = document.getElementById('result');
+var sliders = document.getElementsByClassName('sliders');
+var colors = [0, 0, 0];
+if (sliders)
+ Array.from([].slice.call(sliders)).forEach(function (slider, index) {
+
+ noUiSlider.create(slider, {
+ start: 127,
+ connect: [true, false],
+ orientation: "vertical",
+ range: {
+ 'min': 0,
+ 'max': 255
+ },
+ format: wNumb({
+ decimals: 0
+ })
+ });
+
+ // Bind the color changing function to the update event.
+ slider.noUiSlider.on('update', function () {
+
+ colors[index] = slider.noUiSlider.get();
+
+ var color = 'rgb(' + colors.join(',') + ')';
+
+ resultElement.style.background = color;
+ resultElement.style.color = color;
+ });
+ });
+
+/*********************
+ Using HTML5 input elements
+**********************/
+
+var select = document.getElementById('input-select');
+// Append the option elements
+for (var i = -20; i <= 40; i++) {
+ var option = document.createElement("option");
+ option.text = i;
+ option.value = i;
+ select.appendChild(option);
+}
+
+var html5Slider = document.getElementById('html5');
+if (html5Slider)
+ noUiSlider.create(html5Slider, {
+ start: [10, 30],
+ connect: true,
+ range: {
+ 'min': -20,
+ 'max': 40
+ }
+ });
+
+var inputNumber = document.getElementById('input-number');
+if (inputNumber && html5Slider) {
+ html5Slider.noUiSlider.on('update', function (values, handle) {
+
+ var value = values[handle];
+
+ if (handle) {
+ inputNumber.value = value;
+ } else {
+ select.value = Math.round(value);
+ }
+ });
+
+ select.addEventListener('change', function () {
+ html5Slider.noUiSlider.set([this.value, null]);
+ });
+
+ inputNumber.addEventListener('change', function () {
+ html5Slider.noUiSlider.set([null, this.value]);
+ });
+}
+
+/*********************
+ Non linear slider
+**********************/
+var nonLinearSlider = document.getElementById('nonlinear');
+if (nonLinearSlider)
+ noUiSlider.create(nonLinearSlider, {
+ connect: true,
+ behaviour: 'tap',
+ start: [500, 4000],
+ range: {
+ // Starting at 500, step the value by 500,
+ // until 4000 is reached. From there, step by 1000.
+ 'min': [0],
+ '10%': [500, 500],
+ '50%': [4000, 1000],
+ 'max': [10000]
+ }
+ });
+
+var nodes = [
+ document.getElementById('lower-value'), // 0
+ document.getElementById('upper-value') // 1
+];
+
+// Display the slider value and how far the handle moved
+// from the left edge of the slider.
+nonLinearSlider.noUiSlider.on('update', function (values, handle, unencoded, isTap, positions) {
+ nodes[handle].innerHTML = values[handle] + ', ' + positions[handle].toFixed(2) + '%';
+});
+
+/*********************
+ Locking sliders together
+**********************/
+var lockedState = false;
+var lockedSlider = false;
+var lockedValues = [60, 80];
+
+var slider1 = document.getElementById('slider1');
+var slider2 = document.getElementById('slider2');
+
+var lockButton = document.getElementById('lockbutton');
+var slider1Value = document.getElementById('slider1-span');
+var slider2Value = document.getElementById('slider2-span');
+
+// When the button is clicked, the locked state is inverted.
+if (lockButton)
+ lockButton.addEventListener('click', function () {
+ lockedState = !lockedState;
+ this.textContent = lockedState ? 'unlock' : 'lock';
+ });
+
+function crossUpdate(value, slider) {
+
+ // If the sliders aren't interlocked, don't
+ // cross-update.
+ if (!lockedState) return;
+
+ // Select whether to increase or decrease
+ // the other slider value.
+ var a = slider1 === slider ? 0 : 1;
+
+ // Invert a
+ var b = a ? 0 : 1;
+
+ // Offset the slider value.
+ value -= lockedValues[b] - lockedValues[a];
+
+ // Set the value
+ slider.noUiSlider.set(value);
+}
+
+noUiSlider.create(slider1, {
+ start: 60,
+
+ // Disable animation on value-setting,
+ // so the sliders respond immediately.
+ animate: false,
+ range: {
+ min: 50,
+ max: 100
+ }
+});
+
+noUiSlider.create(slider2, {
+ start: 80,
+ animate: false,
+ range: {
+ min: 50,
+ max: 100
+ }
+});
+
+if (slider1 && slider2) {
+ slider1.noUiSlider.on('update', function (values, handle) {
+ slider1Value.innerHTML = values[handle];
+ });
+ slider2.noUiSlider.on('update', function (values, handle) {
+ slider2Value.innerHTML = values[handle];
+ });
+
+
+ function setLockedValues() {
+ lockedValues = [
+ Number(slider1.noUiSlider.get()),
+ Number(slider2.noUiSlider.get())
+ ];
+ }
+
+ slider1.noUiSlider.on('change', setLockedValues);
+ slider2.noUiSlider.on('change', setLockedValues);
+
+ slider1.noUiSlider.on('slide', function (values, handle) {
+ crossUpdate(values[handle], slider2);
+ });
+
+ slider2.noUiSlider.on('slide', function (values, handle) {
+ crossUpdate(values[handle], slider1);
+ });
+}
+
+/*********************
+ mergingTooltipSlider
+**********************/
+var mergingTooltipSlider = document.getElementById('slider-merging-tooltips');
+if (mergingTooltipSlider) {
+ noUiSlider.create(mergingTooltipSlider, {
+ start: [20, 75],
+ connect: true,
+ tooltips: [true, true],
+ range: {
+ 'min': 0,
+ 'max': 100
+ }
+ });
+
+ mergeTooltips(mergingTooltipSlider, 5, ' - ');
+}
+
+/**
+ * @param slider HtmlElement with an initialized slider
+ * @param threshold Minimum proximity (in percentages) to merge tooltips
+ * @param separator String joining tooltips
+ */
+function mergeTooltips(slider, threshold, separator) {
+
+ var textIsRtl = getComputedStyle(slider).direction === 'rtl';
+ var isRtl = slider.noUiSlider.options.direction === 'rtl';
+ var isVertical = slider.noUiSlider.options.orientation === 'vertical';
+ var tooltips = slider.noUiSlider.getTooltips();
+ var origins = slider.noUiSlider.getOrigins();
+
+ // Move tooltips into the origin element. The default stylesheet handles this.
+ Array.from(tooltips).forEach(function (tooltip, index) {
+ if (tooltip) {
+ origins[index].appendChild(tooltip);
+ }
+ });
+ if (slider)
+ slider.noUiSlider.on('update', function (values, handle, unencoded, tap, positions) {
+
+ var pools = [
+ []
+ ];
+ var poolPositions = [
+ []
+ ];
+ var poolValues = [
+ []
+ ];
+ var atPool = 0;
+
+ // Assign the first tooltip to the first pool, if the tooltip is configured
+ if (tooltips[0]) {
+ pools[0][0] = 0;
+ poolPositions[0][0] = positions[0];
+ poolValues[0][0] = values[0];
+ }
+
+ for (var i = 1; i < positions.length; i++) {
+ if (!tooltips[i] || (positions[i] - positions[i - 1]) > threshold) {
+ atPool++;
+ pools[atPool] = [];
+ poolValues[atPool] = [];
+ poolPositions[atPool] = [];
+ }
+
+ if (tooltips[i]) {
+ pools[atPool].push(i);
+ poolValues[atPool].push(values[i]);
+ poolPositions[atPool].push(positions[i]);
+ }
+ }
+
+ Array.from(pools).forEach(function (pool, poolIndex) {
+ var handlesInPool = pool.length;
+
+ for (var j = 0; j < handlesInPool; j++) {
+ var handleNumber = pool[j];
+
+ if (j === handlesInPool - 1) {
+ var offset = 0;
+
+ Array.from(poolPositions[poolIndex]).forEach(function (value) {
+ offset += 1000 - value;
+ });
+
+ var direction = isVertical ? 'bottom' : 'right';
+ var last = isRtl ? 0 : handlesInPool - 1;
+ var lastOffset = 1000 - poolPositions[poolIndex][last];
+ offset = (textIsRtl && !isVertical ? 100 : 0) + (offset / handlesInPool) - lastOffset;
+
+ // Center this tooltip over the affected handles
+ tooltips[handleNumber].innerHTML = poolValues[poolIndex].join(separator);
+ tooltips[handleNumber].style.display = 'block';
+ tooltips[handleNumber].style[direction] = offset + '%';
+ } else {
+ // Hide this tooltip
+ tooltips[handleNumber].style.display = 'none';
+ }
+ }
+ });
+ });
+}
+
+/*********************
+ tooltip
+**********************/
+var hidingTooltipSlider = document.getElementById('slider-hide');
+if (hidingTooltipSlider)
+ noUiSlider.create(hidingTooltipSlider, {
+ range: {
+ min: 0,
+ max: 100
+ },
+ start: [20, 80],
+ tooltips: true
+ });
+
+/*********************
+ pipe - scale
+**********************/
+var pipsSlider = document.getElementById('slider-pips');
+if (pipsSlider)
+ noUiSlider.create(pipsSlider, {
+ range: {
+ min: 0,
+ max: 100
+ },
+ start: [50],
+ pips: {
+ mode: 'count',
+ values: 5
+ }
+ });
+
+var pips = pipsSlider.querySelectorAll('.noUi-value');
+
+function clickOnPip() {
+ var value = Number(this.getAttribute('data-value'));
+ pipsSlider.noUiSlider.set(value);
+}
+if (pips)
+ Array.from(pips).forEach(function (ele) {
+ // For this example. Do this in CSS!
+ ele.style.cursor = 'pointer';
+ ele.addEventListener('click', clickOnPip);
+ });
+
+/*********************
+ Colored Connect Elements
+**********************/
+var slider = document.getElementById('slider-color');
+if (slider)
+ noUiSlider.create(slider, {
+ start: [4000, 8000, 12000, 16000],
+ connect: [false, true, true, true, true],
+ range: {
+ 'min': [2000],
+ 'max': [20000]
+ }
+ });
+
+var connect = slider.querySelectorAll('.noUi-connect');
+var classes = ['c-1-color', 'c-2-color', 'c-3-color', 'c-4-color', 'c-5-color'];
+
+var i = 0;
+Array.from(connect).forEach(function (ele) {
+ ele.classList.add(classes[i]);
+ i ++;
+});
+
+/*********************
+ toggle slider
+**********************/
+var toggleSlider = document.getElementById('slider-toggle');
+if (toggleSlider) {
+ noUiSlider.create(toggleSlider, {
+ orientation: "vertical",
+ start: 0,
+ range: {
+ 'min': [0, 1],
+ 'max': 1
+ },
+ format: wNumb({
+ decimals: 0
+ })
+ });
+
+ toggleSlider.noUiSlider.on('update', function (values, handle) {
+ if (values[handle] === '1') {
+ toggleSlider.classList.add('off');
+ } else {
+ toggleSlider.classList.remove('off');
+ }
+ });
+}
+
+/*********************
+ Soft limits
+**********************/
+var softSlider = document.getElementById('soft');
+if (softSlider) {
+ noUiSlider.create(softSlider, {
+ start: 50,
+ range: {
+ min: 0,
+ max: 100
+ },
+ pips: {
+ mode: 'values',
+ values: [20, 80],
+ density: 4
+ }
+ });
+
+ softSlider.noUiSlider.on('change', function (values, handle) {
+ if (values[handle] < 20) {
+ softSlider.noUiSlider.set(20);
+ } else if (values[handle] > 80) {
+ softSlider.noUiSlider.set(80);
+ }
+ });
+}
\ No newline at end of file
diff --git a/public/build/js/pages/rating.init.js b/public/build/js/pages/rating.init.js
new file mode 100644
index 0000000..c160d81
--- /dev/null
+++ b/public/build/js/pages/rating.init.js
@@ -0,0 +1,102 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Rating Js File
+*/
+
+// basic-rater
+if (document.querySelector('#basic-rater'))
+ var basicRating = raterJs({
+ starSize: 22,
+ rating: 3,
+ element: document.querySelector("#basic-rater"),
+ rateCallback: function rateCallback(rating, done) {
+ this.setRating(rating);
+ done();
+ }
+ });
+
+// rater-step
+if (document.querySelector('#rater-step'))
+ var starRatingStep = raterJs({
+ starSize: 22,
+ rating: 1.5,
+ element: document.querySelector("#rater-step"),
+ rateCallback: function rateCallback(rating, done) {
+ this.setRating(rating);
+ done();
+ }
+ });
+
+// rater-message
+var messageDataService = {
+ rate: function (rating) {
+ return {
+ then: function (callback) {
+ setTimeout(function () {
+ callback((Math.random() * 5));
+ }, 1000);
+ }
+ }
+ }
+}
+
+if (document.querySelector('#rater-message'))
+ var starRatingmessage = raterJs({
+ isBusyText: "Rating in progress. Please wait...",
+ starSize: 22,
+ element: document.querySelector("#rater-message"),
+ rateCallback: function rateCallback(rating, done) {
+ starRatingmessage.setRating(rating);
+ messageDataService.rate().then(function (avgRating) {
+ starRatingmessage.setRating(avgRating);
+ done();
+ });
+ }
+ });
+
+// rater-unlimitedstar
+if (document.querySelector('#rater-unlimitedstar'))
+ var starRatingunlimited = raterJs({
+ max: 16,
+ readOnly: true,
+ rating: 4.4,
+ element: document.querySelector("#rater-unlimitedstar")
+ });
+
+// rater-onhover
+if (document.querySelector('#rater-onhover'))
+ var starRatinghover = raterJs({
+ starSize: 22,
+ rating: 1,
+ element: document.querySelector("#rater-onhover"),
+ rateCallback: function rateCallback(rating, done) {
+ this.setRating(rating);
+ done();
+ },
+ onHover: function (currentIndex, currentRating) {
+ document.querySelector('.ratingnum').textContent = currentIndex;
+ },
+ onLeave: function (currentIndex, currentRating) {
+ document.querySelector('.ratingnum').textContent = currentRating;
+ }
+ });
+
+// rater-reset
+if (document.querySelector('#raterreset'))
+ var starRatingreset = raterJs({
+ starSize: 22,
+ rating: 2,
+ element: document.querySelector("#raterreset"),
+ rateCallback: function rateCallback(rating, done) {
+ this.setRating(rating);
+ done();
+ }
+ });
+
+if (document.querySelector('#raterreset-button'))
+ document.querySelector('#raterreset-button').addEventListener("click", function () {
+ starRatingreset.clear();
+ }, false);
\ No newline at end of file
diff --git a/public/build/js/pages/remix-icons-listing.js b/public/build/js/pages/remix-icons-listing.js
new file mode 100644
index 0000000..77728a1
--- /dev/null
+++ b/public/build/js/pages/remix-icons-listing.js
@@ -0,0 +1,27 @@
+var icons = '{"Buildings":{"home":["house","房子","家","主页"],"home-2":["house","房子","家","主页"],"home-3":["house","房子","家","主页"],"home-4":["house","房子","家","主页"],"home-5":["house","房子","家","主页"],"home-6":["house","房子","家","主页"],"home-7":["house","房子","家","主页"],"home-8":["house","房子","家","主页"],"home-gear":["house","房子","工厂"],"home-wifi":["smart home","房子","家具","智能家居"],"home-smile":["house","smart home","smile","房子","智能家居","微笑"],"home-smile-2":["house","smart home","smile","房子","智能家居","微笑"],"home-heart":["house","心","房子","家","主页","孤儿院"],"building":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"building-2":["city","office","construction","enterprise","城市","建筑","楼","企业"],"building-3":["factory","plant","enterprise","工厂","建筑","楼","企业"],"building-4":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"hotel":["building","hotel","office","enterprise","tavern","建筑","酒店","楼","办公楼","写字楼","企业"],"community":["building","hotel","社区","建筑","酒店"],"government":["building","政府","建筑","大会堂"],"bank":["bank","finance","savings","banking","银行","交易所"],"store":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-2":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-3":["shop","mall","supermarket","商店","超市","店铺","商家"],"hospital":["medical","health","医院"],"ancient-gate":["historical","genre","scenic","trip","travel","旅行","旅游","城门","古代","历史","景区"],"ancient-pavilion":["historical","genre","scenic","trip","travel","旅行","旅游","凉亭","古代","历史","景区"]},"Business":{"mail":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-open":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-send":["envelope","email","inbox","信封","邮箱","邮件","发送","发件箱"],"mail-unread":["envelope","email","inbox","信封","邮箱","邮件","未读"],"mail-add":["envelope","email","inbox","add","信封","邮箱","邮件","新增","添加"],"mail-check":["envelope","email","inbox","read","信封","邮箱","邮件","已读"],"mail-close":["envelope","email","inbox","failed","x","信封","邮箱","邮件","失败"],"mail-download":["envelope","email","inbox","download","信封","邮箱","邮件","下载"],"mail-forbid":["envelope","email","inbox","privacy","信封","邮箱","邮件","禁止"],"mail-lock":["envelope","email","inbox","lock","信封","邮箱","邮件","加密"],"mail-settings":["envelope","email","inbox","settings","信封","邮箱","邮件","设置"],"mail-star":["envelope","email","inbox","favorite","信封","邮箱","邮件","收藏","喜欢"],"mail-volume":["envelope","email","inbox","promotional email","email campaign","subscription","信封","邮箱","邮件","收件箱","推广","订阅"],"inbox":["收件箱"],"inbox-archive":["收件箱","归档","收纳"],"inbox-unarchive":["unzip","unpack","extract","收件箱","取消归档","还原","解压缩"],"cloud":["weather","云端"],"cloud-off":["offline-mode","connection-fail","slash","weather","云端","断网","无信号","连接失败"],"attachment":["annex","paperclip","附件","曲别针"],"profile":["id","档案","资料","身份证","证件"],"archive":["box","收纳","归档","存档","盒子","纸箱"],"archive-drawer":["night table","收纳","抽屉","归档","存档","床头柜"],"at":["@","mention","提到","在"],"award":["medal","achievement","badge","成就","奖牌","金牌","勋章"],"medal":["award","achievement","badge","成就","奖牌","金牌","勋章"],"medal-2":["award","achievement","badge","成就","奖牌","金牌","勋章"],"bar-chart":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-horizontal":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-2":["statistics","rhythm","柱状图","统计","排行","节奏"],"bar-chart-box":["statistics","rhythm","柱状图","统计","节奏"],"bar-chart-grouped":["statistics","rhythm","柱状图","统计","分组"],"bubble-chart":["data","analysis","statistics","气泡图","统计"],"pie-chart":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-2":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-box":["data","analysis","饼图","饼状图","数据","分析"],"donut-chart":["data","analysis","环形图","数据","分析"],"line-chart":["data","analysis","stats","折线图","数据","分析"],"bookmark":["tag","书签","标记"],"bookmark-2":["tag","书签","标记"],"bookmark-3":["tag","书签","标记","荣誉"],"briefcase":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-2":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-3":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-4":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-5":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"calculator":["计算器","计算机"],"calendar":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-2":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-event":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-todo":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-check":["date","plan","schedule","agenda","check-in","punch","日历","日期","月份","计划","日程","时间表","签到","打卡"],"customer-service":["headset","客服","售后","耳机","耳麦"],"customer-service-2":["headset","客服","售后","耳机","耳麦"],"flag":["banner","pin","旗帜","旗子","国旗","标记"],"flag-2":["banner","pin","旗帜","旗子","国旗","标记"],"global":["earth","union","world","language","地球","联合","世界","全球","语言"],"honour":["honor","glory","锦旗","荣誉","荣耀","军衔"],"links":["connection","address","联系","链接","地址"],"printer":["打印机"],"printer-cloud":["打印机","云打印"],"record-mail":["voice mail","tape","录音","留言","语音信箱","磁带"],"reply":["forward","回复","答复","留言","转发"],"send-plane":["发送","纸飞机"],"send-plane-2":["发送","纸飞机"],"projector":["projection","meeting","投影仪","会议室"],"projector-2":["projection","meeting","投影仪","会议室","极米"],"slideshow":["presentation","meeting","PPT","keynote","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-2":["presentation","meeting","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-3":["presentation","meeting","投影","放映","演示","演讲","视频会议","幻灯片","会议室"],"slideshow-4":["presentation","meeting","投影","放映","演示","演讲","可视对讲","幻灯片","会议室"],"window":["browser","program","web","窗口","浏览器","程序","网站"],"window-2":["browser","program","web","窗口","浏览器","程序","网站"],"stack":["layers","图层","叠加","堆栈"],"service":["heart","handshake","cooperation","服务","握手","心","合作"],"registered":["注册","商标"],"trademark":["注册","商标"],"advertisement":["ad","广告","推广"],"copyright":["版权"],"creative-commons":["知识共享"],"creative-commons-by":["attribution","copyright","版权","知识共享","署名"],"creative-commons-nc":["noncommercial","copyright","版权","知识共享","非商业用途"],"creative-commons-nd":["no derivative works","copyright","版权","知识共享","禁止演绎"],"creative-commons-sa":["share alike","copyright","版权","知识共享","相同方式共享"],"creative-commons-zero":["cc0","copyright","版权","知识共享"]},"Communication":{"chat-1":["message","reply","comment","消息","聊天","回复","评论"],"chat-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-4":["message","reply","comment","消息","聊天","回复","评论"],"message":["chat","comment","reply","消息","聊天","回复","评论"],"message-2":["chat","reply","comment","消息","聊天","回复","评论"],"message-3":["chat","reply","comment","消息","聊天","回复","评论"],"chat-check":["message","reply","comment","消息","聊天","回复","评论","已阅"],"chat-delete":["message","comment","消息","聊天","回复","评论","清除","删除"],"chat-forward":["message","comment","消息","聊天","转发"],"chat-upload":["message","comment","消息","聊天","上传"],"chat-download":["message","comment","消息","下载"],"chat-new":["message","reply","comment","消息","聊天","回复","评论"],"chat-settings":["message","comment","消息","聊天","回复","评论","设置"],"chat-smile":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-heart":["message","reply","comment","消息","聊天","回复","评论","心","点赞","收藏"],"chat-off":["message","reply","comment","slash","消息","聊天","回复","评论","禁止","关闭"],"feedback":["message","comment","消息","聊天","回复","评论","反馈"],"discuss":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"question-answer":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"questionnaire":["message","comment","help","消息","聊天","回复","评论","讨论","调查问卷","帮助"],"video-chat":["message","comment","消息","视频聊天"],"chat-voice":["message","comment","消息","语音消息"],"chat-quote":["message","reply","comment","消息","引用回复"],"chat-follow-up":["message","reply","comment","消息","+1","跟帖"],"chat-poll":["message","vote","questionnaire","消息","投票","问卷调查"],"chat-history":["message","历史消息","消息记录"],"chat-private":["message","私密消息","密聊"]},"Design":{"pencil":["edit","铅笔","编辑"],"edit":["pencil","铅笔","编辑"],"edit-2":["pencil","铅笔","编辑"],"ball-pen":["圆珠笔"],"quill-pen":["羽毛笔"],"mark-pen":["马克笔"],"markup":["标记","马克"],"pen-nib":["钢笔","笔尖"],"edit-box":["编辑"],"edit-circle":["编辑"],"sip":["吸管","取色器"],"brush":["笔刷","画笔","刷子"],"brush-2":["刷子"],"brush-3":["刷子"],"brush-4":["刷子"],"paint-brush":["填色","填充","刷子"],"contrast":["brightness","tonalit","对比度","亮度","色调"],"contrast-2":["moon","dark","brightness","tonalit","月亮","夜间","对比度","亮度","色调"],"drop":["water","blur","模糊","水","滴"],"blur-off":["water","drop","slash","模糊","水","滴","禁止","关闭"],"contrast-drop":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"contrast-drop-2":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"compasses":["圆规"],"compasses-2":["圆规"],"scissors":["剪刀","裁剪"],"scissors-cut":["剪刀","裁剪"],"scissors-2":["剪刀","裁剪","截屏"],"slice":["knife","切图","切片","刀"],"eraser":["remove formatting","橡皮","擦除","清除格式"],"ruler":["尺子"],"ruler-2":["尺子"],"pencil-ruler":["design","铅笔","尺子","文具","设计"],"pencil-ruler-2":["design","铅笔","尺子","文具","设计"],"t-box":["文字","字体","字号"],"input-method":["输入法","文字"],"artboard":["grid","crop","画板","裁切"],"artboard-2":["画板"],"crop":["裁切"],"crop-2":["裁切"],"screenshot":["capture","屏幕截图","截屏"],"screenshot-2":["capture","屏幕截图","截屏"],"drag-move":["arrow","拖拽","移动","箭头"],"drag-move-2":["arrow","拖拽","移动","箭头"],"focus":["aim","target","焦点","聚焦","目标","靶心"],"focus-2":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"focus-3":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"paint":["填色","填充","油漆桶"],"palette":["调色盘","色板"],"pantone":["色板","潘通色","色号"],"shape":["border","形状","描边","边框"],"shape-2":["border","形状","描边","边框"],"magic":["fantasy","magic stick","beautify","魔法棒","美化","幻想","魔幻"],"anticlockwise":["rotate","left","左翻转","左旋转"],"anticlockwise-2":["rotate","left","左翻转","左旋转"],"clockwise":["rotate","right","右翻转","右旋转"],"clockwise-2":["rotate","right","右翻转","右旋转"],"hammer":["锤子"],"tools":["settings","工具","设置"],"drag-drop":["drag and drop","mouse","拖拽","鼠标"],"table":["表格"],"table-alt":["表格"],"layout":["布局"],"layout-2":["collage","布局","拼贴画"],"layout-3":["collage","布局","拼贴画"],"layout-4":["collage","布局","拼贴画"],"layout-5":["collage","布局","拼贴画"],"layout-6":["collage","布局","拼贴画"],"layout-column":["左右布局"],"layout-row":["上下布局"],"layout-top":["顶部布局","顶部导航"],"layout-right":["右侧布局","右侧导航"],"layout-bottom":["底部布局","底部导航"],"layout-left":["左侧布局","左侧导航"],"layout-top-2":["顶部布局","顶部导航"],"layout-right-2":["右侧布局","右侧导航"],"layout-bottom-2":["底部布局","底部导航"],"layout-left-2":["左侧布局","左侧导航"],"layout-grid":["卡片布局","网格"],"layout-masonry":["瀑布流布局","拼贴画"],"grid":["table","网格","表格"]},"Development":{"bug":["虫子"],"bug-2":["虫子"],"code":["代码","编程"],"code-s":["代码","编程"],"code-s-slash":["代码","编程"],"code-box":["代码","编程"],"terminal-box":["code","command line","终端","代码","命令行"],"terminal":["code","command line","终端","代码","命令行"],"terminal-window":["code","command line","终端","代码","命令行"],"parentheses":["code","math","小括号"],"brackets":["code","math","中括号"],"braces":["code","math","大括号","花括号"],"command":["apple key","花键","苹果键"],"cursor":["mouse","指针","鼠标"],"git-commit":["node","提交"],"git-pull-request":["合并申请"],"git-merge":["合并"],"git-branch":["分支"],"git-repository":["仓库"],"git-repository-commits":["仓库","提交"],"git-repository-private":["私密仓库","私人仓库"],"html5":["html","h5"],"css3":["css"]},"Device":{"tv":["电视"],"tv-2":["monitor","电视","显示器"],"computer":["monitor","电脑","显示器"],"mac":["monitor","显示器"],"macbook":["laptop","笔记本"],"cellphone":["手机","电话"],"smartphone":["mobile","手机"],"tablet":["平板电脑"],"device":["设备"],"phone":["电话"],"database":["storage","数据库","存储"],"database-2":["storage","数据库","存储"],"server":["服务器"],"hard-drive":["disc","storage","硬盘","存储"],"hard-drive-2":["disc","server","storage","硬盘","服务器","存储"],"install":["安装"],"uninstall":["卸载"],"save":["floppy","保存","软盘"],"save-2":["floppy","保存","软盘"],"save-3":["floppy","保存","软盘"],"sd-card":["内存卡"],"sd-card-mini":["内存卡"],"sim-card":["电话卡"],"sim-card-2":["电话卡"],"dual-sim-1":["sim card","电话卡","卡槽","双卡双待"],"dual-sim-2":["sim card","电话卡","卡槽","双卡双待"],"u-disk":["U盘","优盘"],"battery":["电池"],"battery-charge":["电池","充电"],"battery-low":["电池","低电量"],"battery-2":["电池"],"battery-2-charge":["电池","充电"],"battery-saver":["电池","省电模式"],"battery-share":["电池共享","共享电量"],"cast":["mirroring","投屏","无线","广播"],"airplay":["mirroring","投屏","无线"],"cpu":["中央处理器"],"gradienter":["水平仪"],"keyboard":["input","键盘","输入"],"keyboard-box":["input","键盘","输入"],"mouse":["鼠标"],"sensor":["capacitor","传感器","电容器"],"router":["wifi","signal tower","radio","station","路由器","信号塔","广播","基站","流量"],"radar":["satellite receiver","雷达","卫星接收器","锅"],"gamepad":["consoles","controller","游戏手柄"],"remote-control":["controller","遥控器"],"remote-control-2":["controller","遥控器"],"device-recover":["恢复出厂设置"],"hotspot":["手机热点"],"phone-find":["找回手机"],"phone-lock":["锁定手机"],"rotate-lock":["锁定旋转屏幕"],"restart":["reload","refresh","重启"],"shut-down":["power off","关机"],"fingerprint":["指纹"],"fingerprint-2":["指纹"],"barcode":["scan","扫码","条形码","条码"],"barcode-box":["scan","扫码","条形码","条码"],"qr-code":["二维码"],"qr-scan":["二维码","扫描"],"qr-scan-2":["二维码","扫描"],"scan":["扫描"],"scan-2":["扫描"],"rss":["feed","subscribe","订阅"],"gps":["signal","定位","信号"],"base-station":["wifi","signal tower","router","cast","基站","信号塔","路由器","广播","流量"],"bluetooth":["wireless","蓝牙","无线"],"bluetooth-connect":["wireless","蓝牙","连接","无线"],"wifi":["无线网"],"wifi-off":["slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"signal-wifi":["cellular","strength","无线网","信号"],"signal-wifi-1":["cellular","strength","无线网","信号"],"signal-wifi-2":["cellular","strength","无线网","信号"],"signal-wifi-3":["cellular","strength","无线网","信号"],"signal-wifi-error":["cellular","offline","connection-fail","无线网","断网","链接失败","无信号"],"signal-wifi-off":["cellular","slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"wireless-charging":["power","flash","无线充电","闪充"]},"Document":{"file":["new","paper","文件","文档","新建"],"file-2":["new","paper","文件","文档","新建"],"file-3":["new","paper","文件","文档","新建"],"file-4":["new","paper","文件","文档","新建"],"sticky-note":["new","paper","文件","文档","新建","便签纸","便利贴"],"sticky-note-2":["new","paper","文件","文档","新建","便签纸","便利贴"],"file-edit":["文件","文档","编辑"],"file-paper":["文件","文档","纸","谱"],"file-paper-2":["文件","文档","纸","谱"],"file-text":["文件","文档","文本"],"file-list":["清单","列表"],"file-list-2":["清单","列表"],"file-list-3":["newspaper","清单","列表","报纸"],"bill":["账单"],"file-copy":["duplicate","clone","复制","克隆"],"file-copy-2":["duplicate","clone","复制","克隆"],"clipboard":["copy","复制","剪切板"],"survey":["research","questionnaire","调查","问卷","调研"],"article":["newspaper","文章","报纸"],"newspaper":["报纸"],"file-zip":["7z","rar","压缩包"],"file-mark":["文件","文档","标记"],"task":["todo","任务","待办"],"todo":["待办"],"book":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-mark":["read","dictionary","booklet","书","阅读","字典","小册子","书签"],"book-2":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-3":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-open":["read","booklet","magazine","书","阅读","小册子","杂志"],"book-read":["booklet","magazine","书","阅读","小册子","杂志"],"contacts-book":["通讯录","联系人"],"contacts-book-2":["通讯录","联系人"],"contacts-book-upload":["upload","通讯录","联系人","上传"],"booklet":["notebook","手册","笔记本","小册子"],"file-code":["config","文件","文档","代码","脚本","配置文件"],"file-pdf":["文件","文档"],"file-word":["文档"],"file-ppt":["文件","文档"],"file-excel":["文档","表单"],"file-word-2":["文档"],"file-ppt-2":["文件","文档"],"file-excel-2":["文档","表单"],"file-hwp":["文件","文档","hangul word processor"],"keynote":["演示文稿","幻灯片","讲演"],"numbers":["表格"],"pages":["文稿"],"file-search":["文件","文档","搜索"],"file-add":["new","文件","文档","新建"],"file-reduce":["文件","文档","减"],"file-settings":["文件","文档","设置"],"file-upload":["文件","文档","上传"],"file-transfer":["文件","文档","传输"],"file-download":["文件","文档","下载"],"file-lock":["文件","文档","锁"],"file-chart":["report","文件","文档","柱状图","报表"],"file-chart-2":["report","文件","文档","饼图","报表"],"file-music":["文件","文档","音乐"],"file-gif":["文件","文档","动图"],"file-forbid":["文件","文档","禁用"],"file-info":["文件","文档","信息"],"file-warning":["alert","文件","文档","警告","提醒"],"file-unknow":["文件","文档","未知","问号"],"file-user":["文件","文档","用户"],"file-shield":["protected","secured","文件","文档","盾牌","保护","安全"],"file-shield-2":["protected","secured","文件","文档","盾牌","保护","安全"],"file-damage":["breakdown","broken","文件","文档","损坏","破损","破裂"],"file-history":["record","文件","文档","记录","历史"],"file-shred":["shredder","shred","destroy","cut","文档","销毁","碎纸机","破裂","粉碎"],"file-cloud":["文件","文档","云"],"folder":["directory","file","文件夹","目录","文档"],"folder-2":["directory","file","文件夹","目录","文档"],"folder-3":["directory","file","文件夹","目录","文档"],"folder-4":["directory","file","文件夹","目录","文档"],"folder-5":["directory","file","文件夹","目录","文档"],"folders":["directory","file","文件夹","目录","文档","批量"],"folder-add":["directory","file","文件夹","目录","文档","添加"],"folder-reduce":["directory","file","文件夹","目录","文档","减"],"folder-settings":["directory","file","文件夹","目录","文档","设置"],"folder-upload":["directory","file","文件夹","目录","文档","上传"],"folder-transfer":["directory","file","文件夹","目录","文档","传输"],"folder-download":["directory","file","文件夹","目录","文档","下载"],"folder-lock":["directory","file","文件夹","目录","文档","锁"],"folder-chart":["report","文件夹","目录","文档","柱状图","报表"],"folder-chart-2":["report","文件夹","目录","文档","饼图","报表"],"folder-music":["directory","file","文件夹","目录","文档","音乐"],"folder-forbid":["directory","file","文件夹","目录","文档","禁用"],"folder-info":["directory","file","文件夹","目录","文档","信息"],"folder-warning":["alert","directory","file","文件夹","目录","文档","警告","提醒"],"folder-unknow":["directory","file","文件夹","目录","文档","未知"],"folder-user":["directory","file","文件夹","目录","文档","用户"],"folder-shield":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shield-2":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shared":["directory","file","文件夹","目录","文档","分享"],"folder-received":["directory","file","文件夹","目录","文档","接收"],"folder-open":["directory","file","文件夹","目录","文档","打开"],"folder-keyhole":["directory","encryption","file","文件夹","目录","文档","打开","加密文档"],"folder-zip":["directory","file","文件夹","目录","文档","打开","压缩"],"folder-history":["directory","file","record","文件夹","目录","文档","记录","历史"],"markdown":["arrow","箭头","下"]},"Editor":{"bold":["加粗"],"italic":["斜体"],"heading":["标题"],"text":["字体"],"font-color":["文字色"],"font-size":["字号","字体大小"],"font-size-2":["字号","字体大小"],"underline":["下划线"],"emphasis":["着重号"],"emphasis-cn":["着重号"],"strikethrough":["remove formatting","删除线"],"strikethrough-2":["remove formatting","删除线"],"format-clear":["remove formatting","清除格式"],"align-left":["左对齐"],"align-center":["居中对齐"],"align-right":["右对齐"],"align-justify":["排列对齐"],"align-top":["顶部对齐"],"align-vertically":["垂直对齐"],"align-bottom":["底部对齐"],"list-check":["check list","清单列表"],"list-check-2":["check list","清单列表"],"list-ordered":["number list","有序列表"],"list-unordered":["bullet list","无序列表"],"indent-decrease":["indent more","缩进"],"indent-increase":["indent less","缩进"],"line-height":["行高"],"text-spacing":["字间距"],"text-wrap":["文本换行"],"attachment-2":["annex","paperclip","附件","曲别针"],"link":["connection","address","联系","链接","地址"],"link-unlink":["connection","remove address","去除链接"],"link-m":["connection","address","联系","链接","地址"],"link-unlink-m":["connection","remove address","去除链接"],"separator":["分割线"],"space":["空格"],"page-separator":["insert","分页符","插入"],"code-view":["代码视图"],"double-quotes-l":["left","quotaion marks","双引号"],"double-quotes-r":["right","quotaion marks","双引号"],"single-quotes-l":["left","quotaion marks","单引号"],"single-quotes-r":["right","quotaion marks","单引号"],"table-2":["表格"],"subscript":["角标","下标","脚注"],"subscript-2":["角标","下标","脚注"],"superscript":["角标","上标"],"superscript-2":["角标","上标"],"paragraph":["段落"],"text-direction-l":["文本左对齐"],"text-direction-r":["文本左对齐"],"functions":["功能"],"omega":["Ω","特殊符号"],"hashtag":["#","井号"],"asterisk":["*","星号"],"translate":["translator","翻译"],"translate-2":["translator","翻译"],"a-b":["a/b testing","ab testing","ab测试"],"english-input":["英文输入法"],"pinyin-input":["拼音输入法"],"wubi-input":["五笔输入法"],"input-cursor-move":["移动输入光标"],"number-1":["1","一","数字"],"number-2":["2","二","数字"],"number-3":["3","三","数字"],"number-4":["4","四","数字"],"number-5":["5","五","数字"],"number-6":["6","六","数字"],"number-7":["7","七","数字"],"number-8":["8","八","数字"],"number-9":["9","九","数字"],"number-0":["0","零","数字"],"sort-asc":["ranking","ordering","sorting","ascending","descending","升序排列","排序"],"sort-desc":["ranking","ordering","降序排列","排序"],"bring-forward":["arrange","层级","向上一层"],"send-backward":["arrange","层级","向下一层"],"bring-to-front":["arrange","层级","移到最前面"],"send-to-back":["arrange","层级","移到最后面"]},"Finance":{"wallet":["钱包","卡包"],"wallet-2":["钱包","卡包"],"wallet-3":["钱包","卡包"],"bank-card":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"bank-card-2":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"secure-payment":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付","安全"],"refund":["credit card","repayment","cc","银行卡","信用卡还款"],"refund-2":["credit card","repayment","cc","银行卡","信用卡还款"],"safe":["保险柜","保险箱"],"safe-2":["保险柜","保险箱"],"price-tag":["label","标签","价签"],"price-tag-2":["label","标签","价签"],"price-tag-3":["label","标签","价签"],"ticket":["coupon","票","优惠券","代金券"],"ticket-2":["coupon","票","优惠券","代金券"],"coupon":["ticket","票","优惠券","代金券"],"coupon-2":["ticket","票","优惠券","代金券"],"coupon-3":["ticket","票","优惠券","代金券"],"coupon-4":["优惠券","代金券"],"coupon-5":["优惠券","代金券"],"shopping-bag":["purse","购物袋","购买","消费","商城"],"shopping-bag-2":["购物袋","购买","消费","商城"],"shopping-bag-3":["购物袋","购买","消费","商城"],"shopping-basket":["购物篮","购买","消费","商城"],"shopping-basket-2":["购物篮","购买","消费","商城"],"shopping-cart":["购物车","购买","消费","商城"],"shopping-cart-2":["购物车","购买","消费","商城"],"vip":["会员"],"vip-crown":["king","queen","皇冠","会员","国王","女王","王后"],"vip-crown-2":["king","queen","皇冠","会员","国王","女王","王后"],"vip-diamond":["钻石","会员"],"trophy":["奖品","奖杯","金杯"],"exchange":["swap","交换","换算","兑换"],"exchange-box":["swap","交换","换算","兑换"],"swap":["exchange","交换","换算","兑换"],"swap-box":["exchange","交换","换算","兑换"],"exchange-dollar":["swap","transfer","交换","换算","兑换","美元","转账"],"exchange-cny":["swap","transfer","交换","换算","兑换","人民币","转账"],"exchange-funds":["swap","transfer","交换","换算","兑换","基金","股票","转账"],"increase-decrease":["计算器"],"percent":["百分之","百分比"],"copper-coin":["currency","payment","铜币","硬币","货币","钱","支付"],"copper-diamond":["currency","coins","金币","钻石","货币","钱","支付"],"money-cny-box":["currency","payment","货币","钱","支付","人民币"],"money-cny-circle":["currency","coins","金币","payment","货币","钱","支付","人民币"],"money-dollar-box":["currency","payment","货币","钱","支付","美元"],"money-dollar-circle":["currency","coins","金币","payment","cent","penny","货币","钱","支付","美元","美分","便士"],"money-euro-box":["currency","payment","货币","钱","支付","欧元"],"money-euro-circle":["currency","coins","金币","payment","货币","钱","支付","欧元"],"money-pound-box":["currency","payment","货币","钱","支付","英镑"],"money-pound-circle":["currency","coins","金币","payment","货币","钱","支付","英镑"],"bit-coin":["currency","payment","货币","钱","比特币"],"coin":["金币","硬币"],"coins":["金币","硬币"],"currency":["cash","payment","货币","钱"],"funds":["foundation","stock","基金","股票"],"funds-box":["foundation","stock","基金","股票"],"red-packet":["红包"],"water-flash":["水电费"],"stock":["股票"],"auction":["hammer","拍卖","锤子"],"gift":["present","礼物"],"gift-2":["present","礼物"],"hand-coin":["donate","business","捐赠"],"hand-heart":["help","donate","volunteer","welfare","帮助","爱心","捐赠","志愿者","公益"]},"Logos":{"alipay":["zhifubao","支付宝"],"amazon":["亚马逊"],"android":["applications","安卓","应用"],"angularjs":["angular","programing framework"],"app-store":["applications","苹果应用商店"],"apple":["苹果"],"baidu":["du","claw","百度","爪"],"behance":["behance"],"bilibili":["哔哩哔哩"],"centos":["linux","system","系统"],"chrome":["谷歌浏览器"],"codepen":["代码笔"],"coreos":["linux","system","系统"],"dingding":["钉钉"],"discord":["game","chat"],"disqus":["comments"],"douban":["豆瓣"],"dribbble":["追波"],"drive":["google drive","谷歌云端硬盘"],"dropbox":["多宝箱"],"edge":["microsoft edge","edge浏览器"],"evernote":["印象笔记"],"facebook":["脸书"],"facebook-circle":["脸书"],"facebook-box":["脸书"],"firefox":["火狐浏览器"],"flutter":["google"],"gatsby":["gatsby"],"github":["github"],"gitlab":["gitlab"],"google":["谷歌"],"google-play":["applications","谷歌应用商店"],"honor-of-kings":["game","王者荣耀"],"ie":["internet explorer","浏览器"],"instagram":["照片墙"],"invision":["invision"],"kakao-talk":["kakao talk","chat"],"line":["连我"],"linkedin":["领英"],"linkedin-box":["领英"],"mastercard":["bank card","银行卡"],"mastodon":["mastodon","长毛象"],"medium":["媒体"],"messenger":["facebook","脸书","信使"],"mini-program":["微信小程序"],"netease-cloud-music":["netease cloud music","网易云音乐"],"netflix":["网飞"],"npmjs":["npm","nodejs"],"open-source":["opensource","开源"],"opera":["欧朋浏览器"],"patreon":["donate","money","捐赠","打赏"],"paypal":["贝宝"],"pinterest":["拼趣"],"pixelfed":["photography","pixelfed"],"playstation":["ps"],"product-hunt":["product hunt"],"qq":["penguin","tencent","腾讯","企鹅"],"reactjs":["react","programing framework","facebook"],"reddit":["reddit"],"remixicon":["remix icon","图标"],"safari":["safari浏览器"],"skype":["skype"],"slack":["slack"],"snapchat":["ghost","色拉布","幽灵"],"soundcloud":["声云"],"spectrum":["spectrum"],"spotify":["music","音乐"],"stack-overflow":["stack overflow"],"stackshare":["share","分享","技术栈"],"steam":["game","store"],"switch":["nintendo","任天堂"],"taobao":["淘宝"],"telegram":["telegram"],"trello":["trello"],"tumblr":["汤博乐"],"twitch":["twitch"],"twitter":["推特"],"ubuntu":["linux","system","系统"],"unsplash":["photos"],"visa":["bank card","银行卡"],"vuejs":["vue","programing framework"],"wechat":["微信"],"wechat-2":["微信"],"wechat-pay":["微信支付"],"weibo":["新浪微博"],"whatsapp":["瓦次艾普"],"windows":["microsoft","窗户","微软"],"xbox":["xbox"],"xing":["xing"],"youtube":["优兔","油管"],"zcool":["zcool","站酷"],"zhihu":["知乎"]},"Map":{"map-pin":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-2":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-3":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-4":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-5":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-add":["location","navigation","地图","坐标","定位","导航","位置","新增","添加"],"map-pin-range":["location","navigation","地图","坐标","定位","导航","位置","范围"],"map-pin-time":["location","navigation","地图","坐标","定位","导航","位置","时间"],"map-pin-user":["location","navigation","地图","坐标","定位","导航","位置","用户"],"pin-distance":["坐标","距离"],"pushpin":["图钉"],"pushpin-2":["图钉"],"compass":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-2":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-3":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-4":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-discover":["navigation","direction","指南针","导航","方向","发现","探索"],"anchor":["锚"],"china-railway":["中铁","铁路","火车"],"space-ship":["太空飞船"],"rocket":["火箭"],"rocket-2":["space ship","火箭","太空飞船"],"map":["navigation","travel","地图","导航","旅行"],"map-2":["location","navigation","travel","地图","定位","导航","旅行"],"treasure-map":["thriller","adventure","地图","藏宝图"],"road-map":["navigation","travel","地图","导航","旅行"],"earth":["global","union","world","language","地球","全球","联合","世界","语言"],"globe":["earth","地球仪"],"parking":["停车场"],"parking-box":["停车场"],"route":["path","路线"],"guide":["path","指引","路线"],"gas-station":["加气站","加油站"],"charging-pile":["充电桩"],"charging-pile-2":["充电桩"],"car":["汽车"],"car-washing":["汽车","洗车"],"roadster":["car","汽车","跑车"],"taxi":["car","出租车","汽车"],"taxi-wifi":["car","出租车","汽车"],"police-car":["汽车","警车"],"bus":["大巴","巴士"],"bus-2":["大巴","巴士"],"bus-wifi":["大巴","巴士"],"truck":["van","delivery","卡车","货车","运输"],"train":["火车"],"train-wifi":["火车"],"subway":["地铁"],"subway-wifi":["地铁"],"flight-takeoff":["airplane","plane","origin","起飞","出发","始发","起点","飞机"],"flight-land":["airplane","plane","destination","着陆","到达","抵达","终点","飞机"],"plane":["fight","飞机","航班"],"sailboat":["帆船"],"ship":["轮船","航海","海运"],"ship-2":["轮船"],"bike":["自行车"],"e-bike":["take out","takeaway","电动车","外卖"],"e-bike-2":["take out","takeaway","电动车","外卖"],"takeaway":["take out","takeaway","电动车","外卖"],"motorbike":["摩托车"],"caravan":["房车"],"walk":["步行"],"run":["奔跑","跑步"],"riding":["bike","骑行","自行车"],"barricade":["路障"],"footprint":["脚印","足迹"],"traffic-light":["交通","信号灯"],"signal-tower":["base station","antenna","信号塔","基站","天线"],"restaurant":["餐厅","饭店"],"restaurant-2":["餐厅","饭店"],"cup":["tea","coffee","杯子","咖啡","茶"],"goblet":["cup","wine glass","高脚杯","酒杯"],"hotel-bed":["酒店","床"],"navigation":["gps","导航"],"oil":["汽油","机油"],"direction":["right","方向","右转"],"steering":["drive","方向盘","驾车"],"steering-2":["drive","方向盘","驾车"],"lifebuoy":["life ring","救生圈"],"passport":["passports","护照"],"suitcase":["travel","旅行","行李箱"],"suitcase-2":["travel","旅行","行李箱","拉杆箱"],"suitcase-3":["travel","旅行","boarding case","行李箱","拉杆箱","登机箱"],"luggage-deposit":["consignment","行李箱","行李寄存","托运"],"luggage-cart":["行李车"]},"Media":{"image":["picture","photo","图片","照片"],"image-2":["picture","photo","图片","照片"],"image-add":["picture","photo","图片","照片","添加"],"landscape":["picture","image","photo","图片","照片"],"gallery":["picture","image","图片","相册"],"gallery-upload":["picture","image","图片","相册","上传"],"video":["视频"],"movie":["film","video","电影","硬盘","视频"],"movie-2":["film","video","电影","硬盘","视频"],"film":["movie","video","影片","电影","视频"],"clapperboard":["movie","film","场记板","电影"],"vidicon":["video","camera","摄像机","摄影机","视频"],"vidicon-2":["camera","摄像机","摄影机"],"live":["video","camera","摄像机","摄影机","视频","直播"],"video-add":["camera","摄像机","摄影机","视频","添加"],"video-upload":["camera","摄像机","摄影机","视频","上传"],"video-download":["camera","摄像机","摄影机","视频","下载"],"dv":["vidicon","camera","摄像机","摄影机"],"camera":["photo","照相机","拍照","照片"],"camera-off":["photo","slash","照相机","拍照","照片","禁止","关闭"],"camera-2":["photo","照相机","拍照","照片"],"camera-3":["photo","照相机","拍照","照片"],"camera-lens":["aperture","photo","照相机","拍照","照片","朋友圈"],"camera-switch":["照相机","拍照","翻转"],"polaroid":["camera","相机","宝丽来"],"polaroid-2":["camera","相机","宝丽来"],"phone-camera":["手机相机","手机摄像头"],"webcam":["摄像头"],"mv":["music video","音乐"],"music":["音乐"],"music-2":["音乐"],"disc":["music","album","音乐","唱片"],"album":["music","唱片","音乐"],"dvd":["cd","dvd","record","光盘","刻录"],"headphone":["music","headset","耳机","音乐"],"radio":["收音机","电台"],"radio-2":["收音机","电台"],"tape":["录音","磁带"],"mic":["record","voice","话筒","语音","录音","声音"],"mic-2":["record","voice","话筒","语音","录音","声音"],"mic-off":["record","voice","slash","关闭话筒","关闭语音","录音","关闭声音","静音","禁止"],"volume-down":["trumpet","sound","speaker","音量低","喇叭","声音","扬声器"],"volume-mute":["trumpet","sound","off","音量低","喇叭","声音","静音"],"volume-up":["trumpet","sound","speaker","音量高","喇叭","声音","扬声器"],"volume-vibrate":["trumpet","sound","speaker","喇叭","声音","扬声器","震动模式"],"volume-off-vibrate":["trumpet","sound","speaker","静音","喇叭","声音","扬声器","静音模式"],"speaker":["音响"],"speaker-2":["音响"],"speaker-3":["音响"],"surround-sound":["环绕立体声"],"broadcast":["广播"],"notification":["bell","alarm","通知","铃铛","提醒"],"notification-2":["bell","alarm","通知","铃铛","提醒"],"notification-3":["bell","alarm","通知","铃铛","提醒"],"notification-4":["bell","alarm","通知","铃铛","提醒"],"notification-off":["bell","alarm","silent","slash","通知","铃铛","提醒","免打扰","静音","关闭","禁止"],"play-circle":["start","播放","开始"],"pause-circle":["暂停"],"record-circle":["录音"],"stop-circle":["停止"],"eject":["推出"],"play":["start","播放","开始"],"pause":["暂停"],"stop":["停止"],"rewind":["fast","快退"],"speed":["fast","快进"],"skip-back":["上一曲"],"skip-forward":["下一曲"],"play-mini":["播放"],"pause-mini":["暂停"],"stop-mini":["停止"],"rewind-mini":["fast","快退"],"speed-mini":["fast","快进"],"skip-back-mini":["上一曲"],"skip-forward-mini":["下一曲"],"repeat":["循环播放"],"repeat-2":["循环播放"],"repeat-one":["单曲循环"],"order-play":["顺序播放"],"shuffle":["随机播放"],"play-list":["播放列表"],"play-list-add":["列表","添加"],"fullscreen":["maximize","全屏","最大化"],"fullscreen-exit":["minimize","退出全屏","最小化"],"equalizer":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"sound-module":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"rhythm":["节奏","韵律"],"voiceprint":["声纹"],"hq":["high quality","高质量","高品质"],"hd":["high definition","高清晰度"],"4k":["high definition","high quality","高清晰度","高品质","超清"],"aspect-ratio":["宽高比","比例"],"picture-in-picture":["画中画","小窗"],"picture-in-picture-2":["画中画","小窗"],"picture-in-picture-exit":["退出画中画","退出小窗"]},"System":{"apps":["应用"],"apps-2":["应用"],"function":["layout","功能","应用","卡片布局"],"dashboard":["仪表盘"],"menu":["navigation","hamburger","导航","菜单","汉堡包"],"menu-2":["navigation","hamburger","导航","菜单","汉堡包"],"menu-3":["navigation","hamburger","导航","菜单","汉堡包"],"menu-4":["navigation","hamburger","导航","菜单","汉堡包"],"menu-5":["navigation","hamburger","导航","菜单","汉堡包"],"menu-add":["navigation","hamburger","导航","菜单","汉堡包","添加"],"more":["ellipsis","更多","省略"],"more-2":["ellipsis","更多","省略"],"heart":["like","love","favorite","心","喜欢","爱","收藏"],"heart-2":["public welfare","like","love","favorite","心","喜欢","爱","收藏"],"heart-add":["like","love","favorite","心","喜欢","爱","收藏"],"star":["favorite","like","mark","星星","星标","喜欢"],"star-s":["favorite","like","mark","星星","星标","喜欢","半星"],"star-half":["favorite","like","mark","星星","星标","喜欢"],"star-half-s":["favorite","like","mark","星星","星标","喜欢","半星"],"settings":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-2":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-3":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-4":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-5":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-6":["edit","gear","preferences","偏好设置","编辑","齿轮"],"list-settings":["列表","设置"],"forbid":["slash","ban","禁止","禁用"],"forbid-2":["slash","ban","禁止","禁用"],"information":["信息"],"error-warning":["alert","警告","错误"],"question":["help","问号","帮助"],"alert":["提醒","警告"],"spam":["alert","垃圾邮件","警告"],"spam-2":["alert","垃圾邮件","警告"],"spam-3":["alert","垃圾邮件","警告"],"checkbox-blank":["复选框","空"],"checkbox":["复选框"],"checkbox-indeterminate":["复选框"],"add-box":["plus","new","复选框","添加","加号","新增"],"checkbox-blank-circle":["复选框","空"],"checkbox-circle":["复选框"],"indeterminate-circle":["slash","ban","复选框","禁"],"add-circle":["plus","new","复选框","添加","加号","新增"],"close-circle":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"radio-button":["单选框"],"checkbox-multiple-blank":["复选框","空"],"checkbox-multiple":["复选框","空"],"check":["对勾"],"check-double":["read","done","double-tick","双对勾","已读"],"close":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"add":["plus","new","添加","新增","加号"],"subtract":["减"],"divide":["除以"],"arrow-left-up":["corner","左上"],"arrow-up":["箭头","向上"],"arrow-right-up":["corner","右上"],"arrow-right":["箭头","向右"],"arrow-right-down":["corner","右下"],"arrow-down":["箭头","向下"],"arrow-left-down":["corner","箭头","左下"],"arrow-left":["箭头","向左","返回"],"arrow-up-circle":["箭头","向上"],"arrow-right-circle":["箭头","向右"],"arrow-down-circle":["箭头","向下","下载"],"arrow-left-circle":["箭头","向左","返回"],"arrow-up-s":["箭头","向上"],"arrow-down-s":["箭头","向下"],"arrow-right-s":["箭头","向右"],"arrow-left-s":["箭头","向左","返回"],"arrow-drop-up":["箭头","向上"],"arrow-drop-right":["箭头","向右"],"arrow-drop-down":["箭头","向下"],"arrow-drop-left":["箭头","向左","返回"],"arrow-left-right":["exchange","swap","箭头","左右","交换","换算","兑换"],"arrow-up-down":["exchange","swap","箭头","上下","交换","换算","兑换"],"arrow-go-back":["undo","箭头","返回","撤销","撤回"],"arrow-go-forward":["redo","箭头","重做","撤回"],"download":["下载"],"upload":["上传"],"download-2":["下载"],"upload-2":["上传"],"download-cloud":["下载","云"],"download-cloud-2":["下载","云"],"upload-cloud":["上传","云"],"upload-cloud-2":["上传","云"],"login-box":["sign in","登录"],"logout-box":["sign out","登出","注销"],"logout-box-r":["sign out","登出","注销"],"login-circle":["sign in","登录"],"logout-circle":["sign out","登出","注销"],"logout-circle-r":["sign out","登出","注销"],"refresh":["synchronization","reload","restart","spinner","loader","ajax","update","刷新","同步"],"shield":["safety","protect","盾牌","卫士","安全","防御"],"shield-cross":["safety","protect","盾牌","卫士","安全","防御","闪电"],"shield-flash":["safety","protect","盾牌","卫士","安全","防御"],"shield-star":["safety","protect","盾牌","卫士","安全","防御","星星"],"shield-user":["safety","protect","user protected","guarantor","盾牌","卫士","安全","防御","用户"],"shield-keyhole":["safety","protect","guarantor","盾牌","卫士","安全","防御","钥匙孔"],"delete-back":["backspace","删除","退格"],"delete-back-2":["backspace","删除","退格"],"delete-bin":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-2":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-3":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-4":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-5":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-6":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-7":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"lock":["security","password","锁子","安全","密码"],"lock-2":["security","password","锁子","安全","密码"],"lock-password":["security","锁子","安全","密码"],"lock-unlock":["security","password","锁子","安全","密码"],"eye":["watch","view","眼睛","查看"],"eye-off":["slash","眼睛","不可见","关闭","禁止"],"eye-2":["watch","view","眼睛","查看"],"eye-close":["x","闭眼"],"search":["搜索","放大镜"],"search-2":["搜索","放大镜"],"search-eye":["搜索","放大镜","眼睛"],"zoom-in":["放大","放大镜"],"zoom-out":["缩小","放大镜"],"find-replace":["查找","搜索","替换"],"share":["分享","转发"],"share-box":["分享","转发"],"share-circle":["分享","转发"],"share-forward":["分享","转发"],"share-forward-2":["分享","转发"],"share-forward-box":["分享","转发"],"side-bar":["侧边栏"],"time":["clock","时间","时钟","钟表"],"timer":["chronograph","stopwatch","秒表","计时器"],"timer-2":["chronograph","stopwatch","秒表","计时器"],"timer-flash":["chronograph","stopwatch","秒表","计时器","闪电"],"alarm":["闹钟"],"history":["record","recent","time machine","历史记录","最近"],"thumb-down":["dislike","bad","不喜欢","不好"],"thumb-up":["like","good","喜欢","好"],"alarm-warning":["alert","report","police light","告警","举报","警灯"],"notification-badge":["red dot","通知","小红点"],"toggle":["switch","开关","触发器"],"filter":["filtration","筛选","过滤"],"filter-2":["filtration","筛选","过滤"],"filter-3":["filtration","筛选","过滤"],"loader":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-2":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-3":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-4":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-5":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"external-link":["外链"]},"User&Faces":{"user":["用户"],"user-2":["用户"],"user-3":["用户"],"user-4":["用户"],"user-5":["用户"],"user-6":["用户"],"user-smile":["用户","微笑"],"account-box":["用户","账户"],"account-circle":["用户","账户"],"account-pin-box":["用户","账户"],"account-pin-circle":["用户","账户"],"user-add":["用户","添加","新增"],"user-follow":["关注"],"user-unfollow":["用户","取消关注"],"user-shared":["transfer","用户","我分享的","发送"],"user-shared-2":["transfer","用户","我分享的","发送"],"user-received":["用户","我接收的","收取"],"user-received-2":["用户","我接收的","收取"],"user-location":["用户","定位"],"user-search":["用户","查找"],"user-settings":["admin","用户","设置","管理员"],"user-star":["用户","关注"],"user-heart":["用户","关注"],"admin":["admin","用户","管理员"],"contacts":["联系人"],"group":["team","团队","群组"],"group-2":["team","团队","群组"],"team":["团队","小组","群主"],"user-voice":["用户","录音","演讲"],"emotion":["表情","笑脸"],"emotion-2":["表情","笑脸"],"emotion-happy":["表情","开心"],"emotion-normal":["表情","一般"],"emotion-unhappy":["表情","不开心"],"emotion-laugh":["comedy","happy","表情","大笑","笑脸","开心","喜剧"],"emotion-sad":["drama","tears","悲剧","哭泣","泪"],"skull":["ghost","骷髅","鬼怪"],"skull-2":["ghost","horror","thriller","骷髅","鬼怪","恐惧","恐怖"],"men":["gender","male","man","男人","男性"],"women":["gender","female","woman","女人","女性"],"travesti":["女人","女性"],"genderless":["女人","女性"],"open-arm":["张开双臂"],"body-scan":["gesture recognition","body","扫描身体","体态识别","动作之别","手势识别"],"parent":["patriarch","父母","亲子","家长"],"robot":["mechanic","机器人"],"aliens":["science fiction","ET","外星人","科幻小说"],"bear-smile":["cartoon","anime","cartoon","小熊","微笑","儿童","动画片","卡通","动漫"],"mickey":["cartoon","disney","迪士尼","米老鼠","微笑","儿童","动画片"],"criminal":["horror","thriller","罪犯","犯罪","恐怖"],"ghost":["horror","thriller","鬼怪","恐怖","恐惧"],"ghost-2":["horror","鬼怪","恐怖","恐惧"],"ghost-smile":["鬼怪","笑"],"star-smile":["animation","动画","微笑","星星"],"spy":["incognito mode","detective","secret","间谍","侦探","无痕模式","隐私模式"]},"Weather":{"sun":["light mode","sunny","太阳","白天模式","晴天"],"moon":["dark mode","night","月亮","夜间模式","月牙"],"flashlight":["闪电"],"cloudy":["多云"],"cloudy-2":["多云"],"mist":["雾气","雾霾"],"foggy":["大雾"],"cloud-windy":["风"],"windy":["大风","刮风"],"rainy":["下雨","雨天"],"drizzle":["小雨"],"showers":["中雨"],"heavy-showers":["大雨"],"thunderstorms":["雷暴","雷阵雨"],"hail":["冰雹"],"snowy":["下雪","雪天"],"sun-cloudy":["晴转多云"],"moon-cloudy":["夜间多云"],"tornado":["龙卷风"],"typhoon":["cyclone","tornado","龙卷风","旋风","台风"],"haze":["阴霾","薄雾"],"haze-2":["阴霾","薄雾"],"sun-foggy":["薄雾"],"moon-foggy":["薄雾"],"moon-clear":["夜间模式","夜间无云"],"temp-hot":["temperature","温度","高温","热"],"temp-cold":["temperature","温度","低温","冷"],"celsius":["temperature","温度","摄氏度"],"fahrenheit":["temperature","温度","华氏度"],"fire":["hot","火","热门"],"blaze":["火灾"],"earthquake":["地震"],"flood":["洪水"],"meteor":["流星","陨石"],"rainbow":["彩虹"]},"Others":{"basketball":["sports","运动","篮球"],"bell":["cartoon","anime","doraemon","铃铛","哆啦A梦","卡通","动漫"],"billiards":["sports","运动","台球","8"],"boxing":["sports","运动","拳击"],"cake":["anniversary","蛋糕"],"cake-2":["anniversary","蛋糕"],"cake-3":["蛋糕"],"door-lock":["门锁"],"door-lock-box":["门锁"],"flask":["testing","experimental","experiment","烧瓶","实验","试验"],"football":["sports","运动","足球"],"game":["pac man","游戏","吃豆人"],"handbag":["fashion","时尚","手提包","女包"],"hearts":["romance","爱情","浪漫","心"],"key":["password","钥匙","密码"],"key-2":["password","钥匙","密码"],"knife":["刀"],"knife-blood":["crime","刀","犯罪","血","杀人"],"lightbulb":["energy","creativity","灯泡","能源"],"lightbulb-flash":["energy","creativity","灯泡","能源","闪电"],"outlet":["插座"],"outlet-2":["插座"],"ping-pong":["sports","table tennis","运动","乒乓球"],"plug":["二脚插头"],"plug-2":["三脚插头"],"reserved":["已预定"],"shirt":["clothes","衬衫","衣服"],"sword":["war","刀剑","战争","战斗","玄幻"],"t-shirt":["skin","theme","T恤","皮肤","主题"],"t-shirt-2":["skin","theme","T恤","皮肤","主题"],"t-shirt-air":["dry","T恤","风干","烘干"],"umbrella":["protect","雨伞","保护"],"character-recognition":["ocr","文字识别"],"voice-recognition":["asr","语音识别"],"leaf":["energy","ecology","树叶","节能","环保","语音识别"],"plant":["植物"],"recycle":["recyclable","可回收"],"scales":["balance","称","天平","天秤"],"scales-2":["厨房称"],"fridge":["refrigerator","电冰箱"],"wheelchair":["accessbility","轮椅","可访问性","辅助功能"]}}';
+ icons = JSON.parse(icons);
+ var iconData = "";
+ var simpleIcons = ['Editor'];
+
+ Object.keys(icons).forEach(function(key) {
+ if(key === "Editor") {
+ iconData = iconData + '
' + key + ' Use <i class="ri-bold"></i> v 2.4.1 .
';
+ Object.keys(icons[key]).forEach(function (k) {
+ iconData += '
\
+ ri-' + k + '
';
+ });
+ } else {
+ iconData = iconData + '
' + key + ' Use <i class="ri-home-line"></i> or <i class="ri-home-fill"></i> v 2.4.1 .
';
+ Object.keys(icons[key]).forEach(function (k) {
+ iconData += '
\
+ ri-' + k + '-line\
+
\
+ ri-' + k + '-fill\
+
';
+ });
+ }
+ iconData += '
';
+ });
+
+ if(document.getElementById("icons"))
+ document.getElementById("icons").innerHTML = iconData;
diff --git a/public/build/js/pages/sweetalerts.init.js b/public/build/js/pages/sweetalerts.init.js
new file mode 100644
index 0000000..1f41f5f
--- /dev/null
+++ b/public/build/js/pages/sweetalerts.init.js
@@ -0,0 +1,481 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Sweatalerts init js
+*/
+
+//Basic
+if (document.getElementById("sa-basic"))
+ document.getElementById("sa-basic").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Any fool can use a computer',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//A title with a text under
+if (document.getElementById("sa-title"))
+ document.getElementById("sa-title").addEventListener("click", function () {
+ Swal.fire({
+ title: "The Internet?",
+ text: 'That thing is still around?',
+ icon: 'question',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//Success Message
+if (document.getElementById("sa-success"))
+ document.getElementById("sa-success").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Good job!',
+ text: 'You clicked the button!',
+ icon: 'success',
+ showCancelButton: true,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2 me-2',
+ cancelButton: 'btn btn-danger w-xs mt-2',
+ },
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//error Message
+if (document.getElementById("sa-error"))
+ document.getElementById("sa-error").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Oops...',
+ text: 'Something went wrong!',
+ icon: 'error',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false,
+ footer: '
Why do I have this issue? ',
+ showCloseButton: true
+ })
+ });
+
+// long content
+if (document.getElementById("sa-longcontent"))
+ document.getElementById("sa-longcontent").addEventListener("click", function () {
+ Swal.fire({
+ imageUrl: 'https://placeholder.pics/svg/300x1500',
+ imageHeight: 1500,
+ imageAlt: 'A tall image',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//Warning Message
+if (document.getElementById("sa-warning"))
+ document.getElementById("sa-warning").addEventListener("click", function () {
+ Swal.fire({
+ title: "Are you sure?",
+ text: "You won't be able to revert this!",
+ icon: "warning",
+ showCancelButton: true,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs me-2 mt-2',
+ cancelButton: 'btn btn-danger w-xs mt-2',
+ },
+ confirmButtonText: "Yes, delete it!",
+ buttonsStyling: false,
+ showCloseButton: true
+ }).then(function (result) {
+ if (result.value) {
+ Swal.fire({
+ title: 'Deleted!',
+ text: 'Your file has been deleted.',
+ icon: 'success',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false
+ })
+ }
+ });
+ });
+
+//Parameter
+if (document.getElementById("sa-params"))
+ document.getElementById("sa-params").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Are you sure?',
+ text: "You won't be able to revert this!",
+ icon: 'warning',
+ showCancelButton: true,
+ confirmButtonText: 'Yes, delete it!',
+ cancelButtonText: 'No, cancel!',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs me-2 mt-2',
+ cancelButton: 'btn btn-danger w-xs mt-2',
+ },
+ buttonsStyling: false,
+ showCloseButton: true
+ }).then(function (result) {
+ if (result.value) {
+ Swal.fire({
+ title: 'Deleted!',
+ text: 'Your file has been deleted.',
+ icon: 'success',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false
+ })
+ } else if (
+ // Read more about handling dismissals
+ result.dismiss === Swal.DismissReason.cancel
+ ) {
+ Swal.fire({
+ title: 'Cancelled',
+ text: 'Your imaginary file is safe :)',
+ icon: 'error',
+ customClass: {
+ confirmButton: 'btn btn-primary mt-2',
+ },
+ buttonsStyling: false
+ })
+ }
+ });
+ });
+
+
+//Custom Image
+if (document.getElementById("sa-image"))
+ document.getElementById("sa-image").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Sweet!',
+ text: 'Modal with a custom image.',
+ imageUrl: '../build/images/logo-sm.png',
+ imageHeight: 40,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mt-2',
+ },
+ buttonsStyling: false,
+ animation: false,
+ showCloseButton: true
+ })
+ });
+
+//Auto Close Timer
+if (document.getElementById("sa-close"))
+ document.getElementById("sa-close").addEventListener("click", function () {
+ var timerInterval;
+ Swal.fire({
+ title: 'Auto close alert!',
+ html: 'I will close in
seconds.',
+ timer: 2000,
+ timerProgressBar: true,
+ showCloseButton: true,
+ didOpen: function () {
+ Swal.showLoading()
+ timerInterval = setInterval(function () {
+ var content = Swal.getHtmlContainer()
+ if (content) {
+ var b = content.querySelector('b')
+ if (b) {
+ b.textContent = Swal.getTimerLeft()
+ }
+ }
+ }, 100)
+ },
+ onClose: function () {
+ clearInterval(timerInterval)
+ }
+ }).then(function (result) {
+ /* Read more about handling dismissals below */
+ if (result.dismiss === Swal.DismissReason.timer) {
+ console.log('I was closed by the timer')
+ }
+ })
+ });
+
+//custom html alert
+if (document.getElementById("custom-html-alert"))
+ document.getElementById("custom-html-alert").addEventListener("click", function () {
+ Swal.fire({
+ title: '
HTML example ',
+ icon: 'info',
+ html: 'You can use
bold text , ' +
+ '
links ' +
+ 'and other HTML tags',
+ showCloseButton: true,
+ showCancelButton: true,
+ customClass: {
+ confirmButton: 'btn btn-success me-2',
+ cancelButton: 'btn btn-danger',
+ },
+ buttonsStyling: false,
+ confirmButtonText: '
Great!',
+ cancelButtonText: '
',
+ showCloseButton: true
+ })
+ });
+
+//dialog three buttons
+if (document.getElementById("sa-dialog-three-btn"))
+ document.getElementById("sa-dialog-three-btn").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Do you want to save the changes?',
+ showDenyButton: true,
+ showCancelButton: true,
+ confirmButtonText: 'Save',
+ customClass: {
+ confirmButton: 'btn btn-success w-xs me-2',
+ cancelButton: 'btn btn-danger w-xs',
+ denyButton: 'btn btn-info w-xs me-2',
+ },
+ buttonsStyling: false,
+ denyButtonText: 'Don\'t save',
+ showCloseButton: true
+ }).then(function (result) {
+ /* Read more about isConfirmed, isDenied below */
+ if (result.isConfirmed) {
+ Swal.fire({
+ title: 'Saved!',
+ icon: 'success',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs',
+ },
+ buttonsStyling: false,
+ })
+ } else if (result.isDenied) {
+ Swal.fire({
+ title: 'Changes are not saved',
+ icon: 'info',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs',
+ },
+ buttonsStyling: false,
+ })
+ }
+ })
+ });
+
+//position
+if (document.getElementById("sa-position"))
+ document.getElementById("sa-position").addEventListener("click", function () {
+ Swal.fire({
+ position: 'top-end',
+ icon: 'success',
+ title: 'Your work has been saved',
+ showConfirmButton: false,
+ timer: 1500,
+ showCloseButton: true
+ })
+ });
+
+//Custom width padding
+if (document.getElementById("custom-padding-width-alert"))
+ document.getElementById("custom-padding-width-alert").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Custom width, padding, background.',
+ width: 600,
+ padding: 100,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs',
+ },
+ buttonsStyling: false,
+ background: '#fff url(../build/images/chat-bg-pattern.png)'
+ })
+ });
+
+//Ajax
+if (document.getElementById("ajax-alert"))
+ document.getElementById("ajax-alert").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Submit email to run ajax request',
+ input: 'email',
+ showCancelButton: true,
+ confirmButtonText: 'Submit',
+ showLoaderOnConfirm: true,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs me-2',
+ cancelButton: 'btn btn-danger w-xs',
+ },
+ buttonsStyling: false,
+ showCloseButton: true,
+ preConfirm: function (email) {
+ return new Promise(function (resolve, reject) {
+ setTimeout(function () {
+ if (email === 'taken@example.com') {
+ reject('This email is already taken.')
+ } else {
+ resolve()
+ }
+ }, 2000)
+ })
+ },
+ allowOutsideClick: false
+ }).then(function (email) {
+ Swal.fire({
+ icon: 'success',
+ title: 'Ajax request finished!',
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs',
+ },
+ buttonsStyling: false,
+ html: 'Submitted email: ' + email
+ })
+ })
+ });
+
+
+// Custom SweatAlerts
+
+//Custom success Message
+if (document.getElementById("custom-sa-success"))
+ document.getElementById("custom-sa-success").addEventListener("click", function () {
+ Swal.fire({
+ html: '
' +
+ '
' +
+ '
' +
+ '
Well done ! ' +
+ '
Aww yeah, you successfully read this important message.
' +
+ '
' +
+ '
',
+ showCancelButton: true,
+ showConfirmButton: false,
+ customClass: {
+ cancelButton: 'btn btn-primary w-xs mb-1',
+ },
+ cancelButtonText: 'Back',
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//Custom error Message
+if (document.getElementById("custom-sa-error"))
+ document.getElementById("custom-sa-error").addEventListener("click", function () {
+ Swal.fire({
+ html: '
' +
+ '
' +
+ '
' +
+ '
Oops...! Something went Wrong ! ' +
+ '
Your email Address is invalid
' +
+ '
' +
+ '
',
+ showCancelButton: true,
+ showConfirmButton: false,
+ customClass: {
+ cancelButton: 'btn btn-primary w-xs mb-1',
+ },
+ cancelButtonText: 'Dismiss',
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//Custom error Message
+if (document.getElementById("custom-sa-warning"))
+ document.getElementById("custom-sa-warning").addEventListener("click", function () {
+ Swal.fire({
+ html: '
' +
+ '
' +
+ '
' +
+ '
Are you Sure ? ' +
+ '
Are you Sure You want to Delete this Account ?
' +
+ '
' +
+ '
',
+ showCancelButton: true,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs me-2 mb-1',
+ cancelButton: 'btn btn-danger w-xs mb-1',
+ },
+ confirmButtonText: 'Yes, Delete It!',
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+// custom Join Our Community
+if (document.getElementById("custom-sa-community"))
+ document.getElementById("custom-sa-community").addEventListener("click", function () {
+ Swal.fire({
+ title: 'Join Our Community',
+ html: 'You can use
bold text , ' +
+ '
links ' +
+ 'and other HTML tags',
+ html: '
' +
+ 'Email ' +
+ ' ' +
+ '
',
+ imageUrl: '../build/images/logo-sm.png',
+ footer: '
Already have an account ? Signin
',
+ imageHeight: 40,
+ customClass: {
+ confirmButton: 'btn btn-primary w-xs mb-2',
+ },
+ confirmButtonText: 'Register
',
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
+
+//Custom Email varification
+if (document.getElementById("custom-sa-email-verify"))
+ document.getElementById("custom-sa-email-verify").addEventListener("click", function () {
+ Swal.fire({
+ html: '
' +
+ '
' +
+ '
' +
+ ' ' +
+ '
' +
+ '
' +
+ '
' +
+ '
Verify Your Email ' +
+ '
We have sent you verification email example@abc.com , Please check it.
' +
+ '
' +
+ '
',
+ showCancelButton: false,
+ customClass: {
+ confirmButton: 'btn btn-primary mb-1',
+ },
+ confirmButtonText: 'Verify Email',
+ buttonsStyling: false,
+ footer: '
Didn\'t receive an email ? Resend
',
+ showCloseButton: true
+ })
+ });
+
+
+//Custom notification Message
+if (document.getElementById("custom-sa-notification"))
+ document.getElementById("custom-sa-notification").addEventListener("click", function () {
+ Swal.fire({
+ html: '
' +
+ '
' +
+ '
' +
+ '
' +
+ '
' +
+ '
Welcome Mike Mayer ' +
+ '
You have 2 Notifications
' +
+ '
' +
+ '
',
+ showCancelButton: false,
+ customClass: {
+ confirmButton: 'btn btn-primary mb-1',
+ },
+ confirmButtonText: 'Show Me
',
+ buttonsStyling: false,
+ showCloseButton: true
+ })
+ });
\ No newline at end of file
diff --git a/public/build/js/pages/swiper.init.js b/public/build/js/pages/swiper.init.js
new file mode 100644
index 0000000..2c31e0b
--- /dev/null
+++ b/public/build/js/pages/swiper.init.js
@@ -0,0 +1,247 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: swiper init js
+*/
+
+//Default Swiper
+var swiper = new Swiper(".default-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+});
+
+//Navigation Swiper
+var swiper = new Swiper(".navigation-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ },
+ pagination: {
+ clickable: true,
+ el: ".swiper-pagination",
+ },
+});
+
+//Pagination Dynamic Swiper
+var swiper = new Swiper(".pagination-dynamic-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ clickable: true,
+ el: ".swiper-pagination",
+ dynamicBullets: true,
+ },
+});
+
+// Pagination fraction Swiper
+var swiper = new Swiper(".pagination-fraction-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ clickable: true,
+ el: ".swiper-pagination",
+ type: "fraction",
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ },
+});
+
+// Pagination Custom Swiper
+var swiper = new Swiper(".pagination-custom-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ clickable: true,
+ el: ".swiper-pagination",
+ renderBullet: function (index, className) {
+ return '
' + (index + 1) + " ";
+ },
+ }
+});
+
+// Pagination Progress Swiper
+var swiper = new Swiper(".pagination-progress-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ type: "progressbar",
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ },
+});
+
+// Scrollbar Swiper
+var swiper = new Swiper(".pagination-scrollbar-swiper", {
+ loop: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ scrollbar: {
+ el: ".swiper-scrollbar",
+ hide: true,
+ },
+ navigation: {
+ nextEl: ".swiper-button-next",
+ prevEl: ".swiper-button-prev",
+ }
+});
+
+// Vertical Swiper
+var swiper = new Swiper(".vertical-swiper", {
+ loop: true,
+ direction: "vertical",
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+});
+
+// Mousewheel Control Swiper
+var swiper = new Swiper(".mousewheel-control-swiper", {
+ loop: true,
+ direction: "vertical",
+ mousewheel: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+});
+
+// Effect Fade Swiper
+var swiper = new Swiper(".effect-fade-swiper", {
+ loop: true,
+ effect: "fade",
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+});
+
+// Effect Coverflow Swiper
+var swiper = new Swiper(".effect-coverflow-swiper", {
+ loop: true,
+ effect: "coverflow",
+ grabCursor: true,
+ centeredSlides: true,
+ slidesPerView: "4",
+ coverflowEffect: {
+ rotate: 50,
+ stretch: 0,
+ depth: 100,
+ modifier: 1,
+ slideShadows: true,
+ },
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ dynamicBullets: true,
+ },
+});
+
+// Effect Flip Swiper
+var swiper = new Swiper(".effect-flip-swiper", {
+ loop: true,
+ effect: "flip",
+ grabCursor: true,
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+});
+
+// Effect Creative Swiper
+var swiper = new Swiper(".effect-creative-swiper", {
+ loop: true,
+ grabCursor: true,
+ effect: "creative",
+ creativeEffect: {
+ prev: {
+ shadow: true,
+ translate: [0, 0, -400],
+ },
+ next: {
+ translate: ["100%", 0, 0],
+ },
+ },
+ autoplay: {
+ delay: 2500,
+ disableOnInteraction: false,
+ },
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+});
+
+// Responsive Swiper
+var swiper = new Swiper(".responsive-swiper", {
+ loop: true,
+ slidesPerView: 1,
+ spaceBetween: 10,
+ pagination: {
+ el: ".swiper-pagination",
+ clickable: true,
+ },
+ breakpoints: {
+ 640: {
+ slidesPerView: 2,
+ spaceBetween: 20,
+ },
+ 768: {
+ slidesPerView: 3,
+ spaceBetween: 40,
+ },
+ 1200: {
+ slidesPerView: 4,
+ spaceBetween: 50,
+ },
+ },
+});
\ No newline at end of file
diff --git a/public/build/js/pages/tom-select.init.js b/public/build/js/pages/tom-select.init.js
new file mode 100644
index 0000000..b638b04
--- /dev/null
+++ b/public/build/js/pages/tom-select.init.js
@@ -0,0 +1,159 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: tom-select init js
+*/
+
+
+new TomSelect('#select-links', {
+ valueField: 'id',
+ searchField: 'title',
+ options: [
+ { id: 1, title: 'DIY', url: 'https://diy.org' },
+ { id: 2, title: 'Google', url: 'http://google.com' },
+ { id: 3, title: 'Yahoo', url: 'http://yahoo.com' },
+ ],
+ render: {
+ option: function (data, escape) {
+ return '
' +
+ '' + escape(data.title) + ' ' +
+ '' + escape(data.url) + ' ' +
+ '
';
+ },
+ item: function (data, escape) {
+ return '
' + escape(data.title) + '
';
+ }
+ }
+});
+
+
+//Email Contacts
+
+var REGEX_EMAIL = '([a-z0-9!#$%&\'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+/=?^_`{|}~-]+)*@' +
+ '(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)';
+
+var formatName = function (item) {
+ return ((item.first || '') + ' ' + (item.last || '')).trim();
+};
+
+new TomSelect('#select-to', {
+ persist: false,
+ maxItems: null,
+ valueField: 'email',
+ labelField: 'name',
+ searchField: ['first', 'last', 'email'],
+ sortField: [
+ { field: 'first', direction: 'asc' },
+ { field: 'last', direction: 'asc' }
+ ],
+ options: [
+ { email: 'nikola@tesla.com', first: 'Nikola', last: 'Tesla' },
+ { email: 'brian@thirdroute.com', first: 'Brian', last: 'Reavis' },
+ { email: 'someone@gmail.com' },
+ { email: 'example@gmail.com' },
+ ],
+ render: {
+ item: function (item, escape) {
+ var name = formatName(item);
+ return '
' +
+ (name ? '' + escape(name) + ' ' : '') +
+ (item.email ? '' + escape(item.email) + ' ' : '') +
+ '
';
+ },
+ option: function (item, escape) {
+ var name = formatName(item);
+ var label = name || item.email;
+ var caption = name ? item.email : null;
+ return '
' +
+ '' + escape(label) + ' ' +
+ (caption ? '' + escape(caption) + ' ' : '') +
+ '
';
+ }
+ },
+ createFilter: function (input) {
+ var regexpA = new RegExp('^' + REGEX_EMAIL + '$', 'i');
+ var regexpB = new RegExp('^([^<]*)\<' + REGEX_EMAIL + '\>$', 'i');
+ return regexpA.test(input) || regexpB.test(input);
+ },
+ create: function (input) {
+ if ((new RegExp('^' + REGEX_EMAIL + '$', 'i')).test(input)) {
+ return { email: input };
+ }
+ var match = input.match(new RegExp('^([^<]*)\<' + REGEX_EMAIL + '\>$', 'i'));
+ if (match) {
+ var name = match[1].trim();
+ var pos_space = name.indexOf(' ');
+ var first = name.substring(0, pos_space);
+ var last = name.substring(pos_space + 1);
+
+ return {
+ email: match[2],
+ first: first,
+ last: last
+ };
+ }
+ alert('Invalid email address.');
+ return false;
+ }
+});
+
+// Form Validation
+
+// Browser Defaults
+new TomSelect('#select-person', {
+ create: true,
+ sortField: {
+ field: 'text',
+ direction: 'asc'
+ }
+});
+
+//bootstrap validation
+var my_select = new TomSelect('#select-bootstrap');
+
+// Example starter JavaScript for disabling form submissions if there are invalid fields
+var form = document.getElementById('bootstrap-form')
+form.addEventListener('submit', function (event) {
+
+ // add was-validated to display custom colors
+ form.classList.add('was-validated')
+
+ if (!form.checkValidity()) {
+ event.preventDefault()
+ event.stopPropagation()
+ }
+
+}, false)
+
+//Pattern Attribute
+
+new TomSelect('#pattern', {
+ create: true,
+});
+
+
+//flag
+new TomSelect('.data-attr', {
+ render: {
+ option: function (data, escape) {
+ return `
${data.text}
`;
+ },
+ item: function (item, escape) {
+ return `
${item.text}
`;
+ }
+ }
+});
+
+
+new TomSelect('.data-flag', {
+ render: {
+ option: function (data, escape) {
+ return `
${data.text}
`;
+ },
+ item: function (item, escape) {
+ return `
${item.text}
`;
+ }
+ }
+});
\ No newline at end of file
diff --git a/public/build/js/pages/tour.init.js b/public/build/js/pages/tour.init.js
new file mode 100644
index 0000000..ba35e73
--- /dev/null
+++ b/public/build/js/pages/tour.init.js
@@ -0,0 +1,130 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: tour init js
+*/
+
+var tour = new Shepherd.Tour({
+ defaultStepOptions: {
+ cancelIcon: {
+ enabled: true
+ },
+
+ classes: 'shadow-md bg-purple-dark',
+ scrollTo: {
+ behavior: 'smooth',
+ block: 'center'
+ }
+ },
+ useModalOverlay: {
+ enabled: true
+ },
+});
+
+if (document.querySelector('#logo-tour'))
+ tour.addStep({
+ title: 'Welcome Back !',
+ text: 'This is Step 1',
+ attachTo: {
+ element: '#logo-tour',
+ on: 'bottom'
+ },
+ buttons: [{
+ text: 'Next',
+ classes: 'btn btn-success',
+ action: tour.next
+ }]
+ });
+// end step 1
+
+if (document.querySelector('#register-tour'))
+ tour.addStep({
+ title: 'Register your account',
+ text: 'Get your Free Toner account now.',
+ attachTo: {
+ element: '#register-tour',
+ on: 'bottom'
+ },
+ buttons: [{
+ text: 'Back',
+ classes: 'btn btn-light',
+ action: tour.back
+ },
+ {
+ text: 'Next',
+ classes: 'btn btn-success',
+ action: tour.next
+ }
+ ]
+ });
+// end step 2
+
+if (document.querySelector('#login-tour'))
+ tour.addStep({
+ title: 'Login your account',
+ text: 'Sign in to continue to Toner.',
+ attachTo: {
+ element: '#login-tour',
+ on: 'bottom'
+ },
+ buttons: [{
+ text: 'Back',
+ classes: 'btn btn-light',
+ action: tour.back
+ },
+ {
+ text: 'Next',
+ classes: 'btn btn-success',
+ action: tour.next
+ }
+ ]
+ });
+
+// end step 3
+if (document.querySelector('#getproduct-tour'))
+ tour.addStep({
+ title: 'Get yout Product',
+ text: 'Sign in to continue to Toner.',
+ attachTo: {
+ element: '#getproduct-tour',
+ on: 'bottom'
+ },
+ buttons: [{
+ text: 'Back',
+ classes: 'btn btn-light',
+ action: tour.back
+ },
+ {
+ text: 'Next',
+ classes: 'btn btn-success',
+ action: tour.next
+ }
+ ]
+ });
+// end step 4
+
+if (document.querySelector('#thankyou-tour'))
+ tour.addStep({
+ title: 'Thank you !',
+ text: 'Sign in to continue to Toner.',
+ attachTo: {
+ element: '#thankyou-tour',
+ on: 'bottom'
+ },
+ buttons: [{
+ text: 'Back',
+ classes: 'btn btn-light',
+ action: tour.back
+ },
+ {
+ text: 'Thank you !',
+ classes: 'btn btn-primary',
+ action: tour.complete
+ }
+ ]
+ });
+// end step 5
+
+tour.start();
\ No newline at end of file
diff --git a/public/build/js/pages/two-step-verification.init.js b/public/build/js/pages/two-step-verification.init.js
new file mode 100644
index 0000000..1d97399
--- /dev/null
+++ b/public/build/js/pages/two-step-verification.init.js
@@ -0,0 +1,28 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Two step verification Init Js File
+*/
+
+// move next
+
+function getInputElement(index) {
+ return document.getElementById('digit' + index + '-input');
+}
+function moveToNext(index, event) {
+ const eventCode = event.which || event.keyCode;
+ if (getInputElement(index).value.length === 1) {
+ if (index !== 4) {
+ getInputElement(index + 1).focus();
+ } else {
+ getInputElement(index).blur();
+ // Submit code
+ console.log('submit code');
+ }
+ }
+ if (eventCode === 8 && index !== 1) {
+ getInputElement(index - 1).focus();
+ }
+}
\ No newline at end of file
diff --git a/public/build/js/pages/vector-maps.init.js b/public/build/js/pages/vector-maps.init.js
new file mode 100644
index 0000000..8b09690
--- /dev/null
+++ b/public/build/js/pages/vector-maps.init.js
@@ -0,0 +1,302 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Vector Maps init Js File
+*/
+
+// get colors array from the string
+function getChartColorsArray(chartId) {
+ if (document.getElementById(chartId) !== null) {
+ var colors = document.getElementById(chartId).getAttribute("data-colors");
+ if (colors) {
+ colors = JSON.parse(colors);
+ return colors.map(function (value) {
+ var newValue = value.replace(" ", "");
+ if (newValue.indexOf(",") === -1) {
+ var color = getComputedStyle(document.documentElement).getPropertyValue(newValue);
+ if (color) return color;
+ else return newValue;;
+ } else {
+ var val = value.split(',');
+ if (val.length == 2) {
+ var rgbaColor = getComputedStyle(document.documentElement).getPropertyValue(val[0]);
+ rgbaColor = "rgba(" + rgbaColor + "," + val[1] + ")";
+ return rgbaColor;
+ } else {
+ return newValue;
+ }
+ }
+ });
+ } else {
+ console.warn('data-colors Attribute not found on:', chartId);
+ }
+ }
+}
+
+// world map with line & markers
+var vectorMapWorldLineColors = getChartColorsArray("world-map-line-markers");
+if (vectorMapWorldLineColors)
+ var worldlinemap = new jsVectorMap({
+ map: "world_merc",
+ selector: "#world-map-line-markers",
+ zoomOnScroll: false,
+ zoomButtons: false,
+ markers: [{
+ name: "Greenland",
+ coords: [72, -42]
+ },
+ {
+ name: "Canada",
+ coords: [56.1304, -106.3468]
+ },
+ {
+ name: "Brazil",
+ coords: [-14.2350, -51.9253]
+ },
+ {
+ name: "Egypt",
+ coords: [26.8206, 30.8025]
+ },
+ {
+ name: "Russia",
+ coords: [61, 105]
+ },
+ {
+ name: "China",
+ coords: [35.8617, 104.1954]
+ },
+ {
+ name: "United States",
+ coords: [37.0902, -95.7129]
+ },
+ {
+ name: "Norway",
+ coords: [60.472024, 8.468946]
+ },
+ {
+ name: "Ukraine",
+ coords: [48.379433, 31.16558]
+ },
+ ],
+ lines: [{
+ from: "Canada",
+ to: "Egypt"
+ },
+ {
+ from: "Russia",
+ to: "Egypt"
+ },
+ {
+ from: "Greenland",
+ to: "Egypt"
+ },
+ {
+ from: "Brazil",
+ to: "Egypt"
+ },
+ {
+ from: "United States",
+ to: "Egypt"
+ },
+ {
+ from: "China",
+ to: "Egypt"
+ },
+ {
+ from: "Norway",
+ to: "Egypt"
+ },
+ {
+ from: "Ukraine",
+ to: "Egypt"
+ },
+ ],
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapWorldLineColors,
+ fillOpacity: 1,
+ },
+ },
+ lineStyle: {
+ animation: true,
+ strokeDasharray: "6 3 6",
+ },
+ });
+
+// world map with markers
+var vectorMapWorldMarkersColors = getChartColorsArray("world-map-line-markers");
+if (vectorMapWorldMarkersColors)
+ var worldemapmarkers = new jsVectorMap({
+ map: 'world_merc',
+ selector: '#world-map-markers',
+ zoomOnScroll: false,
+ zoomButtons: false,
+ selectedMarkers: [0, 2],
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapWorldMarkersColors,
+ fillOpacity: 1,
+ },
+ },
+ markersSelectable: true,
+ markers: [{
+ name: "Palestine",
+ coords: [31.9474, 35.2272]
+ },
+ {
+ name: "Russia",
+ coords: [61.524, 105.3188]
+ },
+ {
+ name: "Canada",
+ coords: [56.1304, -106.3468]
+ },
+ {
+ name: "Greenland",
+ coords: [71.7069, -42.6043]
+ },
+ ],
+ markerStyle: {
+ initial: {
+ fill: "#038edc"
+ },
+ selected: {
+ fill: "red"
+ }
+ },
+ labels: {
+ markers: {
+ render: function (marker) {
+ return marker.name
+ }
+ }
+ }
+ })
+
+// world map with image markers
+var vectorMapWorldMarkersImageColors = getChartColorsArray("world-map-markers-image");
+if (vectorMapWorldMarkersImageColors)
+ var worldemapmarkersimage = new jsVectorMap({
+ map: 'world_merc',
+ selector: '#world-map-markers-image',
+ zoomOnScroll: false,
+ zoomButtons: false,
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapWorldMarkersImageColors,
+ fillOpacity: 1,
+ },
+ },
+ selectedMarkers: [0, 2],
+ markersSelectable: true,
+ markers: [{
+ name: "Palestine",
+ coords: [31.9474, 35.2272]
+ },
+ {
+ name: "Russia",
+ coords: [61.524, 105.3188]
+ },
+ {
+ name: "Canada",
+ coords: [56.1304, -106.3468]
+ },
+ {
+ name: "Greenland",
+ coords: [71.7069, -42.6043]
+ },
+ ],
+ markerStyle: {
+ initial: {
+ image: "../build/images/logo-sm.png"
+ }
+ },
+ labels: {
+ markers: {
+ render: function (marker) {
+ return marker.name
+ }
+ }
+ }
+ })
+
+// US Map
+var vectorMapUsaColors = getChartColorsArray("usa-vectormap");
+if (vectorMapUsaColors)
+ var usmap = new jsVectorMap({
+ map: 'us_merc_en',
+ selector: "#usa-vectormap",
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapUsaColors,
+ fillOpacity: 1,
+ },
+ },
+ zoomOnScroll: false,
+ zoomButtons: false,
+ });
+
+
+// canada Map
+var vectorMapCanadaColors = getChartColorsArray("canada-vectormap");
+if (vectorMapCanadaColors)
+ var canadamap = new jsVectorMap({
+ map: 'canada',
+ selector: "#canada-vectormap",
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapCanadaColors,
+ fillOpacity: 1,
+ },
+ },
+ zoomOnScroll: false,
+ zoomButtons: false,
+ });
+
+// russia Map
+var vectorMapRussiaColors = getChartColorsArray("russia-vectormap");
+if (vectorMapRussiaColors)
+ var russiamap = new jsVectorMap({
+ map: 'russia',
+ selector: "#russia-vectormap",
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapRussiaColors,
+ fillOpacity: 1,
+ },
+ },
+ zoomOnScroll: false,
+ zoomButtons: false,
+ })
+
+// spain Map
+var vectorMapSpainColors = getChartColorsArray("spain-vectormap");
+if (vectorMapSpainColors)
+ var spainmap = new jsVectorMap({
+ map: 'spain',
+ selector: "#spain-vectormap",
+ regionStyle: {
+ initial: {
+ stroke: "#9599ad",
+ strokeWidth: 0.25,
+ fill: vectorMapSpainColors,
+ fillOpacity: 1,
+ },
+ },
+ zoomOnScroll: false,
+ zoomButtons: false,
+ })
\ No newline at end of file
diff --git a/public/build/js/plugins.js b/public/build/js/plugins.js
new file mode 100644
index 0000000..ba5d9b9
--- /dev/null
+++ b/public/build/js/plugins.js
@@ -0,0 +1,15 @@
+/*
+Template Name: Toner eCommerce + Admin HTML Template
+Author: Themesbrand
+Version: 1.2.0
+Website: https://Themesbrand.com/
+Contact: Themesbrand@gmail.com
+File: Common Plugins Js File
+*/
+
+//Common plugins
+if (document.querySelectorAll("[toast-list]") || document.querySelectorAll('[data-choices]') || document.querySelectorAll("[data-provider]")) {
+ document.writeln("");
+ document.writeln("");
+ document.writeln("");
+}
\ No newline at end of file
diff --git a/public/build/json/brand-list.json b/public/build/json/brand-list.json
new file mode 100644
index 0000000..1b35b81
--- /dev/null
+++ b/public/build/json/brand-list.json
@@ -0,0 +1,98 @@
+[
+ {
+ "id":"1",
+ "brandName": "Michelin",
+ "companyLogo": "../assets/images/brands/img-1.png",
+ "productItems": "362"
+ },{
+ "id":"2",
+ "brandName": "Rolex",
+ "companyLogo": "../assets/images/brands/img-2.png",
+ "productItems": "471"
+ },{
+ "id":"3",
+ "brandName": "Huawel",
+ "companyLogo": "../assets/images/brands/img-3.png",
+ "productItems": "3654"
+ },{
+ "id":"4",
+ "brandName": "Puma",
+ "companyLogo": "../assets/images/brands/img-4.png",
+ "productItems": "1548"
+ },{
+ "id":"5",
+ "brandName": "Fastrack",
+ "companyLogo": "../assets/images/brands/img-5.png",
+ "productItems": "645"
+ },{
+ "id":"6",
+ "brandName": "Nautica",
+ "companyLogo": "../assets/images/brands/img-6.png",
+ "productItems": "702"
+ },{
+ "id":"7",
+ "brandName": "Mochup",
+ "companyLogo": "../assets/images/brands/img-7.png",
+ "productItems": "942"
+ },{
+ "id":"8",
+ "brandName": "Bosch",
+ "companyLogo": "../assets/images/brands/img-8.png",
+ "productItems": "3625"
+ },{
+ "id":"9",
+ "brandName": "Diesel",
+ "companyLogo": "../assets/images/brands/img-9.png",
+ "productItems": "415"
+ },{
+ "id":"10",
+ "brandName": "Reebok",
+ "companyLogo": "../assets/images/brands/img-10.png",
+ "productItems": "362"
+ },{
+ "id":"11",
+ "brandName": "Eagle",
+ "companyLogo": "../assets/images/brands/img-11.png",
+ "productItems": "650"
+ },{
+ "id":"12",
+ "brandName": "Adidas",
+ "companyLogo": "../assets/images/brands/img-12.png",
+ "productItems": "931"
+ },{
+ "id":"13",
+ "brandName": "Michelin",
+ "companyLogo": "../assets/images/brands/img-1.png",
+ "productItems": "1462"
+ },{
+ "id":"14",
+ "brandName": "Kinetic",
+ "companyLogo": "../assets/images/brands/img-13.png",
+ "productItems": "3621"
+ },{
+ "id":"15",
+ "brandName": "Soriana",
+ "companyLogo": "../assets/images/brands/img-14.png",
+ "productItems": "1024"
+ },{
+ "id":"16",
+ "brandName": "Puma",
+ "companyLogo": "../assets/images/brands/img-4.png",
+ "productItems": "1548"
+ },{
+ "id":"17",
+ "brandName": "Huawel",
+ "companyLogo": "../assets/images/brands/img-3.png",
+ "productItems": "3654"
+ },{
+ "id":"18",
+ "brandName": "Rolex",
+ "companyLogo": "../assets/images/brands/img-2.png",
+ "productItems": "471"
+ },{
+ "id":"19",
+ "brandName": "Michelin",
+ "companyLogo": "../assets/images/brands/img-1.png",
+ "productItems": "362"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/country-list.json b/public/build/json/country-list.json
new file mode 100644
index 0000000..5bc36fa
--- /dev/null
+++ b/public/build/json/country-list.json
@@ -0,0 +1,1532 @@
+[
+ {
+ "id": 1,
+ "flagImg": "../assets/images/flags/ac.svg",
+ "countryName": "Ascension Island",
+ "countryCode": "+247"
+ },
+ {
+ "id": 2,
+ "flagImg": "../assets/images/flags/ad.svg",
+ "countryName": "Andorra",
+ "countryCode": "+376"
+ },
+ {
+ "id": 3,
+ "flagImg": "../assets/images/flags/ae.svg",
+ "countryName": "United Arab Emirates",
+ "countryCode": "+971"
+ },
+ {
+ "id": 4,
+ "flagImg": "../assets/images/flags/af.svg",
+ "countryName": "Afghanistan",
+ "countryCode": "+93"
+ },
+ {
+ "id": 5,
+ "flagImg": "../assets/images/flags/ag.svg",
+ "countryName": "Antigua and Barbuda",
+ "countryCode": "+93"
+ },
+ {
+ "id": 6,
+ "flagImg": "../assets/images/flags/ai.svg",
+ "countryName": "Anguilla",
+ "countryCode": "+1"
+ },
+ {
+ "id": 7,
+ "flagImg": "../assets/images/flags/am.svg",
+ "countryName": "Armenia",
+ "countryCode": "+374"
+ },
+ {
+ "id": 8,
+ "flagImg": "../assets/images/flags/ao.svg",
+ "countryName": "Angola",
+ "countryCode": "+244"
+ },
+ {
+ "id": 9,
+ "flagImg": "../assets/images/flags/aq.svg",
+ "countryName": "Antarctica",
+ "countryCode": "+672"
+ },
+ {
+ "id": 10,
+ "flagImg": "../assets/images/flags/ar.svg",
+ "countryName": "Argentina",
+ "countryCode": "+54"
+ },
+ {
+ "id": 11,
+ "flagImg": "../assets/images/flags/as.svg",
+ "countryName": "American Samoa",
+ "countryCode": "+1"
+ },
+ {
+ "id": 12,
+ "flagImg": "../assets/images/flags/at.svg",
+ "countryName": "Austria",
+ "countryCode": "+43"
+ },
+ {
+ "id": 13,
+ "flagImg": "../assets/images/flags/au.svg",
+ "countryName": "Australia",
+ "countryCode": "+61"
+ },
+ {
+ "id": 14,
+ "flagImg": "../assets/images/flags/aw.svg",
+ "countryName": "Aruba",
+ "countryCode": "+297"
+ },
+ {
+ "id": 15,
+ "flagImg": "../assets/images/flags/ax.svg",
+ "countryName": "Aland Islands",
+ "countryCode": "+358"
+ },
+ {
+ "id": 16,
+ "flagImg": "../assets/images/flags/ba.svg",
+ "countryName": "Bosnia and Herzegovina",
+ "countryCode": "+387"
+ },
+ {
+ "id": 17,
+ "flagImg": "../assets/images/flags/bb.svg",
+ "countryName": "Barbados",
+ "countryCode": "+1"
+ },
+ {
+ "id": 18,
+ "flagImg": "../assets/images/flags/bd.svg",
+ "countryName": "Bangladesh",
+ "countryCode": "+880"
+ },
+ {
+ "id": 19,
+ "flagImg": "../assets/images/flags/be.svg",
+ "countryName": "Belgium",
+ "countryCode": "+32"
+ },
+ {
+ "id": 20,
+ "flagImg": "../assets/images/flags/bf.svg",
+ "countryName": "Burkina Faso",
+ "countryCode": "+226"
+ },
+ {
+ "id": 21,
+ "flagImg": "../assets/images/flags/bf.svg",
+ "countryName": "Bulgaria",
+ "countryCode": "+359"
+ },
+ {
+ "id": 22,
+ "flagImg": "../assets/images/flags/bh.svg",
+ "countryName": "Bahrain",
+ "countryCode": "+973"
+ },
+ {
+ "id": 23,
+ "flagImg": "../assets/images/flags/bi.svg",
+ "countryName": "Burundi",
+ "countryCode": "+257"
+ },
+ {
+ "id": 24,
+ "flagImg": "../assets/images/flags/bj.svg",
+ "countryName": "Benin",
+ "countryCode": "+229"
+ },
+ {
+ "id": 25,
+ "flagImg": "../assets/images/flags/bl.svg",
+ "countryName": "Saint Barthélemy",
+ "countryCode": "+590"
+ },
+ {
+ "id": 26,
+ "flagImg": "../assets/images/flags/bm.svg",
+ "countryName": "Bermuda",
+ "countryCode": "+1"
+ },
+ {
+ "id": 27,
+ "flagImg": "../assets/images/flags/bn.svg",
+ "countryName": "Brunei Darussalam",
+ "countryCode": "+673"
+ },
+ {
+ "id": 28,
+ "flagImg": "../assets/images/flags/bo.svg",
+ "countryName": "Bolivia (Plurinational State of)",
+ "countryCode": "+591"
+ },
+ {
+ "id": 29,
+ "flagImg": "../assets/images/flags/bq.svg",
+ "countryName": "Bonaire, Sint Eustatius and Saba",
+ "countryCode": "+599"
+ },
+ {
+ "id": 30,
+ "flagImg": "../assets/images/flags/br.svg",
+ "countryName": "Brazil",
+ "countryCode": "+55"
+ },
+ {
+ "id": 31,
+ "flagImg": "../assets/images/flags/bs.svg",
+ "countryName": "Bahamas",
+ "countryCode": "+1"
+ },
+ {
+ "id": 32,
+ "flagImg": "../assets/images/flags/bt.svg",
+ "countryName": "Bhutan",
+ "countryCode": "+975"
+ },
+ {
+ "id": 33,
+ "flagImg": "../assets/images/flags/bv.svg",
+ "countryName": "Bouvet Island",
+ "countryCode": "+47"
+ },
+ {
+ "id": 34,
+ "flagImg": "../assets/images/flags/bw.svg",
+ "countryName": "Botswana",
+ "countryCode": "+267"
+ },
+ {
+ "id": 35,
+ "flagImg": "../assets/images/flags/by.svg",
+ "countryName": "Belarus",
+ "countryCode": "+375"
+ },
+ {
+ "id": 36,
+ "flagImg": "../assets/images/flags/bz.svg",
+ "countryName": "Belize",
+ "countryCode": "+501"
+ },
+ {
+ "id": 37,
+ "flagImg": "../assets/images/flags/ca.svg",
+ "countryName": "Canada",
+ "countryCode": "+1"
+ },
+ {
+ "id": 38,
+ "flagImg": "../assets/images/flags/cc.svg",
+ "countryName": "Cocos (Keeling) Island",
+ "countryCode": "+61"
+ },
+ {
+ "id": 39,
+ "flagImg": "../assets/images/flags/cd.svg",
+ "countryName": "Democratic Republic of the Congo",
+ "countryCode": "+243"
+ },
+ {
+ "id": 40,
+ "flagImg": "../assets/images/flags/cf.svg",
+ "countryName": "Central African Republic",
+ "countryCode": "+236"
+ },
+ {
+ "id": 41,
+ "flagImg": "../assets/images/flags/cg.svg",
+ "countryName": "Republic of the Congo",
+ "countryCode": "+243"
+ },
+ {
+ "id": 42,
+ "flagImg": "../assets/images/flags/ch.svg",
+ "countryName": "Switzerland",
+ "countryCode": "+41"
+ },
+ {
+ "id": 43,
+ "flagImg": "../assets/images/flags/ci.svg",
+ "countryName": "Ivory Coast",
+ "countryCode": "+225"
+ },
+ {
+ "id": 44,
+ "flagImg": "../assets/images/flags/ck.svg",
+ "countryName": "Cook Islands",
+ "countryCode": "+682"
+ },
+ {
+ "id": 45,
+ "flagImg": "../assets/images/flags/cl.svg",
+ "countryName": "Chile",
+ "countryCode": "+56"
+ },
+ {
+ "id": 46,
+ "flagImg": "../assets/images/flags/cm.svg",
+ "countryName": "Cameroon",
+ "countryCode": "+237"
+ },
+ {
+ "id": 47,
+ "flagImg": "../assets/images/flags/cn.svg",
+ "countryName": "China",
+ "countryCode": "+86"
+ },
+ {
+ "id": 48,
+ "flagImg": "../assets/images/flags/co.svg",
+ "countryName": "Colombia",
+ "countryCode": "+57"
+ },
+ {
+ "id": 49,
+ "flagImg": "../assets/images/flags/cp.svg",
+ "countryName": "Clipperton Island",
+ "countryCode": "+55"
+ },
+ {
+ "id": 50,
+ "flagImg": "../assets/images/flags/cr.svg",
+ "countryName": "Costa Rica",
+ "countryCode": "+506"
+ },
+ {
+ "id": 51,
+ "flagImg": "../assets/images/flags/cu.svg",
+ "countryName": "Cuba",
+ "countryCode": "+53"
+ },
+ {
+ "id": 52,
+ "flagImg": "../assets/images/flags/cv.svg",
+ "countryName": "Cabo Verde",
+ "countryCode": "+238"
+ },
+ {
+ "id": 53,
+ "flagImg": "../assets/images/flags/cw.svg",
+ "countryName": "Curaçao",
+ "countryCode": "+599"
+ },
+ {
+ "id": 54,
+ "flagImg": "../assets/images/flags/cx.svg",
+ "countryName": "Christmas Island",
+ "countryCode": "+61"
+ },
+ {
+ "id": 55,
+ "flagImg": "../assets/images/flags/cy.svg",
+ "countryName": "Cyprus",
+ "countryCode": "+357"
+ },
+ {
+ "id": 56,
+ "flagImg": "../assets/images/flags/cz.svg",
+ "countryName": "Czech Republic",
+ "countryCode": "+420"
+ },
+ {
+ "id": 57,
+ "flagImg": "../assets/images/flags/de.svg",
+ "countryName": "Germany",
+ "countryCode": "+49"
+ },
+ {
+ "id": 58,
+ "flagImg": "../assets/images/flags/dg.svg",
+ "countryName": "Diego Garcia",
+ "countryCode": "+246"
+ },
+ {
+ "id": 59,
+ "flagImg": "../assets/images/flags/dj.svg",
+ "countryName": "Djibouti",
+ "countryCode": "+253"
+ },
+ {
+ "id": 60,
+ "flagImg": "../assets/images/flags/dk.svg",
+ "countryName": "Denmark",
+ "countryCode": "+45"
+ },
+ {
+ "id": 61,
+ "flagImg": "../assets/images/flags/dm.svg",
+ "countryName": "Dominica",
+ "countryCode": "+1"
+ },
+ {
+ "id": 62,
+ "flagImg": "../assets/images/flags/do.svg",
+ "countryName": "Dominican Republic",
+ "countryCode": "+1"
+ },
+ {
+ "id": 63,
+ "flagImg": "../assets/images/flags/dz.svg",
+ "countryName": "Algeria",
+ "countryCode": "+213"
+ },
+ {
+ "id": 64,
+ "flagImg": "../assets/images/flags/ea.svg",
+ "countryName": "Ceuta & Melilla",
+ "countryCode": "34"
+ },
+ {
+ "id": 65,
+ "flagImg": "../assets/images/flags/ec.svg",
+ "countryName": "Ecuador",
+ "countryCode": "+593"
+ },
+ {
+ "id": 66,
+ "flagImg": "../assets/images/flags/ee.svg",
+ "countryName": "Estonia",
+ "countryCode": "+372"
+ },
+ {
+ "id": 67,
+ "flagImg": "../assets/images/flags/eg.svg",
+ "countryName": "Egypt",
+ "countryCode": "+20"
+ },
+ {
+ "id": 68,
+ "flagImg": "../assets/images/flags/eh.svg",
+ "countryName": "Western Sahara",
+ "countryCode": "+212"
+ },
+ {
+ "id": 69,
+ "flagImg": "../assets/images/flags/er.svg",
+ "countryName": "Eritrea",
+ "countryCode": "+291"
+ },
+ {
+ "id": 70,
+ "flagImg": "../assets/images/flags/es.svg",
+ "countryName": "Spain",
+ "countryCode": "+34"
+ },
+ {
+ "id": 71,
+ "flagImg": "../assets/images/flags/es-ct.svg",
+ "countryName": "Catalonia",
+ "countryCode": "+34"
+ },
+ {
+ "id": 72,
+ "flagImg": "../assets/images/flags/es-ga.svg",
+ "countryName": "Galicia",
+ "countryCode": "+34"
+ },
+ {
+ "id": 73,
+ "flagImg": "../assets/images/flags/et.svg",
+ "countryName": "Ethiopia",
+ "countryCode": "+251"
+ },
+ {
+ "id": 74,
+ "flagImg": "../assets/images/flags/eu.svg",
+ "countryName": "Europe",
+ "countryCode": "+3"
+ },
+ {
+ "id": 75,
+ "flagImg": "../assets/images/flags/fi.svg",
+ "countryName": "Finland",
+ "countryCode": "+358"
+ },
+ {
+ "id": 76,
+ "flagImg": "../assets/images/flags/fj.svg",
+ "countryName": "Fiji",
+ "countryCode": "+679"
+ },
+ {
+ "id": 77,
+ "flagImg": "../assets/images/flags/fk.svg",
+ "countryName": "Falkland Islands",
+ "countryCode": "+500"
+ },
+ {
+ "id": 78,
+ "flagImg": "../assets/images/flags/fm.svg",
+ "countryName": "Federated States of Micronesia",
+ "countryCode": "+691"
+ },
+ {
+ "id": 79,
+ "flagImg": "../assets/images/flags/fo.svg",
+ "countryName": "Faroe Islands",
+ "countryCode": "+298"
+ },
+ {
+ "id": 80,
+ "flagImg": "../assets/images/flags/fr.svg",
+ "countryName": "France",
+ "countryCode": "+33"
+ },
+ {
+ "id": 81,
+ "flagImg": "../assets/images/flags/ga.svg",
+ "countryName": "Gabon",
+ "countryCode": "+241"
+ },
+ {
+ "id": 82,
+ "flagImg": "../assets/images/flags/gb-eng.svg",
+ "countryName": "England",
+ "countryCode": "+44"
+ },
+ {
+ "id": 83,
+ "flagImg": "../assets/images/flags/gb-nir.svg",
+ "countryName": "Northern Ireland",
+ "countryCode": "+44"
+ },
+ {
+ "id": 84,
+ "flagImg": "../assets/images/flags/gb-sct.svg",
+ "countryName": "Scotland",
+ "countryCode": "+44"
+ },
+ {
+ "id": 85,
+ "flagImg": "../assets/images/flags/gb-wls.svg",
+ "countryName": "Wales",
+ "countryCode": "+44"
+ },
+ {
+ "id": 86,
+ "flagImg": "../assets/images/flags/gd.svg",
+ "countryName": "Grenada",
+ "countryCode": "+1"
+ },
+ {
+ "id": 87,
+ "flagImg": "../assets/images/flags/ge.svg",
+ "countryName": "Georgia",
+ "countryCode": "+995"
+ },
+ {
+ "id": 88,
+ "flagImg": "../assets/images/flags/gf.svg",
+ "countryName": "French Guiana",
+ "countryCode": "+594"
+ },
+ {
+ "id": 99,
+ "flagImg": "../assets/images/flags/gg.svg",
+ "countryName": "Guernsey",
+ "countryCode": "+44"
+ },
+ {
+ "id": 90,
+ "flagImg": "../assets/images/flags/gh.svg",
+ "countryName": "Ghana",
+ "countryCode": "+233"
+ },
+ {
+ "id": 91,
+ "flagImg": "../assets/images/flags/gi.svg",
+ "countryName": "Gibraltar",
+ "countryCode": "+350"
+ },
+ {
+ "id": 92,
+ "flagImg": "../assets/images/flags/gl.svg",
+ "countryName": "Greenland",
+ "countryCode": "+299"
+ },
+ {
+ "id": 93,
+ "flagImg": "../assets/images/flags/gm.svg",
+ "countryName": "Gambia",
+ "countryCode": "+220"
+ },
+ {
+ "id": 94,
+ "flagImg": "../assets/images/flags/gn.svg",
+ "countryName": "Guinea",
+ "countryCode": "+224"
+ },
+ {
+ "id": 95,
+ "flagImg": "../assets/images/flags/gp.svg",
+ "countryName": "Guadeloupe",
+ "countryCode": "+590"
+ },
+ {
+ "id": 96,
+ "flagImg": "../assets/images/flags/gq.svg",
+ "countryName": "Equatorial Guinea",
+ "countryCode": "+240"
+ },
+ {
+ "id": 97,
+ "flagImg": "../assets/images/flags/gr.svg",
+ "countryName": "Greece",
+ "countryCode": "+30"
+ },
+ {
+ "id": 98,
+ "flagImg": "../assets/images/flags/gs.svg",
+ "countryName": "South Georgia and the South Sandwich Islands",
+ "countryCode": "+500"
+ },
+ {
+ "id": 99,
+ "flagImg": "../assets/images/flags/gt.svg",
+ "countryName": "Guatemala",
+ "countryCode": "+502"
+ },
+ {
+ "id": 100,
+ "flagImg": "../assets/images/flags/gu.svg",
+ "countryName": "Guam",
+ "countryCode": "+1"
+ },
+ {
+ "id": 101,
+ "flagImg": "../assets/images/flags/gw.svg",
+ "countryName": "Guinea-Bissau",
+ "countryCode": "+245"
+ },
+ {
+ "id": 102,
+ "flagImg": "../assets/images/flags/gy.svg",
+ "countryName": "Guyana",
+ "countryCode": "+592"
+ },
+ {
+ "id": 103,
+ "flagImg": "../assets/images/flags/hk.svg",
+ "countryName": "Hong Kong",
+ "countryCode": "+852"
+ },
+ {
+ "id": 104,
+ "flagImg": "../assets/images/flags/hn.svg",
+ "countryName": "Honduras",
+ "countryCode": "+504"
+ },
+ {
+ "id": 105,
+ "flagImg": "../assets/images/flags/hr.svg",
+ "countryName": "Croatia",
+ "countryCode": "+385"
+ },
+ {
+ "id": 106,
+ "flagImg": "../assets/images/flags/ht.svg",
+ "countryName": "Haiti",
+ "countryCode": "+509"
+ },
+ {
+ "id": 107,
+ "flagImg": "../assets/images/flags/hu.svg",
+ "countryName": "Hungary",
+ "countryCode": "+36"
+ },
+ {
+ "id": 108,
+ "flagImg": "../assets/images/flags/id.svg",
+ "countryName": "Indonesia",
+ "countryCode": "+62"
+ },
+ {
+ "id": 109,
+ "flagImg": "../assets/images/flags/ie.svg",
+ "countryName": "Ireland",
+ "countryCode": "+353"
+ },
+ {
+ "id": 110,
+ "flagImg": "../assets/images/flags/il.svg",
+ "countryName": "Israel",
+ "countryCode": "+972"
+ },
+ {
+ "id": 111,
+ "flagImg": "../assets/images/flags/im.svg",
+ "countryName": "Isle of Man",
+ "countryCode": "+44"
+ },
+ {
+ "id": 112,
+ "flagImg": "../assets/images/flags/in.svg",
+ "countryName": "India",
+ "countryCode": "+91"
+ },
+ {
+ "id": 113,
+ "flagImg": "../assets/images/flags/io.svg",
+ "countryName": "British Indian Ocean Territory",
+ "countryCode": "+246"
+ },
+ {
+ "id": 114,
+ "flagImg": "../assets/images/flags/iq.svg",
+ "countryName": "Iraq",
+ "countryCode": "+964"
+ },
+ {
+ "id": 115,
+ "flagImg": "../assets/images/flags/ir.svg",
+ "countryName": "Iran (Islamic Republic of)",
+ "countryCode": "+98"
+ },
+ {
+ "id": 116,
+ "flagImg": "../assets/images/flags/is.svg",
+ "countryName": "Iceland",
+ "countryCode": "+354"
+ },
+ {
+ "id": 117,
+ "flagImg": "../assets/images/flags/it.svg",
+ "countryName": "Italy",
+ "countryCode": "+39"
+ },
+ {
+ "id": 118,
+ "flagImg": "../assets/images/flags/je.svg",
+ "countryName": "Jersey",
+ "countryCode": "+44"
+ },
+ {
+ "id": 119,
+ "flagImg": "../assets/images/flags/jm.svg",
+ "countryName": "Jamaica",
+ "countryCode": "+1"
+ },
+ {
+ "id": 120,
+ "flagImg": "../assets/images/flags/jo.svg",
+ "countryName": "Jordan",
+ "countryCode": "+962"
+ },
+ {
+ "id": 121,
+ "flagImg": "../assets/images/flags/jp.svg",
+ "countryName": "Japan",
+ "countryCode": "+81"
+ },
+ {
+ "id": 122,
+ "flagImg": "../assets/images/flags/ke.svg",
+ "countryName": "Kenya",
+ "countryCode": "+254"
+ },
+ {
+ "id": 123,
+ "flagImg": "../assets/images/flags/kg.svg",
+ "countryName": "Kyrgyzstan",
+ "countryCode": "+996"
+ },
+ {
+ "id": 124,
+ "flagImg": "../assets/images/flags/kh.svg",
+ "countryName": "Cambodia",
+ "countryCode": "+855"
+ },
+ {
+ "id": 125,
+ "flagImg": "../assets/images/flags/ki.svg",
+ "countryName": "Kiribati",
+ "countryCode": "+686"
+ },
+ {
+ "id": 126,
+ "flagImg": "../assets/images/flags/km.svg",
+ "countryName": "Comoros",
+ "countryCode": "+269"
+ },
+ {
+ "id": 127,
+ "flagImg": "../assets/images/flags/kn.svg",
+ "countryName": "Saint Kitts and Nevis",
+ "countryCode": "+1"
+ },
+ {
+ "id": 128,
+ "flagImg": "../assets/images/flags/kp.svg",
+ "countryName": "North Korea",
+ "countryCode": "+850"
+ },
+ {
+ "id": 129,
+ "flagImg": "../assets/images/flags/kr.svg",
+ "countryName": "South Korea",
+ "countryCode": "+82"
+ },
+ {
+ "id": 130,
+ "flagImg": "../assets/images/flags/kw.svg",
+ "countryName": "Kuwait",
+ "countryCode": "+965"
+ },
+ {
+ "id": 131,
+ "flagImg": "../assets/images/flags/ky.svg",
+ "countryName": "Cayman Islands",
+ "countryCode": "+1"
+ },
+ {
+ "id": 132,
+ "flagImg": "../assets/images/flags/kz.svg",
+ "countryName": "Kazakhstan",
+ "countryCode": "+7"
+ },
+ {
+ "id": 133,
+ "flagImg": "../assets/images/flags/la.svg",
+ "countryName": "Laos",
+ "countryCode": "+856"
+ },
+ {
+ "id": 134,
+ "flagImg": "../assets/images/flags/lb.svg",
+ "countryName": "Lebanon",
+ "countryCode": "+961"
+ },
+ {
+ "id": 135,
+ "flagImg": "../assets/images/flags/lc.svg",
+ "countryName": "Saint Lucia",
+ "countryCode": "+1"
+ },
+ {
+ "id": 136,
+ "flagImg": "../assets/images/flags/li.svg",
+ "countryName": "Liechtenstein",
+ "countryCode": "+423"
+ },
+ {
+ "id": 137,
+ "flagImg": "../assets/images/flags/lk.svg",
+ "countryName": "Sri Lanka",
+ "countryCode": "+94"
+ },
+ {
+ "id": 138,
+ "flagImg": "../assets/images/flags/lr.svg",
+ "countryName": "Liberia",
+ "countryCode": "+231"
+ },
+ {
+ "id": 139,
+ "flagImg": "../assets/images/flags/ls.svg",
+ "countryName": "Lesotho",
+ "countryCode": "+266"
+ },
+ {
+ "id": 140,
+ "flagImg": "../assets/images/flags/lt.svg",
+ "countryName": "Lithuania",
+ "countryCode": "+370"
+ },
+ {
+ "id": 141,
+ "flagImg": "../assets/images/flags/lu.svg",
+ "countryName": "Luxembourg",
+ "countryCode": "+352"
+ },
+ {
+ "id": 142,
+ "flagImg": "../assets/images/flags/lv.svg",
+ "countryName": "Latvia",
+ "countryCode": "+371"
+ },
+ {
+ "id": 143,
+ "flagImg": "../assets/images/flags/ly.svg",
+ "countryName": "Libya",
+ "countryCode": "+218"
+ },
+ {
+ "id": 144,
+ "flagImg": "../assets/images/flags/ma.svg",
+ "countryName": "Morocco",
+ "countryCode": "+212"
+ },
+ {
+ "id": 145,
+ "flagImg": "../assets/images/flags/mc.svg",
+ "countryName": "Monaco",
+ "countryCode": "+377"
+ },
+ {
+ "id": 146,
+ "flagImg": "../assets/images/flags/md.svg",
+ "countryName": "Moldova",
+ "countryCode": "+373"
+ },
+ {
+ "id": 147,
+ "flagImg": "../assets/images/flags/me.svg",
+ "countryName": "Montenegro",
+ "countryCode": "+382"
+ },
+ {
+ "id": 148,
+ "flagImg": "../assets/images/flags/mf.svg",
+ "countryName": "Saint Martin",
+ "countryCode": "+721"
+ },
+ {
+ "id": 149,
+ "flagImg": "../assets/images/flags/mg.svg",
+ "countryName": "Madagascar",
+ "countryCode": "+261"
+ },
+ {
+ "id": 150,
+ "flagImg": "../assets/images/flags/mh.svg",
+ "countryName": "Marshall Islands",
+ "countryCode": "+692"
+ },
+ {
+ "id": 151,
+ "flagImg": "../assets/images/flags/mk.svg",
+ "countryName": "North Macedonia",
+ "countryCode": "+389"
+ },
+ {
+ "id": 152,
+ "flagImg": "../assets/images/flags/ml.svg",
+ "countryName": "Mali",
+ "countryCode": "+223"
+ },
+ {
+ "id": 153,
+ "flagImg": "../assets/images/flags/mm.svg",
+ "countryName": "Myanmar",
+ "countryCode": "+95"
+ },
+ {
+ "id": 154,
+ "flagImg": "../assets/images/flags/mn.svg",
+ "countryName": "Mongolia",
+ "countryCode": "+976"
+ },
+ {
+ "id": 155,
+ "flagImg": "../assets/images/flags/mo.svg",
+ "countryName": "Macau",
+ "countryCode": "+853"
+ },
+ {
+ "id": 156,
+ "flagImg": "../assets/images/flags/mp.svg",
+ "countryName": "Northern Mariana Islands",
+ "countryCode": "+1"
+ },
+ {
+ "id": 157,
+ "flagImg": "../assets/images/flags/mq.svg",
+ "countryName": "Martinique",
+ "countryCode": "+596"
+ },
+ {
+ "id": 158,
+ "flagImg": "../assets/images/flags/mr.svg",
+ "countryName": "Mauritania",
+ "countryCode": "+222"
+ },
+ {
+ "id": 159,
+ "flagImg": "../assets/images/flags/ms.svg",
+ "countryName": "Montserrat",
+ "countryCode": "+1"
+ },
+ {
+ "id": 160,
+ "flagImg": "../assets/images/flags/mt.svg",
+ "countryName": "Malta",
+ "countryCode": "+356"
+ },
+ {
+ "id": 161,
+ "flagImg": "../assets/images/flags/mu.svg",
+ "countryName": "Mauritius",
+ "countryCode": "+230"
+ },
+ {
+ "id": 162,
+ "flagImg": "../assets/images/flags/mv.svg",
+ "countryName": "Maldives",
+ "countryCode": "+960"
+ },
+ {
+ "id": 163,
+ "flagImg": "../assets/images/flags/mw.svg",
+ "countryName": "Malawi",
+ "countryCode": "+265"
+ },
+ {
+ "id": 164,
+ "flagImg": "../assets/images/flags/mx.svg",
+ "countryName": "Mexico",
+ "countryCode": "+52"
+ },
+ {
+ "id": 165,
+ "flagImg": "../assets/images/flags/my.svg",
+ "countryName": "Malaysia",
+ "countryCode": "+60"
+ },
+ {
+ "id": 166,
+ "flagImg": "../assets/images/flags/mz.svg",
+ "countryName": "Mozambique",
+ "countryCode": "+258"
+ },
+ {
+ "id": 167,
+ "flagImg": "../assets/images/flags/na.svg",
+ "countryName": "Namibia",
+ "countryCode": "+264"
+ },
+ {
+ "id": 168,
+ "flagImg": "../assets/images/flags/nc.svg",
+ "countryName": "New Caledonia",
+ "countryCode": "+687"
+ },
+ {
+ "id": 169,
+ "flagImg": "../assets/images/flags/ne.svg",
+ "countryName": "Niger",
+ "countryCode": "+227"
+ },
+ {
+ "id": 170,
+ "flagImg": "../assets/images/flags/nf.svg",
+ "countryName": "Norfolk Island",
+ "countryCode": "+672"
+ },
+ {
+ "id": 171,
+ "flagImg": "../assets/images/flags/ng.svg",
+ "countryName": "Nigeria",
+ "countryCode": "+234"
+ },
+ {
+ "id": 172,
+ "flagImg": "../assets/images/flags/ni.svg",
+ "countryName": "Nicaragua",
+ "countryCode": "+505"
+ },
+ {
+ "id": 173,
+ "flagImg": "../assets/images/flags/nl.svg",
+ "countryName": "Netherlands",
+ "countryCode": "+31"
+ },
+ {
+ "id": 174,
+ "flagImg": "../assets/images/flags/no.svg",
+ "countryName": "Norway",
+ "countryCode": "+47"
+ },
+ {
+ "id": 175,
+ "flagImg": "../assets/images/flags/np.svg",
+ "countryName": "Nepal",
+ "countryCode": "+977"
+ },
+ {
+ "id": 176,
+ "flagImg": "../assets/images/flags/nr.svg",
+ "countryName": "Nauru",
+ "countryCode": "+674"
+ },
+ {
+ "id": 177,
+ "flagImg": "../assets/images/flags/nu.svg",
+ "countryName": "Niue",
+ "countryCode": "+683"
+ },
+ {
+ "id": 178,
+ "flagImg": "../assets/images/flags/nz.svg",
+ "countryName": "New Zealand",
+ "countryCode": "+64"
+ },
+ {
+ "id": 179,
+ "flagImg": "../assets/images/flags/om.svg",
+ "countryName": "Oman",
+ "countryCode": "+968"
+ },
+ {
+ "id": 180,
+ "flagImg": "../assets/images/flags/pa.svg",
+ "countryName": "Panama",
+ "countryCode": "+507"
+ },
+ {
+ "id": 181,
+ "flagImg": "../assets/images/flags/pe.svg",
+ "countryName": "Peru",
+ "countryCode": "+51"
+ },
+ {
+ "id": 182,
+ "flagImg": "../assets/images/flags/pf.svg",
+ "countryName": "French Polynesia",
+ "countryCode": "+689"
+ },
+ {
+ "id": 183,
+ "flagImg": "../assets/images/flags/pg.svg",
+ "countryName": "Papua New Guinea",
+ "countryCode": "+675"
+ },
+ {
+ "id": 184,
+ "flagImg": "../assets/images/flags/ph.svg",
+ "countryName": "Philippines",
+ "countryCode": "+63"
+ },
+ {
+ "id": 185,
+ "flagImg": "../assets/images/flags/pk.svg",
+ "countryName": "Pakistan",
+ "countryCode": "+92"
+ },
+ {
+ "id": 186,
+ "flagImg": "../assets/images/flags/pl.svg",
+ "countryName": "Poland",
+ "countryCode": "+48"
+ },
+ {
+ "id": 187,
+ "flagImg": "../assets/images/flags/pm.svg",
+ "countryName": "Saint Pierre and Miquelon",
+ "countryCode": "+508"
+ },
+ {
+ "id": 188,
+ "flagImg": "../assets/images/flags/pn.svg",
+ "countryName": "Pitcairn",
+ "countryCode": "+64"
+ },
+ {
+ "id": 189,
+ "flagImg": "../assets/images/flags/pr.svg",
+ "countryName": "Puerto Rico",
+ "countryCode": "+1"
+ },
+ {
+ "id": 190,
+ "flagImg": "../assets/images/flags/ps.svg",
+ "countryName": "State of Palestine",
+ "countryCode": "+970"
+ },
+ {
+ "id": 191,
+ "flagImg": "../assets/images/flags/pt.svg",
+ "countryName": "Portugal",
+ "countryCode": "+351"
+ },
+ {
+ "id": 192,
+ "flagImg": "../assets/images/flags/pw.svg",
+ "countryName": "Palau",
+ "countryCode": "+680"
+ },
+ {
+ "id": 193,
+ "flagImg": "../assets/images/flags/py.svg",
+ "countryName": "Paraguay",
+ "countryCode": "+595"
+ },
+ {
+ "id": 194,
+ "flagImg": "../assets/images/flags/qa.svg",
+ "countryName": "Qatar",
+ "countryCode": "+974"
+ },
+ {
+ "id": 195,
+ "flagImg": "../assets/images/flags/re.svg",
+ "countryName": "Réunion",
+ "countryCode": "+262"
+ },
+ {
+ "id": 196,
+ "flagImg": "../assets/images/flags/ro.svg",
+ "countryName": "Romania",
+ "countryCode": "+40"
+ },
+ {
+ "id": 197,
+ "flagImg": "../assets/images/flags/rs.svg",
+ "countryName": "Serbia",
+ "countryCode": "+381"
+ },
+ {
+ "id": 198,
+ "flagImg": "../assets/images/flags/ru.svg",
+ "countryName": "Russia",
+ "countryCode": "+7"
+ },
+ {
+ "id": 199,
+ "flagImg": "../assets/images/flags/rw.svg",
+ "countryName": "Rwanda",
+ "countryCode": "+250"
+ },
+ {
+ "id": 200,
+ "flagImg": "../assets/images/flags/sa.svg",
+ "countryName": "Saudi Arabia",
+ "countryCode": "+966"
+ },
+ {
+ "id": 201,
+ "flagImg": "../assets/images/flags/sb.svg",
+ "countryName": "Solomon Islands",
+ "countryCode": "+677"
+ },
+ {
+ "id": 202,
+ "flagImg": "../assets/images/flags/sc.svg",
+ "countryName": "Seychelles",
+ "countryCode": "+248"
+ },
+ {
+ "id": 203,
+ "flagImg": "../assets/images/flags/sd.svg",
+ "countryName": "Sudan",
+ "countryCode": "+249"
+ },
+ {
+ "id": 204,
+ "flagImg": "../assets/images/flags/se.svg",
+ "countryName": "Sweden",
+ "countryCode": "+46"
+ },
+ {
+ "id": 205,
+ "flagImg": "../assets/images/flags/sg.svg",
+ "countryName": "Singapore",
+ "countryCode": "+65"
+ },
+ {
+ "id": 207,
+ "flagImg": "../assets/images/flags/si.svg",
+ "countryName": "Slovenia",
+ "countryCode": "+386"
+ },
+ {
+ "id": 208,
+ "flagImg": "../assets/images/flags/sj.svg",
+ "countryName": "Svalbard and Jan Mayen",
+ "countryCode": "47"
+ },
+ {
+ "id": 209,
+ "flagImg": "../assets/images/flags/sk.svg",
+ "countryName": "Slovakia",
+ "countryCode": "+421"
+ },
+ {
+ "id": 210,
+ "flagImg": "../assets/images/flags/sl.svg",
+ "countryName": "Sierra Leone",
+ "countryCode": "+232"
+ },
+ {
+ "id": 212,
+ "flagImg": "../assets/images/flags/sm.svg",
+ "countryName": "San Marino",
+ "countryCode": "+378"
+ },
+ {
+ "id": 213,
+ "flagImg": "../assets/images/flags/sn.svg",
+ "countryName": "Senegal",
+ "countryCode": "+221"
+ },
+ {
+ "id": 214,
+ "flagImg": "../assets/images/flags/so.svg",
+ "countryName": "Somalia",
+ "countryCode": "+252"
+ },
+ {
+ "id": 215,
+ "flagImg": "../assets/images/flags/sr.svg",
+ "countryName": "Suriname",
+ "countryCode": "+597"
+ },
+ {
+ "id": 216,
+ "flagImg": "../assets/images/flags/ss.svg",
+ "countryName": "South Sudan",
+ "countryCode": "+211"
+ },
+ {
+ "id": 217,
+ "flagImg": "../assets/images/flags/st.svg",
+ "countryName": "Sao Tome and Principe",
+ "countryCode": "+239"
+ },
+ {
+ "id": 218,
+ "flagImg": "../assets/images/flags/sv.svg",
+ "countryName": "El Salvador",
+ "countryCode": "+503"
+ },
+ {
+ "id": 219,
+ "flagImg": "../assets/images/flags/sx.svg",
+ "countryName": "Sint Maarten",
+ "countryCode": "+721"
+ },
+ {
+ "id": 220,
+ "flagImg": "../assets/images/flags/sy.svg",
+ "countryName": "Syria",
+ "countryCode": "+963"
+ },
+ {
+ "id": 221,
+ "flagImg": "../assets/images/flags/sz.svg",
+ "countryName": "Eswatini",
+ "countryCode": "+268"
+ },
+ {
+ "id": 222,
+ "flagImg": "../assets/images/flags/ta.svg",
+ "countryName": "Tristan da Cunha",
+ "countryCode": "+290"
+ },
+ {
+ "id": 223,
+ "flagImg": "../assets/images/flags/tc.svg",
+ "countryName": "Turks and Caicos Islands",
+ "countryCode": "+1"
+ },
+ {
+ "id": 224,
+ "flagImg": "../assets/images/flags/td.svg",
+ "countryName": "Chad",
+ "countryCode": "+235"
+ },
+ {
+ "id": 225,
+ "flagImg": "../assets/images/flags/tg.svg",
+ "countryName": "Togo",
+ "countryCode": "+228"
+ },
+ {
+ "id": 226,
+ "flagImg": "../assets/images/flags/th.svg",
+ "countryName": "Thailand",
+ "countryCode": "+66"
+ },
+ {
+ "id": 227,
+ "flagImg": "../assets/images/flags/tj.svg",
+ "countryName": "Tajikistan",
+ "countryCode": "+992"
+ },
+ {
+ "id": 228,
+ "flagImg": "../assets/images/flags/tk.svg",
+ "countryName": "Tokelau",
+ "countryCode": "+690"
+ },
+ {
+ "id": 229,
+ "flagImg": "../assets/images/flags/tl.svg",
+ "countryName": "Timor-Leste",
+ "countryCode": "+670"
+ },
+ {
+ "id": 230,
+ "flagImg": "../assets/images/flags/tm.svg",
+ "countryName": "Turkmenistan",
+ "countryCode": "+993"
+ },
+ {
+ "id": 231,
+ "flagImg": "../assets/images/flags/tn.svg",
+ "countryName": "Tunisia",
+ "countryCode": "+216"
+ },
+ {
+ "id": 232,
+ "flagImg": "../assets/images/flags/to.svg",
+ "countryName": "Tonga",
+ "countryCode": "+676"
+ },
+ {
+ "id": 233,
+ "flagImg": "../assets/images/flags/tr.svg",
+ "countryName": "Turkey",
+ "countryCode": "+90"
+ },
+ {
+ "id": 234,
+ "flagImg": "../assets/images/flags/tt.svg",
+ "countryName": "Trinidad and Tobago",
+ "countryCode": "+1"
+ },
+ {
+ "id": 235,
+ "flagImg": "../assets/images/flags/tv.svg",
+ "countryName": "Tuvalu",
+ "countryCode": "+688"
+ },
+ {
+ "id": 236,
+ "flagImg": "../assets/images/flags/tw.svg",
+ "countryName": "Taiwan",
+ "countryCode": "+886"
+ },
+ {
+ "id": 237,
+ "flagImg": "../assets/images/flags/tz.svg",
+ "countryName": "Tanzania",
+ "countryCode": "+255"
+ },
+ {
+ "id": 238,
+ "flagImg": "../assets/images/flags/ua.svg",
+ "countryName": "Ukraine",
+ "countryCode": "+380"
+ },
+ {
+ "id": 239,
+ "flagImg": "../assets/images/flags/ug.svg",
+ "countryName": "Uganda",
+ "countryCode": "+256"
+ },
+ {
+ "id": 240,
+ "flagImg": "../assets/images/flags/us.svg",
+ "countryName": "United States of America",
+ "countryCode": "+1"
+ },
+ {
+ "id": 242,
+ "flagImg": "../assets/images/flags/uy.svg",
+ "countryName": "Uruguay",
+ "countryCode": "+598"
+ },
+ {
+ "id": 243,
+ "flagImg": "../assets/images/flags/uz.svg",
+ "countryName": "Uzbekistan",
+ "countryCode": "+998"
+ },
+ {
+ "id": 244,
+ "flagImg": "../assets/images/flags/va.svg",
+ "countryName": "Holy See",
+ "countryCode": "+379"
+ },
+ {
+ "id": 245,
+ "flagImg": "../assets/images/flags/vc.svg",
+ "countryName": "Saint Vincent and the Grenadines",
+ "countryCode": "+1"
+ },
+ {
+ "id": 246,
+ "flagImg": "../assets/images/flags/ve.svg",
+ "countryName": "Venezuela (Bolivarian Republic of)",
+ "countryCode": "+58"
+ },
+ {
+ "id": 247,
+ "flagImg": "../assets/images/flags/vg.svg",
+ "countryName": "Virgin Islands (British)",
+ "countryCode": "+1"
+ },
+ {
+ "id": 248,
+ "flagImg": "../assets/images/flags/vi.svg",
+ "countryName": "Virgin Islands (U.S.)",
+ "countryCode": "+1"
+ },
+ {
+ "id": 249,
+ "flagImg": "../assets/images/flags/vn.svg",
+ "countryName": "Vietnam",
+ "countryCode": "+84"
+ },
+ {
+ "id": 250,
+ "flagImg": "../assets/images/flags/vu.svg",
+ "countryName": "Vanuatu",
+ "countryCode": "+678"
+ },
+ {
+ "id": 251,
+ "flagImg": "../assets/images/flags/wf.svg",
+ "countryName": "Wallis and Futuna",
+ "countryCode": "+681"
+ },
+ {
+ "id": 252,
+ "flagImg": "../assets/images/flags/ws.svg",
+ "countryName": "Samoa",
+ "countryCode": "+685"
+ },
+ {
+ "id": 253,
+ "flagImg": "../assets/images/flags/xk.svg",
+ "countryName": "Kosovo",
+ "countryCode": "+383"
+ },
+ {
+ "id": 254,
+ "flagImg": "../assets/images/flags/ye.svg",
+ "countryName": "Yemen",
+ "countryCode": "+967"
+ },
+ {
+ "id": 255,
+ "flagImg": "../assets/images/flags/yt.svg",
+ "countryName": "Mayotte",
+ "countryCode": "+262"
+ },
+ {
+ "id": 256,
+ "flagImg": "../assets/images/flags/za.svg",
+ "countryName": "South Africa",
+ "countryCode": "+27"
+ },
+ {
+ "id": 257,
+ "flagImg": "../assets/images/flags/zm.svg",
+ "countryName": "Zambia",
+ "countryCode": "+260"
+ },
+ {
+ "id": 258,
+ "flagImg": "../assets/images/flags/zw.svg",
+ "countryName": "Zimbabwe",
+ "countryCode": "+263"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/coupons-list.json b/public/build/json/coupons-list.json
new file mode 100644
index 0000000..f864095
--- /dev/null
+++ b/public/build/json/coupons-list.json
@@ -0,0 +1,112 @@
+[
+ {
+ "id":1,
+ "discount" :"$15.9",
+ "couponTitle" :"Winter Gift Voucher",
+ "code" : "WINTER145",
+ "productType" : "Other Accessories",
+ "startDate" : "23 Dec, 2022",
+ "endDate" : "15 Jan, 2023",
+ "status" : "Active"
+ },
+ {
+ "id":2,
+ "discount" :"50%",
+ "couponTitle" :"Back Friday",
+ "code" : "FRIDAY50",
+ "productType" : "Furniture",
+ "startDate" : "14 Mar, 2022",
+ "endDate" : "29 Mar, 2022",
+ "status" : "Active"
+ },
+ {
+ "id":3,
+ "discount" :"20%",
+ "couponTitle" :"Gift Voucher",
+ "code" : "TONER20",
+ "productType" : "Lighting",
+ "startDate" : "05 Aug, 2022",
+ "endDate" : "12 Sep, 2022",
+ "status" : "Expired"
+ },
+ {
+ "id":4,
+ "discount" :"$10",
+ "couponTitle" :"Cyber Sale",
+ "code" : "CYBER10",
+ "productType" : "Footwear",
+ "startDate" : "16 Aug, 2022",
+ "endDate" : "15 Sep, 2022",
+ "status" : "Expired"
+ },
+ {
+ "id":5,
+ "discount" :"60%",
+ "couponTitle" :"Exclusive Sale",
+ "code" : "SALES60",
+ "productType" : "Clothing",
+ "startDate" : "11 Sep, 2022",
+ "endDate" : "03 Oct, 2022",
+ "status" : "Active"
+ },
+ {
+ "id":6,
+ "discount" :"$15",
+ "couponTitle" :"Great Festival",
+ "code" : "FESTIVAL15",
+ "productType" : "Headphones",
+ "startDate" : "09 Dec, 2022",
+ "endDate" : "21 Dec, 2022",
+ "status" : "Expired"
+ },
+ {
+ "id":7,
+ "discount" :"40%",
+ "couponTitle" :"Summer Sale",
+ "code" : "SUMMER40",
+ "productType" : "Beauty & Personal Care",
+ "startDate" : "05 Oct, 2022",
+ "endDate" : "24 Nov, 2022",
+ "status" : "Expired"
+ },
+ {
+ "id":8,
+ "discount" :"20%",
+ "couponTitle" :"Christmas Sale",
+ "code" : "CHRISTMAS20",
+ "productType" : "Headphones",
+ "startDate" : "15 Jan, 2023",
+ "endDate" : "13 Feb, 2023",
+ "status" : "Active"
+ },
+ {
+ "id":9,
+ "discount" :"$10",
+ "couponTitle" :"Summer Sale",
+ "code" : "SUMMER10",
+ "productType" : "Furniture",
+ "startDate" : "19 Nov, 2022",
+ "endDate" : "28 Dec, 2022",
+ "status" : "Expired"
+ },
+ {
+ "id":10,
+ "discount" :"$25",
+ "couponTitle" :"Gift Voucher",
+ "code" : "FESTIVAL15",
+ "productType" : "Watch",
+ "startDate" : "02 Dec, 2022",
+ "endDate" : "07 Jan, 2023",
+ "status" : "Active"
+ },
+ {
+ "id":11,
+ "discount" :"$10",
+ "couponTitle" :"Cyber Sale",
+ "code" : "CYBER10",
+ "productType" : "Footwear",
+ "startDate" : "16 Aug, 2022",
+ "endDate" : "15 Sep, 2022",
+ "status" : "Expired"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/currency-rates.json b/public/build/json/currency-rates.json
new file mode 100644
index 0000000..ff4abd1
--- /dev/null
+++ b/public/build/json/currency-rates.json
@@ -0,0 +1,90 @@
+[
+ {
+ "id":1,
+ "currencyName": "European Union",
+ "usd" : "1.064427",
+ "type":"Euro (€)",
+ "exchangeRate" :"0.00136"
+
+ },
+ {
+ "id":2,
+ "currencyName": "Renminbi (Yuan)",
+ "usd" : "0.14",
+ "type":"Yuan (¥)",
+ "exchangeRate" :"0.00011"
+
+ },
+ {
+ "id":3,
+ "currencyName": "Afghan Afghani",
+ "usd" : "0.011",
+ "type":"AFN (؋)",
+ "exchangeRate" :"0.00012"
+
+ },
+ {
+ "id":4,
+ "currencyName": "Canadian Dollar",
+ "usd" : "0.735505",
+ "type":"CAD ($)",
+ "exchangeRate" :"0.00214"
+
+ },
+ {
+ "id":5,
+ "currencyName": "Danish Kroner",
+ "usd" : "0.14",
+ "type":"DKK (Kr)",
+ "exchangeRate" :"0.0026"
+
+ },
+ {
+ "id":6,
+ "currencyName": "Egyptian Pound",
+ "usd" : "0.040",
+ "type":"EGP (E£)",
+ "exchangeRate" :"0.00054"
+
+ },
+ {
+ "id":7,
+ "currencyName": "Kenyan Shilling",
+ "usd" : "0.0081",
+ "type":"KES (K)",
+ "exchangeRate" :"0.0000321"
+
+ },
+ {
+ "id":8,
+ "currencyName": "United Kingdom",
+ "usd" : "1.20",
+ "type":"GBP (£)",
+ "exchangeRate" :"0.0374"
+
+ },
+ {
+ "id":9,
+ "currencyName": "European Union",
+ "usd" : "1.064427",
+ "type":"Euro (€)",
+ "exchangeRate" :"0.00136"
+
+ },
+ {
+ "id":10,
+ "currencyName": "Colombian Peso",
+ "usd" : "1542.32",
+ "type":"COP ($)",
+ "exchangeRate" :"0.00524355"
+
+ },
+ {
+ "id":11,
+ "currencyName": "Kenyan Shilling",
+ "usd" : "0.0081",
+ "type":"KES (K)",
+ "exchangeRate" :"0.0000321"
+
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/datatable.json b/public/build/json/datatable.json
new file mode 100644
index 0000000..eb85aa5
--- /dev/null
+++ b/public/build/json/datatable.json
@@ -0,0 +1,460 @@
+{
+ "data": [
+ [
+ "Tiger Nixon",
+ "System Architect",
+ "Edinburgh",
+ "5421",
+ "2011/04/25",
+ "$320,800"
+ ],
+ [
+ "Garrett Winters",
+ "Accountant",
+ "Tokyo",
+ "8422",
+ "2011/07/25",
+ "$170,750"
+ ],
+ [
+ "Ashton Cox",
+ "Junior Technical Author",
+ "San Francisco",
+ "1562",
+ "2009/01/12",
+ "$86,000"
+ ],
+ [
+ "Cedric Kelly",
+ "Senior Javascript Developer",
+ "Edinburgh",
+ "6224",
+ "2012/03/29",
+ "$433,060"
+ ],
+ [
+ "Airi Satou",
+ "Accountant",
+ "Tokyo",
+ "5407",
+ "2008/11/28",
+ "$162,700"
+ ],
+ [
+ "Brielle Williamson",
+ "Integration Specialist",
+ "New York",
+ "4804",
+ "2012/12/02",
+ "$372,000"
+ ],
+ [
+ "Herrod Chandler",
+ "Sales Assistant",
+ "San Francisco",
+ "9608",
+ "2012/08/06",
+ "$137,500"
+ ],
+ [
+ "Rhona Davidson",
+ "Integration Specialist",
+ "Tokyo",
+ "6200",
+ "2010/10/14",
+ "$327,900"
+ ],
+ [
+ "Colleen Hurst",
+ "Javascript Developer",
+ "San Francisco",
+ "2360",
+ "2009/09/15",
+ "$205,500"
+ ],
+ [
+ "Sonya Frost",
+ "Software Engineer",
+ "Edinburgh",
+ "1667",
+ "2008/12/13",
+ "$103,600"
+ ],
+ [
+ "Jena Gaines",
+ "Office Manager",
+ "London",
+ "3814",
+ "2008/12/19",
+ "$90,560"
+ ],
+ [
+ "Quinn Flynn",
+ "Support Lead",
+ "Edinburgh",
+ "9497",
+ "2013/03/03",
+ "$342,000"
+ ],
+ [
+ "Charde Marshall",
+ "Regional Director",
+ "San Francisco",
+ "6741",
+ "2008/10/16",
+ "$470,600"
+ ],
+ [
+ "Haley Kennedy",
+ "Senior Marketing Designer",
+ "London",
+ "3597",
+ "2012/12/18",
+ "$313,500"
+ ],
+ [
+ "Tatyana Fitzpatrick",
+ "Regional Director",
+ "London",
+ "1965",
+ "2010/03/17",
+ "$385,750"
+ ],
+ [
+ "Michael Silva",
+ "Marketing Designer",
+ "London",
+ "1581",
+ "2012/11/27",
+ "$198,500"
+ ],
+ [
+ "Paul Byrd",
+ "Chief Financial Officer (CFO)",
+ "New York",
+ "3059",
+ "2010/06/09",
+ "$725,000"
+ ],
+ [
+ "Gloria Little",
+ "Systems Administrator",
+ "New York",
+ "1721",
+ "2009/04/10",
+ "$237,500"
+ ],
+ [
+ "Bradley Greer",
+ "Software Engineer",
+ "London",
+ "2558",
+ "2012/10/13",
+ "$132,000"
+ ],
+ [
+ "Dai Rios",
+ "Personnel Lead",
+ "Edinburgh",
+ "2290",
+ "2012/09/26",
+ "$217,500"
+ ],
+ [
+ "Jenette Caldwell",
+ "Development Lead",
+ "New York",
+ "1937",
+ "2011/09/03",
+ "$345,000"
+ ],
+ [
+ "Yuri Berry",
+ "Chief Marketing Officer (CMO)",
+ "New York",
+ "6154",
+ "2009/06/25",
+ "$675,000"
+ ],
+ [
+ "Caesar Vance",
+ "Pre-Sales Support",
+ "New York",
+ "8330",
+ "2011/12/12",
+ "$106,450"
+ ],
+ [
+ "Doris Wilder",
+ "Sales Assistant",
+ "Sydney",
+ "3023",
+ "2010/09/20",
+ "$85,600"
+ ],
+ [
+ "Angelica Ramos",
+ "Chief Executive Officer (CEO)",
+ "London",
+ "5797",
+ "2009/10/09",
+ "$1,200,000"
+ ],
+ [
+ "Gavin Joyce",
+ "Developer",
+ "Edinburgh",
+ "8822",
+ "2010/12/22",
+ "$92,575"
+ ],
+ [
+ "Jennifer Chang",
+ "Regional Director",
+ "Singapore",
+ "9239",
+ "2010/11/14",
+ "$357,650"
+ ],
+ [
+ "Brenden Wagner",
+ "Software Engineer",
+ "San Francisco",
+ "1314",
+ "2011/06/07",
+ "$206,850"
+ ],
+ [
+ "Fiona Green",
+ "Chief Operating Officer (COO)",
+ "San Francisco",
+ "2947",
+ "2010/03/11",
+ "$850,000"
+ ],
+ [
+ "Shou Itou",
+ "Regional Marketing",
+ "Tokyo",
+ "8899",
+ "2011/08/14",
+ "$163,000"
+ ],
+ [
+ "Michelle House",
+ "Integration Specialist",
+ "Sydney",
+ "2769",
+ "2011/06/02",
+ "$95,400"
+ ],
+ [
+ "Suki Burks",
+ "Developer",
+ "London",
+ "6832",
+ "2009/10/22",
+ "$114,500"
+ ],
+ [
+ "Prescott Bartlett",
+ "Technical Author",
+ "London",
+ "3606",
+ "2011/05/07",
+ "$145,000"
+ ],
+ [
+ "Gavin Cortez",
+ "Team Leader",
+ "San Francisco",
+ "2860",
+ "2008/10/26",
+ "$235,500"
+ ],
+ [
+ "Martena Mccray",
+ "Post-Sales support",
+ "Edinburgh",
+ "8240",
+ "2011/03/09",
+ "$324,050"
+ ],
+ [
+ "Unity Butler",
+ "Marketing Designer",
+ "San Francisco",
+ "5384",
+ "2009/12/09",
+ "$85,675"
+ ],
+ [
+ "Howard Hatfield",
+ "Office Manager",
+ "San Francisco",
+ "7031",
+ "2008/12/16",
+ "$164,500"
+ ],
+ [
+ "Hope Fuentes",
+ "Secretary",
+ "San Francisco",
+ "6318",
+ "2010/02/12",
+ "$109,850"
+ ],
+ [
+ "Vivian Harrell",
+ "Financial Controller",
+ "San Francisco",
+ "9422",
+ "2009/02/14",
+ "$452,500"
+ ],
+ [
+ "Timothy Mooney",
+ "Office Manager",
+ "London",
+ "7580",
+ "2008/12/11",
+ "$136,200"
+ ],
+ [
+ "Jackson Bradshaw",
+ "Director",
+ "New York",
+ "1042",
+ "2008/09/26",
+ "$645,750"
+ ],
+ [
+ "Olivia Liang",
+ "Support Engineer",
+ "Singapore",
+ "2120",
+ "2011/02/03",
+ "$234,500"
+ ],
+ [
+ "Bruno Nash",
+ "Software Engineer",
+ "London",
+ "6222",
+ "2011/05/03",
+ "$163,500"
+ ],
+ [
+ "Sakura Yamamoto",
+ "Support Engineer",
+ "Tokyo",
+ "9383",
+ "2009/08/19",
+ "$139,575"
+ ],
+ [
+ "Thor Walton",
+ "Developer",
+ "New York",
+ "8327",
+ "2013/08/11",
+ "$98,540"
+ ],
+ [
+ "Finn Camacho",
+ "Support Engineer",
+ "San Francisco",
+ "2927",
+ "2009/07/07",
+ "$87,500"
+ ],
+ [
+ "Serge Baldwin",
+ "Data Coordinator",
+ "Singapore",
+ "8352",
+ "2012/04/09",
+ "$138,575"
+ ],
+ [
+ "Zenaida Frank",
+ "Software Engineer",
+ "New York",
+ "7439",
+ "2010/01/04",
+ "$125,250"
+ ],
+ [
+ "Zorita Serrano",
+ "Software Engineer",
+ "San Francisco",
+ "4389",
+ "2012/06/01",
+ "$115,000"
+ ],
+ [
+ "Jennifer Acosta",
+ "Junior Javascript Developer",
+ "Edinburgh",
+ "3431",
+ "2013/02/01",
+ "$75,650"
+ ],
+ [
+ "Cara Stevens",
+ "Sales Assistant",
+ "New York",
+ "3990",
+ "2011/12/06",
+ "$145,600"
+ ],
+ [
+ "Hermione Butler",
+ "Regional Director",
+ "London",
+ "1016",
+ "2011/03/21",
+ "$356,250"
+ ],
+ [
+ "Lael Greer",
+ "Systems Administrator",
+ "London",
+ "6733",
+ "2009/02/27",
+ "$103,500"
+ ],
+ [
+ "Jonas Alexander",
+ "Developer",
+ "San Francisco",
+ "8196",
+ "2010/07/14",
+ "$86,500"
+ ],
+ [
+ "Shad Decker",
+ "Regional Director",
+ "Edinburgh",
+ "6373",
+ "2008/11/13",
+ "$183,000"
+ ],
+ [
+ "Michael Bruce",
+ "Javascript Developer",
+ "Singapore",
+ "5384",
+ "2011/06/27",
+ "$183,000"
+ ],
+ [
+ "Donna Snider",
+ "Customer Support",
+ "New York",
+ "4226",
+ "2011/01/25",
+ "$112,000"
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/public/build/json/orders-list.init.json b/public/build/json/orders-list.init.json
new file mode 100644
index 0000000..f9de123
--- /dev/null
+++ b/public/build/json/orders-list.init.json
@@ -0,0 +1,111 @@
+[
+ {
+ "id": "1",
+ "customer_name": "Alfred Hurst",
+ "product_name": "Carven Lounge Chair Red",
+ "amount": "$874.30",
+ "order_date": "18 Dec, 2022",
+ "delivery_date": "24 Dec, 2022",
+ "payment_method": "Mastercard",
+ "status": "Delivered"
+ }, {
+ "id": "2",
+ "customer_name": "Tommy Carey",
+ "product_name": "World's Most Expensive T-Shirt",
+ "amount": "$1452.00",
+ "order_date": "02 Jan, 2022",
+ "delivery_date": "13 Jan, 2022",
+ "payment_method": "Visa",
+ "status": "Pickups"
+ }, {
+ "id": "3",
+ "customer_name": "Cassius Brock",
+ "product_name": "Ninja Pro Max Smartwatch",
+ "amount": "$341.23",
+ "order_date": "24 Nov, 2022",
+ "delivery_date": "02 Dec, 2022",
+ "payment_method": "COD",
+ "status": "Inprogress"
+ }, {
+ "id": "4",
+ "customer_name": "Camilla Winters",
+ "product_name": "Like Style Women Black Handbag",
+ "amount": "$671.00",
+ "order_date": "12 Jan, 2023",
+ "delivery_date": "20 Jan, 2023",
+ "payment_method": "Visa",
+ "status": "Pending"
+ }, {
+ "id": "5",
+ "customer_name": "Gabrielle Holden",
+ "product_name": "Funky Prints T-shirt",
+ "amount": "$803.11",
+ "order_date": "08 Aug, 2022",
+ "delivery_date": "16 Aug, 2022",
+ "payment_method": "Mastercard",
+ "status": "Returns"
+ }, {
+ "id": "6",
+ "customer_name": "Kristina Hooper",
+ "product_name": "Innovative Education Book",
+ "amount": "$203.65",
+ "order_date": "08 Oct, 2022",
+ "delivery_date": "24 Oct, 2022",
+ "payment_method": "Visa",
+ "status": "Cancelled"
+ }, {
+ "id": "7",
+ "customer_name": "Jacques Leon",
+ "product_name": "Leather band Smartwatches",
+ "amount": "$2145.20",
+ "order_date": "11 Feb, 2021",
+ "delivery_date": "22 Feb, 2021",
+ "payment_method": "COD",
+ "status": "Delivered"
+ }, {
+ "id": "8",
+ "customer_name": "Theresa Crawford",
+ "product_name": "Galaxy Watch4",
+ "amount": "$3468.41",
+ "order_date": "28 Oct, 2022",
+ "delivery_date": "09 Nov, 2022",
+ "payment_method": "Mastercard",
+ "status": "Pickups"
+ }, {
+ "id": "9",
+ "customer_name": "Alina Holland",
+ "product_name": "Borosil Paper Cup",
+ "amount": "$351.91",
+ "order_date": "19 June, 2021",
+ "delivery_date": "28 June, 2021",
+ "payment_method": "Visa",
+ "status": "Pending"
+ }, {
+ "id": "10",
+ "customer_name": "Edward Rogers",
+ "product_name": "Apple Headphone",
+ "amount": "$1876.02",
+ "order_date": "25 Nov, 2021",
+ "delivery_date": "03 Dec, 2021",
+ "payment_method": "COD",
+ "status": "Returns"
+ },{
+ "id": "11",
+ "customer_name": "Richard Jenkins",
+ "product_name": "Innovative Education Book",
+ "amount": "$203.65",
+ "order_date": "08 Oct, 2021",
+ "delivery_date": "24 Oct, 2021",
+ "payment_method": "Visa",
+ "status": "Cancelled"
+ }, {
+ "id": "12",
+ "customer_name": "Louis Hicks",
+ "product_name": "Leather band Smartwatches",
+ "amount": "$2145.20",
+ "order_date": "11 Feb, 2021",
+ "delivery_date": "22 Feb, 2021",
+ "payment_method": "COD",
+ "status": "Delivered"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/sellers-grid-list.json b/public/build/json/sellers-grid-list.json
new file mode 100644
index 0000000..127eb43
--- /dev/null
+++ b/public/build/json/sellers-grid-list.json
@@ -0,0 +1,83 @@
+[
+ {
+ "id":"1",
+ "sellerName": "Zibra Fashion Ltd",
+ "companyLogo": "../assets/images/companies/img-5.png",
+ "verified": true,
+ "webUrl": "www.zibrafashion.com",
+ "stock" : "2587",
+ "revenue" : "$438.36"
+ },{
+ "id":"2",
+ "sellerName": "Terry & Jerry",
+ "companyLogo": "../assets/images/companies/img-5.png",
+ "verified": false,
+ "webUrl": "www.terry&jerry.com",
+ "stock" : "850",
+ "revenue" : "$213.52"
+ },{
+ "id":"3",
+ "sellerName": "Themesbrand",
+ "companyLogo": "../assets/images/companies/img-1.png",
+ "verified": false,
+ "webUrl": "www.themesbrand.com",
+ "stock" : "1546",
+ "revenue" : "$383.50"
+ },{
+ "id":"4",
+ "sellerName": "Digital Galaxy",
+ "companyLogo": "../assets/images/companies/img-4.png",
+ "verified": true,
+ "webUrl": "www.digitalgalaxy.com",
+ "stock" : "241",
+ "revenue" : "$184.20"
+ },{
+ "id":"5",
+ "sellerName": "Rotic Fashion",
+ "companyLogo": "../assets/images/companies/img-3.png",
+ "verified": false,
+ "webUrl": "www.roticfashion.com",
+ "stock" : "654",
+ "revenue" : "$224.10"
+ },{
+ "id":"6",
+ "sellerName": "RND Fashion",
+ "companyLogo": "../assets/images/companies/img-2.png",
+ "verified": true,
+ "webUrl": "www.rndfashion.com",
+ "stock" : "150",
+ "revenue" : "$180.62"
+ },{
+ "id":"7",
+ "sellerName": "Jorce Medicines",
+ "companyLogo": "../assets/images/companies/img-7.png",
+ "verified": false,
+ "webUrl": "www.jorcemedicines.com",
+ "stock" : "540",
+ "revenue" : "$947.33"
+ },{
+ "id":"8",
+ "sellerName": "Pich Hub",
+ "companyLogo": "../assets/images/companies/img-6.png",
+ "verified": false,
+ "webUrl": "www.pichhub.com",
+ "stock" : "874",
+ "revenue" : "$365.87"
+ },{
+ "id":"9",
+ "sellerName": "Chase Pitkin",
+ "companyLogo": "../assets/images/companies/img-5.png",
+ "verified": true,
+ "webUrl": "-",
+ "stock" : "2587",
+ "revenue" : "$438.36"
+ },{
+ "id":"10",
+ "sellerName": "Star Merchant Services",
+ "companyLogo": "../assets/images/companies/img-4.png",
+ "verified": false,
+ "webUrl": "www.starmerchant.com",
+ "stock" : "850",
+ "revenue" : "$213.52"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/sellers-list.json b/public/build/json/sellers-list.json
new file mode 100644
index 0000000..d8e43a9
--- /dev/null
+++ b/public/build/json/sellers-list.json
@@ -0,0 +1,112 @@
+[
+ {
+ "id":"1",
+ "sellerName": "Alfred Hurst",
+ "itemStock": "245",
+ "balance" : "$748.32k",
+ "email" : "alfredH@toner.com",
+ "phone":"415-778-3654",
+ "createDate":"18 Dec, 2018",
+ "accountStatus": "Inactive"
+ },
+ {
+ "id":"2",
+ "sellerName": "Tommy Carey",
+ "itemStock": "3982",
+ "balance" : "$1452.74k",
+ "email" : "careytommy@toner.com",
+ "phone":"963-012-7495",
+ "createDate":"02 Jan, 2023",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"3",
+ "sellerName": "Cassius Brock",
+ "itemStock": "1571",
+ "balance" : "$341.81k",
+ "email" : "brock@toner.com",
+ "phone":"415-778-3654",
+ "createDate":"24 Nov, 2022",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"4",
+ "sellerName": "Camilla Winters",
+ "itemStock": "1873",
+ "balance" : "$671.00k",
+ "email" : "camilla@toner.com",
+ "phone":"013-789-9876",
+ "createDate":"12 Jan, 2023",
+ "accountStatus": "Inactive"
+ },
+ {
+ "id":"5",
+ "sellerName": "Gabrielle Holden",
+ "itemStock": "2268",
+ "balance" : "$803.11k",
+ "email" : "gabrielle@toner.com",
+ "phone":"032-012-3654",
+ "createDate":"17 Nov, 2022",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"6",
+ "sellerName": "Kristina Hooper",
+ "itemStock": "976",
+ "balance" : "$203.65k",
+ "email" : "kristina@toner.com",
+ "phone":"654-321-0789",
+ "createDate":"04 Oct, 2020",
+ "accountStatus": "Inactive"
+ },
+ {
+ "id":"7",
+ "sellerName": "Jacques Leon",
+ "itemStock": "2870",
+ "balance" : "$2145.20k",
+ "email" : "jacques@toner.com",
+ "phone":"094-951-3576",
+ "createDate":"07 Feb, 2015",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"8",
+ "sellerName": "Theresa Crawford",
+ "itemStock": "2504",
+ "balance" : "$3468.41k",
+ "email" : "crawford@toner.com",
+ "phone":"364-953-0764",
+ "createDate":"28 Oct, 2014",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"9",
+ "sellerName": "Alina Holland",
+ "itemStock": "703",
+ "balance" : "$351.91k",
+ "email" : "hollandalina@toner.com",
+ "phone":"275-754-9658",
+ "createDate":"16 Aug, 2016",
+ "accountStatus": "Active"
+ },
+ {
+ "id":"10",
+ "sellerName": "Edward Rogers",
+ "itemStock": "2419",
+ "balance" : "$1876.02k",
+ "email" : "edwardro@toner.com",
+ "phone":"546-010-0739",
+ "createDate":"25 Nov, 2021",
+ "accountStatus": "Inactive"
+ },
+ {
+ "id":"11",
+ "sellerName": "Camilla Winters",
+ "itemStock": "1873",
+ "balance" : "$671.00k",
+ "email" : "camilla@toner.com",
+ "phone":"013-789-9876",
+ "createDate":"12 Jan, 2023",
+ "accountStatus": "Inactive"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/shipments.json b/public/build/json/shipments.json
new file mode 100644
index 0000000..8de6983
--- /dev/null
+++ b/public/build/json/shipments.json
@@ -0,0 +1,111 @@
+[
+ {
+ "id": "1",
+ "shipment_no": "TBSN15412120001",
+ "customer_name": "Daniel Gonzalez",
+ "supplier": "iTest Factory",
+ "location": "Germany",
+ "order_date": "23 Dec, 2022",
+ "arrival_date": "15 Jan, 2023",
+ "status": "Delivered"
+ },{
+ "id": "2",
+ "shipment_no": "TBSN15412124512",
+ "customer_name": "Terry White",
+ "supplier": "Themesbrand",
+ "location": "Jersey",
+ "order_date": "06 Jan, 2023",
+ "arrival_date": "19 Jan, 2023",
+ "status": "Pending"
+ },{
+ "id": "3",
+ "shipment_no": "TBSN15412102154",
+ "customer_name": "Heather Jimenez",
+ "supplier": "Scott Wilson",
+ "location": "Spain",
+ "order_date": "12 Oct, 2022",
+ "arrival_date": "01 Nov, 2022",
+ "status": "Delivered"
+ },{
+ "id": "4",
+ "shipment_no": "TBSN15414512307",
+ "customer_name": "Phoenix Colon",
+ "supplier": "Scott Fry",
+ "location": "Albania",
+ "order_date": "03 Jan, 2023",
+ "arrival_date": "20 Jan, 2023",
+ "status": "Shipping"
+ },{
+ "id": "5",
+ "shipment_no": "TBSN15414516748",
+ "customer_name": "Albie Guerra",
+ "supplier": "Farhan Stein",
+ "location": "Poland",
+ "order_date": "16 Jan, 2023",
+ "arrival_date": "29 Feb, 2023",
+ "status": "Pickups"
+ },{
+ "id": "6",
+ "shipment_no": "TBSN15414521032",
+ "customer_name": "Devon Patton",
+ "supplier": "Zibra Cube",
+ "location": "UA",
+ "order_date": "02 Feb, 2023",
+ "arrival_date": "24 Mar, 2023",
+ "status": "Shipping"
+ },{
+ "id": "7",
+ "shipment_no": "TBSN15414523654",
+ "customer_name": "Saoirse Blake",
+ "supplier": "Micro Design",
+ "location": "Sweden",
+ "order_date": "13 Sep, 2022",
+ "arrival_date": "07 Jan, 2023",
+ "status": "Pending"
+ },{
+ "id": "8",
+ "shipment_no": "TBSN15414527498",
+ "customer_name": "Amanda Cortez",
+ "supplier": "Android Galaxy",
+ "location": "Serbia",
+ "order_date": "20 Mar, 2022",
+ "arrival_date": "09 May, 2022",
+ "status": "Pickups"
+ },{
+ "id": "9",
+ "shipment_no": "TBSN15414524986",
+ "customer_name": "Lochlan Green",
+ "supplier": "Zibra Cube",
+ "location": "Ukraine",
+ "order_date": "12 Aug, 2022",
+ "arrival_date": "17 Sep, 2022",
+ "status": "Delivered"
+ },{
+ "id": "10",
+ "shipment_no": "TBSN15414521452",
+ "customer_name": "Billy Conway",
+ "supplier": "iTest Factory",
+ "location": "Italy",
+ "order_date": "04 Oct, 2022",
+ "arrival_date": "30 Dec, 2022",
+ "status": "Out Of Delivery"
+ },{
+ "id": "11",
+ "shipment_no": "TBSN15414516748",
+ "customer_name": "Bertie Taylor",
+ "supplier": "Farhan Stein",
+ "location": "Poland",
+ "order_date": "16 Jan, 2023",
+ "arrival_date": "29 Feb, 2023",
+ "status": "Pickups"
+ },{
+ "id": "12",
+ "shipment_no": "TBSN15414521032",
+ "customer_name": "Elaine Merkley",
+ "supplier": "Zibra Cube",
+ "location": "UA",
+ "order_date": "02 Feb, 2023",
+ "arrival_date": "24 Mar, 2023",
+ "status": "Shipping"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/transactions-list.json b/public/build/json/transactions-list.json
new file mode 100644
index 0000000..d70f6eb
--- /dev/null
+++ b/public/build/json/transactions-list.json
@@ -0,0 +1,135 @@
+[
+ {
+ "id":1,
+ "type":"down",
+ "transactionID":"#TBSC320002830",
+ "amount" : "$253.32",
+ "paymentMethod" :["../assets/images/ecommerce/payment/american-express.png" , "American Express"],
+ "transactionDate" : "15 Jan, 2023",
+ "status" : "Successful",
+ "clientName" :"Diana Nichols",
+ "cleintEmail" : "diana@toner.com",
+ "vatId" : "TB211145424"
+ },
+ {
+ "id":2,
+ "type":"up",
+ "transactionID":"#TBSC320002836",
+ "amount" : "$745.00",
+ "paymentMethod" :["../assets/images/ecommerce/payment/paypal.png" , "PayPal"],
+ "transactionDate" : "19 Jan, 2023",
+ "status" : "Denied",
+ "clientName" :"Valentine Morin",
+ "cleintEmail" : "euismod.enim@outlook.net",
+ "vatId" : "TB211145425"
+ },
+ {
+ "id": 3,
+ "type":"down",
+ "transactionID":"#TBSC320002645",
+ "amount" : "$2,145.87",
+ "paymentMethod" :["../assets/images/ecommerce/payment/discover.png" , "Discover"],
+ "transactionDate" : "01 Nov, 2022",
+ "status" : "Successful",
+ "clientName" :"Brody Holman",
+ "cleintEmail" : "metus@protonmail.org",
+ "vatId" : "TB211155424"
+ },
+
+ {
+ "id":4,
+ "type":"up",
+ "transactionID":"#TBSC320002930",
+ "amount" : "$985.00",
+ "paymentMethod" :["../assets/images/ecommerce/payment/paypal.png", "PayPal"],
+ "transactionDate" : "20 Jan, 2023",
+ "status" : "Pending",
+ "clientName" :"Jolie Hood",
+ "cleintEmail" : "nunc.nulla@yahoo.edu",
+ "vatId" : "TB211145524"
+ },{
+ "id":5,
+ "type":"up",
+ "transactionID":"#TBSC320002987",
+ "amount" : "$3654.32",
+ "paymentMethod" :["../assets/images/ecommerce/payment/american-express.png" , "American Express"],
+ "transactionDate" : "29 Feb, 2023",
+ "status" : "Successful",
+ "clientName" :"Buckminster Wong",
+ "cleintEmail" : "dictum.phasellus.in@hotmail.org",
+ "vatId" : "TB211545424"
+ },
+ {
+ "id":6,
+ "type":"down",
+ "transactionID":"#TBSC320003001",
+ "amount" : "$654.02",
+ "paymentMethod" :["../assets/images/ecommerce/payment/visa.png" ,"Visa Credit/Debit"],
+ "transactionDate" : "24 Mar, 2023",
+ "status" : "Denied",
+ "clientName" :"Howard Lyons",
+ "cleintEmail" : "neque.sed.dictum@icloud.org",
+ "vatId" : "TB251145424"
+ },
+ {
+ "id":7,
+ "type":"down",
+ "transactionID":"#TBSC320003203",
+ "amount" : "$745.02",
+ "paymentMethod" :["../assets/images/ecommerce/payment/discover.png","Discover"],
+ "transactionDate" : "07 Jan, 2023",
+ "status" : "Pending",
+ "clientName" :"Howard Oneal",
+ "cleintEmail" : "porttitor.tellus.non@yahoo.net",
+ "vatId" : "TB211146424"
+ },
+ {
+ "id":8,
+ "type":"down",
+ "transactionID":"#TBSC320002830",
+ "amount" : "$3654.19",
+ "paymentMethod" :["../assets/images/ecommerce/payment/american-express.png","American Express"],
+ "transactionDate" : "09 May, 2022",
+ "status" : "Denied",
+ "clientName" :"Jena Hall",
+ "cleintEmail" : "lectus.sit.amet@protonmail.edu",
+ "vatId" : "TB211165424"
+ },
+
+ {
+ "id":9,
+ "type":"up",
+ "transactionID":"#TBSC320003319",
+ "amount" : "$874.31",
+ "paymentMethod" :["../assets/images/ecommerce/payment/american-express.png","American Express"],
+ "transactionDate" : "17 Sep,, 2022",
+ "status" : "Successful",
+ "clientName" :"Paki Edwards",
+ "cleintEmail" : "edwards.phasellus.in@hotmail.org",
+ "vatId" : "TB211145467"
+ },
+ {
+ "id":10,
+ "type":"up",
+ "transactionID":"#TBSC320003369",
+ "amount" : "$261.00",
+ "paymentMethod" :["../assets/images/ecommerce/payment/paypal.png","PayPal"],
+ "transactionDate" : "15 Jan, 2023",
+ "status" : "Successful",
+ "clientName" :"Nell Potter",
+ "cleintEmail" : "nella@toner.com",
+ "vatId" : "TB211145123"
+ },
+ {
+ "id":11,
+ "type":"down",
+ "transactionID":"#TBSC320003203",
+ "amount" : "$745.02",
+ "paymentMethod" :["../assets/images/ecommerce/payment/discover.png","Discover"],
+ "transactionDate" : "07 Jan, 2023",
+ "status" : "Pending",
+ "clientName" :"Howard Oneal",
+ "cleintEmail" : "porttitor.tellus.non@yahoo.net",
+ "vatId" : "TB211146424"
+ }
+]
\ No newline at end of file
diff --git a/public/build/json/users-list.json b/public/build/json/users-list.json
new file mode 100644
index 0000000..b76c1b1
--- /dev/null
+++ b/public/build/json/users-list.json
@@ -0,0 +1,72 @@
+[
+ {
+ "id": "1",
+ "user_name": ["../assets/images/users/avatar-2.jpg", "Alfred Hurst"],
+ "email_id": "alfredH@toner.com",
+ "date": "18 Dec, 2018",
+ "status": "Inactive"
+ },
+ {
+ "id": "2",
+ "user_name": ["../assets/images/users/avatar-3.jpg", "Tommy Carey"],
+ "email_id": "careytommy@toner.com",
+ "date": "02 Jan, 2023",
+ "status": "Active"
+ },
+ {
+ "id": "3",
+ "user_name": ["../assets/images/users/avatar-4.jpg", "Cassius Brock"],
+ "email_id": "brock@toner.com",
+ "date": "24 Nov, 2022",
+ "status": "Active"
+ },
+ {
+ "id": "4",
+ "user_name": ["../assets/images/users/avatar-5.jpg", "Camilla Winters"],
+ "email_id": "camilla@toner.com",
+ "date": "12 Jan, 2023",
+ "status": "Inactive"
+ },
+ {
+ "id": "5",
+ "user_name": ["../assets/images/users/avatar-6.jpg", "Gabrielle Holden"],
+ "email_id": "gabrielle@toner.com",
+ "date": "17 Nov, 2022",
+ "status": "Active"
+ },
+ {
+ "id": "6",
+ "user_name": ["../assets/images/users/avatar-7.jpg", "Kristina Hooper"],
+ "email_id": "kristina@toner.com",
+ "date": "04 Oct, 2020",
+ "status": "Inactive"
+ },
+ {
+ "id": "7",
+ "user_name": ["../assets/images/users/user-dummy-img.jpg", "Jacques Leon"],
+ "email_id": "jacques@toner.com",
+ "date": "07 Feb, 2015",
+ "status": "Active"
+ },
+ {
+ "id": "8",
+ "user_name": ["../assets/images/users/avatar-8.jpg", "Theresa Crawford"],
+ "email_id": "crawford@toner.com",
+ "date": "28 Oct, 2014",
+ "status": "Active"
+ },
+ {
+ "id": "9",
+ "user_name": ["../assets/images/users/avatar-9.jpg", "Alina Holland"],
+ "email_id": "hollandalina@toner.com",
+ "date": "16 Aug, 2016",
+ "status": "Active"
+ },
+ {
+ "id": "10",
+ "user_name": ["../assets/images/users/avatar-10.jpg", "Edward Rogers"],
+ "email_id": "edwardro@toner.com",
+ "date": "25 Nov, 2021",
+ "status": "Inactive"
+ }
+]
\ No newline at end of file
diff --git a/public/build/lang/ch.json b/public/build/lang/ch.json
new file mode 100644
index 0000000..4d83807
--- /dev/null
+++ b/public/build/lang/ch.json
@@ -0,0 +1,193 @@
+{
+ "t-menu": "菜单",
+ "t-hot": "热的",
+ "t-dashboard": "仪表板",
+ "t-products": "产品",
+ "t-list-view": "列表显示",
+ "t-grid-view": "网格视图",
+ "t-overview": "概述",
+ "t-create-product": "创建产品",
+ "t-categories": "类别",
+ "t-sub-categories": "子类别",
+ "t-orders": "订单",
+ "t-calendar": "日历",
+ "t-sellers": "卖家",
+ "t-invoice": "发票",
+ "t-create-invoice": "创建发票",
+ "t-users-list": "创建发票",
+ "t-shipping": "船运",
+ "t-shipping-list": "货单",
+ "t-shipments": "出货量",
+ "t-coupons": "优惠券",
+ "t-reviews-ratings": "评论和评级",
+ "t-brands": "品牌",
+ "t-statistics": "统计数据",
+ "t-localization": "本土化",
+ "t-transactions": "交易",
+ "t-currency-rates": "汇率",
+ "t-accounts": "帐户",
+ "t-my-account": "我的账户",
+ "t-settings": "设置",
+ "t-sign-up": "报名",
+ "t-sign-in": "登入",
+ "t-passowrd-reset": "重设密码",
+ "t-create-password": "密码创建",
+ "t-success-message": "成功讯息",
+ "t-two-step-verify": "两步验证",
+ "t-logout": "登出",
+ "t-error-404": "错误 404",
+ "t-error-500": "错误 500",
+ "t-coming-soon": "快来了",
+ "t-components": "组件",
+ "t-bootstrap-ui": "引导用户界面",
+ "t-alerts": "警报",
+ "t-badges": "徽章",
+ "t-buttons": "纽扣",
+ "t-colors": "颜色",
+ "t-cards": "牌",
+ "t-carousel": "旋转木马",
+ "t-dropdowns": "下拉菜单",
+ "t-grid": "网格",
+ "t-images": "图片",
+ "t-tabs": "选项卡",
+ "t-accordion-collapse": "手风琴与崩溃",
+ "t-modals": "模态",
+ "t-offcanvas": "帆布",
+ "t-placeholders": "占位符",
+ "t-progress": "进步",
+ "t-notifications": "通知",
+ "t-media-object": "媒体对象",
+ "t-embed-video": "嵌入视频",
+ "t-typography": "排版",
+ "t-lists": "列表",
+ "t-general": "一般的",
+ "t-utilities": "公用事业",
+ "t-advance-ui": "高级用户界面",
+ "t-new": "新的",
+ "t-sweet-alerts": "甜蜜警报",
+ "t-nestable-list": "可嵌套列表",
+ "t-scrollbar": "滚动条",
+ "t-swiper-slider": "滑动条",
+ "t-ratings": "收视率",
+ "t-highlight": "强调",
+ "t-scrollSpy": "滚动间谍",
+ "t-custom-ui": "自定义界面",
+ "t-ribbons": "丝带",
+ "t-profile": "轮廓",
+ "t-counter": "柜台",
+ "t-forms": "形式",
+ "t-basic-elements": "基本要素",
+ "t-form-select": "表单选择",
+ "t-checkboxs-radios": "复选框和收音机",
+ "t-pickers": "采摘机",
+ "t-input-masks": "输入掩码",
+ "t-advanced": "先进的",
+ "t-range-slider": "范围滑块",
+ "t-validation": "验证",
+ "t-wizard": "精灵",
+ "t-editors": "编辑部",
+ "t-file-uploads": "文件上传",
+ "t-form-layouts": "表单布局",
+ "t-tom-select": "汤姆选择",
+ "t-tables": "表",
+ "t-basic-tables": "基本表",
+ "t-grid-js": "网格JS",
+ "t-list-js": "清单Js",
+ "t-datatables": "数据表",
+ "t-apexcharts": "顶点图表",
+ "t-line": "线",
+ "t-area": "区域",
+ "t-column": "柱子",
+ "t-bar": "酒吧",
+ "t-mixed": "混合的",
+ "t-candlstick": "烛台",
+ "t-boxplot": "箱形图",
+ "t-bubble": "气泡",
+ "t-scatter": "分散",
+ "t-heatmap": "热图",
+ "t-treemap": "树形图",
+ "t-pie": "馅饼",
+ "t-radialbar": "径向杆",
+ "t-radar": "雷达",
+ "t-polar-area": "极地地区",
+ "t-icons": "图标",
+ "t-remix": "混音",
+ "t-boxicons": "方框图标",
+ "t-material-design": "材料设计",
+ "t-bootstrap": "引导程序",
+ "t-phosphor": "磷",
+ "t-maps": "地图",
+ "t-google": "谷歌",
+ "t-vector": "向量",
+ "t-leaflet": "传单",
+ "t-multi-level": "多层次",
+ "t-level-1.1": "1.1级",
+ "t-level-1.2": "1.2级",
+ "t-level-1.3": "1.3级",
+ "t-level-2.1": "2.1级",
+ "t-level-2.2": "2.2级",
+ "t-level-2.3": "2.3级",
+ "t-level-3.1": "3.1级",
+ "t-level-3.2": "3.2级",
+ "t-more":"更多的",
+ "t-home": "家",
+ "t-demos": "演示",
+ "t-main-layout": "主要布局",
+ "t-unique-watches": "独特的手表",
+ "t-modern-fashion": "现代时尚",
+ "t-trend-fashion": "潮流时尚",
+ "t-catalog": "目录",
+ "t-shop-now": "现在去购物",
+ "t-shop": "店铺",
+ "t-men": "男士",
+ "t-clothing": "服装",
+ "t-watches": "手表",
+ "t-bags-Luggage": "箱包和行李箱",
+ "t-footwear": "鞋类",
+ "t-innerwear": "内衣",
+ "t-other-accessories": "其他配件",
+ "t-women": "女性",
+ "t-western-wear": "西方服饰",
+ "t-handbags-clutches": "手提包和手拿包",
+ "t-lingerie-nightwear": "内衣和睡衣",
+ "t-fashion-silver-jewellery": "时装及银饰",
+ "t-accessories-others": "配饰及其他",
+ "t-home-kitchen-pets": "家庭、厨房、宠物",
+ "t-beauty-health-grocery": "美容、健康、杂货",
+ "t-sports-fitness-bags-luggage": "运动、健身、箱包、行李箱",
+ "t-car-motorbike-industrial": "汽车、摩托车、工业",
+ "t-books": "图书",
+ "t-others": "其他",
+ "t-top-brands": "顶级品牌",
+ "t-checkout-pages": "结帐页面",
+ "t-address": "地址",
+ "t-track-order": "跟踪订单",
+ "t-payment": "支付",
+ "t-review": "审查",
+ "t-confirmation": "确认",
+ "t-my-orders-order-history": "我的订单/历史订单",
+ "t-support": "支持",
+ "t-shopping-cart": "购物车",
+ "t-checkout": "查看",
+ "t-wishlist": "心愿单",
+ "t-pages": "页数",
+ "t-defualt": "默认",
+ "t-sidebar-with-banner": "带横幅的边栏",
+ "t-right-sidebar": "右侧边栏",
+ "t-no-sidebar": "没有侧边栏",
+ "t-left-sidebar": "左侧边栏",
+ "t-product-details": "产品详情",
+ "t-users": "用户",
+ "t-about": "关于",
+ "t-purchase-guide": "购买指南",
+ "t-terms-of-service": "服务条款",
+ "t-privacy-policy": "隐私政策",
+ "t-store-locator": "商店定位器",
+ "t-faq": "常问问题",
+ "t-email-template": "电子邮件模板",
+ "t-black-friday": "黑色星期五",
+ "t-flash-sale": "闪购",
+ "t-order-success": "订单成功",
+ "t-order-success-2": "订单成功 2",
+ "t-contact": "接触"
+}
\ No newline at end of file
diff --git a/public/build/lang/en.json b/public/build/lang/en.json
new file mode 100644
index 0000000..3002914
--- /dev/null
+++ b/public/build/lang/en.json
@@ -0,0 +1,193 @@
+{
+ "t-menu":"Menu",
+ "t-hot":"Hot",
+ "t-dashboard":"Dashboard",
+ "t-products":"Products",
+ "t-list-view":"List View",
+ "t-grid-view":"Grid View",
+ "t-overview":"Overview",
+ "t-create-product":"Create Product",
+ "t-categories": "Categories",
+ "t-sub-categories" :"Sub Categories",
+ "t-orders":"Orders",
+ "t-calendar":"Calendar",
+ "t-sellers": "Sellers",
+ "t-invoice":"Invoice",
+ "t-create-invoice": "Create Invoice",
+ "t-users-list": "Users List",
+ "t-shipping": "Shipping",
+ "t-shipping-list":"Shipping List",
+ "t-shipments":"Shipments",
+ "t-coupons":"Coupons",
+ "t-reviews-ratings":"Reviews & Ratings",
+ "t-brands":"Brands",
+ "t-statistics":"Statistics",
+ "t-localization":"Localization",
+ "t-transactions":"Transactions",
+ "t-currency-rates": "Currency Rates",
+ "t-accounts":"Accounts",
+ "t-my-account":"My Account",
+ "t-settings":"Settings",
+ "t-sign-up":"Sign Up",
+ "t-sign-in":"Sign In",
+ "t-passowrd-reset":"Password Reset",
+ "t-create-password":"Password Create",
+ "t-success-message":"Success Message",
+ "t-two-step-verify":"Two Step Verify",
+ "t-logout":"Logout",
+ "t-error-404":"Error 404",
+ "t-error-500":"Error 500",
+ "t-coming-soon":"Coming Soon",
+ "t-components":"Components",
+ "t-bootstrap-ui":"Bootstrap UI",
+ "t-alerts":"Alerts",
+ "t-badges":"Badges",
+ "t-buttons":"Buttons",
+ "t-colors":"Colors",
+ "t-cards":"Cards",
+ "t-carousel":"Carousel",
+ "t-dropdowns":"Dropdowns",
+ "t-grid":"Grid",
+ "t-images":"Images",
+ "t-tabs":"Tabs",
+ "t-accordion-collapse":"Accordion & Collapse",
+ "t-modals":"Modals",
+ "t-offcanvas":"Offcanvas",
+ "t-placeholders":"Placeholders",
+ "t-progress":"Progress",
+ "t-notifications":"Notifications",
+ "t-media-object":"Media object",
+ "t-embed-video":"Embed Video",
+ "t-typography":"Typography",
+ "t-lists":"Lists",
+ "t-general":"General",
+ "t-utilities":"Utilities",
+ "t-advance-ui":"Advance UI",
+ "t-new":"New",
+ "t-sweet-alerts":"Sweet Alerts",
+ "t-nestable-list":"Nestable List",
+ "t-scrollbar":"Scrollbar",
+ "t-swiper-slider":"Swiper Slider",
+ "t-ratings":"Ratings",
+ "t-highlight":"Highlight",
+ "t-scrollSpy":"ScrollSpy",
+ "t-custom-ui":"Custom UI",
+ "t-ribbons":"Ribbons",
+ "t-profile": "Profile",
+ "t-counter": "Counter",
+ "t-forms":"Forms",
+ "t-basic-elements":"Basic Elements",
+ "t-form-select":"Form Select",
+ "t-checkboxs-radios":"Checkboxs & Radios",
+ "t-pickers":"Pickers",
+ "t-input-masks":"Input Masks",
+ "t-advanced":"Advanced",
+ "t-range-slider":"Range Slider",
+ "t-validation":"Validation",
+ "t-wizard":"Wizard",
+ "t-editors":"Editors",
+ "t-file-uploads":"File Uploads",
+ "t-form-layouts":"Form Layouts",
+ "t-tom-select": "Tom Select",
+ "t-tables":"Tables",
+ "t-basic-tables":"Basic Tables",
+ "t-grid-js":"Grid Js",
+ "t-list-js":"List Js",
+ "t-datatables": "Datatables",
+ "t-apexcharts":"Apexcharts",
+ "t-line":"Line",
+ "t-area":"Area",
+ "t-column":"Column",
+ "t-bar":"Bar",
+ "t-mixed":"Mixed",
+ "t-candlstick":"Candlstick",
+ "t-boxplot":"Boxplot",
+ "t-bubble":"Bubble",
+ "t-scatter":"Scatter",
+ "t-heatmap":"Heatmap",
+ "t-treemap":"Treemap",
+ "t-pie":"Pie",
+ "t-radialbar":"Radialbar",
+ "t-radar":"Radar",
+ "t-polar-area":"Polar Area",
+ "t-icons":"Icons",
+ "t-remix":"Remix",
+ "t-boxicons":"Boxicons",
+ "t-material-design":"Material Design",
+ "t-bootstrap":"Bootstrap",
+ "t-phosphor":"Phosphor",
+ "t-maps":"Maps",
+ "t-google":"Google",
+ "t-vector":"Vector",
+ "t-leaflet":"Leaflet",
+ "t-multi-level":"Multi Level",
+ "t-level-1.1":"Level 1.1",
+ "t-level-1.2":"Level 1.2",
+ "t-level-1.3": "Level 1.3",
+ "t-level-2.1":"Level 2.1",
+ "t-level-2.2":"Level 2.2",
+ "t-level-2.3": "Level 2.3",
+ "t-level-3.1":"Level 3.1",
+ "t-level-3.2":"Level 3.2",
+ "t-more":"More",
+ "t-home": "Home",
+ "t-demos": "Demos",
+ "t-main-layout": "Main Layout",
+ "t-unique-watches": "Unique Watches",
+ "t-modern-fashion": "Modern Fashion",
+ "t-trend-fashion": "Trend Fashion",
+ "t-catalog":"Catalog",
+ "t-shop-now":"Shop Now",
+ "t-shop": "Shop",
+ "t-men":"Men",
+ "t-clothing":"Clothing",
+ "t-watches":"Watches",
+ "t-bags-Luggage":"Bags & Luggage",
+ "t-footwear":"Footwear",
+ "t-innerwear":"Innerwear",
+ "t-other-accessories":"Other Accessories",
+ "t-women":"Women",
+ "t-western-wear":"Western Wear",
+ "t-handbags-clutches":"Handbags & Clutches",
+ "t-lingerie-nightwear":"Lingerie & Nightwear",
+ "t-fashion-silver-jewellery":"Fashion & Silver Jewellery",
+ "t-accessories-others":"Accessories & Others",
+ "t-home-kitchen-pets":"Home, Kitchen, Pets",
+ "t-beauty-health-grocery":"Beauty, Health, Grocery",
+ "t-sports-fitness-bags-luggage":"Sports, Fitness, Bags, Luggage",
+ "t-car-motorbike-industrial": "Car, Motorbike, Industrial",
+ "t-books": "Books",
+ "t-others": "Others",
+ "t-top-brands": "Top Brands",
+ "t-checkout-pages": "Checkout Pages",
+ "t-address": "Address",
+ "t-track-order": "Track Order",
+ "t-payment": "Payment",
+ "t-review": "Review",
+ "t-confirmation": "Confirmation",
+ "t-my-orders-order-history": "My Orders / Order History",
+ "t-support": "Support",
+ "t-shopping-cart": "Shopping Cart",
+ "t-checkout": "Checkout",
+ "t-wishlist": "Wishlist",
+ "t-pages": "Pages",
+ "t-defualt": "Defualt",
+ "t-sidebar-with-banner": "Sidebar with Banner",
+ "t-right-sidebar": "Right Sidebar",
+ "t-no-sidebar": "No Sidebar",
+ "t-left-sidebar": "Left Sidebar",
+ "t-product-details": "Product Details",
+ "t-users": "Users",
+ "t-about": "About",
+ "t-purchase-guide": "Purchase Guide",
+ "t-terms-of-service": "Terms of Service",
+ "t-privacy-policy": "Privacy Policy",
+ "t-store-locator": "Store Locator",
+ "t-faq": "FAQ",
+ "t-email-template": "Email Template",
+ "t-black-friday": "Black Friday",
+ "t-flash-sale": "Flash Sale",
+ "t-order-success": "Order Success",
+ "t-order-success-2": "Order Success 2",
+ "t-contact": "Contact"
+}
\ No newline at end of file
diff --git a/public/build/lang/fr.json b/public/build/lang/fr.json
new file mode 100644
index 0000000..dc86605
--- /dev/null
+++ b/public/build/lang/fr.json
@@ -0,0 +1,193 @@
+{
+ "t-menu":"Menu",
+ "t-hot":"Chaude",
+ "t-dashboard":"Tableau de bord",
+ "t-products":"Des produits",
+ "t-list-view":"Affichage de liste",
+ "t-grid-view":"Vue Grille",
+ "t-overview":"Aperçu",
+ "t-create-product":"Créer un produit",
+ "t-categories": "Catégories",
+ "t-sub-categories" :"Sous-catégories",
+ "t-orders":"Ordres",
+ "t-calendar":"Calendrier",
+ "t-sellers": "Les vendeurs",
+ "t-invoice":"Facture d'achat",
+ "t-create-invoice": "Créer une facture",
+ "t-users-list": "Liste des utilisateurs",
+ "t-shipping": "Expédition",
+ "t-shipping-list":"Liste d'expédition",
+ "t-shipments":"Expéditions",
+ "t-coupons":"Bons de réduction",
+ "t-reviews-ratings":"Avis et notes",
+ "t-brands":"Marques",
+ "t-statistics":"Statistiques",
+ "t-localization":"Localisation",
+ "t-transactions":"Transactions",
+ "t-currency-rates": "Taux de change",
+ "t-accounts":"Comptes",
+ "t-my-account":"Mon compte",
+ "t-settings":"Paramètres",
+ "t-sign-up":"S'inscrire",
+ "t-sign-in":"S'identifier",
+ "t-passowrd-reset":"Réinitialisation du mot de passe",
+ "t-create-password":"Créer un mot de passe",
+ "t-success-message":"Message de réussite",
+ "t-two-step-verify":"Vérification en deux étapes",
+ "t-logout":"Se déconnecter",
+ "t-error-404":"Erreur 404",
+ "t-error-500":"Erreur 500",
+ "t-coming-soon":"Bientôt disponible",
+ "t-components":"Composants",
+ "t-bootstrap-ui":"Interface utilisateur d'amorçage",
+ "t-alerts":"Alertes",
+ "t-badges":"Insignes",
+ "t-buttons":"Boutons",
+ "t-colors":"Couleurs",
+ "t-cards":"Cartes",
+ "t-carousel":"Carrousel",
+ "t-dropdowns":"Listes déroulantes",
+ "t-grid":"Grille",
+ "t-images":"Images",
+ "t-tabs":"Onglets",
+ "t-accordion-collapse":"Accordéon et effondrement",
+ "t-modals":"Modaux",
+ "t-offcanvas":"Hors toile",
+ "t-placeholders":"Espaces réservés",
+ "t-progress":"Progrès",
+ "t-notifications":"Avis",
+ "t-media-object":"Objet multimédia",
+ "t-embed-video":"Intégrer la vidéo",
+ "t-typography":"Typographie",
+ "t-lists":"Listes",
+ "t-general":"Général",
+ "t-utilities":"Utilitaires",
+ "t-advance-ui":"Interface utilisateur avancée",
+ "t-new":"Nouveau",
+ "t-sweet-alerts":"Alertes sucrées",
+ "t-nestable-list":"Liste imbriquée",
+ "t-scrollbar":"Barre de défilement",
+ "t-swiper-slider":"Glissière Curseur",
+ "t-ratings":"Ratings",
+ "t-highlight":"Notes",
+ "t-scrollSpy":"DéfilementEspion",
+ "t-custom-ui":"Interface utilisateur personnalisée",
+ "t-ribbons":"Rubans",
+ "t-profile": "Profil",
+ "t-counter": "Comptoir",
+ "t-forms":"Formes",
+ "t-basic-elements":"Éléments basiques",
+ "t-form-select":"Sélection de formulaire",
+ "t-checkboxs-radios":"Cases à cocher et radios",
+ "t-pickers":"Cueilleurs",
+ "t-input-masks":"Masques de saisie",
+ "t-advanced":"Avancé",
+ "t-range-slider":"Curseur de plage",
+ "t-validation":"Validation",
+ "t-wizard":"Magicien",
+ "t-editors":"Éditrices",
+ "t-file-uploads":"Téléchargements de fichiers",
+ "t-form-layouts":"Dispositions de formulaire",
+ "t-tom-select": "Sélectionnez Tom",
+ "t-tables":"les tables",
+ "t-basic-tables":"Tableaux de base",
+ "t-grid-js":"Grille Js",
+ "t-list-js":"Liste J",
+ "t-datatables": "Tableaux de données",
+ "t-apexcharts":"Apexchart",
+ "t-line":"La ligne",
+ "t-area":"Zone",
+ "t-column":"Colonne",
+ "t-bar":"Bar",
+ "t-mixed":"Mixte",
+ "t-candlstick":"Chandelier",
+ "t-boxplot":"Boîte à moustaches",
+ "t-bubble":"Bulle",
+ "t-scatter":"Dispersion",
+ "t-heatmap":"Carte de chaleur",
+ "t-treemap":"Treemap",
+ "t-pie":"Tarte",
+ "t-radialbar":"Barre radiale",
+ "t-radar":"Radar",
+ "t-polar-area":"Zone polaire",
+ "t-icons":"Icônes",
+ "t-remix":"Remixer",
+ "t-boxicons":"Boxicons",
+ "t-material-design":"Conception matérielle",
+ "t-bootstrap":"Amorcer",
+ "t-phosphor":"Phosphore",
+ "t-maps":"Plans",
+ "t-google":"Google",
+ "t-vector":"Vecteur",
+ "t-leaflet":"Brochure",
+ "t-multi-level":"Multi-niveaux",
+ "t-level-1.1":"Niveau 1.1",
+ "t-level-1.2":"Niveau 1.2",
+ "t-level-1.3": "Niveau 1.3",
+ "t-level-2.1":"Niveau 2.1",
+ "t-level-2.2":"Niveau 2.2",
+ "t-level-2.3": "Niveau 2.3",
+ "t-level-3.1":"Niveau 3.1",
+ "t-level-3.2":"Niveau 3.2",
+ "t-more":"Suite",
+ "t-home": "Domicile",
+ "t-demos": "Démos",
+ "t-main-layout": "Disposition principale",
+ "t-unique-watches": "Montres uniques",
+ "t-modern-fashion": "Mode moderne",
+ "t-trend-fashion": "Tendance Mode",
+ "t-catalog": "Catalogue",
+ "t-shop-now": "Achetez maintenant",
+ "t-shop": "Magasin",
+ "t-men": "Hommes",
+ "t-clothing": "Vêtements",
+ "t-watches": "Montres",
+ "t-bags-Luggage": "Sacs & Bagages",
+ "t-footwear": "Chaussure",
+ "t-innerwear": "Vêtements d'intérieur",
+ "t-other-accessories": "Autres accessoires",
+ "t-women": "Femmes",
+ "t-western-wear": "Vêtements occidentaux",
+ "t-handbags-clutches": "Sacs à main et pochettes",
+ "t-lingerie-nightwear": "Lingerie et vêtements de nuit",
+ "t-fashion-silver-jewellery": "Bijoux fantaisie et argent",
+ "t-accessories-others": "Accessoires et Autres",
+ "t-home-kitchen-pets": "Maison, cuisine, animaux de compagnie",
+ "t-beauty-health-grocery": "Beauté, Santé, Épicerie",
+ "t-sports-fitness-bags-luggage": "Sports, Fitness, Sacs, Bagages",
+ "t-car-motorbike-industrial": "Voiture, moto, industriel",
+ "t-books": "Livres",
+ "t-others": "Autres",
+ "t-top-brands": "Meilleures marques",
+ "t-checkout-pages": "Pages de paiement",
+ "t-address": "Adresse",
+ "t-track-order": "Suivi de commande",
+ "t-payment": "Paiement",
+ "t-review": "Revoir",
+ "t-confirmation": "Confirmation",
+ "t-my-orders-order-history": "Mes commandes / Historique des commandes",
+ "t-support": "Soutien",
+ "t-shopping-cart": "Panier",
+ "t-checkout": "Vérifier",
+ "t-wishlist": "Liste de souhaits",
+ "t-pages": "pages",
+ "t-defualt": "Défaut",
+ "t-sidebar-with-banner": "Barre latérale avec bannière",
+ "t-right-sidebar": "Barre latérale droite",
+ "t-no-sidebar": "Pas de barre latérale",
+ "t-left-sidebar": "Barre latérale de gauche",
+ "t-product-details": "détails du produit",
+ "t-users": "Utilisateurs",
+ "t-about": "À propos de",
+ "t-purchase-guide": "Guide d'achat",
+ "t-terms-of-service": "Conditions d'utilisation",
+ "t-privacy-policy": "Politique de confidentialité",
+ "t-store-locator": "Localisateur de magasin",
+ "t-faq": "FAQ",
+ "t-email-template": "Modèle d'e-mail",
+ "t-black-friday": "Vendredi noir",
+ "t-flash-sale": "Vente flash",
+ "t-order-success": "Réussite de la commande",
+ "t-order-success-2": "Commande réussie 2",
+ "t-contact": "Contacter"
+}
\ No newline at end of file
diff --git a/public/build/lang/gr.json b/public/build/lang/gr.json
new file mode 100644
index 0000000..26d11b1
--- /dev/null
+++ b/public/build/lang/gr.json
@@ -0,0 +1,192 @@
+{
+ "t-menu": "Speisekarte",
+ "t-hot": "Heiß",
+ "t-dashboard": "Armaturenbrett",
+ "t-products": "Produkte",
+ "t-list-view": "Listenansicht",
+ "t-grid-view": "Rasteransicht",
+ "t-overview": "Überblick",
+ "t-create-product": "Produkt erstellen",
+ "t-categories": "Kategorien",
+ "t-sub-categories": "Unterkategorien",
+ "t-orders": "Aufträge",
+ "t-calendar": "Kalender",
+ "t-sellers": "Verkäufer",
+ "t-invoice": "Rechnung",
+ "t-create-invoice": "Rechnung erstellen",
+ "t-users-list": "Benutzerliste",
+ "t-shipping": "Versand",
+ "t-shipping-list": "Versandliste",
+ "t-shipments": "Sendungen",
+ "t-coupons": "Gutscheine",
+ "t-reviews-ratings": "Rezensionen & Bewertungen",
+ "t-brands": "Marken",
+ "t-statistics": "Statistiken",
+ "t-localization": "Lokalisierung",
+ "t-transactions": "Transaktionen",
+ "t-currency-rates": "Wechselkurse",
+ "t-accounts": "Konten",
+ "t-my-account": "Mein Konto",
+ "t-settings": "Einstellungen",
+ "t-sign-up": "Anmeldung",
+ "t-sign-in": "Anmelden",
+ "t-passowrd-reset": "Passwort zurücksetzen",
+ "t-create-password": "Passwort erstellen",
+ "t-success-message": "Erfolgsmeldung",
+ "t-two-step-verify": "Überprüfung in zwei Schritten",
+ "t-logout": "Ausloggen",
+ "t-error-404": "Fehler 404",
+ "t-error-500": "Fehler 500",
+ "t-coming-soon": "Kommt bald",
+ "t-components": "Komponenten",
+ "t-bootstrap-ui": "Bootstrap-Benutzeroberfläche",
+ "t-alerts": "WarnungenWarnungen",
+ "t-badges": "Abzeichen",
+ "t-buttons": "Tasten",
+ "t-colors": "Farben",
+ "t-cards": "Karten",
+ "t-carousel": "Karussell",
+ "t-dropdowns": "Dropdowns",
+ "t-grid": "Netz",
+ "t-images": "Bilder",
+ "t-tabs": "Registerkarten",
+ "t-accordion-collapse": "Akkordeon & Zusammenbruch",
+ "t-modals": "Modale",
+ "t-offcanvas": "Leinwand",
+ "t-placeholders": "Platzhalter",
+ "t-progress": "Fortschritt",
+ "t-notifications": "Benachrichtigungen",
+ "t-media-object": "Medienobjekt",
+ "t-embed-video": "Video einbetten",
+ "t-typography": "Typografie",
+ "t-lists": "Listen",
+ "t-general": "Allgemein",
+ "t-utilities": "Dienstprogramme",
+ "t-advance-ui": "Erweiterte Benutzeroberfläche",
+ "t-new": "Neu",
+ "t-nestable-list": "Verschachtelbare Liste",
+ "t-scrollbar": "Scrollleiste",
+ "t-swiper-slider": "Swiper-Schieberegler",
+ "t-ratings": "Bewertungen",
+ "t-highlight": "Markieren",
+ "t-scrollSpy": "ScrollSpy",
+ "t-custom-ui": "Benutzerdefinierte Benutzeroberfläche",
+ "t-ribbons": "Bänder",
+ "t-profile": "Profil",
+ "t-counter": "Zähler",
+ "t-forms": "Formen",
+ "t-basic-elements": "Grundelemente",
+ "t-form-select": "Formular auswählen",
+ "t-checkboxs-radios": "Kontrollkästchen & Radios",
+ "t-pickers": "Pflücker",
+ "t-input-masks": "Eingabemasken",
+ "t-advanced": "Fortschrittlich",
+ "t-range-slider": "Range-Schieberegler",
+ "t-validation": "Validierung",
+ "t-wizard": "Magier",
+ "t-editors": "Redakteure",
+ "t-file-uploads": "Datei-Uploads",
+ "t-form-layouts": "Formularlayouts",
+ "t-tom-select": "Tom auswählen",
+ "t-tables": "Tische",
+ "t-basic-tables": "Grundlegende Tabellen",
+ "t-grid-js": "Gitter Js",
+ "t-list-js": "Liste Js",
+ "t-datatables": "Datentabellen",
+ "t-apexcharts": "Apexcharts",
+ "t-line": "Linie",
+ "t-area": "Bereich",
+ "t-column": "Spalte",
+ "t-bar": "Bar",
+ "t-mixed": "Gemischt",
+ "t-candlstick": "Leuchter",
+ "t-boxplot": "Box-Plot",
+ "t-bubble": "Blase",
+ "t-scatter": "Streuen",
+ "t-heatmap": "Heatmap",
+ "t-treemap": "Baumkarte",
+ "t-pie": "Kuchen",
+ "t-radialbar": "Radialbar",
+ "t-radar": "Radar",
+ "t-polar-area": "Polargebiet",
+ "t-icons": "Symbole",
+ "t-remix": "Remix",
+ "t-boxicons": "Boxicons",
+ "t-material-design": "Material Design",
+ "t-bootstrap": "Bootstrap",
+ "t-phosphor": "Phosphor",
+ "t-maps": "Karten",
+ "t-google": "Google",
+ "t-vector": "Vektor",
+ "t-leaflet": "Flugblatt",
+ "t-multi-level": "Mehrstufig",
+ "t-level-1.1": "Stufe 1.1",
+ "t-level-1.2": "Stufe 1.2",
+ "t-level-1.3": "Stufe 1.3",
+ "t-level-2.1": "Stufe 2.1",
+ "t-level-2.2": "Stufe 2.2",
+ "t-level-2.3": "Stufe 2.3",
+ "t-level-3.1": "Stufe 3.1",
+ "t-level-3.2": "Stufe 3.2",
+ "t-more":"Mehr",
+ "t-home": "Heim",
+ "t-demos": "Demos",
+ "t-main-layout": "Hauptlayout",
+ "t-unique-watches": "Einzigartige Uhren",
+ "t-modern-fashion": "Moderne Mode",
+ "t-trend-fashion": "Trendmode",
+ "t-catalog": "Katalog",
+ "t-shop-now": "Jetzt einkaufen",
+ "t-shop": "Laden",
+ "t-men": "Männer",
+ "t-clothing": "Kleidung",
+ "t-watches": "Uhren",
+ "t-bags-Luggage": "Taschen & Gepäck",
+ "t-footwear": "Schuhwerk",
+ "t-innerwear": "Unterwäsche",
+ "t-other-accessories": "Sonstiges Zubehör",
+ "t-women": "Frauen",
+ "t-western-wear": "Westliche Kleidung",
+ "t-handbags-clutches": "Handtaschen & Clutches",
+ "t-lingerie-nightwear": "Dessous & Nachtwäsche",
+ "t-fashion-silver-jewellery": "Mode & Silberschmuck",
+ "t-accessories-others": "Zubehör & Sonstiges",
+ "t-home-kitchen-pets": "Haus, Küche, Haustiere",
+ "t-beauty-health-grocery": "Schönheit, Gesundheit, Lebensmittel",
+ "t-sports-fitness-bags-luggage": "Sport, Fitness, Taschen, Gepäck",
+ "t-car-motorbike-industrial": "Auto, Motorrad, Industrie",
+ "t-books": "Bücher",
+ "t-others": "Andere",
+ "t-top-brands": "Top Marken",
+ "t-checkout-pages": "Checkout-Seiten",
+ "t-address": "Address",
+ "t-track-order": "Track Order",
+ "t-payment": "Zahlung",
+ "t-review": "Rezension",
+ "t-confirmation": "Bestätigung",
+ "t-my-orders-order-history": "Meine Bestellungen / Bestellhistorie",
+ "t-support": "Die Unterstützung",
+ "t-shopping-cart": "Einkaufswagen",
+ "t-checkout": "Auschecken",
+ "t-wishlist": "Wunschzettel",
+ "t-pages": "Seiten",
+ "t-defualt": "Standard",
+ "t-sidebar-with-banner": "Seitenleiste mit Banner",
+ "t-right-sidebar": "rechte Sidebar",
+ "t-no-sidebar": "Keine Seitenleiste",
+ "t-left-sidebar": "Linke Seitenleiste",
+ "t-product-details": "Produktdetails",
+ "t-users": "Benutzer",
+ "t-about": "Über",
+ "t-purchase-guide": "Einkaufsführer",
+ "t-terms-of-service": "Nutzungsbedingungen",
+ "t-privacy-policy": "Datenschutz-Bestimmungen",
+ "t-store-locator": "Händlersuche",
+ "t-faq": "FAQ",
+ "t-email-template": "E-Mail-Vorlage",
+ "t-black-friday": "Schwarzer Freitag",
+ "t-flash-sale": "Blitzangebot",
+ "t-order-success": "Erfolg bestellen",
+ "t-order-success-2": "Bestellerfolg 2",
+ "t-contact": "Kontakt"
+}
\ No newline at end of file
diff --git a/public/build/lang/it.json b/public/build/lang/it.json
new file mode 100644
index 0000000..bb9f505
--- /dev/null
+++ b/public/build/lang/it.json
@@ -0,0 +1,193 @@
+{
+ "t-menu": "Menù",
+ "t-hot": "Caldo",
+ "t-dashboard": "Pannello di controllo",
+ "t-products": "Prodotti",
+ "t-list-view": "Visualizzazione elenco",
+ "t-grid-view": "Vista a griglia",
+ "t-overview": "Panoramica",
+ "t-create-product": "Crea prodotto",
+ "t-categories": "Categorie",
+ "t-sub-categories": "Sottocategorie",
+ "t-orders": "Ordini",
+ "t-calendar": "Calendario",
+ "t-sellers": "Venditori",
+ "t-invoice": "Fattura",
+ "t-create-invoice": "Crea fattura",
+ "t-users-list": "Elenco utenti",
+ "t-shipping": "Spedizione",
+ "t-shipping-list": "Lista di spedizione",
+ "t-shipments": "Spedizioni",
+ "t-coupons": "Buoni",
+ "t-reviews-ratings": "Recensioni e valutazioni",
+ "t-brands": "Marche",
+ "t-statistics": "Statistiche",
+ "t-localization": "Localizzazione",
+ "t-transactions": "Transazioni",
+ "t-currency-rates": "Tassi di valuta",
+ "t-accounts": "Conti",
+ "t-my-account": "Il mio account",
+ "t-settings": "Impostazioni",
+ "t-sign-up": "Iscrizione",
+ "t-sign-in": "Registrazione",
+ "t-passowrd-reset": "Reimpostazione della password",
+ "t-create-password": "Password Crea",
+ "t-success-message": "Messaggio di successo",
+ "t-two-step-verify": "Verifica in due passaggi",
+ "t-logout": "Disconnettersi",
+ "t-error-404": "Errore 404",
+ "t-error-500": "Errore 500",
+ "t-coming-soon": "Prossimamente",
+ "t-components": "Componenti",
+ "t-bootstrap-ui": "Interfaccia utente Bootstrap",
+ "t-alerts": "Avvisi",
+ "t-badges": "Distintivi",
+ "t-buttons": "Bottoni",
+ "t-colors": "Colori",
+ "t-cards": "Carte",
+ "t-carousel": "Giostra",
+ "t-dropdowns": "Dropdown",
+ "t-grid": "Griglia",
+ "t-images": "immagini",
+ "t-tabs": "Schede",
+ "t-accordion-collapse": "Fisarmonica e collasso",
+ "t-modals": "Modali",
+ "t-offcanvas": "Fuori tela",
+ "t-placeholders": "Segnaposto",
+ "t-progress": "Progresso",
+ "t-notifications": "Notifiche",
+ "t-media-object": "Oggetto multimediale",
+ "t-embed-video": "Incorpora video",
+ "t-typography": "Tipografia",
+ "t-lists": "Elenchi",
+ "t-general": "Generale",
+ "t-utilities": "Utilità",
+ "t-advance-ui": "Interfaccia utente avanzata",
+ "t-new": "Nuovo",
+ "t-sweet-alerts": "Dolci avvisi",
+ "t-nestable-list": "Elenco annidabile",
+ "t-scrollbar": "Barra di scorrimento",
+ "t-swiper-slider": "Dispositivo di scorrimento a scorrimento",
+ "t-ratings": "Giudizi",
+ "t-highlight": "Evidenziare",
+ "t-scrollSpy": "ScrollSpy",
+ "t-custom-ui": "Interfaccia utente personalizzata",
+ "t-ribbons": "Nastri",
+ "t-profile": "Profilo",
+ "t-counter": "Contatore",
+ "t-forms": "Forme",
+ "t-basic-elements": "Elementi basici",
+ "t-form-select": "Seleziona modulo",
+ "t-checkboxs-radios": "Caselle di controllo e radio",
+ "t-pickers": "Raccoglitori",
+ "t-input-masks": "Maschere di input",
+ "t-advanced": "Avanzate",
+ "t-range-slider": "Dispositivo di scorrimento della gamma",
+ "t-validation": "Convalida",
+ "t-wizard": "procedura guidata",
+ "t-editors": "Editori",
+ "t-file-uploads": "Caricamenti di file",
+ "t-form-layouts": "Layout dei moduli",
+ "t-tom-select": "Tom Seleziona",
+ "t-tables": "Tabelle",
+ "t-basic-tables": "Tabelle di base",
+ "t-grid-js": "Griglia Js",
+ "t-list-js": "Elenco Js",
+ "t-datatables": "Datatables",
+ "t-apexcharts": "Apexchart",
+ "t-line": "Linea",
+ "t-area": "La zona",
+ "t-column": "Colonna",
+ "t-bar": "Sbarra",
+ "t-mixed": "Misto",
+ "t-candlstick": "Candeliere",
+ "t-boxplot": "Boxplot",
+ "t-bubble": "Bolla",
+ "t-scatter": "Dispersione",
+ "t-heatmap": "Mappa di calore",
+ "t-treemap": "Mappa ad albero",
+ "t-pie": "Torta",
+ "t-radialbar": "barra radiale",
+ "t-radar": "Radar",
+ "t-polar-area": "Zona Polare",
+ "t-icons": "Icone",
+ "t-remix": "Remixa",
+ "t-boxicons": "Icone della scatola",
+ "t-material-design": "Progettazione materiale",
+ "t-bootstrap": "Bootstrap",
+ "t-phosphor": "Fosforo",
+ "t-maps": "Mappa",
+ "t-google": "Google",
+ "t-vector": "Vettore",
+ "t-leaflet": "Volantino",
+ "t-multi-level": "Multilivello",
+ "t-level-1.1": "Livello 1.1",
+ "t-level-1.2": "Livello 1.2",
+ "t-level-1.3": "Livello 1.3",
+ "t-level-2.1": "Livello 2.1",
+ "t-level-2.2": "Livello 2.2",
+ "t-level-2.3": "Livello 2.3",
+ "t-level-3.1": "Livello 3.1",
+ "t-level-3.2": "Livello 3.2",
+ "t-more":"Di più",
+ "t-home":"Casa",
+ "t-demos": "Demo",
+ "t-main-layout": "Disposizione principale",
+ "t-unique-watches": "Orologi unici",
+ "t-modern-fashion": "Moda moderna",
+ "t-trend-fashion": "Moda di tendenza",
+ "t-catalog":"Catalogare",
+ "t-shop-now":"Acquistare ora",
+ "t-shop": "Negozio",
+ "t-men":"Uomini",
+ "t-clothing":"Capi di abbigliamento",
+ "t-watches":"Orologi",
+ "t-bags-Luggage":"Borse e valigie",
+ "t-footwear":"Calzature",
+ "t-innerwear":"Intimo",
+ "t-other-accessories":"Altri accessori",
+ "t-women":"Donne",
+ "t-western-wear":"Usura occidentale",
+ "t-handbags-clutches":"Borse e pochette",
+ "t-lingerie-nightwear":"Biancheria intima e indumenti da notte",
+ "t-fashion-silver-jewellery":"Moda e gioielli in argento",
+ "t-accessories-others":"Accessori e altro",
+ "t-home-kitchen-pets":"Casa, cucina, animali domestici",
+ "t-beauty-health-grocery":"Bellezza, Salute, Drogheria",
+ "t-sports-fitness-bags-luggage":"Sport, Fitness, Borse, Bagagli",
+ "t-car-motorbike-industrial": "Auto, Moto, Industriale",
+ "t-books": "Libri",
+ "t-others": "Altri",
+ "t-top-brands": "Migliori marche",
+ "t-checkout-pages": "Pagine di pagamento",
+ "t-address": "Indirizzo",
+ "t-track-order": "Ordine dei brani",
+ "t-payment": "Pagamento",
+ "t-review": "Revisione",
+ "t-confirmation": "Conferma",
+ "t-my-orders-order-history": "I miei ordini / Cronologia ordini",
+ "t-support": "Supporto",
+ "t-shopping-cart": "Carrello della spesa",
+ "t-checkout": "Guardare",
+ "t-wishlist": "Lista dei desideri",
+ "t-pages": "Pagine",
+ "t-defualt": "Predefinito",
+ "t-sidebar-with-banner": "Barra laterale con banner",
+ "t-right-sidebar": "Barra laterale destra",
+ "t-no-sidebar": "Nessuna barra laterale",
+ "t-left-sidebar": "Barra laterale sinistra",
+ "t-product-details": "Dettagli del prodotto",
+ "t-users": "Utenti",
+ "t-about": "Di",
+ "t-purchase-guide": "Guida all'acquisto",
+ "t-terms-of-service": "Termini di servizio",
+ "t-privacy-policy": "politica sulla riservatezza",
+ "t-store-locator": "Localizzatore di negozi",
+ "t-faq": "FAQ",
+ "t-email-template": "Modello di posta elettronica",
+ "t-black-friday": "Venerdì nero",
+ "t-flash-sale": "Vendita flash",
+ "t-order-success": "Ordine riuscito",
+ "t-order-success-2": "Successo dell'ordine 2",
+ "t-contact": "Contatto"
+}
\ No newline at end of file
diff --git a/public/build/lang/ru.json b/public/build/lang/ru.json
new file mode 100644
index 0000000..9cf7339
--- /dev/null
+++ b/public/build/lang/ru.json
@@ -0,0 +1,193 @@
+{
+ "t-menu": "Меню",
+ "t-hot": "Горячий",
+ "t-dashboard": "Приборная панель",
+ "t-products": "Продукты",
+ "t-list-view": "Посмотреть список",
+ "t-grid-view": "Вид сетки",
+ "t-overview": "Обзор",
+ "t-create-product": "Создать продукт",
+ "t-categories": "Категории",
+ "t-sub-categories": "Подкатегории",
+ "t-orders": "Заказы",
+ "t-calendar": "Календарь",
+ "t-sellers": "Продавцы",
+ "t-invoice": "Счет",
+ "t-create-invoice": "Создать счет",
+ "t-users-list": "Список пользователей",
+ "t-shipping": "Перевозки",
+ "t-shipping-list": "Список доставки",
+ "t-shipments": "Отгрузки",
+ "t-coupons": "купоны",
+ "t-reviews-ratings": "Обзоры и рейтинги",
+ "t-brands": "Бренды",
+ "t-statistics": "Статистика",
+ "t-localization": "Локализация",
+ "t-transactions": "Транзакции",
+ "t-currency-rates": "Курсы валют",
+ "t-accounts": "учетные записи",
+ "t-my-account": "Мой счет",
+ "t-settings": "Настройки",
+ "t-sign-up": "Зарегистрироваться",
+ "t-sign-in": "Войти",
+ "t-passowrd-reset": "Сброс пароля",
+ "t-create-password": "Пароль Создать",
+ "t-success-message": "Сообщение об успехе",
+ "t-two-step-verify": "Двухэтапная проверка",
+ "t-logout": "Выйти",
+ "t-error-404": "Ошибка 404",
+ "t-error-500": "Ошибка 500",
+ "t-coming-soon": "Скоро будет",
+ "t-components": "Составные части",
+ "t-bootstrap-ui": "Начальный пользовательский интерфейс",
+ "t-alerts": "Оповещения",
+ "t-badges": "Значки",
+ "t-buttons": "Кнопки",
+ "t-colors": "Цвета",
+ "t-cards": "Открытки",
+ "t-carousel": "Карусель",
+ "t-dropdowns": "Выпадающие списки",
+ "t-grid": "Сетка",
+ "t-images": "Картинки",
+ "t-tabs": "Вкладки",
+ "t-accordion-collapse": "Аккордеон и свернуть",
+ "t-modals": "Модальные",
+ "t-offcanvas": "Offcanvas",
+ "t-placeholders": "Заполнители",
+ "t-progress": "Прогресс",
+ "t-notifications": "Уведомления",
+ "t-media-object": "Медиа объект",
+ "t-embed-video": "Встроенное видео",
+ "t-typography": "Типография",
+ "t-lists": "Списки",
+ "t-general": "Общий",
+ "t-utilities": "Утилиты",
+ "t-advance-ui": "Расширенный пользовательский интерфейс",
+ "t-new": "Новый",
+ "t-sweet-alerts": "Сладкие оповещения",
+ "t-nestable-list": "Вложенный список",
+ "t-scrollbar": "Полоса прокрутки",
+ "t-swiper-slider": "Слайдер Swiper",
+ "t-ratings": "Рейтинги",
+ "t-highlight": "Выделять",
+ "t-scrollSpy": "ПрокруткаШпион",
+ "t-custom-ui": "Пользовательский интерфейс",
+ "t-ribbons": "ленты",
+ "t-profile": "Профиль",
+ "t-counter": "Прилавок",
+ "t-forms": "Формы",
+ "t-basic-elements": "Основные элементы",
+ "t-form-select": "Выбор формы",
+ "t-checkboxs-radios": "Флажки и радио",
+ "t-pickers": "Сборщики",
+ "t-input-masks": "Маски ввода",
+ "t-advanced": "Передовой",
+ "t-range-slider": "Ползунок диапазона",
+ "t-validation": "Проверка",
+ "t-wizard": "волшебник",
+ "t-editors": "Редакторы",
+ "t-file-uploads": "Загрузка файлов",
+ "t-form-layouts": "Макеты форм",
+ "t-tom-select": "Том Селект",
+ "t-tables": "Столы",
+ "t-basic-tables": "Основные таблицы",
+ "t-grid-js": "Сетка Js",
+ "t-list-js": "Список J",
+ "t-datatables": "Таблицы данных",
+ "t-apexcharts":"Апексчарты",
+ "t-line":"Линия",
+ "t-area":"Площадь",
+ "t-column":"Столбец",
+ "t-bar":"Бар",
+ "t-mixed":"Смешанный",
+ "t-candlstick":"Подсвечник",
+ "t-boxplot":"Блочная диаграмма",
+ "t-bubble":"Пузырь",
+ "t-scatter":"Разброс",
+ "t-heatmap":"Тепловая карта",
+ "t-treemap":"Древовидная карта",
+ "t-pie":"пирог",
+ "t-radialbar":"Радиальная полоса",
+ "t-radar":"Радар",
+ "t-polar-area":"Полярный район",
+ "t-icons": "Иконки",
+ "t-remix": "Ремикс",
+ "t-boxicons": "Боксиконы",
+ "t-material-design": "Материальный дизайн",
+ "t-bootstrap": "Начальная загрузка",
+ "t-phosphor": "фосфор",
+ "t-maps":"Карты",
+ "t-google":"Google",
+ "t-vector":"Вектор",
+ "t-leaflet":"Листовка",
+ "t-multi-level":"Многоуровневый",
+ "t-level-1.1":"Уровень 1.1",
+ "t-level-1.2":"Уровень 1.2",
+ "t-level-1.3": "Уровень 1.3",
+ "t-level-2.1":"Уровень 2.1",
+ "t-level-2.2":"Уровень 2.2",
+ "t-level-2.3": "Уровень 2.3",
+ "t-level-3.1":"Уровень 3.1",
+ "t-level-3.2":"Уровень 3.2",
+ "t-more":"Более",
+ "t-home": "Дом",
+ "t-demos": "Демо",
+ "t-main-layout": "Основной макет",
+ "t-unique-watches": "Уникальные часы",
+ "t-modern-fashion": "Современная Мода",
+ "t-trend-fashion": "Тренд Мода",
+ "t-catalog": "Каталог",
+ "t-shop-now": "Купить сейчас",
+ "t-shop": "Магазин",
+ "t-men": "Мужчины",
+ "t-clothing": "Одежда",
+ "t-watches": "Часы",
+ "t-bags-Luggage": "Сумки и багаж",
+ "t-footwear": "Обувь",
+ "t-innerwear": "Нижнее белье",
+ "t-other-accessories": "Другие аксессуары",
+ "t-women": "Женщины",
+ "t-western-wear": "Западная одежда",
+ "t-handbags-clutches": "Сумки и клатчи",
+ "t-lingerie-nightwear": "Белье и ночное белье",
+ "t-fashion-silver-jewellery": "Мода и серебряные украшения",
+ "t-accessories-others": "Аксессуары и прочее",
+ "t-home-kitchen-pets": "Дом, Кухня, Домашние животные",
+ "t-beauty-health-grocery": "Красота, здоровье, продукты",
+ "t-sports-fitness-bags-luggage": "Спорт, Фитнес, Сумки, Багаж",
+ "t-car-motorbike-industrial": "автомобиль, мотоцикл, промышленный",
+ "t-books": "Книги",
+ "t-others": "Другие",
+ "t-top-brands": "Лучшие бренды",
+ "t-checkout-pages": "Страницы оформления заказа",
+ "t-address": "Адрес",
+ "t-track-order": "Отследить заказ",
+ "t-payment": "Оплата",
+ "t-review": "Обзор",
+ "t-confirmation": "Подтверждение",
+ "t-my-orders-order-history": "Мои заказы / История заказов",
+ "t-support": "Поддерживать",
+ "t-shopping-cart": "Корзина покупателя",
+ "t-checkout": "Проверить",
+ "t-wishlist": "Список желаний",
+ "t-pages": "Страницы",
+ "t-defualt": "По умолчанию",
+ "t-sidebar-with-banner": "Боковая панель с баннером",
+ "t-right-sidebar": "Правая боковая панель",
+ "t-no-sidebar": "Нет боковой панели",
+ "t-left-sidebar": "Левая боковая панель",
+ "t-product-details": "информация о продукте",
+ "t-users": "Пользователи",
+ "t-about": "О",
+ "t-purchase-guide": "Руководство по покупке",
+ "t-terms-of-service": "Условия использования",
+ "t-privacy-policy": "Политика конфиденциальности",
+ "t-store-locator": "Поиск магазинов",
+ "t-faq": "часто задаваемые вопросы",
+ "t-email-template": "Шаблон электронной почты",
+ "t-black-friday": "Черная пятница",
+ "t-flash-sale": "Флэш-распродажа",
+ "t-order-success": "Успех заказа",
+ "t-order-success-2": "Заказать Успех 2",
+ "t-contact": "Контакт"
+}
\ No newline at end of file
diff --git a/public/build/lang/sa.json b/public/build/lang/sa.json
new file mode 100644
index 0000000..f7dfa9a
--- /dev/null
+++ b/public/build/lang/sa.json
@@ -0,0 +1,193 @@
+{
+ "t-menu":"قائمة",
+ "t-hot":"حار",
+ "t-dashboard":"لوحة القيادة",
+ "t-products":"منتجات",
+ "t-list-view":"عرض القائمة",
+ "t-grid-view":"عرض شبكي",
+ "t-overview":"ملخص",
+ "t-create-product":"إنشاء منتج",
+ "t-categories": "فئات",
+ "t-sub-categories" :"الفئات الفرعية",
+ "t-orders":"الطلب #٪ s",
+ "t-calendar":"التقويم",
+ "t-sellers": "الباعة",
+ "t-invoice":"فاتورة",
+ "t-create-invoice": "إنشاء فاتورة",
+ "t-users-list": "قائمة المستخدمين",
+ "t-shipping": "شحن",
+ "t-shipping-list":"قائمة الشحن",
+ "t-shipments":"الشحنات",
+ "t-coupons":"كوبونات",
+ "t-reviews-ratings":"التقييمات والتقييمات",
+ "t-brands":"العلامات التجارية",
+ "t-statistics":"إحصائيات",
+ "t-localization":"الموقع",
+ "t-transactions":"المعاملات",
+ "t-currency-rates": "أسعار العملات",
+ "t-accounts":"حسابات",
+ "t-my-account":"حسابي",
+ "t-settings":"إعدادات",
+ "t-sign-up":"اشتراك",
+ "t-sign-in":"تسجيل الدخول",
+ "t-passowrd-reset":"إعادة تعيين كلمة المرور",
+ "t-create-password":"إنشاء كلمة المرور",
+ "t-success-message":"نجاح رسالة",
+ "t-two-step-verify":"خطوتين تحقق",
+ "t-logout":"تسجيل خروج",
+ "t-error-404":"خطأ 404",
+ "t-error-500":"خطأ 500",
+ "t-coming-soon":"قريبا",
+ "t-components":"عناصر",
+ "t-bootstrap-ui":"Bootstrap واجهة المستخدم",
+ "t-alerts":"تنبيهات",
+ "t-badges":"شارات",
+ "t-buttons":"أزرار",
+ "t-colors":"الألوان",
+ "t-cards":"البطاقات",
+ "t-carousel":"دائري",
+ "t-dropdowns":"هبوط قطرة",
+ "t-grid":"شبكة",
+ "t-images":"الصور",
+ "t-tabs":"نوافذ التبويب",
+ "t-accordion-collapse":"الأكورديون والانهيار",
+ "t-modals":"الوسائط",
+ "t-offcanvas":"أوفاكانفاس",
+ "t-placeholders":"العناصر النائبة",
+ "t-progress":"تقدم",
+ "t-notifications":"إشعارات",
+ "t-media-object":"كائن الوسائط",
+ "t-embed-video":"تضمين الفيديو",
+ "t-typography":"الطباعة",
+ "t-lists":"القوائم",
+ "t-general":"عام",
+ "t-utilities":"خدمات",
+ "t-advance-ui":"واجهة المستخدم المتقدمة",
+ "t-new":"جديد",
+ "t-sweet-alerts":"تنبيهات حلوة",
+ "t-nestable-list":"قائمة عش",
+ "t-scrollbar":"شريط التمرير",
+ "t-swiper-slider":"سويبر سلايدر",
+ "t-ratings":"التقييمات",
+ "t-highlight":"تسليط الضوء",
+ "t-scrollSpy":"انتقل جاسوس",
+ "t-custom-ui":"واجهة مستخدم مخصصة",
+ "t-ribbons":"شرائط",
+ "t-profile": "حساب تعريفي",
+ "t-counter": "يعداد",
+ "t-forms":"نماذج",
+ "t-basic-elements":"العناصر الأساسية",
+ "t-form-select":"حدد النموذج",
+ "t-checkboxs-radios":"مربعات الاختيار وأجهزة الراديو",
+ "t-pickers":"جامعي",
+ "t-input-masks":"أقنعة الإدخال",
+ "t-advanced":"متقدم",
+ "t-range-slider":"نطاق المنزلق",
+ "t-validation":"تصديق",
+ "t-wizard":"ساحر",
+ "t-editors":"المحررين",
+ "t-file-uploads":"تحميلات الملف",
+ "t-form-layouts":"تخطيطات النموذج",
+ "t-tom-select": "توم سيليكت",
+ "t-tables":"الجداول",
+ "t-basic-tables":"الجداول الأساسية",
+ "t-grid-js":"شبكة شبيبة",
+ "t-list-js":"قائمة شبيبة",
+ "t-datatables": "جداول البيانات",
+ "t-apexcharts":"أبكسشارتس",
+ "t-line":"خط",
+ "t-area":"مساحة",
+ "t-column":"عمود",
+ "t-bar":"شريط",
+ "t-mixed":"مختلط",
+ "t-candlstick":"شمعدان",
+ "t-boxplot":"مربع مؤامرة",
+ "t-bubble":"فقاعة",
+ "t-scatter":"مبعثر",
+ "t-heatmap":"خريطة الحرارة",
+ "t-treemap":"خريطة شجرة",
+ "t-pie":"فطيرة",
+ "t-radialbar":"شعاعي",
+ "t-radar":"رادار",
+ "t-polar-area":"المنطقة القطبية",
+ "t-icons":"أيقونات",
+ "t-remix":"ريمكس",
+ "t-boxicons":"بوكسيكونس",
+ "t-material-design":"تصميم المواد",
+ "t-bootstrap":"التمهيد",
+ "t-phosphor":"الفوسفور",
+ "t-maps":"خرائط",
+ "t-google":"جوجل",
+ "t-vector":"المتجه",
+ "t-leaflet":"منشور",
+ "t-multi-level":"متعدد المستويات",
+ "t-level-1.1":"المستوى 1.1",
+ "t-level-1.2":"المستوى 1.2",
+ "t-level-1.3": "المستوى 1.3",
+ "t-level-2.1":"المستوى 2.1",
+ "t-level-2.2":"المستوى 2.2",
+ "t-level-2.3": "المستوى 2.3",
+ "t-level-3.1":"المستوى 3.1",
+ "t-level-3.2":"المستوى 3.2",
+ "t-more":"أكثر",
+ "t-home": "مسكن",
+ "t-demos": "العروض",
+ "t-main-layout": "التخطيط الرئيسي",
+ "t-unique-watches": "ساعات فريدة",
+ "t-modern-fashion": "الموضة الحديثة",
+ "t-trend-fashion": "موضة الموضة",
+ "t-catalog": "فهرس",
+ "t-shop-now": "تسوق الآن",
+ "t-shop": "محل",
+ "t-men": "رجال",
+ "t-clothing": "ملابس",
+ "t-watches": "ساعات",
+ "t-bags-Luggage": "الحقائب والأمتعة",
+ "t-footwear": "الأحذية",
+ "t-innerwear": "الملابس الداخلية",
+ "t-other-accessories": "غيرها من الملحقات",
+ "t-women": "نحيف",
+ "t-western-wear": "ملابس غربية",
+ "t-handbags-clutches": "حقائب اليد والمقابض",
+ "t-lingerie-nightwear": "لانجري وملابس نوم",
+ "t-fashion-silver-jewellery": "مجوهرات الأزياء والفضة",
+ "t-accessories-others": "الملحقات وغيرها",
+ "t-home-kitchen-pets": "المنزل ، المطبخ ، الحيوانات الأليفة",
+ "t-beauty-health-grocery": "الجمال والصحة والبقالة",
+ "t-sports-fitness-bags-luggage": "الرياضة واللياقة البدنية والحقائب والأمتعة",
+ "t-car-motorbike-industrial": "السيارات والدراجات النارية والصناعية",
+ "t-books": "كتب",
+ "t-others": "آحرون",
+ "t-top-brands": "ارقى الماركات",
+ "t-checkout-pages": "صفحات الخروج",
+ "t-address": "تبوك",
+ "t-track-order": "ترتيب المسار",
+ "t-payment": "قسط",
+ "t-review": "إعادة النظر",
+ "t-confirmation": "تأكيد",
+ "t-my-orders-order-history": "طلباتي / سجل الطلبات",
+ "t-support": "الدعم",
+ "t-shopping-cart": "عربة التسوق",
+ "t-checkout": "الدفع",
+ "t-wishlist": "قائمة الرغبات",
+ "t-pages": "الصفحات",
+ "t-defualt": "تقصير",
+ "t-sidebar-with-banner": "الشريط الجانبي مع لافتة",
+ "t-right-sidebar": "الشريط الجانبي الأيمن",
+ "t-no-sidebar": "لا يوجد شريط جانبي",
+ "t-left-sidebar": "الشريط الجانبي الأيسر",
+ "t-product-details": "تفاصيل المنتج",
+ "t-users": "المستخدمون",
+ "t-about": "عن",
+ "t-purchase-guide": "دليل الشراء",
+ "t-terms-of-service": "شروط الخدمة",
+ "t-privacy-policy": "سياسة الخصوصية",
+ "t-store-locator": "فروعنا",
+ "t-faq": "التعليمات",
+ "t-email-template": "نموذج البريد الإلكتروني",
+ "t-black-friday": "الجمعة السوداء",
+ "t-flash-sale": "بيع مفاجئ",
+ "t-order-success": "طلب النجاح",
+ "t-order-success-2": "طلب النجاح 2",
+ "t-contact": "اتصال"
+}
\ No newline at end of file
diff --git a/public/build/lang/sp.json b/public/build/lang/sp.json
new file mode 100644
index 0000000..88f458b
--- /dev/null
+++ b/public/build/lang/sp.json
@@ -0,0 +1,193 @@
+{
+ "t-menu":"Menú",
+ "t-hot":"Caliente",
+ "t-dashboard":"Tablero",
+ "t-products":"productos",
+ "t-list-view":"Vista de la lista",
+ "t-grid-view":"Vista en cuadrícula",
+ "t-overview":"Descripción general",
+ "t-create-product":"Crear producto",
+ "t-categories": "Categorías",
+ "t-sub-categories" :"Subcategorías",
+ "t-orders":"Pedidos",
+ "t-calendar":"Calendario",
+ "t-sellers": "Vendedores",
+ "t-invoice":"Factura",
+ "t-create-invoice": "Crear factura",
+ "t-users-list": "Lista de usuarios",
+ "t-shipping": "Transporte",
+ "t-shipping-list":"Lista de embarque",
+ "t-shipments":"Envíos",
+ "t-coupons":"cupones",
+ "t-reviews-ratings":"Reseñas y calificaciones",
+ "t-brands":"Marcas",
+ "t-statistics":"Estadísticas",
+ "t-localization":"Localización",
+ "t-transactions":"Actas",
+ "t-currency-rates": "Tipos de cambio",
+ "t-accounts":"cuentas",
+ "t-my-account":"Mi cuenta",
+ "t-settings":"Ajustes",
+ "t-sign-up":"Inscribirse",
+ "t-sign-in":"Registrarse",
+ "t-passowrd-reset":"Restablecimiento de contraseña",
+ "t-create-password":"Crear contraseña",
+ "t-success-message":"Mensaje de éxito",
+ "t-two-step-verify":"Verificación de dos pasos",
+ "t-logout":"Cerrar sesión",
+ "t-error-404":"Error 404",
+ "t-error-500":"Error 500",
+ "t-coming-soon":"Muy pronto",
+ "t-components":"Componentes",
+ "t-bootstrap-ui":"Interfaz de usuario de Bootstrap",
+ "t-alerts":"Alertas",
+ "t-badges":"Insignias",
+ "t-buttons":"Botones",
+ "t-colors":"Colores",
+ "t-cards":"Tarjetas",
+ "t-carousel":"Carrusel",
+ "t-dropdowns":"Listas deplegables",
+ "t-grid":"Red",
+ "t-images":"Imágenes",
+ "t-tabs":"Pestañas",
+ "t-accordion-collapse":"Acordeón y colapsar",
+ "t-modals":"modales",
+ "t-offcanvas":"Offcanvas",
+ "t-placeholders":"Marcadores de posición",
+ "t-progress":"Progreso",
+ "t-notifications":"Notifications",
+ "t-media-object":"objeto multimedia",
+ "t-embed-video":"Insertar video",
+ "t-typography":"Tipografía",
+ "t-lists":"Liza",
+ "t-general":"General",
+ "t-utilities":"Utilidades",
+ "t-advance-ui":"Interfaz de usuario avanzada",
+ "t-new":"Nuevo",
+ "t-sweet-alerts":"Dulces alertas",
+ "t-nestable-list":"Lista anidable",
+ "t-scrollbar":"Barra de desplazamiento",
+ "t-swiper-slider":"Control deslizante Swiper",
+ "t-ratings":"Calificaciones",
+ "t-highlight":"Destacar",
+ "t-scrollSpy":"DesplazamientoEspía",
+ "t-custom-ui":"Interfaz de usuario personalizada",
+ "t-ribbons":"Cintas",
+ "t-profile": "Perfil",
+ "t-counter": "Contador",
+ "t-forms":"Formularios",
+ "t-basic-elements":"Elementos basicos",
+ "t-form-select":"Selección de formulario",
+ "t-checkboxs-radios":"Casillas de verificación y radios",
+ "t-pickers":"Recolectores",
+ "t-input-masks":"Máscaras de entrada",
+ "t-advanced":"Avanzado",
+ "t-range-slider":"Deslizador de rango",
+ "t-validation":"Validación",
+ "t-wizard":"Mago",
+ "t-editors":"Editores",
+ "t-file-uploads":"Cargas de archivos",
+ "t-form-layouts":"Diseños de formulario",
+ "t-tom-select": "Tomás Seleccionar",
+ "t-tables":"Mesas",
+ "t-basic-tables":"Tablas Básicas",
+ "t-grid-js":"Cuadrícula J",
+ "t-list-js":"Lista J",
+ "t-datatables": "tablas de datos",
+ "t-apexcharts":"Apexcharts",
+ "t-line":"Línea",
+ "t-area":"Área",
+ "t-column":"Columna",
+ "t-bar":"Bar",
+ "t-mixed":"Mezclado",
+ "t-candlstick":"Candelero",
+ "t-boxplot":"diagrama de caja",
+ "t-bubble":"Burbuja",
+ "t-scatter":"Dispersión",
+ "t-heatmap":"Mapa de calor",
+ "t-treemap":"Mapa de árbol",
+ "t-pie":"Tarta",
+ "t-radialbar":"barra radial",
+ "t-radar":"Radar",
+ "t-polar-area":"Área polar",
+ "t-icons":"Iconos",
+ "t-remix":"remezclar",
+ "t-boxicons":"Boxicons",
+ "t-material-design":"Diseño de materiales",
+ "t-bootstrap":"Oreja",
+ "t-phosphor":"Fósforo",
+ "t-maps":"mapas",
+ "t-google":"Google",
+ "t-vector":"Vector",
+ "t-leaflet":"Folleto",
+ "t-multi-level":"Multi nivel",
+ "t-level-1.1":"Nivel 1.1",
+ "t-level-1.2":"Nivel 1.2",
+ "t-level-1.3": "Nivel 1.3",
+ "t-level-2.1":"Nivel 2.1",
+ "t-level-2.2":"Nivel 2.2",
+ "t-level-2.3": "Nivel 2.3",
+ "t-level-3.1":"Nivel 3.1",
+ "t-level-3.2":"Nivel 3.2",
+ "t-more":"Más",
+ "t-home": "Hogar",
+ "t-demos": "Población",
+ "t-main-layout": "Diseño principal",
+ "t-unique-watches": "Relojes únicos",
+ "t-modern-fashion": "Moda moderna",
+ "t-trend-fashion": "Tendencia Moda",
+ "t-catalog": "Catalogar",
+ "t-shop-now": "Compra ahora",
+ "t-shop": "Comercio",
+ "t-men": "Hombres",
+ "t-clothing": "Ropa",
+ "t-watches": "Relojes",
+ "t-bags-Luggage": "Bolsas y Equipaje",
+ "t-footwear": "Calzado",
+ "t-innerwear": "ropa interior",
+ "t-other-accessories": "Otros accesorios",
+ "t-women": "Mujeres",
+ "t-western-wear": "ropa occidental",
+ "t-handbags-clutches": "Bolsos y Carteras",
+ "t-lingerie-nightwear": "Lencería y ropa de dormir",
+ "t-fashion-silver-jewellery": "Joyería de moda y plata",
+ "t-accessories-others": "Accesorios y otros",
+ "t-home-kitchen-pets": "Hogar, Cocina, Mascotas",
+ "t-beauty-health-grocery": "Belleza, Salud, Supermercados",
+ "t-sports-fitness-bags-luggage": "Deportes, Fitness, Bolsas, Equipaje",
+ "t-car-motorbike-industrial": "Coche, Moto, Industrial",
+ "t-books": "Libros",
+ "t-others": "Otros",
+ "t-top-brands": "Mejores marcas",
+ "t-checkout-pages": "Páginas de pago",
+ "t-address": "Dirección",
+ "t-track-order": "Orden de pista",
+ "t-payment": "Pago",
+ "t-review": "Revisar",
+ "t-confirmation": "Confirmación",
+ "t-my-orders-order-history": "Mis pedidos / Historial de pedidos",
+ "t-support": "Apoyo",
+ "t-shopping-cart": "Carrito de compras",
+ "t-checkout": "Verificar",
+ "t-wishlist": "Lista de deseos",
+ "t-pages": "Paginas",
+ "t-defualt": "Por defecto",
+ "t-sidebar-with-banner": "Barra lateral con banner",
+ "t-right-sidebar": "Barra lateral derecha",
+ "t-no-sidebar": "Sin barra lateral",
+ "t-left-sidebar": "Barra lateral izquierda",
+ "t-product-details": "Detalles de producto",
+ "t-users": "Usuarios",
+ "t-about": "Acerca de",
+ "t-purchase-guide": "Guía de compra",
+ "t-terms-of-service": "Términos de servicio",
+ "t-privacy-policy": "Política de privacidad",
+ "t-store-locator": "Localizadora de tiendas",
+ "t-faq": "Preguntas más frecuentes",
+ "t-email-template": "Plantilla de correo electrónico",
+ "t-black-friday": "viernes negro",
+ "t-flash-sale": "Venta express",
+ "t-order-success": "Pedido exitoso",
+ "t-order-success-2": "Pedido exitoso 2",
+ "t-contact": "Contacto"
+}
\ No newline at end of file
diff --git a/public/build/libs/bootstrap/bootstrap.bundle.min.js b/public/build/libs/bootstrap/bootstrap.bundle.min.js
new file mode 100644
index 0000000..b1999d9
--- /dev/null
+++ b/public/build/libs/bootstrap/bootstrap.bundle.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v5.3.2 (https://getbootstrap.com/)
+ * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?n(i.trim()):null}return e},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C
=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=".dropdown-toggle",zs=`:not(${Bs})`,Rs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',qs=`.nav-link${zs}, .list-group-item${zs}, [role="tab"]${zs}, ${Rs}`,Vs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Ks extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Ks.getOrCreateInstance(i).show())}_getChildren(){return z.find(qs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(Bs,Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(qs)?t:z.findOne(qs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Ks.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,Rs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Ks.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(Vs))Ks.getOrCreateInstance(t)})),m(Ks);const Qs=".bs.toast",Xs=`mouseover${Qs}`,Ys=`mouseout${Qs}`,Us=`focusin${Qs}`,Gs=`focusout${Qs}`,Js=`hide${Qs}`,Zs=`hidden${Qs}`,to=`show${Qs}`,eo=`shown${Qs}`,io="hide",no="show",so="showing",oo={animation:"boolean",autohide:"boolean",delay:"number"},ro={animation:!0,autohide:!0,delay:5e3};class ao extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return ro}static get DefaultType(){return oo}static get NAME(){return"toast"}show(){N.trigger(this._element,to).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(io),d(this._element),this._element.classList.add(no,so),this._queueCallback((()=>{this._element.classList.remove(so),N.trigger(this._element,eo),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Js).defaultPrevented||(this._element.classList.add(so),this._queueCallback((()=>{this._element.classList.add(io),this._element.classList.remove(so,no),N.trigger(this._element,Zs)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(no),super.dispose()}isShown(){return this._element.classList.contains(no)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Xs,(t=>this._onInteraction(t,!0))),N.on(this._element,Ys,(t=>this._onInteraction(t,!1))),N.on(this._element,Us,(t=>this._onInteraction(t,!0))),N.on(this._element,Gs,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ao.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ao),m(ao),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Ks,Toast:ao,Tooltip:cs}}));
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/public/build/libs/bootstrap/bootstrap.min.css b/public/build/libs/bootstrap/bootstrap.min.css
new file mode 100644
index 0000000..f5910ac
--- /dev/null
+++ b/public/build/libs/bootstrap/bootstrap.min.css
@@ -0,0 +1,6 @@
+@charset "UTF-8";/*!
+ * Bootstrap v5.3.2 (https://getbootstrap.com/)
+ * Copyright 2011-2023 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-color:#212529;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222,226,230;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222,226,230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222,226,230;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-highlight-color:#dee2e6;--bs-highlight-bg:#664d03;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);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}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{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.33333333%}.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.66666667%}.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.33333333%}.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.66666667%}.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.33333333%}.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.66666667%}.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.33333333%}.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.66666667%}.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.33333333%}.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.66666667%}.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.33333333%}.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.66666667%}.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}}.table{--bs-table-color-type:initial;--bs-table-bg-type:initial;--bs-table-color-state:initial;--bs-table-bg-state:initial;--bs-table-color:var(--bs-emphasis-color);--bs-table-bg:var(--bs-body-bg);--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-emphasis-color);--bs-table-striped-bg:rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color:var(--bs-emphasis-color);--bs-table-active-bg:rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color:var(--bs-emphasis-color);--bs-table-hover-bg:rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-active{--bs-table-color-state:var(--bs-table-active-color);--bs-table-bg-state:var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state:var(--bs-table-hover-color);--bs-table-bg-state:var(--bs-table-hover-bg)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#a6b5cc;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#b5b6b7;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#a7b9b1;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#a6c3ca;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#ccc2a4;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#c6acae;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#c6c7c8;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#4d5154;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);flex-shrink:0;width:1em;height:1em;margin-top:.25em;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;-webkit-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;-moz-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));min-height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>.form-control:disabled~label,.form-floating>:disabled~label{color:#6c757d}.form-floating>.form-control:disabled~label::after,.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:var(--bs-box-shadow);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:var(--bs-box-shadow-sm);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:var(--bs-box-shadow)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:var(--bs-box-shadow);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color:inherit;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:var(--bs-box-shadow-sm);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(var(--bs-primary-rgb),var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(var(--bs-secondary-rgb),var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(var(--bs-success-rgb),var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(var(--bs-info-rgb),var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(var(--bs-warning-rgb),var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(var(--bs-danger-rgb),var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(var(--bs-light-rgb),var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(var(--bs-dark-rgb),var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))!important}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))!important}.link-secondary{color:RGBA(var(--bs-secondary-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))!important}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))!important}.link-success{color:RGBA(var(--bs-success-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))!important}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))!important}.link-info{color:RGBA(var(--bs-info-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))!important}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))!important}.link-warning{color:RGBA(var(--bs-warning-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))!important}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))!important}.link-danger{color:RGBA(var(--bs-danger-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))!important}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))!important}.link-light{color:RGBA(var(--bs-light-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))!important}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))!important}.link-dark{color:RGBA(var(--bs-dark-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))!important}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))!important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75))!important;-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))!important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-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}.shadow{box-shadow:var(--bs-box-shadow)!important}.shadow-sm{box-shadow:var(--bs-box-shadow-sm)!important}.shadow-lg{box-shadow:var(--bs-box-shadow-lg)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!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}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.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-inline-grid{display:inline-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}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.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-inline-grid{display:inline-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}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.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-inline-grid{display:inline-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}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.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-inline-grid{display:inline-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}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.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-inline-grid{display:inline-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}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!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-inline-grid{display:inline-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.min.css.map */
\ No newline at end of file
diff --git a/public/build/libs/choices.js/choices.min.js b/public/build/libs/choices.js/choices.min.js
new file mode 100644
index 0000000..af28094
--- /dev/null
+++ b/public/build/libs/choices.js/choices.min.js
@@ -0,0 +1,2 @@
+/*! For license information please see choices.min.js.LICENSE.txt */
+!function(){"use strict";var e={282:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.clearChoices=t.activateChoices=t.filterChoices=t.addChoice=void 0;var n=i(883);t.addChoice=function(e){var t=e.value,i=e.label,r=e.id,s=e.groupId,o=e.disabled,a=e.elementId,c=e.customProperties,l=e.placeholder,h=e.keyCode;return{type:n.ACTION_TYPES.ADD_CHOICE,value:t,label:i,id:r,groupId:s,disabled:o,elementId:a,customProperties:c,placeholder:l,keyCode:h}},t.filterChoices=function(e){return{type:n.ACTION_TYPES.FILTER_CHOICES,results:e}},t.activateChoices=function(e){return void 0===e&&(e=!0),{type:n.ACTION_TYPES.ACTIVATE_CHOICES,active:e}},t.clearChoices=function(){return{type:n.ACTION_TYPES.CLEAR_CHOICES}}},783:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.addGroup=void 0;var n=i(883);t.addGroup=function(e){var t=e.value,i=e.id,r=e.active,s=e.disabled;return{type:n.ACTION_TYPES.ADD_GROUP,value:t,id:i,active:r,disabled:s}}},464:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.highlightItem=t.removeItem=t.addItem=void 0;var n=i(883);t.addItem=function(e){var t=e.value,i=e.label,r=e.id,s=e.choiceId,o=e.groupId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:n.ACTION_TYPES.ADD_ITEM,value:t,label:i,id:r,choiceId:s,groupId:o,customProperties:a,placeholder:c,keyCode:l}},t.removeItem=function(e,t){return{type:n.ACTION_TYPES.REMOVE_ITEM,id:e,choiceId:t}},t.highlightItem=function(e,t){return{type:n.ACTION_TYPES.HIGHLIGHT_ITEM,id:e,highlighted:t}}},137:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.setIsLoading=t.resetTo=t.clearAll=void 0;var n=i(883);t.clearAll=function(){return{type:n.ACTION_TYPES.CLEAR_ALL}},t.resetTo=function(e){return{type:n.ACTION_TYPES.RESET_TO,state:e}},t.setIsLoading=function(e){return{type:n.ACTION_TYPES.SET_IS_LOADING,isLoading:e}}},373:function(e,t,i){var n=this&&this.__spreadArray||function(e,t,i){if(i||2===arguments.length)for(var n,r=0,s=t.length;r=0?this._store.getGroupById(r):null;return this._store.dispatch((0,l.highlightItem)(i,!0)),t&&this.passedElement.triggerEvent(d.EVENTS.highlightItem,{id:i,value:o,label:c,groupValue:h&&h.value?h.value:null}),this},e.prototype.unhighlightItem=function(e){if(!e||!e.id)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,r=e.value,s=void 0===r?"":r,o=e.label,a=void 0===o?"":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch((0,l.highlightItem)(t,!1)),this.passedElement.triggerEvent(d.EVENTS.highlightItem,{id:t,value:s,label:a,groupValue:c&&c.value?c.value:null}),this},e.prototype.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},e.prototype.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},e.prototype.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},e.prototype.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},e.prototype.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},e.prototype.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(d.EVENTS.showDropdown,{})})),this},e.prototype.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(d.EVENTS.hideDropdown,{})})),this):this},e.prototype.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},e.prototype.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},e.prototype.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},e.prototype.setChoices=function(e,t,i,n){var r=this;if(void 0===e&&(e=[]),void 0===t&&(t="value"),void 0===i&&(i="label"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can't be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of 'value' field in passed objects");if(n&&this.clearChoices(),"function"==typeof e){var s=e(this);if("function"==typeof Promise&&s instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return r._handleLoadingState(!0)})).then((function(){return s})).then((function(e){return r.setChoices(e,t,i,n)})).catch((function(e){r.config.silent||console.error(e)})).then((function(){return r._handleLoadingState(!1)})).then((function(){return r}));if(!Array.isArray(s))throw new TypeError(".setChoices first argument function must return either array of choices or Promise, got: ".concat(typeof s));return this.setChoices(s,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){if(e.choices)r._addGroup({id:e.id?parseInt("".concat(e.id),10):null,group:e,valueKey:t,labelKey:i});else{var n=e;r._addChoice({value:n[t],label:n[i],isSelected:!!n.selected,isDisabled:!!n.disabled,placeholder:!!n.placeholder,customProperties:n.customProperties})}})),this._stopLoading(),this},e.prototype.clearChoices=function(){return this._store.dispatch((0,a.clearChoices)()),this},e.prototype.clearStore=function(){return this._store.dispatch((0,h.clearAll)()),this},e.prototype.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch((0,a.activateChoices)(!0))),this},e.prototype._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},e.prototype._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,r=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var s=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));s.length>=1&&(r=this._createChoicesFragment(s,r)),r=this._createGroupsFragment(i,n,r)}else n.length>=1&&(r=this._createChoicesFragment(n,r));if(r.childNodes&&r.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);if(a.response)this.choiceList.append(r),this._highlightChoice();else{var c=this._getTemplate("notice",a.notice);this.choiceList.append(c)}}else{var l=void 0;c=void 0,this._isSearching?(c="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,l=this._getTemplate("notice",c,"no-results")):(c="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,l=this._getTemplate("notice",c,"no-choices")),this.choiceList.append(l)}},e.prototype._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},e.prototype._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var r=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(r.length>=1){var s=n._getTemplate("choiceGroup",e);i.appendChild(s),n._createChoicesFragment(r,i,!0)}})),i},e.prototype._createChoicesFragment=function(e,t,i){var r=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,o=s.renderSelectedChoices,a=s.searchResultLimit,c=s.renderChoiceLimit,l=this._isSearching?f.sortByScore:this.config.sorter,h=function(e){if("auto"!==o||r._isSelectOneElement||!e.selected){var i=r._getTemplate("choice",e,r.config.itemSelectText);t.appendChild(i)}},u=e;"auto"!==o||this._isSelectOneElement||(u=e.filter((function(e){return!e.selected})));var d=u.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),p=d.placeholderChoices,m=d.normalChoices;(this.config.shouldSort||this._isSearching)&&m.sort(l);var v=u.length,g=this._isSelectOneElement?n(n([],p,!0),m,!0):m;this._isSearching?v=a:c&&c>0&&!i&&(v=c);for(var _=0;_=n){var o=r?this._searchChoices(e):0;this.passedElement.triggerEvent(d.EVENTS.search,{value:e,resultCount:o})}else s&&(this._isSearching=!1,this._store.dispatch((0,a.activateChoices)(!0)))}},e.prototype._canAddItem=function(e,t){var i=!0,n="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var r=(0,f.existsInArray)(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&r&&i&&(i=!1,n="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},e.prototype._searchChoices=function(e){var t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t==="".concat(i," "))return 0;var r=this._store.searchableChoices,s=t,c=Object.assign(this.config.fuseOptions,{keys:n([],this.config.searchFields,!0),includeMatches:!0}),l=new o.default(r,c).search(s);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch((0,a.filterChoices)(l)),l.length},e.prototype._addEventListeners=function(){var e=document.documentElement;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()},e.prototype._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()},e.prototype._onKeyDown=function(e){var t=e.keyCode,i=this._store.activeItems,n=this.input.isFocussed,r=this.dropdown.isActive,s=this.itemList.hasChildren(),o=String.fromCharCode(t),a=/[^\x00-\x1F]/.test(o),c=d.KEY_CODES.BACK_KEY,l=d.KEY_CODES.DELETE_KEY,h=d.KEY_CODES.ENTER_KEY,u=d.KEY_CODES.A_KEY,p=d.KEY_CODES.ESC_KEY,f=d.KEY_CODES.UP_KEY,m=d.KEY_CODES.DOWN_KEY,v=d.KEY_CODES.PAGE_UP_KEY,g=d.KEY_CODES.PAGE_DOWN_KEY;switch(this._isTextElement||r||!a||(this.showDropdown(),this.input.isFocussed||(this.input.value+=e.key.toLowerCase())),t){case u:return this._onSelectKey(e,s);case h:return this._onEnterKey(e,i,r);case p:return this._onEscapeKey(r);case f:case v:case m:case g:return this._onDirectionKey(e,r);case l:case c:return this._onDeleteKey(e,i,n)}},e.prototype._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,r=this._store.activeItems,s=this._canAddItem(r,n),o=d.KEY_CODES.BACK_KEY,c=d.KEY_CODES.DELETE_KEY;if(this._isTextElement)if(s.notice&&n){var l=this._getTemplate("notice",s.notice);this.dropdown.element.innerHTML=l.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var h=(i===o||i===c)&&t&&!t.value,u=!this._isTextElement&&this._isSearching,p=this._canSearch&&s.response;h&&u?(this._isSearching=!1,this._store.dispatch((0,a.activateChoices)(!0))):p&&this._handleSearch(this.input.rawValue)}this._canSearch=this.config.searchEnabled},e.prototype._onSelectKey=function(e,t){var i=e.ctrlKey,n=e.metaKey;(i||n)&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},e.prototype._onEnterKey=function(e,t,i){var n=e.target,r=d.KEY_CODES.ENTER_KEY,s=n&&n.hasAttribute("data-button");if(this._isTextElement&&n&&n.value){var o=this.input.value;this._canAddItem(t,o).response&&(this.hideDropdown(!0),this._addItem({value:o}),this._triggerChange(o),this.clearInput())}if(s&&(this._handleButtonAction(t,n),e.preventDefault()),i){var a=this.dropdown.getChild(".".concat(this.config.classNames.highlightedState));a&&(t[0]&&(t[0].keyCode=r),this._handleChoiceAction(t,a)),e.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),e.preventDefault())},e.prototype._onEscapeKey=function(e){e&&(this.hideDropdown(!0),this.containerOuter.focus())},e.prototype._onDirectionKey=function(e,t){var i=e.keyCode,n=e.metaKey,r=d.KEY_CODES.DOWN_KEY,s=d.KEY_CODES.PAGE_UP_KEY,o=d.KEY_CODES.PAGE_DOWN_KEY;if(t||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var a=i===r||i===o?1:-1,c="[data-choice-selectable]",l=void 0;if(n||i===o||i===s)l=a>0?this.dropdown.element.querySelector("".concat(c,":last-of-type")):this.dropdown.element.querySelector(c);else{var h=this.dropdown.element.querySelector(".".concat(this.config.classNames.highlightedState));l=h?(0,f.getAdjacentEl)(h,c,a):this.dropdown.element.querySelector(c)}l&&((0,f.isScrolledIntoView)(l,this.choiceList.element,a)||this.choiceList.scrollToChildElement(l,a),this._highlightChoice(l)),e.preventDefault()}},e.prototype._onDeleteKey=function(e,t,i){var n=e.target;this._isSelectOneElement||n.value||!i||(this._handleBackspace(t),e.preventDefault())},e.prototype._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},e.prototype._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},e.prototype._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(_&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n="ltr"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},e.prototype._onFocus=function(e){var t,i=this,n=e.target;n&&this.containerOuter.element.contains(n)&&((t={})[d.TEXT_TYPE]=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[d.SELECT_ONE_TYPE]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[d.SELECT_MULTIPLE_TYPE]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},e.prototype._onBlur=function(e){var t,i=this,n=e.target;if(n&&this.containerOuter.element.contains(n)&&!this._isScrollingOnIe){var r=this._store.activeItems.some((function(e){return e.highlighted}));((t={})[d.TEXT_TYPE]=function(){n===i.input.element&&(i.containerOuter.removeFocusState(),r&&i.unhighlightAll(),i.hideDropdown(!0))},t[d.SELECT_ONE_TYPE]=function(){i.containerOuter.removeFocusState(),(n===i.input.element||n===i.containerOuter.element&&!i._canSearch)&&i.hideDropdown(!0)},t[d.SELECT_MULTIPLE_TYPE]=function(){n===i.input.element&&(i.containerOuter.removeFocusState(),i.hideDropdown(!0),r&&i.unhighlightAll())},t)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},e.prototype._onFormReset=function(){this._store.dispatch((0,h.resetTo)(this._initialState))},e.prototype._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(".".concat(this.config.classNames.highlightedState))).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute("aria-selected","false")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(d.EVENTS.highlightChoice,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},e.prototype._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,r=e.choiceId,s=void 0===r?-1:r,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,h=void 0===c?{}:c,u=e.placeholder,p=void 0!==u&&u,f=e.keyCode,m=void 0===f?-1:f,v="string"==typeof t?t.trim():t,g=this._store.items,_=n||v,y=s||-1,E=a>=0?this._store.getGroupById(a):null,b=g?g.length+1:1;this.config.prependValue&&(v=this.config.prependValue+v.toString()),this.config.appendValue&&(v+=this.config.appendValue.toString()),this._store.dispatch((0,l.addItem)({value:v,label:_,id:b,choiceId:y,groupId:a,customProperties:h,placeholder:p,keyCode:m})),this._isSelectOneElement&&this.removeActiveItems(b),this.passedElement.triggerEvent(d.EVENTS.addItem,{id:b,value:v,label:_,customProperties:h,groupValue:E&&E.value?E.value:null,keyCode:m})},e.prototype._removeItem=function(e){var t=e.id,i=e.value,n=e.label,r=e.customProperties,s=e.choiceId,o=e.groupId,a=o&&o>=0?this._store.getGroupById(o):null;t&&s&&(this._store.dispatch((0,l.removeItem)(t,s)),this.passedElement.triggerEvent(d.EVENTS.removeItem,{id:t,value:i,label:n,customProperties:r,groupValue:a&&a.value?a.value:null}))},e.prototype._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,r=e.isSelected,s=void 0!==r&&r,o=e.isDisabled,c=void 0!==o&&o,l=e.groupId,h=void 0===l?-1:l,u=e.customProperties,d=void 0===u?{}:u,p=e.placeholder,f=void 0!==p&&p,m=e.keyCode,v=void 0===m?-1:m;if(null!=t){var g=this._store.choices,_=n||t,y=g?g.length+1:1,E="".concat(this._baseId,"-").concat(this._idNames.itemChoice,"-").concat(y);this._store.dispatch((0,a.addChoice)({id:y,groupId:h,elementId:E,value:t,label:_,disabled:c,customProperties:d,placeholder:f,keyCode:v})),s&&this._addItem({value:t,label:_,choiceId:y,customProperties:d,placeholder:f,keyCode:v})}},e.prototype._addGroup=function(e){var t=this,i=e.group,n=e.id,r=e.valueKey,s=void 0===r?"value":r,o=e.labelKey,a=void 0===o?"label":o,l=(0,f.isType)("Object",i)?i.choices:Array.from(i.getElementsByTagName("OPTION")),h=n||Math.floor((new Date).valueOf()*Math.random()),u=!!i.disabled&&i.disabled;l?(this._store.dispatch((0,c.addGroup)({value:i.label,id:h,active:!0,disabled:u})),l.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[s],label:(0,f.isType)("Object",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:h,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch((0,c.addGroup)({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},e.prototype._getTemplate=function(e){for(var t,i=[],r=1;r0?this.element.scrollTop+o-r:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},e.prototype._scrollDown=function(e,t,i){var n=(i-e)/t,r=n>1?n:1;this.element.scrollTop=e+r},e.prototype._scrollUp=function(e,t,i){var n=(e-i)/t,r=n>1?n:1;this.element.scrollTop=e-r},e.prototype._animateScroll=function(e,t){var i=this,r=n.SCROLLING_SPEED,s=this.element.scrollTop,o=!1;t>0?(this._scrollDown(s,r,e),se&&(o=!0)),o&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();t.default=r},730:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0});var n=i(799),r=function(){function e(e){var t=e.element,i=e.classNames;if(this.element=t,this.classNames=i,!(t instanceof HTMLInputElement||t instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}return Object.defineProperty(e.prototype,"isActive",{get:function(){return"active"===this.element.dataset.choice},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"dir",{get:function(){return this.element.dir},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){return this.element.value},set:function(e){this.element.value=e},enumerable:!1,configurable:!0}),e.prototype.conceal=function(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;var e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")},e.prototype.reveal=function(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");var e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value},e.prototype.enable=function(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1},e.prototype.disable=function(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0},e.prototype.triggerEvent=function(e,t){(0,n.dispatchEvent)(this.element,e,t)},e}();t.default=r},541:function(e,t,i){var n,r=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function i(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(i.prototype=t.prototype,new i)}),s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t){var i=t.element,n=t.classNames,r=t.delimiter,s=e.call(this,{element:i,classNames:n})||this;return s.delimiter=r,s}return r(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this.element.value},set:function(e){this.element.setAttribute("value",e),this.element.value=e},enumerable:!1,configurable:!0}),t}(s(i(730)).default);t.default=o},982:function(e,t,i){var n,r=this&&this.__extends||(n=function(e,t){return n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i])},n(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function i(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(i.prototype=t.prototype,new i)}),s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t){var i=t.element,n=t.classNames,r=t.template,s=e.call(this,{element:i,classNames:n})||this;return s.template=r,s}return r(t,e),Object.defineProperty(t.prototype,"placeholderOption",{get:function(){return this.element.querySelector('option[value=""]')||this.element.querySelector("option[placeholder]")},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"optionGroups",{get:function(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"options",{get:function(){return Array.from(this.element.options)},set:function(e){var t=this,i=document.createDocumentFragment();e.forEach((function(e){return n=e,r=t.template(n),void i.appendChild(r);var n,r})),this.appendDocFragment(i)},enumerable:!1,configurable:!0}),t.prototype.appendDocFragment=function(e){this.element.innerHTML="",this.element.appendChild(e)},t}(s(i(730)).default);t.default=o},883:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.SCROLLING_SPEED=t.SELECT_MULTIPLE_TYPE=t.SELECT_ONE_TYPE=t.TEXT_TYPE=t.KEY_CODES=t.ACTION_TYPES=t.EVENTS=void 0,t.EVENTS={showDropdown:"showDropdown",hideDropdown:"hideDropdown",change:"change",choice:"choice",search:"search",addItem:"addItem",removeItem:"removeItem",highlightItem:"highlightItem",highlightChoice:"highlightChoice",unhighlightItem:"unhighlightItem"},t.ACTION_TYPES={ADD_CHOICE:"ADD_CHOICE",FILTER_CHOICES:"FILTER_CHOICES",ACTIVATE_CHOICES:"ACTIVATE_CHOICES",CLEAR_CHOICES:"CLEAR_CHOICES",ADD_GROUP:"ADD_GROUP",ADD_ITEM:"ADD_ITEM",REMOVE_ITEM:"REMOVE_ITEM",HIGHLIGHT_ITEM:"HIGHLIGHT_ITEM",CLEAR_ALL:"CLEAR_ALL",RESET_TO:"RESET_TO",SET_IS_LOADING:"SET_IS_LOADING"},t.KEY_CODES={BACK_KEY:46,DELETE_KEY:8,ENTER_KEY:13,A_KEY:65,ESC_KEY:27,UP_KEY:38,DOWN_KEY:40,PAGE_UP_KEY:33,PAGE_DOWN_KEY:34},t.TEXT_TYPE="text",t.SELECT_ONE_TYPE="select-one",t.SELECT_MULTIPLE_TYPE="select-multiple",t.SCROLLING_SPEED=4},789:function(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.DEFAULT_CONFIG=t.DEFAULT_CLASSNAMES=void 0;var n=i(799);t.DEFAULT_CLASSNAMES={containerOuter:"choices",containerInner:"choices__inner",input:"choices__input",inputCloned:"choices__input--cloned",list:"choices__list",listItems:"choices__list--multiple",listSingle:"choices__list--single",listDropdown:"choices__list--dropdown",item:"choices__item",itemSelectable:"choices__item--selectable",itemDisabled:"choices__item--disabled",itemChoice:"choices__item--choice",placeholder:"choices__placeholder",group:"choices__group",groupHeading:"choices__heading",button:"choices__button",activeState:"is-active",focusState:"is-focused",openState:"is-open",disabledState:"is-disabled",highlightedState:"is-highlighted",selectedState:"is-selected",flippedState:"is-flipped",loadingState:"is-loading",noResults:"has-no-results",noChoices:"has-no-choices"},t.DEFAULT_CONFIG={items:[],choices:[],silent:!1,renderChoiceLimit:-1,maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,allowHTML:!0,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!0,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:n.sortByAlpha,placeholder:!0,placeholderValue:null,searchPlaceholderValue:null,prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"Loading...",noResultsText:"No results found",noChoicesText:"No choices to choose from",itemSelectText:"Press to select",uniqueItemText:"Only unique values can be added",customAddItemText:"Only values matching specific conditions can be added",addItemText:function(e){return'Press Enter to add "'.concat((0,n.sanitise)(e),'" ')},maxItemText:function(e){return"Only ".concat(e," values can be added")},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},labelId:"",callbackOnInit:null,callbackOnCreateTemplates:null,classNames:t.DEFAULT_CLASSNAMES}},18:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},978:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},948:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},359:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},285:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},533:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},187:function(e,t,i){var n=this&&this.__createBinding||(Object.create?function(e,t,i,n){void 0===n&&(n=i);var r=Object.getOwnPropertyDescriptor(t,i);r&&!("get"in r?!t.__esModule:r.writable||r.configurable)||(r={enumerable:!0,get:function(){return t[i]}}),Object.defineProperty(e,n,r)}:function(e,t,i,n){void 0===n&&(n=i),e[n]=t[i]}),r=this&&this.__exportStar||function(e,t){for(var i in e)"default"===i||Object.prototype.hasOwnProperty.call(t,i)||n(t,e,i)};Object.defineProperty(t,"__esModule",{value:!0}),r(i(18),t),r(i(978),t),r(i(948),t),r(i(359),t),r(i(285),t),r(i(533),t),r(i(287),t),r(i(132),t),r(i(837),t),r(i(598),t),r(i(369),t),r(i(37),t),r(i(47),t),r(i(923),t),r(i(876),t)},287:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},132:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},837:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},598:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},37:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},369:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},47:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},923:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},876:function(e,t){Object.defineProperty(t,"__esModule",{value:!0})},799:function(e,t){var i;Object.defineProperty(t,"__esModule",{value:!0}),t.parseCustomProperties=t.diff=t.cloneObject=t.existsInArray=t.dispatchEvent=t.sortByScore=t.sortByAlpha=t.strToEl=t.sanitise=t.isScrolledIntoView=t.getAdjacentEl=t.wrap=t.isType=t.getType=t.generateId=t.generateChars=t.getRandomNumber=void 0,t.getRandomNumber=function(e,t){return Math.floor(Math.random()*(t-e)+e)},t.generateChars=function(e){return Array.from({length:e},(function(){return(0,t.getRandomNumber)(0,36).toString(36)})).join("")},t.generateId=function(e,i){var n=e.id||e.name&&"".concat(e.name,"-").concat((0,t.generateChars)(2))||(0,t.generateChars)(4);return n=n.replace(/(:|\.|\[|\]|,)/g,""),"".concat(i,"-").concat(n)},t.getType=function(e){return Object.prototype.toString.call(e).slice(8,-1)},t.isType=function(e,i){return null!=i&&(0,t.getType)(i)===e},t.wrap=function(e,t){return void 0===t&&(t=document.createElement("div")),e.parentNode&&(e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t)),t.appendChild(e)},t.getAdjacentEl=function(e,t,i){void 0===i&&(i=1);for(var n="".concat(i>0?"next":"previous","ElementSibling"),r=e[n];r;){if(r.matches(t))return r;r=r[n]}return r},t.isScrolledIntoView=function(e,t,i){return void 0===i&&(i=1),!!e&&(i>0?t.scrollTop+t.offsetHeight>=e.offsetTop+e.offsetHeight:e.offsetTop>=t.scrollTop)},t.sanitise=function(e){return"string"!=typeof e?e:e.replace(/&/g,"&").replace(/>/g,">").replace(/-1?e.map((function(e){var t=e;return t.id===parseInt("".concat(o.choiceId),10)&&(t.selected=!0),t})):e;case"REMOVE_ITEM":var a=n;return a.choiceId&&a.choiceId>-1?e.map((function(e){var t=e;return t.id===parseInt("".concat(a.choiceId),10)&&(t.selected=!1),t})):e;case"FILTER_CHOICES":var c=n;return e.map((function(e){var t=e;return t.active=c.results.some((function(e){var i=e.item,n=e.score;return i.id===t.id&&(t.score=n,!0)})),t}));case"ACTIVATE_CHOICES":var l=n;return e.map((function(e){var t=e;return t.active=l.active,t}));case"CLEAR_CHOICES":return t.defaultState;default:return e}}},871:function(e,t){var i=this&&this.__spreadArray||function(e,t,i){if(i||2===arguments.length)for(var n,r=0,s=t.length;r0?"treeitem":"option"),Object.assign(E.dataset,{choice:"",id:d,value:p,selectText:i}),g?(E.classList.add(h),E.dataset.choiceDisabled="",E.setAttribute("aria-disabled","true")):(E.classList.add(c),E.dataset.choiceSelectable=""),E},input:function(e,t){var i=e.classNames,n=i.input,r=i.inputCloned,s=Object.assign(document.createElement("input"),{type:"search",name:"search_terms",className:"".concat(n," ").concat(r),autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",t),s},dropdown:function(e){var t=e.classNames,i=t.list,n=t.listDropdown,r=document.createElement("div");return r.classList.add(i,n),r.setAttribute("aria-expanded","false"),r},notice:function(e,t,i){var n,r=e.allowHTML,s=e.classNames,o=s.item,a=s.itemChoice,c=s.noResults,l=s.noChoices;void 0===i&&(i="");var h=[o,a];return"no-choices"===i?h.push(l):"no-results"===i&&h.push(c),Object.assign(document.createElement("div"),((n={})[r?"innerHTML":"innerText"]=t,n.className=h.join(" "),n))},option:function(e){var t=e.label,i=e.value,n=e.customProperties,r=e.active,s=e.disabled,o=new Option(t,i,!1,r);return n&&(o.dataset.customProperties="".concat(n)),o.disabled=!!s,o}};t.default=i},996:function(e){var t=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===i}(e)}(e)},i="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function n(e,t){return!1!==t.clone&&t.isMergeableObject(e)?a((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function r(e,t,i){return e.concat(t).map((function(e){return n(e,i)}))}function s(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function o(e,t){try{return t in e}catch(e){return!1}}function a(e,i,c){(c=c||{}).arrayMerge=c.arrayMerge||r,c.isMergeableObject=c.isMergeableObject||t,c.cloneUnlessOtherwiseSpecified=n;var l=Array.isArray(i);return l===Array.isArray(e)?l?c.arrayMerge(e,i,c):function(e,t,i){var r={};return i.isMergeableObject(e)&&s(e).forEach((function(t){r[t]=n(e[t],i)})),s(t).forEach((function(s){(function(e,t){return o(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,s)||(o(e,s)&&i.isMergeableObject(t[s])?r[s]=function(e,t){if(!t.customMerge)return a;var i=t.customMerge(e);return"function"==typeof i?i:a}(s,i)(e[s],t[s],i):r[s]=n(t[s],i))})),r}(e,i,c):n(i,c)}a.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return a(e,i,t)}),{})};var c=a;e.exports=c},221:function(e,t,i){function n(e){return Array.isArray?Array.isArray(e):"[object Array]"===l(e)}function r(e){return"string"==typeof e}function s(e){return"number"==typeof e}function o(e){return"object"==typeof e}function a(e){return null!=e}function c(e){return!e.trim().length}function l(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}i.r(t),i.d(t,{default:function(){return R}});const h=Object.prototype.hasOwnProperty;class u{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach((e=>{let i=d(e);t+=i.weight,this._keys.push(i),this._keyMap[i.id]=i,t+=i.weight})),this._keys.forEach((e=>{e.weight/=t}))}get(e){return this._keyMap[e]}keys(){return this._keys}toJSON(){return JSON.stringify(this._keys)}}function d(e){let t=null,i=null,s=null,o=1,a=null;if(r(e)||n(e))s=e,t=p(e),i=f(e);else{if(!h.call(e,"name"))throw new Error("Missing name property in key");const n=e.name;if(s=n,h.call(e,"weight")&&(o=e.weight,o<=0))throw new Error((e=>`Property 'weight' in key '${e}' must be a positive integer`)(n));t=p(n),i=f(n),a=e.getFn}return{path:t,id:i,weight:o,src:s,getFn:a}}function p(e){return n(e)?e:e.split(".")}function f(e){return n(e)?e.join("."):e}var m={isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:(e,t)=>e.score===t.score?e.idx{if(a(e))if(t[u]){const d=e[t[u]];if(!a(d))return;if(u===t.length-1&&(r(d)||s(d)||function(e){return!0===e||!1===e||function(e){return o(e)&&null!==e}(e)&&"[object Boolean]"==l(e)}(d)))i.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;let t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(d));else if(n(d)){c=!0;for(let e=0,i=d.length;e{this._keysMap[e.id]=t}))}create(){!this.isCreated&&this.docs.length&&(this.isCreated=!0,r(this.docs[0])?this.docs.forEach(((e,t)=>{this._addString(e,t)})):this.docs.forEach(((e,t)=>{this._addObject(e,t)})),this.norm.clear())}add(e){const t=this.size();r(e)?this._addString(e,t):this._addObject(e,t)}removeAt(e){this.records.splice(e,1);for(let t=e,i=this.size();t{let o=t.getFn?t.getFn(e):this.getFn(e,t.path);if(a(o))if(n(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:i,value:s}=t.pop();if(a(s))if(r(s)&&!c(s)){let t={v:s,i:i,n:this.norm.get(s)};e.push(t)}else n(s)&&s.forEach(((e,i)=>{t.push({nestedArrIndex:i,value:e})}))}i.$[s]=e}else if(r(o)&&!c(o)){let e={v:o,n:this.norm.get(o)};i.$[s]=e}})),this.records.push(i)}toJSON(){return{keys:this.keys,records:this.records}}}function _(e,t,{getFn:i=m.getFn,fieldNormWeight:n=m.fieldNormWeight}={}){const r=new g({getFn:i,fieldNormWeight:n});return r.setKeys(e.map(d)),r.setSources(t),r.create(),r}function y(e,{errors:t=0,currentLocation:i=0,expectedLocation:n=0,distance:r=m.distance,ignoreLocation:s=m.ignoreLocation}={}){const o=t/e.length;if(s)return o;const a=Math.abs(n-i);return r?o+a/r:a?1:o}const E=32;function b(e){let t={};for(let i=0,n=e.length;i{this.chunks.push({pattern:e,alphabet:b(e),startIndex:t})},h=this.pattern.length;if(h>E){let e=0;const t=h%E,i=h-t;for(;e{const{isMatch:f,score:v,indices:g}=function(e,t,i,{location:n=m.location,distance:r=m.distance,threshold:s=m.threshold,findAllMatches:o=m.findAllMatches,minMatchCharLength:a=m.minMatchCharLength,includeMatches:c=m.includeMatches,ignoreLocation:l=m.ignoreLocation}={}){if(t.length>E)throw new Error("Pattern length exceeds max of 32.");const h=t.length,u=e.length,d=Math.max(0,Math.min(n,u));let p=s,f=d;const v=a>1||c,g=v?Array(u):[];let _;for(;(_=e.indexOf(t,f))>-1;){let e=y(t,{currentLocation:_,expectedLocation:d,distance:r,ignoreLocation:l});if(p=Math.min(e,p),f=_+h,v){let e=0;for(;e=c;s-=1){let o=s-1,a=i[e.charAt(o)];if(v&&(g[o]=+!!a),_[s]=(_[s+1]<<1|1)&a,n&&(_[s]|=(b[s+1]|b[s])<<1|1|b[s+1]),_[s]&I&&(S=y(t,{errors:n,currentLocation:o,expectedLocation:d,distance:r,ignoreLocation:l}),S<=p)){if(p=S,f=o,f<=d)break;c=Math.max(1,2*d-f)}}if(y(t,{errors:n+1,currentLocation:d,expectedLocation:d,distance:r,ignoreLocation:l})>p)break;b=_}const C={isMatch:f>=0,score:Math.max(.001,S)};if(v){const e=function(e=[],t=m.minMatchCharLength){let i=[],n=-1,r=-1,s=0;for(let o=e.length;s=t&&i.push([n,r]),n=-1)}return e[s-1]&&s-n>=t&&i.push([n,s-1]),i}(g,a);e.length?c&&(C.indices=e):C.isMatch=!1}return C}(e,t,d,{location:n+p,distance:r,threshold:s,findAllMatches:o,minMatchCharLength:a,includeMatches:i,ignoreLocation:c});f&&(u=!0),h+=v,f&&g&&(l=[...l,...g])}));let d={isMatch:u,score:u?h/this.chunks.length:1};return u&&i&&(d.indices=l),d}}class O{constructor(e){this.pattern=e}static isMultiMatch(e){return I(e,this.multiRegex)}static isSingleMatch(e){return I(e,this.singleRegex)}search(){}}function I(e,t){const i=e.match(t);return i?i[1]:null}class C extends O{constructor(e,{location:t=m.location,threshold:i=m.threshold,distance:n=m.distance,includeMatches:r=m.includeMatches,findAllMatches:s=m.findAllMatches,minMatchCharLength:o=m.minMatchCharLength,isCaseSensitive:a=m.isCaseSensitive,ignoreLocation:c=m.ignoreLocation}={}){super(e),this._bitapSearch=new S(e,{location:t,threshold:i,distance:n,includeMatches:r,findAllMatches:s,minMatchCharLength:o,isCaseSensitive:a,ignoreLocation:c})}static get type(){return"fuzzy"}static get multiRegex(){return/^"(.*)"$/}static get singleRegex(){return/^(.*)$/}search(e){return this._bitapSearch.searchIn(e)}}class T extends O{constructor(e){super(e)}static get type(){return"include"}static get multiRegex(){return/^'"(.*)"$/}static get singleRegex(){return/^'(.*)$/}search(e){let t,i=0;const n=[],r=this.pattern.length;for(;(t=e.indexOf(this.pattern,i))>-1;)i=t+r,n.push([t,i-1]);const s=!!n.length;return{isMatch:s,score:s?0:1,indices:n}}}const L=[class extends O{constructor(e){super(e)}static get type(){return"exact"}static get multiRegex(){return/^="(.*)"$/}static get singleRegex(){return/^=(.*)$/}search(e){const t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},T,class extends O{constructor(e){super(e)}static get type(){return"prefix-exact"}static get multiRegex(){return/^\^"(.*)"$/}static get singleRegex(){return/^\^(.*)$/}search(e){const t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},class extends O{constructor(e){super(e)}static get type(){return"inverse-prefix-exact"}static get multiRegex(){return/^!\^"(.*)"$/}static get singleRegex(){return/^!\^(.*)$/}search(e){const t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends O{constructor(e){super(e)}static get type(){return"inverse-suffix-exact"}static get multiRegex(){return/^!"(.*)"\$$/}static get singleRegex(){return/^!(.*)\$$/}search(e){const t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends O{constructor(e){super(e)}static get type(){return"suffix-exact"}static get multiRegex(){return/^"(.*)"\$$/}static get singleRegex(){return/^(.*)\$$/}search(e){const t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}},class extends O{constructor(e){super(e)}static get type(){return"inverse-exact"}static get multiRegex(){return/^!"(.*)"$/}static get singleRegex(){return/^!(.*)$/}search(e){const t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},C],w=L.length,A=/ +(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/,M=new Set([C.type,T.type]);const P=[];function x(e,t){for(let i=0,n=P.length;i!(!e.$and&&!e.$or),j=e=>({[N]:Object.keys(e).map((t=>({[t]:e[t]})))});function F(e,t,{auto:i=!0}={}){const s=e=>{let a=Object.keys(e);const c=(e=>!!e.$path)(e);if(!c&&a.length>1&&!D(e))return s(j(e));if((e=>!n(e)&&o(e)&&!D(e))(e)){const n=c?e.$path:a[0],s=c?e.$val:e[n];if(!r(s))throw new Error((e=>`Invalid value for key ${e}`)(n));const o={keyId:f(n),pattern:s};return i&&(o.searcher=x(s,t)),o}let l={children:[],operator:a[0]};return a.forEach((t=>{const i=e[t];n(i)&&i.forEach((e=>{l.children.push(s(e))}))})),l};return D(e)||(e=j(e)),s(e)}function k(e,t){const i=e.matches;t.matches=[],a(i)&&i.forEach((e=>{if(!a(e.indices)||!e.indices.length)return;const{indices:i,value:n}=e;let r={indices:i,value:n};e.key&&(r.key=e.key.src),e.idx>-1&&(r.refIndex=e.idx),t.matches.push(r)}))}function K(e,t){t.score=e.score}class R{constructor(e,t={},i){this.options={...m,...t},this.options.useExtendedSearch,this._keyStore=new u(this.options.keys),this.setCollection(e,i)}setCollection(e,t){if(this._docs=e,t&&!(t instanceof g))throw new Error("Incorrect 'index' type");this._myIndex=t||_(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}add(e){a(e)&&(this._docs.push(e),this._myIndex.add(e))}remove(e=(()=>!1)){const t=[];for(let i=0,n=this._docs.length;i{let i=1;e.matches.forEach((({key:e,norm:n,score:r})=>{const s=e?e.weight:null;i*=Math.pow(0===r&&s?Number.EPSILON:r,(s||1)*(t?1:n))})),e.score=i}))}(l,{ignoreFieldNorm:c}),o&&l.sort(a),s(t)&&t>-1&&(l=l.slice(0,t)),function(e,t,{includeMatches:i=m.includeMatches,includeScore:n=m.includeScore}={}){const r=[];return i&&r.push(k),n&&r.push(K),e.map((e=>{const{idx:i}=e,n={item:t[i],refIndex:i};return r.length&&r.forEach((t=>{t(e,n)})),n}))}(l,this._docs,{includeMatches:i,includeScore:n})}_searchStringList(e){const t=x(e,this.options),{records:i}=this._myIndex,n=[];return i.forEach((({v:e,i:i,n:r})=>{if(!a(e))return;const{isMatch:s,score:o,indices:c}=t.searchIn(e);s&&n.push({item:e,idx:i,matches:[{score:o,value:e,norm:r,indices:c}]})})),n}_searchLogical(e){const t=F(e,this.options),i=(e,t,n)=>{if(!e.children){const{keyId:i,searcher:r}=e,s=this._findMatches({key:this._keyStore.get(i),value:this._myIndex.getValueForItemAtKeyId(t,i),searcher:r});return s&&s.length?[{idx:n,item:t,matches:s}]:[]}const r=[];for(let s=0,o=e.children.length;s{if(a(e)){let o=i(t,e,n);o.length&&(r[n]||(r[n]={idx:n,item:e,matches:[]},s.push(r[n])),o.forEach((({matches:e})=>{r[n].matches.push(...e)})))}})),s}_searchObjectList(e){const t=x(e,this.options),{keys:i,records:n}=this._myIndex,r=[];return n.forEach((({$:e,i:n})=>{if(!a(e))return;let s=[];i.forEach(((i,n)=>{s.push(...this._findMatches({key:i,value:e[n],searcher:t}))})),s.length&&r.push({idx:n,item:e,matches:s})})),r}_findMatches({key:e,value:t,searcher:i}){if(!a(t))return[];let r=[];if(n(t))t.forEach((({v:t,i:n,n:s})=>{if(!a(t))return;const{isMatch:o,score:c,indices:l}=i.searchIn(t);o&&r.push({score:c,key:e,value:t,idx:n,norm:s,indices:l})}));else{const{v:n,n:s}=t,{isMatch:o,score:a,indices:c}=i.searchIn(n);o&&r.push({score:a,key:e,value:n,norm:s,indices:c})}return r}}R.version="6.6.2",R.createIndex=_,R.parseIndex=function(e,{getFn:t=m.getFn,fieldNormWeight:i=m.fieldNormWeight}={}){const{keys:n,records:r}=e,s=new g({getFn:t,fieldNormWeight:i});return s.setKeys(n),s.setIndexRecords(r),s},R.config=m,R.parseQuery=F,function(...e){P.push(...e)}(class{constructor(e,{isCaseSensitive:t=m.isCaseSensitive,includeMatches:i=m.includeMatches,minMatchCharLength:n=m.minMatchCharLength,ignoreLocation:r=m.ignoreLocation,findAllMatches:s=m.findAllMatches,location:o=m.location,threshold:a=m.threshold,distance:c=m.distance}={}){this.query=null,this.options={isCaseSensitive:t,includeMatches:i,minMatchCharLength:n,findAllMatches:s,ignoreLocation:r,location:o,threshold:a,distance:c},this.pattern=t?e:e.toLowerCase(),this.query=function(e,t={}){return e.split("|").map((e=>{let i=e.trim().split(A).filter((e=>e&&!!e.trim())),n=[];for(let e=0,r=i.length;e ",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:" ",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),("000"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n){var t;return function(){var a=this,i=arguments;clearTimeout(t),t=setTimeout((function(){return e.apply(a,i)}),n)}}var c=function(e){return e instanceof Array?e:[e]};function s(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function d(e,n,t){var a=window.document.createElement(e);return n=n||"",t=t||"",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){return n(e)?e:e.parentNode?f(e.parentNode,n):void 0}function m(e,n){var t=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d*"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function g(e){try{return"function"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var p=function(){},h=function(e,n,t){return t.months[n?"shorthand":"longhand"][e]},v={D:p,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours((e.getHours()>=12?12:0)+parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],"i").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours((e.getHours()>=12?12:0)+parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:p,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:p,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},D={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},w={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[w.w(e,n,t)]},F:function(e,n,t){return h(w.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(w.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return h(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split("").map((function(n,a,o){return w[n]&&"\\"!==o[a-1]?w[n](e,i,t):"\\"!==n?n:""})).join(""):t.formatDate(e,n,i)}},C=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,s=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var d=n||(t||a).dateFormat,u=String(e).trim();if("today"===u)l=new Date,i=!0;else if(t&&t.parseDate)l=t.parseDate(e,d);else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else{for(var f=void 0,m=[],g=0,p=0,h="";g=0?new Date:new Date(w.config.minDate.getTime()),t=E(w.config);n.setHours(t.hours,t.minutes,t.seconds,n.getMilliseconds()),w.selectedDates=[n],w.latestSelectedDateObj=n}void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var n="keydown"===e.type,t=g(e),a=t;void 0!==w.amPM&&t===w.amPM&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]);var i=parseFloat(a.getAttribute("min")),l=parseFloat(a.getAttribute("max")),c=parseFloat(a.getAttribute("step")),s=parseInt(a.value,10),d=e.delta||(n?38===e.which?1:-1:0),u=s+c*d;if(void 0!==a.value&&2===a.value.length){var f=a===w.hourElement,m=a===w.minuteElement;ul&&(u=a===w.hourElement?u-l-r(!w.amPM):i,m&&L(void 0,1,w.hourElement)),w.amPM&&f&&(1===c?u+s===23:Math.abs(u-s)>c)&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]),a.value=o(u)}}(e);var a=w._input.value;O(),ye(),w._input.value!==a&&w._debouncedChange()}function O(){if(void 0!==w.hourElement&&void 0!==w.minuteElement){var e,n,t=(parseInt(w.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(w.minuteElement.value,10)||0)%60,i=void 0!==w.secondElement?(parseInt(w.secondElement.value,10)||0)%60:0;void 0!==w.amPM&&(e=t,n=w.amPM.textContent,t=e%12+12*r(n===w.l10n.amPM[1]));var o=void 0!==w.config.minTime||w.config.minDate&&w.minDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.minDate,!0),l=void 0!==w.config.maxTime||w.config.maxDate&&w.maxDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.maxDate,!0);if(void 0!==w.config.maxTime&&void 0!==w.config.minTime&&w.config.minTime>w.config.maxTime){var c=y(w.config.minTime.getHours(),w.config.minTime.getMinutes(),w.config.minTime.getSeconds()),s=y(w.config.maxTime.getHours(),w.config.maxTime.getMinutes(),w.config.maxTime.getSeconds()),d=y(t,a,i);if(d>s&&d=12)]),void 0!==w.secondElement&&(w.secondElement.value=o(t)))}function N(e){var n=g(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&ee(t)}function P(e,n,t,a){return n instanceof Array?n.forEach((function(n){return P(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return P(e,n,t,a)})):(e.addEventListener(n,t,a),void w._handlers.push({remove:function(){return e.removeEventListener(n,t,a)}}))}function Y(){De("onChange")}function j(e,n){var t=void 0!==e?w.parseDate(e):w.latestSelectedDateObj||(w.config.minDate&&w.config.minDate>w.now?w.config.minDate:w.config.maxDate&&w.config.maxDate=0&&M(e,w.selectedDates[1])<=0)}(n)&&!be(n)&&o.classList.add("inRange"),w.weekNumbers&&1===w.config.showMonths&&"prevMonthDay"!==e&&a%7==6&&w.weekNumbers.insertAdjacentHTML("beforeend",""+w.config.getWeek(n)+" "),De("onDayCreate",o),o}function W(e){e.focus(),"range"===w.config.mode&&oe(e)}function B(e){for(var n=e>0?0:w.config.showMonths-1,t=e>0?w.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=w.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&ne(c.dateObj))return c}}function J(e,n){var t=k(),a=te(t||document.body),i=void 0!==e?e:a?t:void 0!==w.selectedDateElem&&te(w.selectedDateElem)?w.selectedDateElem:void 0!==w.todayDateElem&&te(w.todayDateElem)?w.todayDateElem:B(n>0?1:-1);void 0===i?w._input.focus():a?function(e,n){for(var t=-1===e.className.indexOf("Month")?e.dateObj.getMonth():w.currentMonth,a=n>0?w.config.showMonths:-1,i=n>0?1:-1,o=t-w.currentMonth;o!=a;o+=i)for(var r=w.daysContainer.children[o],l=t-w.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,s=l;s>=0&&s0?c:-1);s+=i){var d=r.children[s];if(-1===d.className.indexOf("hidden")&&ne(d.dateObj)&&Math.abs(e.$i-s)>=Math.abs(n))return W(d)}w.changeMonth(i),J(B(i),0)}(i,n):W(i)}function K(e,n){for(var t=(new Date(e,n,1).getDay()-w.l10n.firstDayOfWeek+7)%7,a=w.utils.getDaysInMonth((n-1+12)%12,e),i=w.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=w.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-t,u=0;s<=a;s++,u++)o.appendChild(R("flatpickr-day "+l,new Date(e,n-1,s),0,u));for(s=1;s<=i;s++,u++)o.appendChild(R("flatpickr-day",new Date(e,n,s),0,u));for(var f=i+1;f<=42-t&&(1===w.config.showMonths||u%7!=0);f++,u++)o.appendChild(R("flatpickr-day "+c,new Date(e,n+1,f%i),0,u));var m=d("div","dayContainer");return m.appendChild(o),m}function U(){if(void 0!==w.daysContainer){u(w.daysContainer),w.weekNumbers&&u(w.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||"dropdown"!==w.config.monthSelectorType)){var e=function(e){return!(void 0!==w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&ew.config.maxDate.getMonth())};w.monthsDropdownContainer.tabIndex=-1,w.monthsDropdownContainer.innerHTML="";for(var n=0;n<12;n++)if(e(n)){var t=d("option","flatpickr-monthDropdown-month");t.value=new Date(w.currentYear,n).getMonth().toString(),t.textContent=h(n,w.config.shorthandCurrentMonth,w.l10n),t.tabIndex=-1,w.currentMonth===n&&(t.selected=!0),w.monthsDropdownContainer.appendChild(t)}}}function $(){var e,n=d("div","flatpickr-month"),t=window.document.createDocumentFragment();w.config.showMonths>1||"static"===w.config.monthSelectorType?e=d("span","cur-month"):(w.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),w.monthsDropdownContainer.setAttribute("aria-label",w.l10n.monthAriaLabel),P(w.monthsDropdownContainer,"change",(function(e){var n=g(e),t=parseInt(n.value,10);w.changeMonth(t-w.currentMonth),De("onMonthChange")})),q(),e=w.monthsDropdownContainer);var a=m("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",w.l10n.yearAriaLabel),w.config.minDate&&i.setAttribute("min",w.config.minDate.getFullYear().toString()),w.config.maxDate&&(i.setAttribute("max",w.config.maxDate.getFullYear().toString()),i.disabled=!!w.config.minDate&&w.config.minDate.getFullYear()===w.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function V(){u(w.monthNav),w.monthNav.appendChild(w.prevMonthNav),w.config.showMonths&&(w.yearElements=[],w.monthElements=[]);for(var e=w.config.showMonths;e--;){var n=$();w.yearElements.push(n.yearElement),w.monthElements.push(n.monthElement),w.monthNav.appendChild(n.container)}w.monthNav.appendChild(w.nextMonthNav)}function z(){w.weekdayContainer?u(w.weekdayContainer):w.weekdayContainer=d("div","flatpickr-weekdays");for(var e=w.config.showMonths;e--;){var n=d("div","flatpickr-weekdaycontainer");w.weekdayContainer.appendChild(n)}return G(),w.weekdayContainer}function G(){if(w.weekdayContainer){var e=w.l10n.firstDayOfWeek,t=n(w.l10n.weekdays.shorthand);e>0&&e\n "+t.join("")+"\n \n "}}function Z(e,n){void 0===n&&(n=!0);var t=n?e:e-w.currentMonth;t<0&&!0===w._hidePrevMonthArrow||t>0&&!0===w._hideNextMonthArrow||(w.currentMonth+=t,(w.currentMonth<0||w.currentMonth>11)&&(w.currentYear+=w.currentMonth>11?1:-1,w.currentMonth=(w.currentMonth+12)%12,De("onYearChange"),q()),U(),De("onMonthChange"),Ce())}function Q(e){return w.calendarContainer.contains(e)}function X(e){if(w.isOpen&&!w.config.inline){var n=g(e),t=Q(n),a=!(n===w.input||n===w.altInput||w.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(w.input)||~e.path.indexOf(w.altInput)))&&!t&&!Q(e.relatedTarget),i=!w.config.ignoredFocusElements.some((function(e){return e.contains(n)}));a&&i&&(w.config.allowInput&&w.setDate(w._input.value,!1,w.config.altInput?w.config.altFormat:w.config.dateFormat),void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement&&""!==w.input.value&&void 0!==w.input.value&&_(),w.close(),w.config&&"range"===w.config.mode&&1===w.selectedDates.length&&w.clear(!1))}}function ee(e){if(!(!e||w.config.minDate&&ew.config.maxDate.getFullYear())){var n=e,t=w.currentYear!==n;w.currentYear=n||w.currentYear,w.config.maxDate&&w.currentYear===w.config.maxDate.getFullYear()?w.currentMonth=Math.min(w.config.maxDate.getMonth(),w.currentMonth):w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&(w.currentMonth=Math.max(w.config.minDate.getMonth(),w.currentMonth)),t&&(w.redraw(),De("onYearChange"),q())}}function ne(e,n){var t;void 0===n&&(n=!0);var a=w.parseDate(e,void 0,n);if(w.config.minDate&&a&&M(a,w.config.minDate,void 0!==n?n:!w.minDateHasTime)<0||w.config.maxDate&&a&&M(a,w.config.maxDate,void 0!==n?n:!w.maxDateHasTime)>0)return!1;if(!w.config.enable&&0===w.config.disable.length)return!0;if(void 0===a)return!1;for(var i=!!w.config.enable,o=null!==(t=w.config.enable)&&void 0!==t?t:w.config.disable,r=0,l=void 0;r=l.from.getTime()&&a.getTime()<=l.to.getTime())return i}return!i}function te(e){return void 0!==w.daysContainer&&(-1===e.className.indexOf("hidden")&&-1===e.className.indexOf("flatpickr-disabled")&&w.daysContainer.contains(e))}function ae(e){var n=e.target===w._input,t=w._input.value.trimEnd()!==Me();!n||!t||e.relatedTarget&&Q(e.relatedTarget)||w.setDate(w._input.value,!0,e.target===w.altInput?w.config.altFormat:w.config.dateFormat)}function ie(e){var n=g(e),t=w.config.wrap?p.contains(n):n===w._input,a=w.config.allowInput,i=w.isOpen&&(!a||!t),o=w.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return w.setDate(w._input.value,!0,n===w.altInput?w.config.altFormat:w.config.dateFormat),w.close(),n.blur();w.open()}else if(Q(n)||i||o){var r=!!w.timeContainer&&w.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),_(),fe()):me(e);break;case 27:e.preventDefault(),fe();break;case 8:case 46:t&&!w.config.allowInput&&(e.preventDefault(),w.clear());break;case 37:case 39:if(r||t)w.hourElement&&w.hourElement.focus();else{e.preventDefault();var l=k();if(void 0!==w.daysContainer&&(!1===a||l&&te(l))){var c=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),Z(c),J(B(1),0)):J(void 0,c)}}break;case 38:case 40:e.preventDefault();var s=40===e.keyCode?1:-1;w.daysContainer&&void 0!==n.$i||n===w.input||n===w.altInput?e.ctrlKey?(e.stopPropagation(),ee(w.currentYear-s),J(B(1),0)):r||J(void 0,7*s):n===w.currentYearElement?ee(w.currentYear-s):w.config.enableTime&&(!r&&w.hourElement&&w.hourElement.focus(),_(e),w._debouncedChange());break;case 9:if(r){var d=[w.hourElement,w.minuteElement,w.secondElement,w.amPM].concat(w.pluginElements).filter((function(e){return e})),u=d.indexOf(n);if(-1!==u){var f=d[u+(e.shiftKey?-1:1)];e.preventDefault(),(f||w._input).focus()}}else!w.config.noCalendar&&w.daysContainer&&w.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),w._input.focus())}}if(void 0!==w.amPM&&n===w.amPM)switch(e.key){case w.l10n.amPM[0].charAt(0):case w.l10n.amPM[0].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[0],O(),ye();break;case w.l10n.amPM[1].charAt(0):case w.l10n.amPM[1].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[1],O(),ye()}(t||Q(n))&&De("onKeyDown",e)}function oe(e,n){if(void 0===n&&(n="flatpickr-day"),1===w.selectedDates.length&&(!e||e.classList.contains(n)&&!e.classList.contains("flatpickr-disabled"))){for(var t=e?e.dateObj.getTime():w.days.firstElementChild.dateObj.getTime(),a=w.parseDate(w.selectedDates[0],void 0,!0).getTime(),i=Math.min(t,w.selectedDates[0].getTime()),o=Math.max(t,w.selectedDates[0].getTime()),r=!1,l=0,c=0,s=i;si&&sl)?l=s:s>a&&(!c||s ."+n)).forEach((function(n){var i,o,s,d=n.dateObj.getTime(),u=l>0&&d0&&d>c;if(u)return n.classList.add("notAllowed"),void["inRange","startRange","endRange"].forEach((function(e){n.classList.remove(e)}));r&&!u||(["startRange","inRange","endRange","notAllowed"].forEach((function(e){n.classList.remove(e)})),void 0!==e&&(e.classList.add(t<=w.selectedDates[0].getTime()?"startRange":"endRange"),at&&d===a&&n.classList.add("endRange"),d>=l&&(0===c||d<=c)&&(o=a,s=t,(i=d)>Math.min(o,s)&&i0||t.getMinutes()>0||t.getSeconds()>0),w.selectedDates&&(w.selectedDates=w.selectedDates.filter((function(e){return ne(e)})),w.selectedDates.length||"min"!==e||F(t),ye()),w.daysContainer&&(ue(),void 0!==t?w.currentYearElement[e]=t.getFullYear().toString():w.currentYearElement.removeAttribute(e),w.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function ce(){return w.config.wrap?p.querySelector("[data-input]"):p}function se(){"object"!=typeof w.config.locale&&void 0===I.l10ns[w.config.locale]&&w.config.errorHandler(new Error("flatpickr: invalid locale "+w.config.locale)),w.l10n=e(e({},I.l10ns.default),"object"==typeof w.config.locale?w.config.locale:"default"!==w.config.locale?I.l10ns[w.config.locale]:void 0),D.D="("+w.l10n.weekdays.shorthand.join("|")+")",D.l="("+w.l10n.weekdays.longhand.join("|")+")",D.M="("+w.l10n.months.shorthand.join("|")+")",D.F="("+w.l10n.months.longhand.join("|")+")",D.K="("+w.l10n.amPM[0]+"|"+w.l10n.amPM[1]+"|"+w.l10n.amPM[0].toLowerCase()+"|"+w.l10n.amPM[1].toLowerCase()+")",void 0===e(e({},v),JSON.parse(JSON.stringify(p.dataset||{}))).time_24hr&&void 0===I.defaultConfig.time_24hr&&(w.config.time_24hr=w.l10n.time_24hr),w.formatDate=b(w),w.parseDate=C({config:w.config,l10n:w.l10n})}function de(e){if("function"!=typeof w.config.position){if(void 0!==w.calendarContainer){De("onPreCalendarPosition");var n=e||w._positionElement,t=Array.prototype.reduce.call(w.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=w.calendarContainer.offsetWidth,i=w.config.position.split(" "),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,d="above"===o||"below"!==o&&ct,u=window.pageYOffset+l.top+(d?-t-2:n.offsetHeight+2);if(s(w.calendarContainer,"arrowTop",!d),s(w.calendarContainer,"arrowBottom",d),!w.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;"center"===r?(f-=(a-l.width)/2,m=!0):"right"===r&&(f-=a-l.width,g=!0),s(w.calendarContainer,"arrowLeft",!m&&!g),s(w.calendarContainer,"arrowCenter",m),s(w.calendarContainer,"arrowRight",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(s(w.calendarContainer,"rightMost",h),!w.config.static)if(w.calendarContainer.style.top=u+"px",h)if(v){var D=function(){for(var e=null,n=0;nw.currentMonth+w.config.showMonths-1)&&"range"!==w.config.mode;if(w.selectedDateElem=t,"single"===w.config.mode)w.selectedDates=[a];else if("multiple"===w.config.mode){var o=be(a);o?w.selectedDates.splice(parseInt(o),1):w.selectedDates.push(a)}else"range"===w.config.mode&&(2===w.selectedDates.length&&w.clear(!1,!1),w.latestSelectedDateObj=a,w.selectedDates.push(a),0!==M(a,w.selectedDates[0],!0)&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(O(),i){var r=w.currentYear!==a.getFullYear();w.currentYear=a.getFullYear(),w.currentMonth=a.getMonth(),r&&(De("onYearChange"),q()),De("onMonthChange")}if(Ce(),U(),ye(),i||"range"===w.config.mode||1!==w.config.showMonths?void 0!==w.selectedDateElem&&void 0===w.hourElement&&w.selectedDateElem&&w.selectedDateElem.focus():W(t),void 0!==w.hourElement&&void 0!==w.hourElement&&w.hourElement.focus(),w.config.closeOnSelect){var l="single"===w.config.mode&&!w.config.enableTime,c="range"===w.config.mode&&2===w.selectedDates.length&&!w.config.enableTime;(l||c)&&fe()}Y()}}w.parseDate=C({config:w.config,l10n:w.l10n}),w._handlers=[],w.pluginElements=[],w.loadedPlugins=[],w._bind=P,w._setHoursFromDate=F,w._positionCalendar=de,w.changeMonth=Z,w.changeYear=ee,w.clear=function(e,n){void 0===e&&(e=!0);void 0===n&&(n=!0);w.input.value="",void 0!==w.altInput&&(w.altInput.value="");void 0!==w.mobileInput&&(w.mobileInput.value="");w.selectedDates=[],w.latestSelectedDateObj=void 0,!0===n&&(w.currentYear=w._initialDate.getFullYear(),w.currentMonth=w._initialDate.getMonth());if(!0===w.config.enableTime){var t=E(w.config),a=t.hours,i=t.minutes,o=t.seconds;A(a,i,o)}w.redraw(),e&&De("onChange")},w.close=function(){w.isOpen=!1,w.isMobile||(void 0!==w.calendarContainer&&w.calendarContainer.classList.remove("open"),void 0!==w._input&&w._input.classList.remove("active"));De("onClose")},w.onMouseOver=oe,w._createElement=d,w.createDay=R,w.destroy=function(){void 0!==w.config&&De("onDestroy");for(var e=w._handlers.length;e--;)w._handlers[e].remove();if(w._handlers=[],w.mobileInput)w.mobileInput.parentNode&&w.mobileInput.parentNode.removeChild(w.mobileInput),w.mobileInput=void 0;else if(w.calendarContainer&&w.calendarContainer.parentNode)if(w.config.static&&w.calendarContainer.parentNode){var n=w.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else w.calendarContainer.parentNode.removeChild(w.calendarContainer);w.altInput&&(w.input.type="text",w.altInput.parentNode&&w.altInput.parentNode.removeChild(w.altInput),delete w.altInput);w.input&&(w.input.type=w.input._type,w.input.classList.remove("flatpickr-input"),w.input.removeAttribute("readonly"));["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete w[e]}catch(e){}}))},w.isEnabled=ne,w.jumpToDate=j,w.updateValue=ye,w.open=function(e,n){void 0===n&&(n=w._positionElement);if(!0===w.isMobile){if(e){e.preventDefault();var t=g(e);t&&t.blur()}return void 0!==w.mobileInput&&(w.mobileInput.focus(),w.mobileInput.click()),void De("onOpen")}if(w._input.disabled||w.config.inline)return;var a=w.isOpen;w.isOpen=!0,a||(w.calendarContainer.classList.add("open"),w._input.classList.add("active"),De("onOpen"),de(n));!0===w.config.enableTime&&!0===w.config.noCalendar&&(!1!==w.config.allowInput||void 0!==e&&w.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return w.hourElement.select()}),50))},w.redraw=ue,w.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(w.config,e),e)void 0!==ge[a]&&ge[a].forEach((function(e){return e()}));else w.config[e]=n,void 0!==ge[e]?ge[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(w.config[e]=c(n));w.redraw(),ye(!0)},w.setDate=function(e,n,t){void 0===n&&(n=!1);void 0===t&&(t=w.config.dateFormat);if(0!==e&&!e||e instanceof Array&&0===e.length)return w.clear(n);pe(e,t),w.latestSelectedDateObj=w.selectedDates[w.selectedDates.length-1],w.redraw(),j(void 0,n),F(),0===w.selectedDates.length&&w.clear(!1);ye(n),n&&De("onChange")},w.toggle=function(e){if(!0===w.isOpen)return w.close();w.open(e)};var ge={locale:[se,G],showMonths:[V,S,z],minDate:[j],maxDate:[j],positionElement:[ve],clickOpens:[function(){!0===w.config.clickOpens?(P(w._input,"focus",w.open),P(w._input,"click",w.open)):(w._input.removeEventListener("focus",w.open),w._input.removeEventListener("click",w.open))}]};function pe(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return w.parseDate(e,n)}));else if(e instanceof Date||"number"==typeof e)t=[w.parseDate(e,n)];else if("string"==typeof e)switch(w.config.mode){case"single":case"time":t=[w.parseDate(e,n)];break;case"multiple":t=e.split(w.config.conjunction).map((function(e){return w.parseDate(e,n)}));break;case"range":t=e.split(w.l10n.rangeSeparator).map((function(e){return w.parseDate(e,n)}))}else w.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));w.selectedDates=w.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&ne(e,!1)})),"range"===w.config.mode&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function he(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?w.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:w.parseDate(e.from,void 0),to:w.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function ve(){w._positionElement=w.config.positionElement||w._input}function De(e,n){if(void 0!==w.config){var t=w.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||"static"===w.config.monthSelectorType?w.monthElements[n].textContent=h(t.getMonth(),w.config.shorthandCurrentMonth,w.l10n)+" ":w.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),w._hidePrevMonthArrow=void 0!==w.config.minDate&&(w.currentYear===w.config.minDate.getFullYear()?w.currentMonth<=w.config.minDate.getMonth():w.currentYearw.config.maxDate.getMonth():w.currentYear>w.config.maxDate.getFullYear()))}function Me(e){var n=e||(w.config.altInput?w.config.altFormat:w.config.dateFormat);return w.selectedDates.map((function(e){return w.formatDate(e,n)})).filter((function(e,n,t){return"range"!==w.config.mode||w.config.enableTime||t.indexOf(e)===n})).join("range"!==w.config.mode?w.config.conjunction:w.l10n.rangeSeparator)}function ye(e){void 0===e&&(e=!0),void 0!==w.mobileInput&&w.mobileFormatStr&&(w.mobileInput.value=void 0!==w.latestSelectedDateObj?w.formatDate(w.latestSelectedDateObj,w.mobileFormatStr):""),w.input.value=Me(w.config.dateFormat),void 0!==w.altInput&&(w.altInput.value=Me(w.config.altFormat)),!1!==e&&De("onValueUpdate")}function xe(e){var n=g(e),t=w.prevMonthNav.contains(n),a=w.nextMonthNav.contains(n);t||a?Z(t?-1:1):w.yearElements.indexOf(n)>=0?n.select():n.classList.contains("arrowUp")?w.changeYear(w.currentYear+1):n.classList.contains("arrowDown")&&w.changeYear(w.currentYear-1)}return function(){w.element=w.input=p,w.isOpen=!1,function(){var n=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e(e({},JSON.parse(JSON.stringify(p.dataset||{}))),v),o={};w.config.parseDate=i.parseDate,w.config.formatDate=i.formatDate,Object.defineProperty(w.config,"enable",{get:function(){return w.config._enable},set:function(e){w.config._enable=he(e)}}),Object.defineProperty(w.config,"disable",{get:function(){return w.config._disable},set:function(e){w.config._disable=he(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=I.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):l+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var s=I.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):s+" h:i"+(i.enableSeconds?":S":"")+" K"}Object.defineProperty(w.config,"minDate",{get:function(){return w.config._minDate},set:le("min")}),Object.defineProperty(w.config,"maxDate",{get:function(){return w.config._maxDate},set:le("max")});var d=function(e){return function(n){w.config["min"===e?"_minTime":"_maxTime"]=w.parseDate(n,"H:i:S")}};Object.defineProperty(w.config,"minTime",{get:function(){return w.config._minTime},set:d("min")}),Object.defineProperty(w.config,"maxTime",{get:function(){return w.config._maxTime},set:d("max")}),"time"===i.mode&&(w.config.noCalendar=!0,w.config.enableTime=!0);Object.assign(w.config,o,i);for(var u=0;u-1?w.config[m]=c(f[m]).map(T).concat(w.config[m]):void 0===i[m]&&(w.config[m]=f[m])}i.altInputClass||(w.config.altInputClass=ce().className+" "+w.config.altInputClass);De("onParseConfig")}(),se(),function(){if(w.input=ce(),!w.input)return void w.config.errorHandler(new Error("Invalid input element specified"));w.input._type=w.input.type,w.input.type="text",w.input.classList.add("flatpickr-input"),w._input=w.input,w.config.altInput&&(w.altInput=d(w.input.nodeName,w.config.altInputClass),w._input=w.altInput,w.altInput.placeholder=w.input.placeholder,w.altInput.disabled=w.input.disabled,w.altInput.required=w.input.required,w.altInput.tabIndex=w.input.tabIndex,w.altInput.type="text",w.input.setAttribute("type","hidden"),!w.config.static&&w.input.parentNode&&w.input.parentNode.insertBefore(w.altInput,w.input.nextSibling));w.config.allowInput||w._input.setAttribute("readonly","readonly");ve()}(),function(){w.selectedDates=[],w.now=w.parseDate(w.config.now)||new Date;var e=w.config.defaultDate||("INPUT"!==w.input.nodeName&&"TEXTAREA"!==w.input.nodeName||!w.input.placeholder||w.input.value!==w.input.placeholder?w.input.value:null);e&&pe(e,w.config.dateFormat);w._initialDate=w.selectedDates.length>0?w.selectedDates[0]:w.config.minDate&&w.config.minDate.getTime()>w.now.getTime()?w.config.minDate:w.config.maxDate&&w.config.maxDate.getTime()0&&(w.latestSelectedDateObj=w.selectedDates[0]);void 0!==w.config.minTime&&(w.config.minTime=w.parseDate(w.config.minTime,"H:i"));void 0!==w.config.maxTime&&(w.config.maxTime=w.parseDate(w.config.maxTime,"H:i"));w.minDateHasTime=!!w.config.minDate&&(w.config.minDate.getHours()>0||w.config.minDate.getMinutes()>0||w.config.minDate.getSeconds()>0),w.maxDateHasTime=!!w.config.maxDate&&(w.config.maxDate.getHours()>0||w.config.maxDate.getMinutes()>0||w.config.maxDate.getSeconds()>0)}(),w.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=w.currentMonth),void 0===n&&(n=w.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:w.l10n.daysInMonth[e]}},w.isMobile||function(){var e=window.document.createDocumentFragment();if(w.calendarContainer=d("div","flatpickr-calendar"),w.calendarContainer.tabIndex=-1,!w.config.noCalendar){if(e.appendChild((w.monthNav=d("div","flatpickr-months"),w.yearElements=[],w.monthElements=[],w.prevMonthNav=d("span","flatpickr-prev-month"),w.prevMonthNav.innerHTML=w.config.prevArrow,w.nextMonthNav=d("span","flatpickr-next-month"),w.nextMonthNav.innerHTML=w.config.nextArrow,V(),Object.defineProperty(w,"_hidePrevMonthArrow",{get:function(){return w.__hidePrevMonthArrow},set:function(e){w.__hidePrevMonthArrow!==e&&(s(w.prevMonthNav,"flatpickr-disabled",e),w.__hidePrevMonthArrow=e)}}),Object.defineProperty(w,"_hideNextMonthArrow",{get:function(){return w.__hideNextMonthArrow},set:function(e){w.__hideNextMonthArrow!==e&&(s(w.nextMonthNav,"flatpickr-disabled",e),w.__hideNextMonthArrow=e)}}),w.currentYearElement=w.yearElements[0],Ce(),w.monthNav)),w.innerContainer=d("div","flatpickr-innerContainer"),w.config.weekNumbers){var n=function(){w.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",w.l10n.weekAbbreviation));var n=d("div","flatpickr-weeks");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;w.innerContainer.appendChild(t),w.weekNumbers=a,w.weekWrapper=t}w.rContainer=d("div","flatpickr-rContainer"),w.rContainer.appendChild(z()),w.daysContainer||(w.daysContainer=d("div","flatpickr-days"),w.daysContainer.tabIndex=-1),U(),w.rContainer.appendChild(w.daysContainer),w.innerContainer.appendChild(w.rContainer),e.appendChild(w.innerContainer)}w.config.enableTime&&e.appendChild(function(){w.calendarContainer.classList.add("hasTime"),w.config.noCalendar&&w.calendarContainer.classList.add("noCalendar");var e=E(w.config);w.timeContainer=d("div","flatpickr-time"),w.timeContainer.tabIndex=-1;var n=d("span","flatpickr-time-separator",":"),t=m("flatpickr-hour",{"aria-label":w.l10n.hourAriaLabel});w.hourElement=t.getElementsByTagName("input")[0];var a=m("flatpickr-minute",{"aria-label":w.l10n.minuteAriaLabel});w.minuteElement=a.getElementsByTagName("input")[0],w.hourElement.tabIndex=w.minuteElement.tabIndex=-1,w.hourElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getHours():w.config.time_24hr?e.hours:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(e.hours)),w.minuteElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getMinutes():e.minutes),w.hourElement.setAttribute("step",w.config.hourIncrement.toString()),w.minuteElement.setAttribute("step",w.config.minuteIncrement.toString()),w.hourElement.setAttribute("min",w.config.time_24hr?"0":"1"),w.hourElement.setAttribute("max",w.config.time_24hr?"23":"12"),w.hourElement.setAttribute("maxlength","2"),w.minuteElement.setAttribute("min","0"),w.minuteElement.setAttribute("max","59"),w.minuteElement.setAttribute("maxlength","2"),w.timeContainer.appendChild(t),w.timeContainer.appendChild(n),w.timeContainer.appendChild(a),w.config.time_24hr&&w.timeContainer.classList.add("time24hr");if(w.config.enableSeconds){w.timeContainer.classList.add("hasSeconds");var i=m("flatpickr-second");w.secondElement=i.getElementsByTagName("input")[0],w.secondElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getSeconds():e.seconds),w.secondElement.setAttribute("step",w.minuteElement.getAttribute("step")),w.secondElement.setAttribute("min","0"),w.secondElement.setAttribute("max","59"),w.secondElement.setAttribute("maxlength","2"),w.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),w.timeContainer.appendChild(i)}w.config.time_24hr||(w.amPM=d("span","flatpickr-am-pm",w.l10n.amPM[r((w.latestSelectedDateObj?w.hourElement.value:w.config.defaultHour)>11)]),w.amPM.title=w.l10n.toggleTitle,w.amPM.tabIndex=-1,w.timeContainer.appendChild(w.amPM));return w.timeContainer}());s(w.calendarContainer,"rangeMode","range"===w.config.mode),s(w.calendarContainer,"animate",!0===w.config.animate),s(w.calendarContainer,"multiMonth",w.config.showMonths>1),w.calendarContainer.appendChild(e);var i=void 0!==w.config.appendTo&&void 0!==w.config.appendTo.nodeType;if((w.config.inline||w.config.static)&&(w.calendarContainer.classList.add(w.config.inline?"inline":"static"),w.config.inline&&(!i&&w.element.parentNode?w.element.parentNode.insertBefore(w.calendarContainer,w._input.nextSibling):void 0!==w.config.appendTo&&w.config.appendTo.appendChild(w.calendarContainer)),w.config.static)){var l=d("div","flatpickr-wrapper");w.element.parentNode&&w.element.parentNode.insertBefore(l,w.element),l.appendChild(w.element),w.altInput&&l.appendChild(w.altInput),l.appendChild(w.calendarContainer)}w.config.static||w.config.inline||(void 0!==w.config.appendTo?w.config.appendTo:window.document.body).appendChild(w.calendarContainer)}(),function(){w.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(w.element.querySelectorAll("[data-"+e+"]"),(function(n){return P(n,"click",w[e])}))}));if(w.isMobile)return void function(){var e=w.config.enableTime?w.config.noCalendar?"time":"datetime-local":"date";w.mobileInput=d("input",w.input.className+" flatpickr-mobile"),w.mobileInput.tabIndex=1,w.mobileInput.type=e,w.mobileInput.disabled=w.input.disabled,w.mobileInput.required=w.input.required,w.mobileInput.placeholder=w.input.placeholder,w.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",w.selectedDates.length>0&&(w.mobileInput.defaultValue=w.mobileInput.value=w.formatDate(w.selectedDates[0],w.mobileFormatStr));w.config.minDate&&(w.mobileInput.min=w.formatDate(w.config.minDate,"Y-m-d"));w.config.maxDate&&(w.mobileInput.max=w.formatDate(w.config.maxDate,"Y-m-d"));w.input.getAttribute("step")&&(w.mobileInput.step=String(w.input.getAttribute("step")));w.input.type="hidden",void 0!==w.altInput&&(w.altInput.type="hidden");try{w.input.parentNode&&w.input.parentNode.insertBefore(w.mobileInput,w.input.nextSibling)}catch(e){}P(w.mobileInput,"change",(function(e){w.setDate(g(e).value,!1,w.mobileFormatStr),De("onChange"),De("onClose")}))}();var e=l(re,50);w._debouncedChange=l(Y,300),w.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&P(w.daysContainer,"mouseover",(function(e){"range"===w.config.mode&&oe(g(e))}));P(w._input,"keydown",ie),void 0!==w.calendarContainer&&P(w.calendarContainer,"keydown",ie);w.config.inline||w.config.static||P(window,"resize",e);void 0!==window.ontouchstart?P(window.document,"touchstart",X):P(window.document,"mousedown",X);P(window.document,"focus",X,{capture:!0}),!0===w.config.clickOpens&&(P(w._input,"focus",w.open),P(w._input,"click",w.open));void 0!==w.daysContainer&&(P(w.monthNav,"click",xe),P(w.monthNav,["keyup","increment"],N),P(w.daysContainer,"click",me));if(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement){var n=function(e){return g(e).select()};P(w.timeContainer,["increment"],_),P(w.timeContainer,"blur",_,{capture:!0}),P(w.timeContainer,"click",H),P([w.hourElement,w.minuteElement],["focus","click"],n),void 0!==w.secondElement&&P(w.secondElement,"focus",(function(){return w.secondElement&&w.secondElement.select()})),void 0!==w.amPM&&P(w.amPM,"click",(function(e){_(e)}))}w.config.allowInput&&P(w._input,"blur",ae)}(),(w.selectedDates.length||w.config.noCalendar)&&(w.config.enableTime&&F(w.config.noCalendar?w.latestSelectedDateObj:void 0),ye(!1)),S();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!w.isMobile&&n&&de(),De("onReady")}(),w}function T(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;it.length)&&(n=t.length);for(var e=0,r=new Array(n);e=t.length?{done:!0}:{done:!1,value:t[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var l;!function(t){t[t.Init=0]="Init",t[t.Loading=1]="Loading",t[t.Loaded=2]="Loaded",t[t.Rendered=3]="Rendered",t[t.Error=4]="Error"}(l||(l={}));var c,f,p,d,h,_,m,v={},g=[],y=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;function b(t,n){for(var e in n)t[e]=n[e];return t}function w(t){var n=t.parentNode;n&&n.removeChild(t)}function x(t,n,e){var r,o,i,u={};for(i in n)"key"==i?r=n[i]:"ref"==i?o=n[i]:u[i]=n[i];if(arguments.length>2&&(u.children=arguments.length>3?c.call(arguments,2):e),"function"==typeof t&&null!=t.defaultProps)for(i in t.defaultProps)void 0===u[i]&&(u[i]=t.defaultProps[i]);return k(t,u,r,o,null)}function k(t,n,e,r,o){var i={type:t,props:n,key:e,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==o?++p:o};return null==o&&null!=f.vnode&&f.vnode(i),i}function S(t){return t.children}function N(t,n){this.props=t,this.context=n}function P(t,n){if(null==n)return t.__?P(t.__,t.__.__k.indexOf(t)+1):null;for(var e;n0?k(d.type,d.props,d.key,d.ref?d.ref:null,d.__v):d)){if(d.__=e,d.__b=e.__b+1,null===(p=y[c])||p&&d.key==p.key&&d.type===p.type)y[c]=void 0;else for(f=0;f0&&(this.callbacks[e].forEach(function(t){return t.apply(void 0,[].slice.call(n,1))}),!0)},t}();!function(t){t[t.Initiator=0]="Initiator",t[t.ServerFilter=1]="ServerFilter",t[t.ServerSort=2]="ServerSort",t[t.ServerLimit=3]="ServerLimit",t[t.Extractor=4]="Extractor",t[t.Transformer=5]="Transformer",t[t.Filter=6]="Filter",t[t.Sort=7]="Sort",t[t.Limit=8]="Limit"}(K||(K={}));var Y=/*#__PURE__*/function(t){function n(n){var e;return(e=t.call(this)||this).id=void 0,e._props=void 0,e._props={},e.id=z(),n&&e.setProps(n),e}o(n,t);var r=n.prototype;return r.process=function(){var t=[].slice.call(arguments);this.validateProps instanceof Function&&this.validateProps.apply(this,t),this.emit.apply(this,["beforeProcess"].concat(t));var n=this._process.apply(this,t);return this.emit.apply(this,["afterProcess"].concat(t)),n},r.setProps=function(t){return Object.assign(this._props,t),this.emit("propsUpdated",this),this},e(n,[{key:"props",get:function(){return this._props}}]),n}(Q),tt=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){return this.props.keyword?(n=String(this.props.keyword).trim(),e=this.props.columns,r=this.props.ignoreHiddenColumns,o=t,i=this.props.selector,n=n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),new J(o.rows.filter(function(t,o){return t.cells.some(function(t,u){if(!t)return!1;if(r&&e&&e[u]&&"object"==typeof e[u]&&e[u].hidden)return!1;var s="";if("function"==typeof i)s=i(t.data,o,u);else if("object"==typeof t.data){var a=t.data;a&&a.props&&a.props.content&&(s=a.props.content)}else s=String(t.data);return new RegExp(n,"gi").test(s)})}))):t;var n,e,r,o,i},e(n,[{key:"type",get:function(){return K.Filter}}]),n}(Y);function nt(){var t="gridjs";return""+t+[].slice.call(arguments).reduce(function(t,n){return t+"-"+n},"")}function et(){return[].slice.call(arguments).map(function(t){return t?t.toString():""}).filter(function(t){return t}).reduce(function(t,n){return(t||"")+" "+n},"").trim()}var rt,ot,it,ut,st=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){if(!this.props.keyword)return t;var n={};return this.props.url&&(n.url=this.props.url(t.url,this.props.keyword)),this.props.body&&(n.body=this.props.body(t.body,this.props.keyword)),r({},t,n)},e(n,[{key:"type",get:function(){return K.ServerFilter}}]),n}(Y),at=0,lt=[],ct=[],ft=f.__b,pt=f.__r,dt=f.diffed,ht=f.__c,_t=f.unmount;function mt(t,n){f.__h&&f.__h(ot,t,at||n),at=0;var e=ot.__H||(ot.__H={__:[],__h:[]});return t>=e.__.length&&e.__.push({__V:ct}),e.__[t]}function vt(t){return at=1,function(t,n,e){var r=mt(rt++,2);if(r.t=t,!r.__c&&(r.__=[Ct(void 0,n),function(t){var n=r.__N?r.__N[0]:r.__[0],e=r.t(n,t);n!==e&&(r.__N=[e,r.__[1]],r.__c.setState({}))}],r.__c=ot,!ot.u)){ot.u=!0;var o=ot.shouldComponentUpdate;ot.shouldComponentUpdate=function(t,n,e){if(!r.__c.__H)return!0;var i=r.__c.__H.__.filter(function(t){return t.__c});if(i.every(function(t){return!t.__N}))return!o||o.call(this,t,n,e);var u=!1;return i.forEach(function(t){if(t.__N){var n=t.__[0];t.__=t.__N,t.__N=void 0,n!==t.__[0]&&(u=!0)}}),!(!u&&r.__c.props===t)&&(!o||o.call(this,t,n,e))}}return r.__N||r.__}(Ct,t)}function gt(t,n){var e=mt(rt++,3);!f.__s&&Pt(e.__H,n)&&(e.__=t,e.i=n,ot.__H.__h.push(e))}function yt(t){return at=5,bt(function(){return{current:t}},[])}function bt(t,n){var e=mt(rt++,7);return Pt(e.__H,n)?(e.__V=t(),e.i=n,e.__h=t,e.__V):e.__}function wt(){for(var t;t=lt.shift();)if(t.__P&&t.__H)try{t.__H.__h.forEach(St),t.__H.__h.forEach(Nt),t.__H.__h=[]}catch(n){t.__H.__h=[],f.__e(n,t.__v)}}f.__b=function(t){ot=null,ft&&ft(t)},f.__r=function(t){pt&&pt(t),rt=0;var n=(ot=t.__c).__H;n&&(it===ot?(n.__h=[],ot.__h=[],n.__.forEach(function(t){t.__N&&(t.__=t.__N),t.__V=ct,t.__N=t.i=void 0})):(n.__h.forEach(St),n.__h.forEach(Nt),n.__h=[])),it=ot},f.diffed=function(t){dt&&dt(t);var n=t.__c;n&&n.__H&&(n.__H.__h.length&&(1!==lt.push(n)&&ut===f.requestAnimationFrame||((ut=f.requestAnimationFrame)||kt)(wt)),n.__H.__.forEach(function(t){t.i&&(t.__H=t.i),t.__V!==ct&&(t.__=t.__V),t.i=void 0,t.__V=ct})),it=ot=null},f.__c=function(t,n){n.some(function(t){try{t.__h.forEach(St),t.__h=t.__h.filter(function(t){return!t.__||Nt(t)})}catch(e){n.some(function(t){t.__h&&(t.__h=[])}),n=[],f.__e(e,t.__v)}}),ht&&ht(t,n)},f.unmount=function(t){_t&&_t(t);var n,e=t.__c;e&&e.__H&&(e.__H.__.forEach(function(t){try{St(t)}catch(t){n=t}}),e.__H=void 0,n&&f.__e(n,e.__v))};var xt="function"==typeof requestAnimationFrame;function kt(t){var n,e=function(){clearTimeout(r),xt&&cancelAnimationFrame(n),setTimeout(t)},r=setTimeout(e,100);xt&&(n=requestAnimationFrame(e))}function St(t){var n=ot,e=t.__c;"function"==typeof e&&(t.__c=void 0,e()),ot=n}function Nt(t){var n=ot;t.__c=t.__(),ot=n}function Pt(t,n){return!t||t.length!==n.length||n.some(function(n,e){return n!==t[e]})}function Ct(t,n){return"function"==typeof n?n(t):n}function Et(){return function(t){var n=ot.context[t.__c],e=mt(rt++,9);return e.c=t,n?(null==e.__&&(e.__=!0,n.sub(ot)),n.props.value):t.__}(cn)}var Tt={search:{placeholder:"Type a keyword..."},sort:{sortAsc:"Sort column ascending",sortDesc:"Sort column descending"},pagination:{previous:"Previous",next:"Next",navigate:function(t,n){return"Page "+t+" of "+n},page:function(t){return"Page "+t},showing:"Showing",of:"of",to:"to",results:"results"},loading:"Loading...",noRecordsFound:"No matching records found",error:"An error happened while fetching the data"},It=/*#__PURE__*/function(){function t(t){this._language=void 0,this._defaultLanguage=void 0,this._language=t,this._defaultLanguage=Tt}var n=t.prototype;return n.getString=function(t,n){if(!n||!t)return null;var e=t.split("."),r=e[0];if(n[r]){var o=n[r];return"string"==typeof o?function(){return o}:"function"==typeof o?o:this.getString(e.slice(1).join("."),o)}return null},n.translate=function(t){var n,e=this.getString(t,this._language);return(n=e||this.getString(t,this._defaultLanguage))?n.apply(void 0,[].slice.call(arguments,1)):t},t}();function Lt(){var t=Et();return function(n){var e;return(e=t.translator).translate.apply(e,[n].concat([].slice.call(arguments,1)))}}var At=function(t){return function(n){return r({},n,{search:{keyword:t}})}};function Ht(){return Et().store}function jt(t){var n=Ht(),e=vt(t(n.getState())),r=e[0],o=e[1];return gt(function(){return n.subscribe(function(){var e=t(n.getState());r!==e&&o(e)})},[]),r}function Dt(){var t,n=vt(void 0),e=n[0],r=n[1],o=Et(),i=o.search,u=Lt(),s=Ht().dispatch,a=jt(function(t){return t.search});gt(function(){e&&e.setProps({keyword:null==a?void 0:a.keyword})},[a,e]),gt(function(){r(i.server?new st({keyword:i.keyword,url:i.server.url,body:i.server.body}):new tt({keyword:i.keyword,columns:o.header&&o.header.columns,ignoreHiddenColumns:i.ignoreHiddenColumns||void 0===i.ignoreHiddenColumns,selector:i.selector})),i.keyword&&s(At(i.keyword))},[i]),gt(function(){return o.pipeline.register(e),function(){return o.pipeline.unregister(e)}},[o,e]);var l,c,f,p=function(t,n){return at=8,bt(function(){return t},n)}((l=function(t){t.target instanceof HTMLInputElement&&s(At(t.target.value))},c=e instanceof st?i.debounceTimeout||250:0,function(){var t=arguments;return new Promise(function(n){f&&clearTimeout(f),f=setTimeout(function(){return n(l.apply(void 0,[].slice.call(t)))},c)})}),[i,e]);return x("div",{className:nt(et("search",null==(t=o.className)?void 0:t.search))},x("input",{type:"search",placeholder:u("search.placeholder"),"aria-label":u("search.placeholder"),onInput:p,className:et(nt("input"),nt("search","input")),value:(null==a?void 0:a.keyword)||""}))}var Mt=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}o(n,t);var r=n.prototype;return r.validateProps=function(){if(isNaN(Number(this.props.limit))||isNaN(Number(this.props.page)))throw Error("Invalid parameters passed")},r._process=function(t){var n=this.props.page;return new J(t.rows.slice(n*this.props.limit,(n+1)*this.props.limit))},e(n,[{key:"type",get:function(){return K.Limit}}]),n}(Y),Ft=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){var n={};return this.props.url&&(n.url=this.props.url(t.url,this.props.page,this.props.limit)),this.props.body&&(n.body=this.props.body(t.body,this.props.page,this.props.limit)),r({},t,n)},e(n,[{key:"type",get:function(){return K.ServerLimit}}]),n}(Y);function Rt(){var t=Et(),n=t.pagination,e=n.server,r=n.summary,o=void 0===r||r,i=n.nextButton,u=void 0===i||i,s=n.prevButton,a=void 0===s||s,l=n.buttonsCount,c=void 0===l?3:l,f=n.limit,p=void 0===f?10:f,d=n.page,h=void 0===d?0:d,_=n.resetPageOnUpdate,m=void 0===_||_,v=yt(null),g=vt(h),y=g[0],b=g[1],w=vt(0),k=w[0],N=w[1],P=Lt();gt(function(){return v.current=e?new Ft({limit:p,page:y,url:e.url,body:e.body}):new Mt({limit:p,page:y}),v.current instanceof Ft?t.pipeline.on("afterProcess",function(t){return N(t.length)}):v.current instanceof Mt&&v.current.on("beforeProcess",function(t){return N(t.length)}),t.pipeline.on("updated",C),t.pipeline.register(v.current),t.pipeline.on("error",function(){N(0),b(0)}),function(){t.pipeline.unregister(v.current),t.pipeline.off("updated",C)}},[]);var C=function(t){m&&t!==v.current&&b(0)},E=function(){return Math.ceil(k/p)},T=function(t){if(t>=E()||t<0||t===y)return null;b(t),v.current.setProps({page:t})};return x("div",{className:et(nt("pagination"),t.className.pagination)},x(S,null,o&&k>0&&x("div",{role:"status","aria-live":"polite",className:et(nt("summary"),t.className.paginationSummary),title:P("pagination.navigate",y+1,E())},P("pagination.showing")," ",x("b",null,P(""+(y*p+1)))," ",P("pagination.to")," ",x("b",null,P(""+Math.min((y+1)*p,k)))," ",P("pagination.of")," ",x("b",null,P(""+k))," ",P("pagination.results"))),x("div",{className:nt("pages")},a&&x("button",{tabIndex:0,role:"button",disabled:0===y,onClick:function(){return T(y-1)},title:P("pagination.previous"),"aria-label":P("pagination.previous"),className:et(t.className.paginationButton,t.className.paginationButtonPrev)},P("pagination.previous")),function(){if(c<=0)return null;var n=Math.min(E(),c),e=Math.min(y,Math.floor(n/2));return y+Math.floor(n/2)>=E()&&(e=n-(E()-y)),x(S,null,E()>n&&y-e>0&&x(S,null,x("button",{tabIndex:0,role:"button",onClick:function(){return T(0)},title:P("pagination.firstPage"),"aria-label":P("pagination.firstPage"),className:t.className.paginationButton},P("1")),x("button",{tabIndex:-1,className:et(nt("spread"),t.className.paginationButton)},"...")),Array.from(Array(n).keys()).map(function(t){return y+(t-e)}).map(function(n){return x("button",{tabIndex:0,role:"button",onClick:function(){return T(n)},className:et(y===n?et(nt("currentPage"),t.className.paginationButtonCurrent):null,t.className.paginationButton),title:P("pagination.page",n+1),"aria-label":P("pagination.page",n+1)},P(""+(n+1)))}),E()>n&&E()>y+e+1&&x(S,null,x("button",{tabIndex:-1,className:et(nt("spread"),t.className.paginationButton)},"..."),x("button",{tabIndex:0,role:"button",onClick:function(){return T(E()-1)},title:P("pagination.page",E()),"aria-label":P("pagination.page",E()),className:t.className.paginationButton},P(""+E()))))}(),u&&x("button",{tabIndex:0,role:"button",disabled:E()===y+1||0===E(),onClick:function(){return T(y+1)},title:P("pagination.next"),"aria-label":P("pagination.next"),className:et(t.className.paginationButton,t.className.paginationButtonNext)},P("pagination.next"))))}function Ot(t,n){return"string"==typeof t?t.indexOf("%")>-1?n/100*parseInt(t,10):parseInt(t,10):t}function Ut(t){return t?Math.floor(t)+"px":""}function Wt(t){var n=t.tableRef.cloneNode(!0);return n.style.position="absolute",n.style.width="100%",n.style.zIndex="-2147483640",n.style.visibility="hidden",x("div",{ref:function(t){t&&t.appendChild(n)}})}function Bt(t){if(!t)return"";var n=t.split(" ");return 1===n.length&&/([a-z][A-Z])+/g.test(t)?t:n.map(function(t,n){return 0==n?t.toLowerCase():t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()}).join("")}var qt,zt=new(/*#__PURE__*/function(){function t(){}var n=t.prototype;return n.format=function(t,n){return"[Grid.js] ["+n.toUpperCase()+"]: "+t},n.error=function(t,n){void 0===n&&(n=!1);var e=this.format(t,"error");if(n)throw Error(e);console.error(e)},n.warn=function(t){console.warn(this.format(t,"warn"))},n.info=function(t){console.info(this.format(t,"info"))},t}());t.PluginPosition=void 0,(qt=t.PluginPosition||(t.PluginPosition={}))[qt.Header=0]="Header",qt[qt.Footer=1]="Footer",qt[qt.Cell=2]="Cell";var Vt=/*#__PURE__*/function(){function t(){this.plugins=void 0,this.plugins=[]}var n=t.prototype;return n.get=function(t){return this.plugins.find(function(n){return n.id===t})},n.add=function(t){return t.id?this.get(t.id)?(zt.error("Duplicate plugin ID: "+t.id),this):(this.plugins.push(t),this):(zt.error("Plugin ID cannot be empty"),this)},n.remove=function(t){var n=this.get(t);return n&&this.plugins.splice(this.plugins.indexOf(n),1),this},n.list=function(t){var n;return n=null!=t||null!=t?this.plugins.filter(function(n){return n.position===t}):this.plugins,n.sort(function(t,n){return t.order&&n.order?t.order-n.order:1})},t}();function $t(t){var n=this,e=Et();if(t.pluginId){var o=e.plugin.get(t.pluginId);return o?x(S,{},x(o.component,r({plugin:o},t.props))):null}return void 0!==t.position?x(S,{},e.plugin.list(t.position).map(function(t){return x(t.component,r({plugin:t},n.props.props))})):null}var Gt=/*#__PURE__*/function(n){function i(){var t;return(t=n.call(this)||this)._columns=void 0,t._columns=[],t}o(i,n);var u=i.prototype;return u.adjustWidth=function(t,n,e){var o=t.container,u=t.autoWidth;if(!o)return this;var s=o.clientWidth,l={};n.current&&u&&(q(x(Wt,{tableRef:n.current}),e.current),l=function(t){var n=t.querySelector("table");if(!n)return{};var e=n.className,o=n.style.cssText;n.className=e+" "+nt("shadowTable"),n.style.tableLayout="auto",n.style.width="auto",n.style.padding="0",n.style.margin="0",n.style.border="none",n.style.outline="none";var i=Array.from(n.parentNode.querySelectorAll("thead th")).reduce(function(t,n){var e;return n.style.width=n.clientWidth+"px",r(((e={})[n.getAttribute("data-column-id")]={minWidth:n.clientWidth},e),t)},{});return n.className=e,n.style.cssText=o,n.style.tableLayout="auto",Array.from(n.parentNode.querySelectorAll("thead th")).reduce(function(t,n){return t[n.getAttribute("data-column-id")].width=n.clientWidth,t},i)}(e.current));for(var c,f=a(i.tabularFormat(this.columns).reduce(function(t,n){return t.concat(n)},[]));!(c=f()).done;){var p=c.value;p.columns&&p.columns.length>0||(!p.width&&u?p.id in l&&(p.width=Ut(l[p.id].width),p.minWidth=Ut(l[p.id].minWidth)):p.width=Ut(Ot(p.width,s)))}return n.current&&u&&q(null,e.current),this},u.setSort=function(t,n){for(var e,o=a(n||this.columns||[]);!(e=o()).done;){var i=e.value;i.columns&&i.columns.length>0?i.sort=void 0:void 0===i.sort&&t?i.sort={}:i.sort?"object"==typeof i.sort&&(i.sort=r({},i.sort)):i.sort=void 0,i.columns&&this.setSort(t,i.columns)}},u.setResizable=function(t,n){for(var e,r=a(n||this.columns||[]);!(e=r()).done;){var o=e.value;void 0===o.resizable&&(o.resizable=t),o.columns&&this.setResizable(t,o.columns)}},u.setID=function(t){for(var n,e=a(t||this.columns||[]);!(n=e()).done;){var r=n.value;r.id||"string"!=typeof r.name||(r.id=Bt(r.name)),r.id||zt.error('Could not find a valid ID for one of the columns. Make sure a valid "id" is set for all columns.'),r.columns&&this.setID(r.columns)}},u.populatePlugins=function(n,e){for(var o,i=a(e);!(o=i()).done;){var u=o.value;void 0!==u.plugin&&n.add(r({id:u.id},u.plugin,{position:t.PluginPosition.Cell}))}},i.fromColumns=function(t){for(var n,e=new i,r=a(t);!(n=r()).done;){var o=n.value;if("string"==typeof o||d(o))e.columns.push({name:o});else if("object"==typeof o){var u=o;u.columns&&(u.columns=i.fromColumns(u.columns).columns),"object"==typeof u.plugin&&void 0===u.data&&(u.data=null),e.columns.push(o)}}return e},i.createFromConfig=function(t){var n=new i;return t.from?n.columns=i.fromHTMLTable(t.from).columns:t.columns?n.columns=i.fromColumns(t.columns).columns:!t.data||"object"!=typeof t.data[0]||t.data[0]instanceof Array||(n.columns=Object.keys(t.data[0]).map(function(t){return{name:t}})),n.columns.length?(n.setID(),n.setSort(t.sort),n.setResizable(t.resizable),n.populatePlugins(t.plugin,n.columns),n):null},i.fromHTMLTable=function(t){for(var n,e=new i,r=a(t.querySelector("thead").querySelectorAll("th"));!(n=r()).done;){var o=n.value;e.columns.push({name:o.innerHTML,width:o.width})}return e},i.tabularFormat=function(t){var n=[],e=t||[],r=[];if(e&&e.length){n.push(e);for(var o,i=a(e);!(o=i()).done;){var u=o.value;u.columns&&u.columns.length&&(r=r.concat(u.columns))}r.length&&(n=n.concat(this.tabularFormat(r)))}return n},i.leafColumns=function(t){var n=[],e=t||[];if(e&&e.length)for(var r,o=a(e);!(r=o()).done;){var i=r.value;i.columns&&0!==i.columns.length||n.push(i),i.columns&&(n=n.concat(this.leafColumns(i.columns)))}return n},i.maximumDepth=function(t){return this.tabularFormat([t]).length-1},e(i,[{key:"columns",get:function(){return this._columns},set:function(t){this._columns=t}},{key:"visibleColumns",get:function(){return this._columns.filter(function(t){return!t.hidden})}}]),i}(V),Kt=function(){},Xt=/*#__PURE__*/function(t){function n(n){var e;return(e=t.call(this)||this).data=void 0,e.set(n),e}o(n,t);var e=n.prototype;return e.get=function(){try{return Promise.resolve(this.data()).then(function(t){return{data:t,total:t.length}})}catch(t){return Promise.reject(t)}},e.set=function(t){return t instanceof Array?this.data=function(){return t}:t instanceof Function&&(this.data=t),this},n}(Kt),Zt=/*#__PURE__*/function(t){function n(n){var e;return(e=t.call(this)||this).options=void 0,e.options=n,e}o(n,t);var e=n.prototype;return e.handler=function(t){return"function"==typeof this.options.handle?this.options.handle(t):t.ok?t.json():(zt.error("Could not fetch data: "+t.status+" - "+t.statusText,!0),null)},e.get=function(t){var n=r({},this.options,t);return"function"==typeof n.data?n.data(n):fetch(n.url,n).then(this.handler.bind(this)).then(function(t){return{data:n.then(t),total:"function"==typeof n.total?n.total(t):void 0}})},n}(Kt),Jt=/*#__PURE__*/function(){function t(){}return t.createFromConfig=function(t){var n=null;return t.data&&(n=new Xt(t.data)),t.from&&(n=new Xt(this.tableElementToArray(t.from)),t.from.style.display="none"),t.server&&(n=new Zt(t.server)),n||zt.error("Could not determine the storage type",!0),n},t.tableElementToArray=function(t){for(var n,e,r=[],o=a(t.querySelector("tbody").querySelectorAll("tr"));!(n=o()).done;){for(var i,u=[],s=a(n.value.querySelectorAll("td"));!(i=s()).done;){var l=i.value;1===l.childNodes.length&&l.childNodes[0].nodeType===Node.TEXT_NODE?u.push((e=l.innerHTML,(new DOMParser).parseFromString(e,"text/html").documentElement.textContent)):u.push(G(l.innerHTML))}r.push(u)}return r},t}(),Qt="undefined"!=typeof Symbol?Symbol.iterator||(Symbol.iterator=Symbol("Symbol.iterator")):"@@iterator";function Yt(t,n,e){if(!t.s){if(e instanceof tn){if(!e.s)return void(e.o=Yt.bind(null,t,n));1&n&&(n=e.s),e=e.v}if(e&&e.then)return void e.then(Yt.bind(null,t,n),Yt.bind(null,t,2));t.s=n,t.v=e;var r=t.o;r&&r(t)}}var tn=/*#__PURE__*/function(){function t(){}return t.prototype.then=function(n,e){var r=new t,o=this.s;if(o){var i=1&o?n:e;if(i){try{Yt(r,1,i(this.v))}catch(t){Yt(r,2,t)}return r}return this}return this.o=function(t){try{var o=t.v;1&t.s?Yt(r,1,n?n(o):o):e?Yt(r,1,e(o)):Yt(r,2,o)}catch(t){Yt(r,2,t)}},r},t}();function nn(t){return t instanceof tn&&1&t.s}var en=/*#__PURE__*/function(t){function n(n){var e;return(e=t.call(this)||this)._steps=new Map,e.cache=new Map,e.lastProcessorIndexUpdated=-1,n&&n.forEach(function(t){return e.register(t)}),e}o(n,t);var r=n.prototype;return r.clearCache=function(){this.cache=new Map,this.lastProcessorIndexUpdated=-1},r.register=function(t,n){if(void 0===n&&(n=null),t){if(null===t.type)throw Error("Processor type is not defined");t.on("propsUpdated",this.processorPropsUpdated.bind(this)),this.addProcessorByPriority(t,n),this.afterRegistered(t)}},r.unregister=function(t){if(t){var n=this._steps.get(t.type);n&&n.length&&(this._steps.set(t.type,n.filter(function(n){return n!=t})),this.emit("updated",t))}},r.addProcessorByPriority=function(t,n){var e=this._steps.get(t.type);if(!e){var r=[];this._steps.set(t.type,r),e=r}if(null===n||n<0)e.push(t);else if(e[n]){var o=e.slice(0,n-1),i=e.slice(n+1);this._steps.set(t.type,o.concat(t).concat(i))}else e[n]=t},r.getStepsByType=function(t){return this.steps.filter(function(n){return n.type===t})},r.getSortedProcessorTypes=function(){return Object.keys(K).filter(function(t){return!isNaN(Number(t))}).map(function(t){return Number(t)})},r.process=function(t){try{var n=function(t){return e.lastProcessorIndexUpdated=o.length,e.emit("afterProcess",i),i},e=this,r=e.lastProcessorIndexUpdated,o=e.steps,i=t,u=function(t,n){try{var u=function(t,n,e){if("function"==typeof t[Qt]){var r,o,i,u=t[Qt]();if(function t(e){try{for(;!(r=u.next()).done;)if((e=n(r.value))&&e.then){if(!nn(e))return void e.then(t,i||(i=Yt.bind(null,o=new tn,2)));e=e.v}o?Yt(o,1,e):o=e}catch(t){Yt(o||(o=new tn),2,t)}}(),u.return){var s=function(t){try{r.done||u.return()}catch(t){}return t};if(o&&o.then)return o.then(s,function(t){throw s(t)});s()}return o}if(!("length"in t))throw new TypeError("Object is not iterable");for(var a=[],l=0;l=r)return Promise.resolve(t.process(i)).then(function(n){e.cache.set(t.id,i=n)});i=e.cache.get(t.id)}();if(o&&o.then)return o.then(function(){})})}catch(t){return n(t)}return u&&u.then?u.then(void 0,n):u}(0,function(t){throw zt.error(t),e.emit("error",i),t});return Promise.resolve(u&&u.then?u.then(n):n())}catch(t){return Promise.reject(t)}},r.findProcessorIndexByID=function(t){return this.steps.findIndex(function(n){return n.id==t})},r.setLastProcessorIndex=function(t){var n=this.findProcessorIndexByID(t.id);this.lastProcessorIndexUpdated>n&&(this.lastProcessorIndexUpdated=n)},r.processorPropsUpdated=function(t){this.setLastProcessorIndex(t),this.emit("propsUpdated"),this.emit("updated",t)},r.afterRegistered=function(t){this.setLastProcessorIndex(t),this.emit("afterRegister"),this.emit("updated",t)},e(n,[{key:"steps",get:function(){for(var t,n=[],e=a(this.getSortedProcessorTypes());!(t=e()).done;){var r=this._steps.get(t.value);r&&r.length&&(n=n.concat(r))}return n.filter(function(t){return t})}}]),n}(Q),rn=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){try{return Promise.resolve(this.props.storage.get(t))}catch(t){return Promise.reject(t)}},e(n,[{key:"type",get:function(){return K.Extractor}}]),n}(Y),on=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){var n=J.fromArray(t.data);return n.length=t.total,n},e(n,[{key:"type",get:function(){return K.Transformer}}]),n}(Y),un=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(){return Object.entries(this.props.serverStorageOptions).filter(function(t){return"function"!=typeof t[1]}).reduce(function(t,n){var e;return r({},t,((e={})[n[0]]=n[1],e))},{})},e(n,[{key:"type",get:function(){return K.Initiator}}]),n}(Y),sn=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}o(n,t);var r=n.prototype;return r.castData=function(t){if(!t||!t.length)return[];if(!this.props.header||!this.props.header.columns)return t;var n=Gt.leafColumns(this.props.header.columns);return t[0]instanceof Array?t.map(function(t){var e=0;return n.map(function(n,r){return void 0!==n.data?(e++,"function"==typeof n.data?n.data(t):n.data):t[r-e]})}):"object"!=typeof t[0]||t[0]instanceof Array?[]:t.map(function(t){return n.map(function(n,e){return void 0!==n.data?"function"==typeof n.data?n.data(t):n.data:n.id?t[n.id]:(zt.error("Could not find the correct cell for column at position "+e+".\n Make sure either 'id' or 'selector' is defined for all columns."),null)})})},r._process=function(t){return{data:this.castData(t.data),total:t.total}},e(n,[{key:"type",get:function(){return K.Transformer}}]),n}(Y),an=/*#__PURE__*/function(){function t(){}return t.createFromConfig=function(t){var n=new en;return t.storage instanceof Zt&&n.register(new un({serverStorageOptions:t.server})),n.register(new rn({storage:t.storage})),n.register(new sn({header:t.header})),n.register(new on),n},t}(),ln=function(t){var n=this;this.state=void 0,this.listeners=[],this.isDispatching=!1,this.getState=function(){return n.state},this.getListeners=function(){return n.listeners},this.dispatch=function(t){if("function"!=typeof t)throw new Error("Reducer is not a function");if(n.isDispatching)throw new Error("Reducers may not dispatch actions");n.isDispatching=!0;var e=n.state;try{n.state=t(n.state)}finally{n.isDispatching=!1}for(var r,o=a(n.listeners);!(r=o()).done;)(0,r.value)(n.state,e);return n.state},this.subscribe=function(t){if("function"!=typeof t)throw new Error("Listener is not a function");return n.listeners=[].concat(n.listeners,[t]),function(){return n.listeners=n.listeners.filter(function(n){return n!==t})}},this.state=t},cn=function(t,n){var e={__c:n="__cC"+m++,__:null,Consumer:function(t,n){return t.children(n)},Provider:function(t){var e,r;return this.getChildContext||(e=[],(r={})[n]=this,this.getChildContext=function(){return r},this.shouldComponentUpdate=function(t){this.props.value!==t.value&&e.some(E)},this.sub=function(t){e.push(t);var n=t.componentWillUnmount;t.componentWillUnmount=function(){e.splice(e.indexOf(t),1),n&&n.call(t)}}),t.children}};return e.Provider.__=e.Consumer.contextType=e}(),fn=/*#__PURE__*/function(){function n(){Object.assign(this,n.defaultConfig())}var e=n.prototype;return e.assign=function(t){return Object.assign(this,t)},e.update=function(t){return t?(this.assign(n.fromPartialConfig(r({},this,t))),this):this},n.defaultConfig=function(){return{store:new ln({status:l.Init,header:void 0,data:null}),plugin:new Vt,tableRef:{current:null},width:"100%",height:"auto",autoWidth:!0,style:{},className:{}}},n.fromPartialConfig=function(e){var r=(new n).assign(e);return"boolean"==typeof e.sort&&e.sort&&r.assign({sort:{multiColumn:!0}}),r.assign({header:Gt.createFromConfig(r)}),r.assign({storage:Jt.createFromConfig(r)}),r.assign({pipeline:an.createFromConfig(r)}),r.assign({translator:new It(r.language)}),r.search&&r.plugin.add({id:"search",position:t.PluginPosition.Header,component:Dt}),r.pagination&&r.plugin.add({id:"pagination",position:t.PluginPosition.Footer,component:Rt}),r.plugins&&r.plugins.forEach(function(t){return r.plugin.add(t)}),r},n}();function pn(t){var n,e=Et();return x("td",r({role:t.role,colSpan:t.colSpan,"data-column-id":t.column&&t.column.id,className:et(nt("td"),t.className,e.className.td),style:r({},t.style,e.style.td),onClick:function(n){t.messageCell||e.eventEmitter.emit("cellClick",n,t.cell,t.column,t.row)}},(n=t.column)?"function"==typeof n.attributes?n.attributes(t.cell.data,t.row,t.column):n.attributes:{}),t.column&&"function"==typeof t.column.formatter?t.column.formatter(t.cell.data,t.row,t.column):t.column&&t.column.plugin?x($t,{pluginId:t.column.id,props:{column:t.column,cell:t.cell,row:t.row}}):t.cell.data)}function dn(t){var n=Et(),e=jt(function(t){return t.header});return x("tr",{className:et(nt("tr"),n.className.tr),onClick:function(e){t.messageRow||n.eventEmitter.emit("rowClick",e,t.row)}},t.children?t.children:t.row.cells.map(function(n,r){var o=function(t){if(e){var n=Gt.leafColumns(e.columns);if(n)return n[t]}return null}(r);return o&&o.hidden?null:x(pn,{key:n.id,cell:n,row:t.row,column:o})}))}function hn(t){return x(dn,{messageRow:!0},x(pn,{role:"alert",colSpan:t.colSpan,messageCell:!0,cell:new X(t.message),className:et(nt("message"),t.className?t.className:null)}))}function _n(){var t=Et(),n=jt(function(t){return t.data}),e=jt(function(t){return t.status}),r=jt(function(t){return t.header}),o=Lt(),i=function(){return r?r.visibleColumns.length:0};return x("tbody",{className:et(nt("tbody"),t.className.tbody)},n&&n.rows.map(function(t){return x(dn,{key:t.id,row:t})}),e===l.Loading&&(!n||0===n.length)&&x(hn,{message:o("loading"),colSpan:i(),className:et(nt("loading"),t.className.loading)}),e===l.Rendered&&n&&0===n.length&&x(hn,{message:o("noRecordsFound"),colSpan:i(),className:et(nt("notfound"),t.className.notfound)}),e===l.Error&&x(hn,{message:o("error"),colSpan:i(),className:et(nt("error"),t.className.error)}))}var mn=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}o(n,t);var r=n.prototype;return r.validateProps=function(){for(var t,n=a(this.props.columns);!(t=n()).done;){var e=t.value;void 0===e.direction&&(e.direction=1),1!==e.direction&&-1!==e.direction&&zt.error("Invalid sort direction "+e.direction)}},r.compare=function(t,n){return t>n?1:t1&&(c=!0,l=!0):0===s?l=!0:s>0&&!e?(l=!0,c=!0):s>0&&e&&(l=!0),c&&(u=[]),l)u.push({index:t,direction:n,compare:o});else if(p){var d=u.indexOf(a);u[d].direction=n}else if(f){var h=u.indexOf(a);u.splice(h,1)}return r({},i,{sort:{columns:u}})}},gn=function(t,n,e){return function(o){var i=(o.sort?[].concat(o.sort.columns):[]).find(function(n){return n.index===t});return r({},o,i?vn(t,1===i.direction?-1:1,n,e)(o):vn(t,1,n,e)(o))}},yn=/*#__PURE__*/function(t){function n(){return t.apply(this,arguments)||this}return o(n,t),n.prototype._process=function(t){var n={};return this.props.url&&(n.url=this.props.url(t.url,this.props.columns)),this.props.body&&(n.body=this.props.body(t.body,this.props.columns)),r({},t,n)},e(n,[{key:"type",get:function(){return K.ServerSort}}]),n}(Y);function bn(t){var n=Et(),e=Lt(),o=vt(0),i=o[0],u=o[1],s=vt(void 0),a=s[0],l=s[1],c=jt(function(t){return t.sort}),f=Ht().dispatch,p=n.sort;gt(function(){var t=d();t&&l(t)},[]),gt(function(){return n.pipeline.register(a),function(){return n.pipeline.unregister(a)}},[n,a]),gt(function(){if(c){var n=c.columns.find(function(n){return n.index===t.index});u(n?n.direction:0)}},[c]),gt(function(){a&&c&&a.setProps({columns:c.columns})},[c]);var d=function(){var t=K.Sort;return p&&"object"==typeof p.server&&(t=K.ServerSort),0===n.pipeline.getStepsByType(t).length?t===K.ServerSort?new yn(r({columns:c?c.columns:[]},p.server)):new mn({columns:c?c.columns:[]}):null};return x("button",{tabIndex:-1,"aria-label":e("sort.sort"+(1===i?"Desc":"Asc")),title:e("sort.sort"+(1===i?"Desc":"Asc")),className:et(nt("sort"),nt("sort",function(t){return 1===t?"asc":-1===t?"desc":"neutral"}(i)),n.className.sort),onClick:function(n){n.preventDefault(),n.stopPropagation(),f(gn(t.index,!0===n.shiftKey&&p.multiColumn,t.compare))}})}function wn(t){var n,e=function(t){return t instanceof MouseEvent?Math.floor(t.pageX):Math.floor(t.changedTouches[0].pageX)},r=function(r){r.stopPropagation();var u,s,a,l,c,f=parseInt(t.thRef.current.style.width,10)-e(r);u=function(t){return o(t,f)},void 0===(s=10)&&(s=100),n=function(){var t=[].slice.call(arguments);a?(clearTimeout(l),l=setTimeout(function(){Date.now()-c>=s&&(u.apply(void 0,t),c=Date.now())},Math.max(s-(Date.now()-c),0))):(u.apply(void 0,t),c=Date.now(),a=!0)},document.addEventListener("mouseup",i),document.addEventListener("touchend",i),document.addEventListener("mousemove",n),document.addEventListener("touchmove",n)},o=function(n,r){n.stopPropagation();var o=t.thRef.current;r+e(n)>=parseInt(o.style.minWidth,10)&&(o.style.width=r+e(n)+"px")},i=function t(e){e.stopPropagation(),document.removeEventListener("mouseup",t),document.removeEventListener("mousemove",n),document.removeEventListener("touchmove",n),document.removeEventListener("touchend",t)};return x("div",{className:et(nt("th"),nt("resizable")),onMouseDown:r,onTouchStart:r,onClick:function(t){return t.stopPropagation()}})}function xn(t){var n=Et(),e=yt(null),o=vt({}),i=o[0],u=o[1],s=Ht().dispatch;gt(function(){if(n.fixedHeader&&e.current){var t=e.current.offsetTop;"number"==typeof t&&u({top:t})}},[e]);var a,l=function(){return null!=t.column.sort},c=function(e){e.stopPropagation(),l()&&s(gn(t.index,!0===e.shiftKey&&n.sort.multiColumn,t.column.sort.compare))};return x("th",r({ref:e,"data-column-id":t.column&&t.column.id,className:et(nt("th"),l()?nt("th","sort"):null,n.fixedHeader?nt("th","fixed"):null,n.className.th),onClick:c,style:r({},n.style.th,{minWidth:t.column.minWidth,width:t.column.width},i,t.style),onKeyDown:function(t){l()&&13===t.which&&c(t)},rowSpan:t.rowSpan>1?t.rowSpan:void 0,colSpan:t.colSpan>1?t.colSpan:void 0},(a=t.column)?"function"==typeof a.attributes?a.attributes(null,null,t.column):a.attributes:{},l()?{tabIndex:0}:{}),x("div",{className:nt("th","content")},void 0!==t.column.name?t.column.name:void 0!==t.column.plugin?x($t,{pluginId:t.column.plugin.id,props:{column:t.column}}):null),l()&&x(bn,r({index:t.index},t.column.sort)),t.column.resizable&&t.index0?(zt.error("The container element "+t+" is not empty. Make sure the container is empty and call render() again"),this):(this.config.container=t,q(this.createElement(),t),this)},n}(Q);t.Cell=X,t.Component=N,t.Config=fn,t.Grid=Tn,t.Row=Z,t.className=nt,t.createElement=x,t.createRef=function(){return{current:null}},t.h=x,t.html=G,t.useConfig=Et,t.useEffect=gt,t.useRef=yt,t.useSelector=jt,t.useState=vt,t.useStore=Ht,t.useTranslator=Lt});
+//# sourceMappingURL=gridjs.umd.js.map
diff --git a/public/build/libs/gridjs/mermaid.min.css b/public/build/libs/gridjs/mermaid.min.css
new file mode 100644
index 0000000..21332c7
--- /dev/null
+++ b/public/build/libs/gridjs/mermaid.min.css
@@ -0,0 +1 @@
+.gridjs-footer button,.gridjs-head button{background-color:transparent;background-image:none;border:none;cursor:pointer;margin:0;outline:none;padding:0}.gridjs-temp{position:relative}.gridjs-head{margin-bottom:5px;padding:5px 1px;width:100%}.gridjs-head:after{clear:both;content:"";display:block}.gridjs-head:empty{border:none;padding:0}.gridjs-container{color:#000;display:inline-block;overflow:hidden;padding:2px;position:relative;z-index:0}.gridjs-footer{background-color:#fff;border-bottom-width:1px;border-color:#e5e7eb;border-radius:0 0 8px 8px;border-top:1px solid #e5e7eb;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.26);display:block;padding:12px 24px;position:relative;width:100%;z-index:5}.gridjs-footer:empty{border:none;padding:0}input.gridjs-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #d2d6dc;border-radius:5px;font-size:14px;line-height:1.45;outline:none;padding:10px 13px}input.gridjs-input:focus{border-color:#9bc2f7;box-shadow:0 0 0 3px rgba(149,189,243,.5)}.gridjs-pagination{color:#3d4044}.gridjs-pagination:after{clear:both;content:"";display:block}.gridjs-pagination .gridjs-summary{float:left;margin-top:5px}.gridjs-pagination .gridjs-pages{float:right}.gridjs-pagination .gridjs-pages button{background-color:#fff;border:1px solid #d2d6dc;border-right:none;outline:none;padding:5px 14px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.gridjs-pagination .gridjs-pages button:focus{border-right:1px solid #d2d6dc;box-shadow:0 0 0 2px rgba(149,189,243,.5);margin-right:-1px;position:relative}.gridjs-pagination .gridjs-pages button:hover{background-color:#f7f7f7;color:#3c4257;outline:none}.gridjs-pagination .gridjs-pages button:disabled,.gridjs-pagination .gridjs-pages button:hover:disabled,.gridjs-pagination .gridjs-pages button[disabled]{background-color:#fff;color:#6b7280;cursor:default}.gridjs-pagination .gridjs-pages button.gridjs-spread{background-color:#fff;box-shadow:none;cursor:default}.gridjs-pagination .gridjs-pages button.gridjs-currentPage{background-color:#f7f7f7;font-weight:700}.gridjs-pagination .gridjs-pages button:last-child{border-bottom-right-radius:6px;border-right:1px solid #d2d6dc;border-top-right-radius:6px}.gridjs-pagination .gridjs-pages button:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}.gridjs-pagination .gridjs-pages button:last-child:focus{margin-right:0}button.gridjs-sort{background-color:transparent;background-position-x:center;background-repeat:no-repeat;background-size:contain;border:none;cursor:pointer;float:right;height:24px;margin:0;outline:none;padding:0;width:13px}button.gridjs-sort-neutral{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDEuOTk4IiBoZWlnaHQ9IjQwMS45OTgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwMS45OTggNDAxLjk5OCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTczLjA5MiAxNjQuNDUyaDI1NS44MTNjNC45NDkgMCA5LjIzMy0xLjgwNyAxMi44NDgtNS40MjQgMy42MTMtMy42MTYgNS40MjctNy44OTggNS40MjctMTIuODQ3cy0xLjgxMy05LjIyOS01LjQyNy0xMi44NUwyMTMuODQ2IDUuNDI0QzIxMC4yMzIgMS44MTIgMjA1Ljk1MSAwIDIwMC45OTkgMHMtOS4yMzMgMS44MTItMTIuODUgNS40MjRMNjAuMjQyIDEzMy4zMzFjLTMuNjE3IDMuNjE3LTUuNDI0IDcuOTAxLTUuNDI0IDEyLjg1IDAgNC45NDggMS44MDcgOS4yMzEgNS40MjQgMTIuODQ3IDMuNjIxIDMuNjE3IDcuOTAyIDUuNDI0IDEyLjg1IDUuNDI0ek0zMjguOTA1IDIzNy41NDlINzMuMDkyYy00Ljk1MiAwLTkuMjMzIDEuODA4LTEyLjg1IDUuNDIxLTMuNjE3IDMuNjE3LTUuNDI0IDcuODk4LTUuNDI0IDEyLjg0N3MxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDhMMTg4LjE0OSAzOTYuNTdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4bDEyNy45MDctMTI3LjkwNmMzLjYxMy0zLjYxNCA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDggMC00Ljk0OC0xLjgxMy05LjIyOS01LjQyNy0xMi44NDctMy42MTQtMy42MTYtNy44OTktNS40Mi0xMi44NDgtNS40MnoiLz48L3N2Zz4=");background-position-y:center;opacity:.3}button.gridjs-sort-asc{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgMTk3LjI4NyAxNTkuMDI4IDY5LjM4MWMtMy42MTMtMy42MTctNy44OTUtNS40MjQtMTIuODQ3LTUuNDI0cy05LjIzMyAxLjgwNy0xMi44NSA1LjQyNEw1LjQyNCAxOTcuMjg3QzEuODA3IDIwMC45MDQgMCAyMDUuMTg2IDAgMjEwLjEzNHMxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDdjMy42MjEgMy42MTcgNy45MDIgNS40MjUgMTIuODUgNS40MjVoMjU1LjgxM2M0Ljk0OSAwIDkuMjMzLTEuODA4IDEyLjg0OC01LjQyNSAzLjYxMy0zLjYxMyA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDdzLTEuODE0LTkuMjMtNS40MjctMTIuODQ3eiIvPjwvc3ZnPg==");background-position-y:35%;background-size:10px}button.gridjs-sort-desc{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiAwLTkuMjMzIDEuODA3LTEyLjg1IDUuNDI0QzEuODA3IDcyLjk5OCAwIDc3LjI3OSAwIDgyLjIyOGMwIDQuOTQ4IDEuODA3IDkuMjI5IDUuNDI0IDEyLjg0N2wxMjcuOTA3IDEyNy45MDdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4TDI4Ni45MzUgOTUuMDc0YzMuNjEzLTMuNjE3IDUuNDI3LTcuODk4IDUuNDI3LTEyLjg0NyAwLTQuOTQ4LTEuODE0LTkuMjI5LTUuNDI3LTEyLjg1eiIvPjwvc3ZnPg==");background-position-y:65%;background-size:10px}button.gridjs-sort:focus{outline:none}table.gridjs-table{border-collapse:collapse;display:table;margin:0;max-width:100%;overflow:auto;padding:0;table-layout:fixed;text-align:left;width:100%}.gridjs-tbody,td.gridjs-td{background-color:#fff}td.gridjs-td{border:1px solid #e5e7eb;box-sizing:content-box;padding:12px 24px}td.gridjs-td:first-child{border-left:none}td.gridjs-td:last-child{border-right:none}td.gridjs-message{text-align:center}th.gridjs-th{background-color:#f9fafb;border:1px solid #e5e7eb;border-top:none;box-sizing:border-box;color:#6b7280;outline:none;padding:14px 24px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}th.gridjs-th .gridjs-th-content{float:left;overflow:hidden;text-overflow:ellipsis;width:100%}th.gridjs-th-sort{cursor:pointer}th.gridjs-th-sort .gridjs-th-content{width:calc(100% - 15px)}th.gridjs-th-sort:focus,th.gridjs-th-sort:hover{background-color:#e5e7eb}th.gridjs-th-fixed{box-shadow:0 1px 0 0 #e5e7eb;position:sticky}@supports (-moz-appearance:none){th.gridjs-th-fixed{box-shadow:0 0 0 1px #e5e7eb}}th.gridjs-th:first-child{border-left:none}th.gridjs-th:last-child{border-right:none}.gridjs-tr{border:none}.gridjs-tr-selected td{background-color:#ebf5ff}.gridjs-tr:last-child td{border-bottom:0}.gridjs *,.gridjs :after,.gridjs :before{box-sizing:border-box}.gridjs-wrapper{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-color:#e5e7eb;border-radius:8px 8px 0 0;border-top-width:1px;box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.26);display:block;overflow:auto;position:relative;width:100%;z-index:1}.gridjs-wrapper:nth-last-of-type(2){border-bottom-width:1px;border-radius:8px}.gridjs-search{float:left}.gridjs-search-input{width:250px}.gridjs-loading-bar{background-color:#fff;opacity:.5;z-index:10}.gridjs-loading-bar,.gridjs-loading-bar:after{bottom:0;left:0;position:absolute;right:0;top:0}.gridjs-loading-bar:after{animation:shimmer 2s infinite;background-image:linear-gradient(90deg,hsla(0,0%,80%,0),hsla(0,0%,80%,.2) 20%,hsla(0,0%,80%,.5) 60%,hsla(0,0%,80%,0));content:"";transform:translateX(-100%)}@keyframes shimmer{to{transform:translateX(100%)}}.gridjs-td .gridjs-checkbox{cursor:pointer;display:block;margin:auto}.gridjs-resizable{bottom:0;position:absolute;right:0;top:0;width:5px}.gridjs-resizable:hover{background-color:#9bc2f7;cursor:ew-resize}
\ No newline at end of file
diff --git a/public/build/libs/isotope-layout/isotope.pkgd.min.js b/public/build/libs/isotope-layout/isotope.pkgd.min.js
new file mode 100644
index 0000000..7ca671c
--- /dev/null
+++ b/public/build/libs/isotope-layout/isotope.pkgd.min.js
@@ -0,0 +1,12 @@
+/*!
+ * Isotope PACKAGED v3.0.6
+ *
+ * Licensed GPLv3 for open source use
+ * or Isotope Commercial License for commercial use
+ *
+ * https://isotope.metafizzy.co
+ * Copyright 2010-2018 Metafizzy
+ */
+
+!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,s,a){function u(t,e,o){var n,s="$()."+i+'("'+e+'")';return t.each(function(t,u){var h=a.data(u,i);if(!h)return void r(i+" not initialized. Cannot call methods, i.e. "+s);var d=h[e];if(!d||"_"==e.charAt(0))return void r(s+" is not a valid method");var l=d.apply(h,o);n=void 0===n?l:n}),void 0!==n?n:t}function h(t,e){t.each(function(t,o){var n=a.data(o,i);n?(n.option(e),n._init()):(n=new s(o,e),a.data(o,i,n))})}a=a||e||t.jQuery,a&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=n.call(arguments,1);return u(this,t,e)}return h(this,t),this},o(a))}function o(t){!t||t&&t.bridget||(t.bridget=i)}var n=Array.prototype.slice,s=t.console,r="undefined"==typeof s?function(){}:function(t){s.error(t)};return o(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],n=0;n1&&i+t>this.cols;i=o?0:i;var n=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=n?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft"),s=n?o.left:o.right,r=s+i.outerWidth,a=Math.floor(s/this.columnWidth);a=Math.max(0,a);var u=Math.floor(r/this.columnWidth);u-=r%this.columnWidth?0:1,u=Math.min(this.cols-1,u);for(var h=this._getOption("originTop"),d=(h?o.top:o.bottom)+i.outerHeight,l=a;l<=u;l++)this.colYs[l]=Math.max(d,this.colYs[l])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/masonry",["../layout-mode","masonry-layout/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope-layout/js/item","isotope-layout/js/layout-mode","isotope-layout/js/layout-modes/masonry","isotope-layout/js/layout-modes/fit-rows","isotope-layout/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope-layout/js/item"),require("isotope-layout/js/layout-mode"),require("isotope-layout/js/layout-modes/masonry"),require("isotope-layout/js/layout-modes/fit-rows"),require("isotope-layout/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){function a(t,e){return function(i,o){for(var n=0;na||ra?1:-1)*h}}return 0}}var u=t.jQuery,h=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},d=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});d.Item=s,d.LayoutMode=r;var l=d.prototype;l._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"];for(var t in r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i=0&&e.item(i)!==this;);return i>-1}),Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:function(t){if(null==t)throw new TypeError("Cannot convert first argument to object");for(var e=Object(t),i=1;ithis.max&&(this.max=e),e>10||1,e*=75;var s=i.container.getBoundingClientRect(),n=t.pageX-s.left-window.pageXOffset,r=t.pageY-s.top-window.pageYOffset,o=Math.pow(1+a.params.zoomOnScrollSpeed/1e3,-1.5*e);a.tooltip&&a.tooltip.hide(),a.setScale(a.scale*o,n,r),t.preventDefault()}))},handleElementEvents:function(){var t=this,e=this,i=this.container;w.delegate(i,"mousedown",".jvm-element",(function(){t.isBeingDragged=!1})),w.delegate(i,"mouseover mouseout",".jvm-element",(function(t){var i=x(e,this,!0),s=e.params.showTooltip;"mouseover"===t.type?t.defaultPrevented||(i.element.hover(!0),s&&(e.tooltip.text(i.tooltipText),e.tooltip.show(),e.emit(i.event,[e.tooltip,i.code]))):(i.element.hover(!1),s&&e.tooltip.hide())})),w.delegate(i,"mouseup",".jvm-element",(function(t){var i=x(e,this);if(!e.isBeingDragged&&!t.defaultPrevented&&("region"===i.type&&e.params.regionsSelectable||"marker"===i.type&&e.params.markersSelectable)){var s=i.element;e.params[i.type+"sSelectableOne"]&&e.clearSelected(i.type+"s"),i.element.isSelected?s.select(!1):s.select(!0),e.emit(i.event,[i.code,s.isSelected,e.getSelected(i.type+"s")])}}))},handleZoomButtons:function(){var t=this,e=this,i=l("div","jvm-zoom-btn jvm-zoomin","+",!0),s=l("div","jvm-zoom-btn jvm-zoomout","−",!0);this.container.appendChild(i),this.container.appendChild(s),w.on(i,"click",(function(){t.setScale(e.scale*e.params.zoomStep,e.width/2,e.height/2,!1,e.params.zoomAnimate)})),w.on(s,"click",(function(){t.setScale(e.scale/e.params.zoomStep,e.width/2,e.height/2,!1,e.params.zoomAnimate)}))},bindContainerTouchEvents:function(){var t,e,i,s,a,n,r,o=this,h=function(h){var l,c,u,p,d=h.touches;if("touchstart"==h.type&&(r=0),1==d.length)1==r&&(u=o.transX,p=o.transY,o.transX-=(i-d[0].pageX)/o.scale,o.transY-=(s-d[0].pageY)/o.scale,o.tooltip.hide(),o.applyTransform(),u==o.transX&&p==o.transY||h.preventDefault()),i=d[0].pageX,s=d[0].pageY;else if(2==d.length)if(2==r)c=Math.sqrt(Math.pow(d[0].pageX-d[1].pageX,2)+Math.pow(d[0].pageY-d[1].pageY,2))/e,o.setScale(t*c,a,n),o.tooltip.hide(),h.preventDefault();else{var f=o.container.selector.getBoundingClientRect();l={top:f.top+window.scrollY,left:f.left+window.scrollX},a=d[0].pageX>d[1].pageX?d[1].pageX+(d[0].pageX-d[1].pageX)/2:d[0].pageX+(d[1].pageX-d[0].pageX)/2,n=d[0].pageY>d[1].pageY?d[1].pageY+(d[0].pageY-d[1].pageY)/2:d[0].pageY+(d[1].pageY-d[0].pageY)/2,a-=l.left,n-=l.top,t=o.scale,e=Math.sqrt(Math.pow(d[0].pageX-d[1].pageX,2)+Math.pow(d[0].pageY-d[1].pageY,2))}r=d.length};this.container.on("touchstart",h).on("touchmove",h)},createRegions:function(){var t,e;for(t in this.regionLabelsGroup=this.regionLabelsGroup||this.canvas.createGroup("jvm-regions-labels-group"),this.mapData.paths)e=new M({map:this,code:t,path:this.mapData.paths[t].path,style:u({},this.params.regionStyle),labelStyle:this.params.regionLabelStyle,labelsGroup:this.regionLabelsGroup,label:this.params.labels&&this.params.labels.regions}),this.regions[t]={config:this.mapData.paths[t],element:e}},createLines:function(t,e,i){var s=this;void 0===i&&(i=!1);var a,n=!1,r=!1;for(var o in this.linesGroup=this.linesGroup||this.canvas.createGroup("jvm-lines-group"),t){var h=t[o];for(var l in e){var c=i?e[l].config:e[l];c.name===h.from&&(n=this.getMarkerPosition(c)),c.name===h.to&&(r=this.getMarkerPosition(c))}!1!==n&&!1!==r&&(a=new _({index:o,map:this,style:u({initial:this.params.lineStyle},{initial:h.style||{}},!0),x1:n.x,y1:n.y,x2:r.x,y2:r.y,group:this.linesGroup}),i&&Object.keys(this.lines).forEach((function(e){e===j(t[0].from,t[0].to)&&s.lines[e].element.remove()})),this.lines[j(h.from,h.to)]={element:a,config:h})}},createMarkers:function(t,e){var i,s,a,n,r=this;for(var o in void 0===t&&(t={}),void 0===e&&(e=!1),this.markersGroup=this.markersGroup||this.canvas.createGroup("jvm-markers-group"),this.markerLabelsGroup=this.markerLabelsGroup||this.canvas.createGroup("jvm-markers-labels-group"),t){if(i=t[o],a=this.getMarkerPosition(i),n=i.coords.join(":"),e){if(Object.keys(this.markers).filter((function(t){return r.markers[t]._uid===n})).length)continue;o=Object.keys(this.markers).length}!1!==a&&(s=new C({index:o,map:this,style:u(this.params.markerStyle,{initial:i.style||{}},!0),label:this.params.labels&&this.params.labels.markers,labelsGroup:this.markerLabelsGroup,cx:a.x,cy:a.y,group:this.markersGroup,marker:i,isRecentlyCreated:e}),this.markers[o]&&this.removeMarkers([o]),this.markers[o]={_uid:n,config:i,element:s})}},createSeries:function(){for(var t in this.series={markers:[],regions:[]},this.params.series)for(var e=0;ee?this.transY=e:this.transYt?this.transX=t:this.transXthis.defaultWidth/this.defaultHeight?(this.baseScale=this.height/this.defaultHeight,this.baseTransX=Math.abs(this.width-this.defaultWidth*this.baseScale)/(2*this.baseScale)):(this.baseScale=this.width/this.defaultWidth,this.baseTransY=Math.abs(this.height-this.defaultHeight*this.baseScale)/(2*this.baseScale)),this.scale*=this.baseScale/t,this.transX*=this.baseScale/t,this.transY*=this.baseScale/t},setScale:function(t,e,i,s,a){var n,r,o,h,l,c,u,p,d,f,m=this,g=0,v=Math.abs(Math.round(60*(t-this.scale)/Math.max(t,this.scale)));t>this.params.zoomMax*this.baseScale?t=this.params.zoomMax*this.baseScale:t0?(o=this.scale,h=(t-o)/v,l=this.transX*this.scale,u=this.transY*this.scale,c=(d*t-l)/v,p=(f*t-u)/v,r=setInterval((function(){g+=1,m.scale=o+h*g,m.transX=(l+c*g)/m.scale,m.transY=(u+p*g)/m.scale,m.applyTransform(),g==v&&(clearInterval(r),m.emit("viewport:changed",[m.scale,m.transX,m.transY]))}),10)):(this.transX=d,this.transY=f,this.scale=t,this.applyTransform(),this.emit("viewport:changed",[this.scale,this.transX,this.transY]))},updateSize:function(){this.width=this.container.offsetWidth,this.height=this.container.offsetHeight,this.resize(),this.canvas.setSize(this.width,this.height),this.applyTransform()},coordsToPoint:function(t,e){var i,s,a,n=D.maps[this.params.map].projection,r=n.centralMeridian;return i=O[n.type](t,e,r),!!(s=this.getInsetForPoint(i.x,i.y))&&(a=s.bbox,i.x=(i.x-a[0].x)/(a[1].x-a[0].x)*s.width*this.scale,i.y=(i.y-a[0].y)/(a[1].y-a[0].y)*s.height*this.scale,{x:i.x+this.transX*this.scale+s.left*this.scale,y:i.y+this.transY*this.scale+s.top*this.scale})},getInsetForPoint:function(t,e){var i,s,a=D.maps[this.params.map].insets;for(i=0;i(s=a[i].bbox)[0].x&&ts[0].y&ⅇe++){var i=h[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);s=200==Math.round(t(o.width)),r.isBoxSizeOuter=s,i.removeChild(e)}}function r(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var r=n(e);if("none"==r.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==r.boxSizing,l=0;u>l;l++){var c=h[l],f=r[c],m=parseFloat(f);a[c]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,g=a.paddingTop+a.paddingBottom,y=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,E=d&&s,b=t(r.width);b!==!1&&(a.width=b+(E?0:p+_));var x=t(r.height);return x!==!1&&(a.height=x+(E?0:g+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(g+z),a.outerWidth=a.width+y,a.outerHeight=a.height+v,a}}var s,a="undefined"==typeof console?e:function(t){console.error(t)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],u=h.length,d=!1;return r}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;is?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},n.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},n._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&1>e?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",r=this[o](n,t),s={x:this.columnWidth*r.col,y:r.y},a=r.y+t.size.outerHeight,h=n+r.col,u=r.col;h>u;u++)this.colYs[u]=a;return s},n._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},n._getTopColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;i>n;n++)e[n]=this._getColGroupY(n,t);return e},n._getColGroupY=function(t,e){if(2>e)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},n._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,n=t>1&&i+t>this.cols;i=n?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},n._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),r=o?n.left:n.right,s=r+i.outerWidth,a=Math.floor(r/this.columnWidth);a=Math.max(0,a);var h=Math.floor(s/this.columnWidth);h-=s%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var u=this._getOption("originTop"),d=(u?n.top:n.bottom)+i.outerHeight,l=a;h>=l;l++)this.colYs[l]=Math.max(d,this.colYs[l])},n._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},n._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},n.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i});
\ No newline at end of file
diff --git a/public/build/libs/nouislider/nouislider.min.css b/public/build/libs/nouislider/nouislider.min.css
new file mode 100644
index 0000000..60f217c
--- /dev/null
+++ b/public/build/libs/nouislider/nouislider.min.css
@@ -0,0 +1 @@
+.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}
\ No newline at end of file
diff --git a/public/build/libs/nouislider/nouislider.min.js b/public/build/libs/nouislider/nouislider.min.js
new file mode 100644
index 0000000..d52d86a
--- /dev/null
+++ b/public/build/libs/nouislider/nouislider.min.js
@@ -0,0 +1 @@
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).noUiSlider={})}(this,function(ot){"use strict";function n(t){return"object"==typeof t&&"function"==typeof t.to}function st(t){t.parentElement.removeChild(t)}function at(t){return null!=t}function lt(t){t.preventDefault()}function i(t){return"number"==typeof t&&!isNaN(t)&&isFinite(t)}function ut(t,e,r){0=e[r];)r+=1;return r}function r(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=l(r,t),i=t[n-1],o=t[n],t=e[n-1],n=e[n];return t+(r=r,a(o=[i,o],o[0]<0?r+Math.abs(o[0]):r-o[0],0)/s(t,n))}function o(t,e,r,n){if(100===n)return n;var i=l(n,t),o=t[i-1],s=t[i];return r?(s-o)/2this.xPct[n+1];)n++;else t===this.xPct[this.xPct.length-1]&&(n=this.xPct.length-2);r||t!==this.xPct[n+1]||n++;for(var i,o=1,s=(e=null===e?[]:e)[n],a=0,l=0,u=0,c=r?(t-this.xPct[n])/(this.xPct[n+1]-this.xPct[n]):(this.xPct[n+1]-t)/(this.xPct[n+1]-this.xPct[n]);0= 2) required for mode 'count'.");for(var e=t.values-1,r=100/e,n=[];e--;)n[e]=e*r;return n.push(100),U(n,t.stepped)}(d),m={},t=S.xVal[0],e=S.xVal[S.xVal.length-1],g=!1,v=!1,b=0;return(h=h.slice().sort(function(t,e){return t-e}).filter(function(t){return!this[t]&&(this[t]=!0)},{}))[0]!==t&&(h.unshift(t),g=!0),h[h.length-1]!==e&&(h.push(e),v=!0),h.forEach(function(t,e){var r,n,i,o,s,a,l,u,t=t,c=h[e+1],p=d.mode===ot.PipsMode.Steps,f=(f=p?S.xNumSteps[e]:f)||c-t;for(void 0===c&&(c=t),f=Math.max(f,1e-7),r=t;r<=c;r=Number((r+f).toFixed(7))){for(a=(o=(i=S.toStepping(r))-b)/(d.density||1),u=o/(l=Math.round(a)),n=1;n<=l;n+=1)m[(s=b+n*u).toFixed(5)]=[S.fromStepping(s),0];a=-1ot.PipsType.NoValue&&((t=P(a,!1)).className=p(n,f.cssClasses.value),t.setAttribute("data-value",String(r)),t.style[f.style]=e+"%",t.innerHTML=String(s.to(r))))}),a}function L(){n&&(st(n),n=null)}function T(t){L();var e=D(t),r=t.filter,t=t.format||{to:function(t){return String(Math.round(t))}};return n=d.appendChild(O(e,r,t))}function j(){var t=i.getBoundingClientRect(),e="offset"+["Width","Height"][f.ort];return 0===f.ort?t.width||i[e]:t.height||i[e]}function z(n,i,o,s){function e(t){var e,r=function(e,t,r){var n=0===e.type.indexOf("touch"),i=0===e.type.indexOf("mouse"),o=0===e.type.indexOf("pointer"),s=0,a=0;0===e.type.indexOf("MSPointer")&&(o=!0);if("mousedown"===e.type&&!e.buttons&&!e.touches)return!1;if(n){var l=function(t){t=t.target;return t===r||r.contains(t)||e.composed&&e.composedPath().shift()===r};if("touchstart"===e.type){n=Array.prototype.filter.call(e.touches,l);if(1r.stepAfter.startValue&&(i=r.stepAfter.startValue-n),t=n>r.thisStep.startValue?r.thisStep.step:!1!==r.stepBefore.step&&n-r.stepBefore.highestStep,100===e?i=null:0===e&&(t=null);e=S.countStepDecimals();return null!==i&&!1!==i&&(i=Number(i.toFixed(e))),[t=null!==t&&!1!==t?Number(t.toFixed(e)):t,i]}ft(t=d,f.cssClasses.target),0===f.dir?ft(t,f.cssClasses.ltr):ft(t,f.cssClasses.rtl),0===f.ort?ft(t,f.cssClasses.horizontal):ft(t,f.cssClasses.vertical),ft(t,"rtl"===getComputedStyle(t).direction?f.cssClasses.textDirectionRtl:f.cssClasses.textDirectionLtr),i=P(t,f.cssClasses.base),function(t,e){var r=P(e,f.cssClasses.connects);l=[],(a=[]).push(N(r,t[0]));for(var n=0;n true
+ *
+ * _.isObjectLike([1, 2, 3]);
+ * // => true
+ *
+ * _.isObjectLike(_.noop);
+ * // => false
+ *
+ * _.isObjectLike(null);
+ * // => false
+ */
+ function isObjectLike(value) {
+ return value != null && typeof value == 'object';
+ }
+
+ /** `Object#toString` result references. */
+ var symbolTag = '[object Symbol]';
+
+ /**
+ * Checks if `value` is classified as a `Symbol` primitive or object.
+ *
+ * @static
+ * @memberOf _
+ * @since 4.0.0
+ * @category Lang
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
+ * @example
+ *
+ * _.isSymbol(Symbol.iterator);
+ * // => true
+ *
+ * _.isSymbol('abc');
+ * // => false
+ */
+ function isSymbol(value) {
+ return typeof value == 'symbol' ||
+ (isObjectLike(value) && baseGetTag(value) == symbolTag);
+ }
+
+ /** Used to match a single whitespace character. */
+ var reWhitespace = /\s/;
+
+ /**
+ * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace
+ * character of `string`.
+ *
+ * @private
+ * @param {string} string The string to inspect.
+ * @returns {number} Returns the index of the last non-whitespace character.
+ */
+ function trimmedEndIndex(string) {
+ var index = string.length;
+
+ while (index-- && reWhitespace.test(string.charAt(index))) {}
+ return index;
+ }
+
+ /** Used to match leading whitespace. */
+ var reTrimStart = /^\s+/;
+
+ /**
+ * The base implementation of `_.trim`.
+ *
+ * @private
+ * @param {string} string The string to trim.
+ * @returns {string} Returns the trimmed string.
+ */
+ function baseTrim(string) {
+ return string
+ ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '')
+ : string;
+ }
+
+ /**
+ * Checks if `value` is the
+ * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
+ * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
+ *
+ * @static
+ * @memberOf _
+ * @since 0.1.0
+ * @category Lang
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if `value` is an object, else `false`.
+ * @example
+ *
+ * _.isObject({});
+ * // => true
+ *
+ * _.isObject([1, 2, 3]);
+ * // => true
+ *
+ * _.isObject(_.noop);
+ * // => true
+ *
+ * _.isObject(null);
+ * // => false
+ */
+ function isObject(value) {
+ var type = typeof value;
+ return value != null && (type == 'object' || type == 'function');
+ }
+
+ /** Used as references for various `Number` constants. */
+ var NAN = 0 / 0;
+
+ /** Used to detect bad signed hexadecimal string values. */
+ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
+
+ /** Used to detect binary string values. */
+ var reIsBinary = /^0b[01]+$/i;
+
+ /** Used to detect octal string values. */
+ var reIsOctal = /^0o[0-7]+$/i;
+
+ /** Built-in method references without a dependency on `root`. */
+ var freeParseInt = parseInt;
+
+ /**
+ * Converts `value` to a number.
+ *
+ * @static
+ * @memberOf _
+ * @since 4.0.0
+ * @category Lang
+ * @param {*} value The value to process.
+ * @returns {number} Returns the number.
+ * @example
+ *
+ * _.toNumber(3.2);
+ * // => 3.2
+ *
+ * _.toNumber(Number.MIN_VALUE);
+ * // => 5e-324
+ *
+ * _.toNumber(Infinity);
+ * // => Infinity
+ *
+ * _.toNumber('3.2');
+ * // => 3.2
+ */
+ function toNumber(value) {
+ if (typeof value == 'number') {
+ return value;
+ }
+ if (isSymbol(value)) {
+ return NAN;
+ }
+ if (isObject(value)) {
+ var other = typeof value.valueOf == 'function' ? value.valueOf() : value;
+ value = isObject(other) ? (other + '') : other;
+ }
+ if (typeof value != 'string') {
+ return value === 0 ? value : +value;
+ }
+ value = baseTrim(value);
+ var isBinary = reIsBinary.test(value);
+ return (isBinary || reIsOctal.test(value))
+ ? freeParseInt(value.slice(2), isBinary ? 2 : 8)
+ : (reIsBadHex.test(value) ? NAN : +value);
+ }
+
+ /**
+ * Gets the timestamp of the number of milliseconds that have elapsed since
+ * the Unix epoch (1 January 1970 00:00:00 UTC).
+ *
+ * @static
+ * @memberOf _
+ * @since 2.4.0
+ * @category Date
+ * @returns {number} Returns the timestamp.
+ * @example
+ *
+ * _.defer(function(stamp) {
+ * console.log(_.now() - stamp);
+ * }, _.now());
+ * // => Logs the number of milliseconds it took for the deferred invocation.
+ */
+ var now = function() {
+ return root$1.Date.now();
+ };
+
+ var now$1 = now;
+
+ /** Error message constants. */
+ var FUNC_ERROR_TEXT$1 = 'Expected a function';
+
+ /* Built-in method references for those with the same name as other `lodash` methods. */
+ var nativeMax = Math.max,
+ nativeMin = Math.min;
+
+ /**
+ * Creates a debounced function that delays invoking `func` until after `wait`
+ * milliseconds have elapsed since the last time the debounced function was
+ * invoked. The debounced function comes with a `cancel` method to cancel
+ * delayed `func` invocations and a `flush` method to immediately invoke them.
+ * Provide `options` to indicate whether `func` should be invoked on the
+ * leading and/or trailing edge of the `wait` timeout. The `func` is invoked
+ * with the last arguments provided to the debounced function. Subsequent
+ * calls to the debounced function return the result of the last `func`
+ * invocation.
+ *
+ * **Note:** If `leading` and `trailing` options are `true`, `func` is
+ * invoked on the trailing edge of the timeout only if the debounced function
+ * is invoked more than once during the `wait` timeout.
+ *
+ * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred
+ * until to the next tick, similar to `setTimeout` with a timeout of `0`.
+ *
+ * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)
+ * for details over the differences between `_.debounce` and `_.throttle`.
+ *
+ * @static
+ * @memberOf _
+ * @since 0.1.0
+ * @category Function
+ * @param {Function} func The function to debounce.
+ * @param {number} [wait=0] The number of milliseconds to delay.
+ * @param {Object} [options={}] The options object.
+ * @param {boolean} [options.leading=false]
+ * Specify invoking on the leading edge of the timeout.
+ * @param {number} [options.maxWait]
+ * The maximum time `func` is allowed to be delayed before it's invoked.
+ * @param {boolean} [options.trailing=true]
+ * Specify invoking on the trailing edge of the timeout.
+ * @returns {Function} Returns the new debounced function.
+ * @example
+ *
+ * // Avoid costly calculations while the window size is in flux.
+ * jQuery(window).on('resize', _.debounce(calculateLayout, 150));
+ *
+ * // Invoke `sendMail` when clicked, debouncing subsequent calls.
+ * jQuery(element).on('click', _.debounce(sendMail, 300, {
+ * 'leading': true,
+ * 'trailing': false
+ * }));
+ *
+ * // Ensure `batchLog` is invoked once after 1 second of debounced calls.
+ * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });
+ * var source = new EventSource('/stream');
+ * jQuery(source).on('message', debounced);
+ *
+ * // Cancel the trailing debounced invocation.
+ * jQuery(window).on('popstate', debounced.cancel);
+ */
+ function debounce(func, wait, options) {
+ var lastArgs,
+ lastThis,
+ maxWait,
+ result,
+ timerId,
+ lastCallTime,
+ lastInvokeTime = 0,
+ leading = false,
+ maxing = false,
+ trailing = true;
+
+ if (typeof func != 'function') {
+ throw new TypeError(FUNC_ERROR_TEXT$1);
+ }
+ wait = toNumber(wait) || 0;
+ if (isObject(options)) {
+ leading = !!options.leading;
+ maxing = 'maxWait' in options;
+ maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
+ trailing = 'trailing' in options ? !!options.trailing : trailing;
+ }
+
+ function invokeFunc(time) {
+ var args = lastArgs,
+ thisArg = lastThis;
+
+ lastArgs = lastThis = undefined;
+ lastInvokeTime = time;
+ result = func.apply(thisArg, args);
+ return result;
+ }
+
+ function leadingEdge(time) {
+ // Reset any `maxWait` timer.
+ lastInvokeTime = time;
+ // Start the timer for the trailing edge.
+ timerId = setTimeout(timerExpired, wait);
+ // Invoke the leading edge.
+ return leading ? invokeFunc(time) : result;
+ }
+
+ function remainingWait(time) {
+ var timeSinceLastCall = time - lastCallTime,
+ timeSinceLastInvoke = time - lastInvokeTime,
+ timeWaiting = wait - timeSinceLastCall;
+
+ return maxing
+ ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)
+ : timeWaiting;
+ }
+
+ function shouldInvoke(time) {
+ var timeSinceLastCall = time - lastCallTime,
+ timeSinceLastInvoke = time - lastInvokeTime;
+
+ // Either this is the first call, activity has stopped and we're at the
+ // trailing edge, the system time has gone backwards and we're treating
+ // it as the trailing edge, or we've hit the `maxWait` limit.
+ return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||
+ (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));
+ }
+
+ function timerExpired() {
+ var time = now$1();
+ if (shouldInvoke(time)) {
+ return trailingEdge(time);
+ }
+ // Restart the timer.
+ timerId = setTimeout(timerExpired, remainingWait(time));
+ }
+
+ function trailingEdge(time) {
+ timerId = undefined;
+
+ // Only invoke if we have `lastArgs` which means `func` has been
+ // debounced at least once.
+ if (trailing && lastArgs) {
+ return invokeFunc(time);
+ }
+ lastArgs = lastThis = undefined;
+ return result;
+ }
+
+ function cancel() {
+ if (timerId !== undefined) {
+ clearTimeout(timerId);
+ }
+ lastInvokeTime = 0;
+ lastArgs = lastCallTime = lastThis = timerId = undefined;
+ }
+
+ function flush() {
+ return timerId === undefined ? result : trailingEdge(now$1());
+ }
+
+ function debounced() {
+ var time = now$1(),
+ isInvoking = shouldInvoke(time);
+
+ lastArgs = arguments;
+ lastThis = this;
+ lastCallTime = time;
+
+ if (isInvoking) {
+ if (timerId === undefined) {
+ return leadingEdge(lastCallTime);
+ }
+ if (maxing) {
+ // Handle invocations in a tight loop.
+ clearTimeout(timerId);
+ timerId = setTimeout(timerExpired, wait);
+ return invokeFunc(lastCallTime);
+ }
+ }
+ if (timerId === undefined) {
+ timerId = setTimeout(timerExpired, wait);
+ }
+ return result;
+ }
+ debounced.cancel = cancel;
+ debounced.flush = flush;
+ return debounced;
+ }
+
+ /** Error message constants. */
+ var FUNC_ERROR_TEXT = 'Expected a function';
+
+ /**
+ * Creates a throttled function that only invokes `func` at most once per
+ * every `wait` milliseconds. The throttled function comes with a `cancel`
+ * method to cancel delayed `func` invocations and a `flush` method to
+ * immediately invoke them. Provide `options` to indicate whether `func`
+ * should be invoked on the leading and/or trailing edge of the `wait`
+ * timeout. The `func` is invoked with the last arguments provided to the
+ * throttled function. Subsequent calls to the throttled function return the
+ * result of the last `func` invocation.
+ *
+ * **Note:** If `leading` and `trailing` options are `true`, `func` is
+ * invoked on the trailing edge of the timeout only if the throttled function
+ * is invoked more than once during the `wait` timeout.
+ *
+ * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred
+ * until to the next tick, similar to `setTimeout` with a timeout of `0`.
+ *
+ * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)
+ * for details over the differences between `_.throttle` and `_.debounce`.
+ *
+ * @static
+ * @memberOf _
+ * @since 0.1.0
+ * @category Function
+ * @param {Function} func The function to throttle.
+ * @param {number} [wait=0] The number of milliseconds to throttle invocations to.
+ * @param {Object} [options={}] The options object.
+ * @param {boolean} [options.leading=true]
+ * Specify invoking on the leading edge of the timeout.
+ * @param {boolean} [options.trailing=true]
+ * Specify invoking on the trailing edge of the timeout.
+ * @returns {Function} Returns the new throttled function.
+ * @example
+ *
+ * // Avoid excessively updating the position while scrolling.
+ * jQuery(window).on('scroll', _.throttle(updatePosition, 100));
+ *
+ * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.
+ * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });
+ * jQuery(element).on('click', throttled);
+ *
+ * // Cancel the trailing throttled invocation.
+ * jQuery(window).on('popstate', throttled.cancel);
+ */
+ function throttle(func, wait, options) {
+ var leading = true,
+ trailing = true;
+
+ if (typeof func != 'function') {
+ throw new TypeError(FUNC_ERROR_TEXT);
+ }
+ if (isObject(options)) {
+ leading = 'leading' in options ? !!options.leading : leading;
+ trailing = 'trailing' in options ? !!options.trailing : trailing;
+ }
+ return debounce(func, wait, {
+ 'leading': leading,
+ 'maxWait': wait,
+ 'trailing': trailing
+ });
+ }
+
+ /**
+ * simplebar-core - v1.2.4
+ * Scrollbars, simpler.
+ * https://grsmto.github.io/simplebar/
+ *
+ * Made by Adrien Denat from a fork by Jonathan Nicol
+ * Under MIT License
+ */
+
+ /******************************************************************************
+ Copyright (c) Microsoft Corporation.
+
+ Permission to use, copy, modify, and/or distribute this software for any
+ purpose with or without fee is hereby granted.
+
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ PERFORMANCE OF THIS SOFTWARE.
+ ***************************************************************************** */
+
+ var __assign = function() {
+ __assign = Object.assign || function __assign(t) {
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
+ s = arguments[i];
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
+ }
+ return t;
+ };
+ return __assign.apply(this, arguments);
+ };
+
+ var cachedScrollbarWidth = null;
+ var cachedDevicePixelRatio = null;
+ if (canUseDom) {
+ window.addEventListener('resize', function () {
+ if (cachedDevicePixelRatio !== window.devicePixelRatio) {
+ cachedDevicePixelRatio = window.devicePixelRatio;
+ cachedScrollbarWidth = null;
+ }
+ });
+ }
+ function scrollbarWidth() {
+ if (cachedScrollbarWidth === null) {
+ if (typeof document === 'undefined') {
+ cachedScrollbarWidth = 0;
+ return cachedScrollbarWidth;
+ }
+ var body = document.body;
+ var box = document.createElement('div');
+ box.classList.add('simplebar-hide-scrollbar');
+ body.appendChild(box);
+ var width = box.getBoundingClientRect().right;
+ body.removeChild(box);
+ cachedScrollbarWidth = width;
+ }
+ return cachedScrollbarWidth;
+ }
+
+ function getElementWindow$1(element) {
+ if (!element ||
+ !element.ownerDocument ||
+ !element.ownerDocument.defaultView) {
+ return window;
+ }
+ return element.ownerDocument.defaultView;
+ }
+ function getElementDocument$1(element) {
+ if (!element || !element.ownerDocument) {
+ return document;
+ }
+ return element.ownerDocument;
+ }
+ // Helper function to retrieve options from element attributes
+ var getOptions$1 = function (obj) {
+ var initialObj = {};
+ var options = Array.prototype.reduce.call(obj, function (acc, attribute) {
+ var option = attribute.name.match(/data-simplebar-(.+)/);
+ if (option) {
+ var key = option[1].replace(/\W+(.)/g, function (_, chr) { return chr.toUpperCase(); });
+ switch (attribute.value) {
+ case 'true':
+ acc[key] = true;
+ break;
+ case 'false':
+ acc[key] = false;
+ break;
+ case undefined:
+ acc[key] = true;
+ break;
+ default:
+ acc[key] = attribute.value;
+ }
+ }
+ return acc;
+ }, initialObj);
+ return options;
+ };
+ function addClasses$1(el, classes) {
+ var _a;
+ if (!el)
+ return;
+ (_a = el.classList).add.apply(_a, classes.split(' '));
+ }
+ function removeClasses$1(el, classes) {
+ if (!el)
+ return;
+ classes.split(' ').forEach(function (className) {
+ el.classList.remove(className);
+ });
+ }
+ function classNamesToQuery$1(classNames) {
+ return ".".concat(classNames.split(' ').join('.'));
+ }
+
+ var helpers = /*#__PURE__*/Object.freeze({
+ __proto__: null,
+ getElementWindow: getElementWindow$1,
+ getElementDocument: getElementDocument$1,
+ getOptions: getOptions$1,
+ addClasses: addClasses$1,
+ removeClasses: removeClasses$1,
+ classNamesToQuery: classNamesToQuery$1
+ });
+
+ var getElementWindow = getElementWindow$1, getElementDocument = getElementDocument$1, getOptions$2 = getOptions$1, addClasses$2 = addClasses$1, removeClasses = removeClasses$1, classNamesToQuery = classNamesToQuery$1;
+ var SimpleBarCore = /** @class */ (function () {
+ function SimpleBarCore(element, options) {
+ if (options === void 0) { options = {}; }
+ var _this = this;
+ this.removePreventClickId = null;
+ this.minScrollbarWidth = 20;
+ this.stopScrollDelay = 175;
+ this.isScrolling = false;
+ this.isMouseEntering = false;
+ this.scrollXTicking = false;
+ this.scrollYTicking = false;
+ this.wrapperEl = null;
+ this.contentWrapperEl = null;
+ this.contentEl = null;
+ this.offsetEl = null;
+ this.maskEl = null;
+ this.placeholderEl = null;
+ this.heightAutoObserverWrapperEl = null;
+ this.heightAutoObserverEl = null;
+ this.rtlHelpers = null;
+ this.scrollbarWidth = 0;
+ this.resizeObserver = null;
+ this.mutationObserver = null;
+ this.elStyles = null;
+ this.isRtl = null;
+ this.mouseX = 0;
+ this.mouseY = 0;
+ this.onMouseMove = function () { };
+ this.onWindowResize = function () { };
+ this.onStopScrolling = function () { };
+ this.onMouseEntered = function () { };
+ /**
+ * On scroll event handling
+ */
+ this.onScroll = function () {
+ var elWindow = getElementWindow(_this.el);
+ if (!_this.scrollXTicking) {
+ elWindow.requestAnimationFrame(_this.scrollX);
+ _this.scrollXTicking = true;
+ }
+ if (!_this.scrollYTicking) {
+ elWindow.requestAnimationFrame(_this.scrollY);
+ _this.scrollYTicking = true;
+ }
+ if (!_this.isScrolling) {
+ _this.isScrolling = true;
+ addClasses$2(_this.el, _this.classNames.scrolling);
+ }
+ _this.showScrollbar('x');
+ _this.showScrollbar('y');
+ _this.onStopScrolling();
+ };
+ this.scrollX = function () {
+ if (_this.axis.x.isOverflowing) {
+ _this.positionScrollbar('x');
+ }
+ _this.scrollXTicking = false;
+ };
+ this.scrollY = function () {
+ if (_this.axis.y.isOverflowing) {
+ _this.positionScrollbar('y');
+ }
+ _this.scrollYTicking = false;
+ };
+ this._onStopScrolling = function () {
+ removeClasses(_this.el, _this.classNames.scrolling);
+ if (_this.options.autoHide) {
+ _this.hideScrollbar('x');
+ _this.hideScrollbar('y');
+ }
+ _this.isScrolling = false;
+ };
+ this.onMouseEnter = function () {
+ if (!_this.isMouseEntering) {
+ addClasses$2(_this.el, _this.classNames.mouseEntered);
+ _this.showScrollbar('x');
+ _this.showScrollbar('y');
+ _this.isMouseEntering = true;
+ }
+ _this.onMouseEntered();
+ };
+ this._onMouseEntered = function () {
+ removeClasses(_this.el, _this.classNames.mouseEntered);
+ if (_this.options.autoHide) {
+ _this.hideScrollbar('x');
+ _this.hideScrollbar('y');
+ }
+ _this.isMouseEntering = false;
+ };
+ this._onMouseMove = function (e) {
+ _this.mouseX = e.clientX;
+ _this.mouseY = e.clientY;
+ if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
+ _this.onMouseMoveForAxis('x');
+ }
+ if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
+ _this.onMouseMoveForAxis('y');
+ }
+ };
+ this.onMouseLeave = function () {
+ _this.onMouseMove.cancel();
+ if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
+ _this.onMouseLeaveForAxis('x');
+ }
+ if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
+ _this.onMouseLeaveForAxis('y');
+ }
+ _this.mouseX = -1;
+ _this.mouseY = -1;
+ };
+ this._onWindowResize = function () {
+ // Recalculate scrollbarWidth in case it's a zoom
+ _this.scrollbarWidth = _this.getScrollbarWidth();
+ _this.hideNativeScrollbar();
+ };
+ this.onPointerEvent = function (e) {
+ if (!_this.axis.x.track.el ||
+ !_this.axis.y.track.el ||
+ !_this.axis.x.scrollbar.el ||
+ !_this.axis.y.scrollbar.el)
+ return;
+ var isWithinTrackXBounds, isWithinTrackYBounds;
+ _this.axis.x.track.rect = _this.axis.x.track.el.getBoundingClientRect();
+ _this.axis.y.track.rect = _this.axis.y.track.el.getBoundingClientRect();
+ if (_this.axis.x.isOverflowing || _this.axis.x.forceVisible) {
+ isWithinTrackXBounds = _this.isWithinBounds(_this.axis.x.track.rect);
+ }
+ if (_this.axis.y.isOverflowing || _this.axis.y.forceVisible) {
+ isWithinTrackYBounds = _this.isWithinBounds(_this.axis.y.track.rect);
+ }
+ // If any pointer event is called on the scrollbar
+ if (isWithinTrackXBounds || isWithinTrackYBounds) {
+ // Prevent event leaking
+ e.stopPropagation();
+ if (e.type === 'pointerdown' && e.pointerType !== 'touch') {
+ if (isWithinTrackXBounds) {
+ _this.axis.x.scrollbar.rect =
+ _this.axis.x.scrollbar.el.getBoundingClientRect();
+ if (_this.isWithinBounds(_this.axis.x.scrollbar.rect)) {
+ _this.onDragStart(e, 'x');
+ }
+ else {
+ _this.onTrackClick(e, 'x');
+ }
+ }
+ if (isWithinTrackYBounds) {
+ _this.axis.y.scrollbar.rect =
+ _this.axis.y.scrollbar.el.getBoundingClientRect();
+ if (_this.isWithinBounds(_this.axis.y.scrollbar.rect)) {
+ _this.onDragStart(e, 'y');
+ }
+ else {
+ _this.onTrackClick(e, 'y');
+ }
+ }
+ }
+ }
+ };
+ /**
+ * Drag scrollbar handle
+ */
+ this.drag = function (e) {
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
+ if (!_this.draggedAxis || !_this.contentWrapperEl)
+ return;
+ var eventOffset;
+ var track = _this.axis[_this.draggedAxis].track;
+ var trackSize = (_b = (_a = track.rect) === null || _a === void 0 ? void 0 : _a[_this.axis[_this.draggedAxis].sizeAttr]) !== null && _b !== void 0 ? _b : 0;
+ var scrollbar = _this.axis[_this.draggedAxis].scrollbar;
+ var contentSize = (_d = (_c = _this.contentWrapperEl) === null || _c === void 0 ? void 0 : _c[_this.axis[_this.draggedAxis].scrollSizeAttr]) !== null && _d !== void 0 ? _d : 0;
+ var hostSize = parseInt((_f = (_e = _this.elStyles) === null || _e === void 0 ? void 0 : _e[_this.axis[_this.draggedAxis].sizeAttr]) !== null && _f !== void 0 ? _f : '0px', 10);
+ e.preventDefault();
+ e.stopPropagation();
+ if (_this.draggedAxis === 'y') {
+ eventOffset = e.pageY;
+ }
+ else {
+ eventOffset = e.pageX;
+ }
+ // Calculate how far the user's mouse is from the top/left of the scrollbar (minus the dragOffset).
+ var dragPos = eventOffset -
+ ((_h = (_g = track.rect) === null || _g === void 0 ? void 0 : _g[_this.axis[_this.draggedAxis].offsetAttr]) !== null && _h !== void 0 ? _h : 0) -
+ _this.axis[_this.draggedAxis].dragOffset;
+ dragPos = _this.draggedAxis === 'x' && _this.isRtl
+ ? ((_k = (_j = track.rect) === null || _j === void 0 ? void 0 : _j[_this.axis[_this.draggedAxis].sizeAttr]) !== null && _k !== void 0 ? _k : 0) -
+ scrollbar.size -
+ dragPos
+ : dragPos;
+ // Convert the mouse position into a percentage of the scrollbar height/width.
+ var dragPerc = dragPos / (trackSize - scrollbar.size);
+ // Scroll the content by the same percentage.
+ var scrollPos = dragPerc * (contentSize - hostSize);
+ // Fix browsers inconsistency on RTL
+ if (_this.draggedAxis === 'x' && _this.isRtl) {
+ scrollPos = ((_l = SimpleBarCore.getRtlHelpers()) === null || _l === void 0 ? void 0 : _l.isScrollingToNegative)
+ ? -scrollPos
+ : scrollPos;
+ }
+ _this.contentWrapperEl[_this.axis[_this.draggedAxis].scrollOffsetAttr] =
+ scrollPos;
+ };
+ /**
+ * End scroll handle drag
+ */
+ this.onEndDrag = function (e) {
+ var elDocument = getElementDocument(_this.el);
+ var elWindow = getElementWindow(_this.el);
+ e.preventDefault();
+ e.stopPropagation();
+ removeClasses(_this.el, _this.classNames.dragging);
+ elDocument.removeEventListener('mousemove', _this.drag, true);
+ elDocument.removeEventListener('mouseup', _this.onEndDrag, true);
+ _this.removePreventClickId = elWindow.setTimeout(function () {
+ // Remove these asynchronously so we still suppress click events
+ // generated simultaneously with mouseup.
+ elDocument.removeEventListener('click', _this.preventClick, true);
+ elDocument.removeEventListener('dblclick', _this.preventClick, true);
+ _this.removePreventClickId = null;
+ });
+ };
+ /**
+ * Handler to ignore click events during drag
+ */
+ this.preventClick = function (e) {
+ e.preventDefault();
+ e.stopPropagation();
+ };
+ this.el = element;
+ this.options = __assign(__assign({}, SimpleBarCore.defaultOptions), options);
+ this.classNames = __assign(__assign({}, SimpleBarCore.defaultOptions.classNames), options.classNames);
+ this.axis = {
+ x: {
+ scrollOffsetAttr: 'scrollLeft',
+ sizeAttr: 'width',
+ scrollSizeAttr: 'scrollWidth',
+ offsetSizeAttr: 'offsetWidth',
+ offsetAttr: 'left',
+ overflowAttr: 'overflowX',
+ dragOffset: 0,
+ isOverflowing: true,
+ forceVisible: false,
+ track: { size: null, el: null, rect: null, isVisible: false },
+ scrollbar: { size: null, el: null, rect: null, isVisible: false }
+ },
+ y: {
+ scrollOffsetAttr: 'scrollTop',
+ sizeAttr: 'height',
+ scrollSizeAttr: 'scrollHeight',
+ offsetSizeAttr: 'offsetHeight',
+ offsetAttr: 'top',
+ overflowAttr: 'overflowY',
+ dragOffset: 0,
+ isOverflowing: true,
+ forceVisible: false,
+ track: { size: null, el: null, rect: null, isVisible: false },
+ scrollbar: { size: null, el: null, rect: null, isVisible: false }
+ }
+ };
+ if (typeof this.el !== 'object' || !this.el.nodeName) {
+ throw new Error("Argument passed to SimpleBar must be an HTML element instead of ".concat(this.el));
+ }
+ this.onMouseMove = throttle(this._onMouseMove, 64);
+ this.onWindowResize = debounce(this._onWindowResize, 64, { leading: true });
+ this.onStopScrolling = debounce(this._onStopScrolling, this.stopScrollDelay);
+ this.onMouseEntered = debounce(this._onMouseEntered, this.stopScrollDelay);
+ this.init();
+ }
+ /**
+ * Helper to fix browsers inconsistency on RTL:
+ * - Firefox inverts the scrollbar initial position
+ * - IE11 inverts both scrollbar position and scrolling offset
+ * Directly inspired by @KingSora's OverlayScrollbars https://github.com/KingSora/OverlayScrollbars/blob/master/js/OverlayScrollbars.js#L1634
+ */
+ SimpleBarCore.getRtlHelpers = function () {
+ if (SimpleBarCore.rtlHelpers) {
+ return SimpleBarCore.rtlHelpers;
+ }
+ var dummyDiv = document.createElement('div');
+ dummyDiv.innerHTML =
+ '';
+ var scrollbarDummyEl = dummyDiv.firstElementChild;
+ var dummyChild = scrollbarDummyEl === null || scrollbarDummyEl === void 0 ? void 0 : scrollbarDummyEl.firstElementChild;
+ if (!dummyChild)
+ return null;
+ document.body.appendChild(scrollbarDummyEl);
+ scrollbarDummyEl.scrollLeft = 0;
+ var dummyContainerOffset = SimpleBarCore.getOffset(scrollbarDummyEl);
+ var dummyChildOffset = SimpleBarCore.getOffset(dummyChild);
+ scrollbarDummyEl.scrollLeft = -999;
+ var dummyChildOffsetAfterScroll = SimpleBarCore.getOffset(dummyChild);
+ document.body.removeChild(scrollbarDummyEl);
+ SimpleBarCore.rtlHelpers = {
+ // determines if the scrolling is responding with negative values
+ isScrollOriginAtZero: dummyContainerOffset.left !== dummyChildOffset.left,
+ // determines if the origin scrollbar position is inverted or not (positioned on left or right)
+ isScrollingToNegative: dummyChildOffset.left !== dummyChildOffsetAfterScroll.left
+ };
+ return SimpleBarCore.rtlHelpers;
+ };
+ SimpleBarCore.prototype.getScrollbarWidth = function () {
+ // Try/catch for FF 56 throwing on undefined computedStyles
+ try {
+ // Detect browsers supporting CSS scrollbar styling and do not calculate
+ if ((this.contentWrapperEl &&
+ getComputedStyle(this.contentWrapperEl, '::-webkit-scrollbar')
+ .display === 'none') ||
+ 'scrollbarWidth' in document.documentElement.style ||
+ '-ms-overflow-style' in document.documentElement.style) {
+ return 0;
+ }
+ else {
+ return scrollbarWidth();
+ }
+ }
+ catch (e) {
+ return scrollbarWidth();
+ }
+ };
+ SimpleBarCore.getOffset = function (el) {
+ var rect = el.getBoundingClientRect();
+ var elDocument = getElementDocument(el);
+ var elWindow = getElementWindow(el);
+ return {
+ top: rect.top +
+ (elWindow.pageYOffset || elDocument.documentElement.scrollTop),
+ left: rect.left +
+ (elWindow.pageXOffset || elDocument.documentElement.scrollLeft)
+ };
+ };
+ SimpleBarCore.prototype.init = function () {
+ // We stop here on server-side
+ if (canUseDom) {
+ this.initDOM();
+ this.rtlHelpers = SimpleBarCore.getRtlHelpers();
+ this.scrollbarWidth = this.getScrollbarWidth();
+ this.recalculate();
+ this.initListeners();
+ }
+ };
+ SimpleBarCore.prototype.initDOM = function () {
+ var _a, _b;
+ // assume that element has his DOM already initiated
+ this.wrapperEl = this.el.querySelector(classNamesToQuery(this.classNames.wrapper));
+ this.contentWrapperEl =
+ this.options.scrollableNode ||
+ this.el.querySelector(classNamesToQuery(this.classNames.contentWrapper));
+ this.contentEl =
+ this.options.contentNode ||
+ this.el.querySelector(classNamesToQuery(this.classNames.contentEl));
+ this.offsetEl = this.el.querySelector(classNamesToQuery(this.classNames.offset));
+ this.maskEl = this.el.querySelector(classNamesToQuery(this.classNames.mask));
+ this.placeholderEl = this.findChild(this.wrapperEl, classNamesToQuery(this.classNames.placeholder));
+ this.heightAutoObserverWrapperEl = this.el.querySelector(classNamesToQuery(this.classNames.heightAutoObserverWrapperEl));
+ this.heightAutoObserverEl = this.el.querySelector(classNamesToQuery(this.classNames.heightAutoObserverEl));
+ this.axis.x.track.el = this.findChild(this.el, "".concat(classNamesToQuery(this.classNames.track)).concat(classNamesToQuery(this.classNames.horizontal)));
+ this.axis.y.track.el = this.findChild(this.el, "".concat(classNamesToQuery(this.classNames.track)).concat(classNamesToQuery(this.classNames.vertical)));
+ this.axis.x.scrollbar.el =
+ ((_a = this.axis.x.track.el) === null || _a === void 0 ? void 0 : _a.querySelector(classNamesToQuery(this.classNames.scrollbar))) || null;
+ this.axis.y.scrollbar.el =
+ ((_b = this.axis.y.track.el) === null || _b === void 0 ? void 0 : _b.querySelector(classNamesToQuery(this.classNames.scrollbar))) || null;
+ if (!this.options.autoHide) {
+ addClasses$2(this.axis.x.scrollbar.el, this.classNames.visible);
+ addClasses$2(this.axis.y.scrollbar.el, this.classNames.visible);
+ }
+ };
+ SimpleBarCore.prototype.initListeners = function () {
+ var _this = this;
+ var _a;
+ var elWindow = getElementWindow(this.el);
+ // Event listeners
+ this.el.addEventListener('mouseenter', this.onMouseEnter);
+ this.el.addEventListener('pointerdown', this.onPointerEvent, true);
+ this.el.addEventListener('mousemove', this.onMouseMove);
+ this.el.addEventListener('mouseleave', this.onMouseLeave);
+ (_a = this.contentWrapperEl) === null || _a === void 0 ? void 0 : _a.addEventListener('scroll', this.onScroll);
+ // Browser zoom triggers a window resize
+ elWindow.addEventListener('resize', this.onWindowResize);
+ if (!this.contentEl)
+ return;
+ if (window.ResizeObserver) {
+ // Hack for https://github.com/WICG/ResizeObserver/issues/38
+ var resizeObserverStarted_1 = false;
+ var resizeObserver = elWindow.ResizeObserver || ResizeObserver;
+ this.resizeObserver = new resizeObserver(function () {
+ if (!resizeObserverStarted_1)
+ return;
+ elWindow.requestAnimationFrame(function () {
+ _this.recalculate();
+ });
+ });
+ this.resizeObserver.observe(this.el);
+ this.resizeObserver.observe(this.contentEl);
+ elWindow.requestAnimationFrame(function () {
+ resizeObserverStarted_1 = true;
+ });
+ }
+ // This is required to detect horizontal scroll. Vertical scroll only needs the resizeObserver.
+ this.mutationObserver = new elWindow.MutationObserver(function () {
+ elWindow.requestAnimationFrame(function () {
+ _this.recalculate();
+ });
+ });
+ this.mutationObserver.observe(this.contentEl, {
+ childList: true,
+ subtree: true,
+ characterData: true
+ });
+ };
+ SimpleBarCore.prototype.recalculate = function () {
+ if (!this.heightAutoObserverEl ||
+ !this.contentEl ||
+ !this.contentWrapperEl ||
+ !this.wrapperEl ||
+ !this.placeholderEl)
+ return;
+ var elWindow = getElementWindow(this.el);
+ this.elStyles = elWindow.getComputedStyle(this.el);
+ this.isRtl = this.elStyles.direction === 'rtl';
+ var contentElOffsetWidth = this.contentEl.offsetWidth;
+ var isHeightAuto = this.heightAutoObserverEl.offsetHeight <= 1;
+ var isWidthAuto = this.heightAutoObserverEl.offsetWidth <= 1 || contentElOffsetWidth > 0;
+ var contentWrapperElOffsetWidth = this.contentWrapperEl.offsetWidth;
+ var elOverflowX = this.elStyles.overflowX;
+ var elOverflowY = this.elStyles.overflowY;
+ this.contentEl.style.padding = "".concat(this.elStyles.paddingTop, " ").concat(this.elStyles.paddingRight, " ").concat(this.elStyles.paddingBottom, " ").concat(this.elStyles.paddingLeft);
+ this.wrapperEl.style.margin = "-".concat(this.elStyles.paddingTop, " -").concat(this.elStyles.paddingRight, " -").concat(this.elStyles.paddingBottom, " -").concat(this.elStyles.paddingLeft);
+ var contentElScrollHeight = this.contentEl.scrollHeight;
+ var contentElScrollWidth = this.contentEl.scrollWidth;
+ this.contentWrapperEl.style.height = isHeightAuto ? 'auto' : '100%';
+ // Determine placeholder size
+ this.placeholderEl.style.width = isWidthAuto
+ ? "".concat(contentElOffsetWidth || contentElScrollWidth, "px")
+ : 'auto';
+ this.placeholderEl.style.height = "".concat(contentElScrollHeight, "px");
+ var contentWrapperElOffsetHeight = this.contentWrapperEl.offsetHeight;
+ this.axis.x.isOverflowing =
+ contentElOffsetWidth !== 0 && contentElScrollWidth > contentElOffsetWidth;
+ this.axis.y.isOverflowing =
+ contentElScrollHeight > contentWrapperElOffsetHeight;
+ // Set isOverflowing to false if user explicitely set hidden overflow
+ this.axis.x.isOverflowing =
+ elOverflowX === 'hidden' ? false : this.axis.x.isOverflowing;
+ this.axis.y.isOverflowing =
+ elOverflowY === 'hidden' ? false : this.axis.y.isOverflowing;
+ this.axis.x.forceVisible =
+ this.options.forceVisible === 'x' || this.options.forceVisible === true;
+ this.axis.y.forceVisible =
+ this.options.forceVisible === 'y' || this.options.forceVisible === true;
+ this.hideNativeScrollbar();
+ // Set isOverflowing to false if scrollbar is not necessary (content is shorter than offset)
+ var offsetForXScrollbar = this.axis.x.isOverflowing
+ ? this.scrollbarWidth
+ : 0;
+ var offsetForYScrollbar = this.axis.y.isOverflowing
+ ? this.scrollbarWidth
+ : 0;
+ this.axis.x.isOverflowing =
+ this.axis.x.isOverflowing &&
+ contentElScrollWidth > contentWrapperElOffsetWidth - offsetForYScrollbar;
+ this.axis.y.isOverflowing =
+ this.axis.y.isOverflowing &&
+ contentElScrollHeight >
+ contentWrapperElOffsetHeight - offsetForXScrollbar;
+ this.axis.x.scrollbar.size = this.getScrollbarSize('x');
+ this.axis.y.scrollbar.size = this.getScrollbarSize('y');
+ if (this.axis.x.scrollbar.el)
+ this.axis.x.scrollbar.el.style.width = "".concat(this.axis.x.scrollbar.size, "px");
+ if (this.axis.y.scrollbar.el)
+ this.axis.y.scrollbar.el.style.height = "".concat(this.axis.y.scrollbar.size, "px");
+ this.positionScrollbar('x');
+ this.positionScrollbar('y');
+ this.toggleTrackVisibility('x');
+ this.toggleTrackVisibility('y');
+ };
+ /**
+ * Calculate scrollbar size
+ */
+ SimpleBarCore.prototype.getScrollbarSize = function (axis) {
+ var _a, _b;
+ if (axis === void 0) { axis = 'y'; }
+ if (!this.axis[axis].isOverflowing || !this.contentEl) {
+ return 0;
+ }
+ var contentSize = this.contentEl[this.axis[axis].scrollSizeAttr];
+ var trackSize = (_b = (_a = this.axis[axis].track.el) === null || _a === void 0 ? void 0 : _a[this.axis[axis].offsetSizeAttr]) !== null && _b !== void 0 ? _b : 0;
+ var scrollbarRatio = trackSize / contentSize;
+ var scrollbarSize;
+ // Calculate new height/position of drag handle.
+ scrollbarSize = Math.max(~~(scrollbarRatio * trackSize), this.options.scrollbarMinSize);
+ if (this.options.scrollbarMaxSize) {
+ scrollbarSize = Math.min(scrollbarSize, this.options.scrollbarMaxSize);
+ }
+ return scrollbarSize;
+ };
+ SimpleBarCore.prototype.positionScrollbar = function (axis) {
+ var _a, _b, _c;
+ if (axis === void 0) { axis = 'y'; }
+ var scrollbar = this.axis[axis].scrollbar;
+ if (!this.axis[axis].isOverflowing ||
+ !this.contentWrapperEl ||
+ !scrollbar.el ||
+ !this.elStyles) {
+ return;
+ }
+ var contentSize = this.contentWrapperEl[this.axis[axis].scrollSizeAttr];
+ var trackSize = ((_a = this.axis[axis].track.el) === null || _a === void 0 ? void 0 : _a[this.axis[axis].offsetSizeAttr]) || 0;
+ var hostSize = parseInt(this.elStyles[this.axis[axis].sizeAttr], 10);
+ var scrollOffset = this.contentWrapperEl[this.axis[axis].scrollOffsetAttr];
+ scrollOffset =
+ axis === 'x' &&
+ this.isRtl &&
+ ((_b = SimpleBarCore.getRtlHelpers()) === null || _b === void 0 ? void 0 : _b.isScrollOriginAtZero)
+ ? -scrollOffset
+ : scrollOffset;
+ if (axis === 'x' && this.isRtl) {
+ scrollOffset = ((_c = SimpleBarCore.getRtlHelpers()) === null || _c === void 0 ? void 0 : _c.isScrollingToNegative)
+ ? scrollOffset
+ : -scrollOffset;
+ }
+ var scrollPourcent = scrollOffset / (contentSize - hostSize);
+ var handleOffset = ~~((trackSize - scrollbar.size) * scrollPourcent);
+ handleOffset =
+ axis === 'x' && this.isRtl
+ ? -handleOffset + (trackSize - scrollbar.size)
+ : handleOffset;
+ scrollbar.el.style.transform =
+ axis === 'x'
+ ? "translate3d(".concat(handleOffset, "px, 0, 0)")
+ : "translate3d(0, ".concat(handleOffset, "px, 0)");
+ };
+ SimpleBarCore.prototype.toggleTrackVisibility = function (axis) {
+ if (axis === void 0) { axis = 'y'; }
+ var track = this.axis[axis].track.el;
+ var scrollbar = this.axis[axis].scrollbar.el;
+ if (!track || !scrollbar || !this.contentWrapperEl)
+ return;
+ if (this.axis[axis].isOverflowing || this.axis[axis].forceVisible) {
+ track.style.visibility = 'visible';
+ this.contentWrapperEl.style[this.axis[axis].overflowAttr] = 'scroll';
+ this.el.classList.add("".concat(this.classNames.scrollable, "-").concat(axis));
+ }
+ else {
+ track.style.visibility = 'hidden';
+ this.contentWrapperEl.style[this.axis[axis].overflowAttr] = 'hidden';
+ this.el.classList.remove("".concat(this.classNames.scrollable, "-").concat(axis));
+ }
+ // Even if forceVisible is enabled, scrollbar itself should be hidden
+ if (this.axis[axis].isOverflowing) {
+ scrollbar.style.display = 'block';
+ }
+ else {
+ scrollbar.style.display = 'none';
+ }
+ };
+ SimpleBarCore.prototype.showScrollbar = function (axis) {
+ if (axis === void 0) { axis = 'y'; }
+ if (this.axis[axis].isOverflowing && !this.axis[axis].scrollbar.isVisible) {
+ addClasses$2(this.axis[axis].scrollbar.el, this.classNames.visible);
+ this.axis[axis].scrollbar.isVisible = true;
+ }
+ };
+ SimpleBarCore.prototype.hideScrollbar = function (axis) {
+ if (axis === void 0) { axis = 'y'; }
+ if (this.axis[axis].isOverflowing && this.axis[axis].scrollbar.isVisible) {
+ removeClasses(this.axis[axis].scrollbar.el, this.classNames.visible);
+ this.axis[axis].scrollbar.isVisible = false;
+ }
+ };
+ SimpleBarCore.prototype.hideNativeScrollbar = function () {
+ if (!this.offsetEl)
+ return;
+ this.offsetEl.style[this.isRtl ? 'left' : 'right'] =
+ this.axis.y.isOverflowing || this.axis.y.forceVisible
+ ? "-".concat(this.scrollbarWidth, "px")
+ : '0px';
+ this.offsetEl.style.bottom =
+ this.axis.x.isOverflowing || this.axis.x.forceVisible
+ ? "-".concat(this.scrollbarWidth, "px")
+ : '0px';
+ };
+ SimpleBarCore.prototype.onMouseMoveForAxis = function (axis) {
+ if (axis === void 0) { axis = 'y'; }
+ var currentAxis = this.axis[axis];
+ if (!currentAxis.track.el || !currentAxis.scrollbar.el)
+ return;
+ currentAxis.track.rect = currentAxis.track.el.getBoundingClientRect();
+ currentAxis.scrollbar.rect =
+ currentAxis.scrollbar.el.getBoundingClientRect();
+ if (this.isWithinBounds(currentAxis.track.rect)) {
+ this.showScrollbar(axis);
+ addClasses$2(currentAxis.track.el, this.classNames.hover);
+ if (this.isWithinBounds(currentAxis.scrollbar.rect)) {
+ addClasses$2(currentAxis.scrollbar.el, this.classNames.hover);
+ }
+ else {
+ removeClasses(currentAxis.scrollbar.el, this.classNames.hover);
+ }
+ }
+ else {
+ removeClasses(currentAxis.track.el, this.classNames.hover);
+ if (this.options.autoHide) {
+ this.hideScrollbar(axis);
+ }
+ }
+ };
+ SimpleBarCore.prototype.onMouseLeaveForAxis = function (axis) {
+ if (axis === void 0) { axis = 'y'; }
+ removeClasses(this.axis[axis].track.el, this.classNames.hover);
+ removeClasses(this.axis[axis].scrollbar.el, this.classNames.hover);
+ if (this.options.autoHide) {
+ this.hideScrollbar(axis);
+ }
+ };
+ /**
+ * on scrollbar handle drag movement starts
+ */
+ SimpleBarCore.prototype.onDragStart = function (e, axis) {
+ var _a;
+ if (axis === void 0) { axis = 'y'; }
+ var elDocument = getElementDocument(this.el);
+ var elWindow = getElementWindow(this.el);
+ var scrollbar = this.axis[axis].scrollbar;
+ // Measure how far the user's mouse is from the top of the scrollbar drag handle.
+ var eventOffset = axis === 'y' ? e.pageY : e.pageX;
+ this.axis[axis].dragOffset =
+ eventOffset - (((_a = scrollbar.rect) === null || _a === void 0 ? void 0 : _a[this.axis[axis].offsetAttr]) || 0);
+ this.draggedAxis = axis;
+ addClasses$2(this.el, this.classNames.dragging);
+ elDocument.addEventListener('mousemove', this.drag, true);
+ elDocument.addEventListener('mouseup', this.onEndDrag, true);
+ if (this.removePreventClickId === null) {
+ elDocument.addEventListener('click', this.preventClick, true);
+ elDocument.addEventListener('dblclick', this.preventClick, true);
+ }
+ else {
+ elWindow.clearTimeout(this.removePreventClickId);
+ this.removePreventClickId = null;
+ }
+ };
+ SimpleBarCore.prototype.onTrackClick = function (e, axis) {
+ var _this = this;
+ var _a, _b, _c, _d;
+ if (axis === void 0) { axis = 'y'; }
+ var currentAxis = this.axis[axis];
+ if (!this.options.clickOnTrack ||
+ !currentAxis.scrollbar.el ||
+ !this.contentWrapperEl)
+ return;
+ // Preventing the event's default to trigger click underneath
+ e.preventDefault();
+ var elWindow = getElementWindow(this.el);
+ this.axis[axis].scrollbar.rect =
+ currentAxis.scrollbar.el.getBoundingClientRect();
+ var scrollbar = this.axis[axis].scrollbar;
+ var scrollbarOffset = (_b = (_a = scrollbar.rect) === null || _a === void 0 ? void 0 : _a[this.axis[axis].offsetAttr]) !== null && _b !== void 0 ? _b : 0;
+ var hostSize = parseInt((_d = (_c = this.elStyles) === null || _c === void 0 ? void 0 : _c[this.axis[axis].sizeAttr]) !== null && _d !== void 0 ? _d : '0px', 10);
+ var scrolled = this.contentWrapperEl[this.axis[axis].scrollOffsetAttr];
+ var t = axis === 'y'
+ ? this.mouseY - scrollbarOffset
+ : this.mouseX - scrollbarOffset;
+ var dir = t < 0 ? -1 : 1;
+ var scrollSize = dir === -1 ? scrolled - hostSize : scrolled + hostSize;
+ var speed = 40;
+ var scrollTo = function () {
+ if (!_this.contentWrapperEl)
+ return;
+ if (dir === -1) {
+ if (scrolled > scrollSize) {
+ scrolled -= speed;
+ _this.contentWrapperEl[_this.axis[axis].scrollOffsetAttr] = scrolled;
+ elWindow.requestAnimationFrame(scrollTo);
+ }
+ }
+ else {
+ if (scrolled < scrollSize) {
+ scrolled += speed;
+ _this.contentWrapperEl[_this.axis[axis].scrollOffsetAttr] = scrolled;
+ elWindow.requestAnimationFrame(scrollTo);
+ }
+ }
+ };
+ scrollTo();
+ };
+ /**
+ * Getter for content element
+ */
+ SimpleBarCore.prototype.getContentElement = function () {
+ return this.contentEl;
+ };
+ /**
+ * Getter for original scrolling element
+ */
+ SimpleBarCore.prototype.getScrollElement = function () {
+ return this.contentWrapperEl;
+ };
+ SimpleBarCore.prototype.removeListeners = function () {
+ var elWindow = getElementWindow(this.el);
+ // Event listeners
+ this.el.removeEventListener('mouseenter', this.onMouseEnter);
+ this.el.removeEventListener('pointerdown', this.onPointerEvent, true);
+ this.el.removeEventListener('mousemove', this.onMouseMove);
+ this.el.removeEventListener('mouseleave', this.onMouseLeave);
+ if (this.contentWrapperEl) {
+ this.contentWrapperEl.removeEventListener('scroll', this.onScroll);
+ }
+ elWindow.removeEventListener('resize', this.onWindowResize);
+ if (this.mutationObserver) {
+ this.mutationObserver.disconnect();
+ }
+ if (this.resizeObserver) {
+ this.resizeObserver.disconnect();
+ }
+ // Cancel all debounced functions
+ this.onMouseMove.cancel();
+ this.onWindowResize.cancel();
+ this.onStopScrolling.cancel();
+ this.onMouseEntered.cancel();
+ };
+ /**
+ * Remove all listeners from DOM nodes
+ */
+ SimpleBarCore.prototype.unMount = function () {
+ this.removeListeners();
+ };
+ /**
+ * Check if mouse is within bounds
+ */
+ SimpleBarCore.prototype.isWithinBounds = function (bbox) {
+ return (this.mouseX >= bbox.left &&
+ this.mouseX <= bbox.left + bbox.width &&
+ this.mouseY >= bbox.top &&
+ this.mouseY <= bbox.top + bbox.height);
+ };
+ /**
+ * Find element children matches query
+ */
+ SimpleBarCore.prototype.findChild = function (el, query) {
+ var matches = el.matches ||
+ el.webkitMatchesSelector ||
+ el.mozMatchesSelector ||
+ el.msMatchesSelector;
+ return Array.prototype.filter.call(el.children, function (child) {
+ return matches.call(child, query);
+ })[0];
+ };
+ SimpleBarCore.rtlHelpers = null;
+ SimpleBarCore.defaultOptions = {
+ forceVisible: false,
+ clickOnTrack: true,
+ scrollbarMinSize: 25,
+ scrollbarMaxSize: 0,
+ ariaLabel: 'scrollable content',
+ classNames: {
+ contentEl: 'simplebar-content',
+ contentWrapper: 'simplebar-content-wrapper',
+ offset: 'simplebar-offset',
+ mask: 'simplebar-mask',
+ wrapper: 'simplebar-wrapper',
+ placeholder: 'simplebar-placeholder',
+ scrollbar: 'simplebar-scrollbar',
+ track: 'simplebar-track',
+ heightAutoObserverWrapperEl: 'simplebar-height-auto-observer-wrapper',
+ heightAutoObserverEl: 'simplebar-height-auto-observer',
+ visible: 'simplebar-visible',
+ horizontal: 'simplebar-horizontal',
+ vertical: 'simplebar-vertical',
+ hover: 'simplebar-hover',
+ dragging: 'simplebar-dragging',
+ scrolling: 'simplebar-scrolling',
+ scrollable: 'simplebar-scrollable',
+ mouseEntered: 'simplebar-mouse-entered'
+ },
+ scrollableNode: null,
+ contentNode: null,
+ autoHide: true
+ };
+ /**
+ * Static functions
+ */
+ SimpleBarCore.getOptions = getOptions$2;
+ SimpleBarCore.helpers = helpers;
+ return SimpleBarCore;
+ }());
+
+ var _a = SimpleBarCore.helpers, getOptions = _a.getOptions, addClasses = _a.addClasses;
+ var SimpleBar = /** @class */ (function (_super) {
+ __extends(SimpleBar, _super);
+ function SimpleBar() {
+ var args = [];
+ for (var _i = 0; _i < arguments.length; _i++) {
+ args[_i] = arguments[_i];
+ }
+ var _this = _super.apply(this, args) || this;
+ // // Save a reference to the instance, so we know this DOM node has already been instancied
+ SimpleBar.instances.set(args[0], _this);
+ return _this;
+ }
+ SimpleBar.initDOMLoadedElements = function () {
+ document.removeEventListener('DOMContentLoaded', this.initDOMLoadedElements);
+ window.removeEventListener('load', this.initDOMLoadedElements);
+ Array.prototype.forEach.call(document.querySelectorAll('[data-simplebar]'), function (el) {
+ if (el.getAttribute('data-simplebar') !== 'init' &&
+ !SimpleBar.instances.has(el))
+ new SimpleBar(el, getOptions(el.attributes));
+ });
+ };
+ SimpleBar.removeObserver = function () {
+ var _a;
+ (_a = SimpleBar.globalObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
+ };
+ SimpleBar.prototype.initDOM = function () {
+ var _this = this;
+ var _a, _b, _c;
+ // make sure this element doesn't have the elements yet
+ if (!Array.prototype.filter.call(this.el.children, function (child) {
+ return child.classList.contains(_this.classNames.wrapper);
+ }).length) {
+ // Prepare DOM
+ this.wrapperEl = document.createElement('div');
+ this.contentWrapperEl = document.createElement('div');
+ this.offsetEl = document.createElement('div');
+ this.maskEl = document.createElement('div');
+ this.contentEl = document.createElement('div');
+ this.placeholderEl = document.createElement('div');
+ this.heightAutoObserverWrapperEl = document.createElement('div');
+ this.heightAutoObserverEl = document.createElement('div');
+ addClasses(this.wrapperEl, this.classNames.wrapper);
+ addClasses(this.contentWrapperEl, this.classNames.contentWrapper);
+ addClasses(this.offsetEl, this.classNames.offset);
+ addClasses(this.maskEl, this.classNames.mask);
+ addClasses(this.contentEl, this.classNames.contentEl);
+ addClasses(this.placeholderEl, this.classNames.placeholder);
+ addClasses(this.heightAutoObserverWrapperEl, this.classNames.heightAutoObserverWrapperEl);
+ addClasses(this.heightAutoObserverEl, this.classNames.heightAutoObserverEl);
+ while (this.el.firstChild) {
+ this.contentEl.appendChild(this.el.firstChild);
+ }
+ this.contentWrapperEl.appendChild(this.contentEl);
+ this.offsetEl.appendChild(this.contentWrapperEl);
+ this.maskEl.appendChild(this.offsetEl);
+ this.heightAutoObserverWrapperEl.appendChild(this.heightAutoObserverEl);
+ this.wrapperEl.appendChild(this.heightAutoObserverWrapperEl);
+ this.wrapperEl.appendChild(this.maskEl);
+ this.wrapperEl.appendChild(this.placeholderEl);
+ this.el.appendChild(this.wrapperEl);
+ (_a = this.contentWrapperEl) === null || _a === void 0 ? void 0 : _a.setAttribute('tabindex', '0');
+ (_b = this.contentWrapperEl) === null || _b === void 0 ? void 0 : _b.setAttribute('role', 'region');
+ (_c = this.contentWrapperEl) === null || _c === void 0 ? void 0 : _c.setAttribute('aria-label', this.options.ariaLabel);
+ }
+ if (!this.axis.x.track.el || !this.axis.y.track.el) {
+ var track = document.createElement('div');
+ var scrollbar = document.createElement('div');
+ addClasses(track, this.classNames.track);
+ addClasses(scrollbar, this.classNames.scrollbar);
+ track.appendChild(scrollbar);
+ this.axis.x.track.el = track.cloneNode(true);
+ addClasses(this.axis.x.track.el, this.classNames.horizontal);
+ this.axis.y.track.el = track.cloneNode(true);
+ addClasses(this.axis.y.track.el, this.classNames.vertical);
+ this.el.appendChild(this.axis.x.track.el);
+ this.el.appendChild(this.axis.y.track.el);
+ }
+ SimpleBarCore.prototype.initDOM.call(this);
+ this.el.setAttribute('data-simplebar', 'init');
+ };
+ SimpleBar.prototype.unMount = function () {
+ SimpleBarCore.prototype.unMount.call(this);
+ SimpleBar.instances["delete"](this.el);
+ };
+ SimpleBar.initHtmlApi = function () {
+ this.initDOMLoadedElements = this.initDOMLoadedElements.bind(this);
+ // MutationObserver is IE11+
+ if (typeof MutationObserver !== 'undefined') {
+ // Mutation observer to observe dynamically added elements
+ this.globalObserver = new MutationObserver(SimpleBar.handleMutations);
+ this.globalObserver.observe(document, { childList: true, subtree: true });
+ }
+ // Taken from jQuery `ready` function
+ // Instantiate elements already present on the page
+ if (document.readyState === 'complete' || // @ts-ignore: IE specific
+ (document.readyState !== 'loading' && !document.documentElement.doScroll)) {
+ // Handle it asynchronously to allow scripts the opportunity to delay init
+ window.setTimeout(this.initDOMLoadedElements);
+ }
+ else {
+ document.addEventListener('DOMContentLoaded', this.initDOMLoadedElements);
+ window.addEventListener('load', this.initDOMLoadedElements);
+ }
+ };
+ SimpleBar.handleMutations = function (mutations) {
+ mutations.forEach(function (mutation) {
+ mutation.addedNodes.forEach(function (addedNode) {
+ if (addedNode.nodeType === 1) {
+ if (addedNode.hasAttribute('data-simplebar')) {
+ !SimpleBar.instances.has(addedNode) &&
+ document.documentElement.contains(addedNode) &&
+ new SimpleBar(addedNode, getOptions(addedNode.attributes));
+ }
+ else {
+ addedNode
+ .querySelectorAll('[data-simplebar]')
+ .forEach(function (el) {
+ if (el.getAttribute('data-simplebar') !== 'init' &&
+ !SimpleBar.instances.has(el) &&
+ document.documentElement.contains(el))
+ new SimpleBar(el, getOptions(el.attributes));
+ });
+ }
+ }
+ });
+ mutation.removedNodes.forEach(function (removedNode) {
+ if (removedNode.nodeType === 1) {
+ if (removedNode.getAttribute('data-simplebar') === 'init') {
+ SimpleBar.instances.has(removedNode) &&
+ !document.documentElement.contains(removedNode) &&
+ SimpleBar.instances.get(removedNode).unMount();
+ }
+ else {
+ Array.prototype.forEach.call(removedNode.querySelectorAll('[data-simplebar="init"]'), function (el) {
+ SimpleBar.instances.has(el) &&
+ !document.documentElement.contains(el) &&
+ SimpleBar.instances.get(el).unMount();
+ });
+ }
+ }
+ });
+ });
+ };
+ SimpleBar.instances = new WeakMap();
+ return SimpleBar;
+ }(SimpleBarCore));
+ /**
+ * HTML API
+ * Called only in a browser env.
+ */
+ if (canUseDom) {
+ SimpleBar.initHtmlApi();
+ }
+
+ return SimpleBar;
+
+})();
diff --git a/public/build/libs/swiper/swiper-bundle.min.css b/public/build/libs/swiper/swiper-bundle.min.css
new file mode 100644
index 0000000..a798984
--- /dev/null
+++ b/public/build/libs/swiper/swiper-bundle.min.css
@@ -0,0 +1,13 @@
+/**
+ * Swiper 10.3.1
+ * Most modern mobile touch slider and framework with hardware accelerated transitions
+ * https://swiperjs.com
+ *
+ * Copyright 2014-2023 Vladimir Kharlampidi
+ *
+ * Released under the MIT License
+ *
+ * Released on: September 28, 2023
+ */
+
+@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;overflow:clip;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
\ No newline at end of file
diff --git a/public/build/libs/swiper/swiper-bundle.min.js b/public/build/libs/swiper/swiper-bundle.min.js
new file mode 100644
index 0000000..209d62b
--- /dev/null
+++ b/public/build/libs/swiper/swiper-bundle.min.js
@@ -0,0 +1,14 @@
+/**
+ * Swiper 10.3.1
+ * Most modern mobile touch slider and framework with hardware accelerated transitions
+ * https://swiperjs.com
+ *
+ * Copyright 2014-2023 Vladimir Kharlampidi
+ *
+ * Released under the MIT License
+ *
+ * Released on: September 28, 2023
+ */
+
+var Swiper=function(){"use strict";function e(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function t(s,a){void 0===s&&(s={}),void 0===a&&(a={}),Object.keys(a).forEach((i=>{void 0===s[i]?s[i]=a[i]:e(a[i])&&e(s[i])&&Object.keys(a[i]).length>0&&t(s[i],a[i])}))}const s={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function a(){const e="undefined"!=typeof document?document:{};return t(e,s),e}const i={document:s,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function r(){const e="undefined"!=typeof window?window:{};return t(e,i),e}function n(e,t){return void 0===t&&(t=0),setTimeout(e,t)}function l(){return Date.now()}function o(e,t){void 0===t&&(t="x");const s=r();let a,i,n;const l=function(e){const t=r();let s;return t.getComputedStyle&&(s=t.getComputedStyle(e,null)),!s&&e.currentStyle&&(s=e.currentStyle),s||(s=e.style),s}(e);return s.WebKitCSSMatrix?(i=l.transform||l.webkitTransform,i.split(",").length>6&&(i=i.split(", ").map((e=>e.replace(",","."))).join(", ")),n=new s.WebKitCSSMatrix("none"===i?"":i)):(n=l.MozTransform||l.OTransform||l.MsTransform||l.msTransform||l.transform||l.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),a=n.toString().split(",")),"x"===t&&(i=s.WebKitCSSMatrix?n.m41:16===a.length?parseFloat(a[12]):parseFloat(a[4])),"y"===t&&(i=s.WebKitCSSMatrix?n.m42:16===a.length?parseFloat(a[13]):parseFloat(a[5])),i||0}function d(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function c(){const e=Object(arguments.length<=0?void 0:arguments[0]),t=["__proto__","constructor","prototype"];for(let a=1;at.indexOf(e)<0));for(let t=0,a=s.length;tn?"next":"prev",p=(e,t)=>"next"===c&&e>=t||"prev"===c&&e<=t,u=()=>{l=(new Date).getTime(),null===o&&(o=l);const e=Math.max(Math.min((l-o)/d,1),0),r=.5-Math.cos(e*Math.PI)/2;let c=n+r*(s-n);if(p(c,s)&&(c=s),t.wrapperEl.scrollTo({[a]:c}),p(c,s))return t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.scrollSnapType="",setTimeout((()=>{t.wrapperEl.style.overflow="",t.wrapperEl.scrollTo({[a]:c})})),void i.cancelAnimationFrame(t.cssModeFrameID);t.cssModeFrameID=i.requestAnimationFrame(u)};u()}function m(e){return e.querySelector(".swiper-slide-transform")||e.shadowRoot&&e.shadowRoot.querySelector(".swiper-slide-transform")||e}function h(e,t){return void 0===t&&(t=""),[...e.children].filter((e=>e.matches(t)))}function f(e,t){void 0===t&&(t=[]);const s=document.createElement(e);return s.classList.add(...Array.isArray(t)?t:[t]),s}function g(e){const t=r(),s=a(),i=e.getBoundingClientRect(),n=s.body,l=e.clientTop||n.clientTop||0,o=e.clientLeft||n.clientLeft||0,d=e===t?t.scrollY:e.scrollTop,c=e===t?t.scrollX:e.scrollLeft;return{top:i.top+d-l,left:i.left+c-o}}function v(e,t){return r().getComputedStyle(e,null).getPropertyValue(t)}function w(e){let t,s=e;if(s){for(t=0;null!==(s=s.previousSibling);)1===s.nodeType&&(t+=1);return t}}function b(e,t){const s=[];let a=e.parentElement;for(;a;)t?a.matches(t)&&s.push(a):s.push(a),a=a.parentElement;return s}function y(e,t){t&&e.addEventListener("transitionend",(function s(a){a.target===e&&(t.call(e,a),e.removeEventListener("transitionend",s))}))}function E(e,t,s){const a=r();return s?e["width"===t?"offsetWidth":"offsetHeight"]+parseFloat(a.getComputedStyle(e,null).getPropertyValue("width"===t?"margin-right":"margin-top"))+parseFloat(a.getComputedStyle(e,null).getPropertyValue("width"===t?"margin-left":"margin-bottom")):e.offsetWidth}let x,S,T;function M(){return x||(x=function(){const e=r(),t=a();return{smoothScroll:t.documentElement&&t.documentElement.style&&"scrollBehavior"in t.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&t instanceof e.DocumentTouch)}}()),x}function C(e){return void 0===e&&(e={}),S||(S=function(e){let{userAgent:t}=void 0===e?{}:e;const s=M(),a=r(),i=a.navigator.platform,n=t||a.navigator.userAgent,l={ios:!1,android:!1},o=a.screen.width,d=a.screen.height,c=n.match(/(Android);?[\s\/]+([\d.]+)?/);let p=n.match(/(iPad).*OS\s([\d_]+)/);const u=n.match(/(iPod)(.*OS\s([\d_]+))?/),m=!p&&n.match(/(iPhone\sOS|iOS)\s([\d_]+)/),h="Win32"===i;let f="MacIntel"===i;return!p&&f&&s.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${o}x${d}`)>=0&&(p=n.match(/(Version)\/([\d.]+)/),p||(p=[0,1,"13_0_0"]),f=!1),c&&!h&&(l.os="android",l.android=!0),(p||m||u)&&(l.os="ios",l.ios=!0),l}(e)),S}function P(){return T||(T=function(){const e=r();let t=!1;function s(){const t=e.navigator.userAgent.toLowerCase();return t.indexOf("safari")>=0&&t.indexOf("chrome")<0&&t.indexOf("android")<0}if(s()){const s=String(e.navigator.userAgent);if(s.includes("Version/")){const[e,a]=s.split("Version/")[1].split(" ")[0].split(".").map((e=>Number(e)));t=e<16||16===e&&a<2}}return{isSafari:t||s(),needPerspectiveFix:t,isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),T}var L={on(e,t,s){const a=this;if(!a.eventsListeners||a.destroyed)return a;if("function"!=typeof t)return a;const i=s?"unshift":"push";return e.split(" ").forEach((e=>{a.eventsListeners[e]||(a.eventsListeners[e]=[]),a.eventsListeners[e][i](t)})),a},once(e,t,s){const a=this;if(!a.eventsListeners||a.destroyed)return a;if("function"!=typeof t)return a;function i(){a.off(e,i),i.__emitterProxy&&delete i.__emitterProxy;for(var s=arguments.length,r=new Array(s),n=0;n=0&&t.eventsAnyListeners.splice(s,1),t},off(e,t){const s=this;return!s.eventsListeners||s.destroyed?s:s.eventsListeners?(e.split(" ").forEach((e=>{void 0===t?s.eventsListeners[e]=[]:s.eventsListeners[e]&&s.eventsListeners[e].forEach(((a,i)=>{(a===t||a.__emitterProxy&&a.__emitterProxy===t)&&s.eventsListeners[e].splice(i,1)}))})),s):s},emit(){const e=this;if(!e.eventsListeners||e.destroyed)return e;if(!e.eventsListeners)return e;let t,s,a;for(var i=arguments.length,r=new Array(i),n=0;n{e.eventsAnyListeners&&e.eventsAnyListeners.length&&e.eventsAnyListeners.forEach((e=>{e.apply(a,[t,...s])})),e.eventsListeners&&e.eventsListeners[t]&&e.eventsListeners[t].forEach((e=>{e.apply(a,s)}))})),e}};const z=(e,t)=>{if(!e||e.destroyed||!e.params)return;const s=t.closest(e.isElement?"swiper-slide":`.${e.params.slideClass}`);if(s){let t=s.querySelector(`.${e.params.lazyPreloaderClass}`);!t&&e.isElement&&(s.shadowRoot?t=s.shadowRoot.querySelector(`.${e.params.lazyPreloaderClass}`):requestAnimationFrame((()=>{s.shadowRoot&&(t=s.shadowRoot.querySelector(`.${e.params.lazyPreloaderClass}`),t&&t.remove())}))),t&&t.remove()}},A=(e,t)=>{if(!e.slides[t])return;const s=e.slides[t].querySelector('[loading="lazy"]');s&&s.removeAttribute("loading")},$=e=>{if(!e||e.destroyed||!e.params)return;let t=e.params.lazyPreloadPrevNext;const s=e.slides.length;if(!s||!t||t<0)return;t=Math.min(t,s);const a="auto"===e.params.slidesPerView?e.slidesPerViewDynamic():Math.ceil(e.params.slidesPerView),i=e.activeIndex;if(e.params.grid&&e.params.grid.rows>1){const s=i,r=[s-t];return r.push(...Array.from({length:t}).map(((e,t)=>s+a+t))),void e.slides.forEach(((t,s)=>{r.includes(t.column)&&A(e,s)}))}const r=i+a-1;if(e.params.rewind||e.params.loop)for(let a=i-t;a<=r+t;a+=1){const t=(a%s+s)%s;(tr)&&A(e,t)}else for(let a=Math.max(i-t,0);a<=Math.min(r+t,s-1);a+=1)a!==i&&(a>r||a=0?T=parseFloat(T.replace("%",""))/100*n:"string"==typeof T&&(T=parseFloat(T)),e.virtualSize=-T,u.forEach((e=>{l?e.style.marginLeft="":e.style.marginRight="",e.style.marginBottom="",e.style.marginTop=""})),a.centeredSlides&&a.cssMode&&(p(i,"--swiper-centered-offset-before",""),p(i,"--swiper-centered-offset-after",""));const L=a.grid&&a.grid.rows>1&&e.grid;let z;L&&e.grid.initSlides(m);const A="auto"===a.slidesPerView&&a.breakpoints&&Object.keys(a.breakpoints).filter((e=>void 0!==a.breakpoints[e].slidesPerView)).length>0;for(let i=0;i1&&f.push(e.virtualSize-n)}if(d&&a.loop){const t=w[0]+T;if(a.slidesPerGroup>1){const s=Math.ceil((e.virtual.slidesBefore+e.virtual.slidesAfter)/a.slidesPerGroup),i=t*a.slidesPerGroup;for(let e=0;e!(a.cssMode&&!a.loop)||t!==u.length-1)).forEach((e=>{e.style[s]=`${T}px`}))}if(a.centeredSlides&&a.centeredSlidesBounds){let e=0;w.forEach((t=>{e+=t+(T||0)})),e-=T;const t=e-n;f=f.map((e=>e<=0?-b:e>t?t+y:e))}if(a.centerInsufficientSlides){let e=0;if(w.forEach((t=>{e+=t+(T||0)})),e-=T,e{f[s]=e-t})),g.forEach(((e,s)=>{g[s]=e+t}))}}if(Object.assign(e,{slides:u,snapGrid:f,slidesGrid:g,slidesSizesGrid:w}),a.centeredSlides&&a.cssMode&&!a.centeredSlidesBounds){p(i,"--swiper-centered-offset-before",-f[0]+"px"),p(i,"--swiper-centered-offset-after",e.size/2-w[w.length-1]/2+"px");const t=-e.snapGrid[0],s=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map((e=>e+t)),e.slidesGrid=e.slidesGrid.map((e=>e+s))}if(m!==c&&e.emit("slidesLengthChange"),f.length!==x&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),g.length!==S&&e.emit("slidesGridLengthChange"),a.watchSlidesProgress&&e.updateSlidesOffset(),!(d||a.cssMode||"slide"!==a.effect&&"fade"!==a.effect)){const t=`${a.containerModifierClass}backface-hidden`,s=e.el.classList.contains(t);m<=a.maxBackfaceHiddenSlides?s||e.el.classList.add(t):s&&e.el.classList.remove(t)}},updateAutoHeight:function(e){const t=this,s=[],a=t.virtual&&t.params.virtual.enabled;let i,r=0;"number"==typeof e?t.setTransition(e):!0===e&&t.setTransition(t.params.speed);const n=e=>a?t.slides[t.getSlideIndexByData(e)]:t.slides[e];if("auto"!==t.params.slidesPerView&&t.params.slidesPerView>1)if(t.params.centeredSlides)(t.visibleSlides||[]).forEach((e=>{s.push(e)}));else for(i=0;it.slides.length&&!a)break;s.push(n(e))}else s.push(n(t.activeIndex));for(i=0;ir?e:r}(r||0===r)&&(t.wrapperEl.style.height=`${r}px`)},updateSlidesOffset:function(){const e=this,t=e.slides,s=e.isElement?e.isHorizontal()?e.wrapperEl.offsetLeft:e.wrapperEl.offsetTop:0;for(let a=0;a{e.classList.remove(s.slideVisibleClass)})),t.visibleSlidesIndexes=[],t.visibleSlides=[];let l=s.spaceBetween;"string"==typeof l&&l.indexOf("%")>=0?l=parseFloat(l.replace("%",""))/100*t.size:"string"==typeof l&&(l=parseFloat(l));for(let e=0;e=0&&u1&&m<=t.size||u<=0&&m>=t.size)&&(t.visibleSlides.push(o),t.visibleSlidesIndexes.push(e),a[e].classList.add(s.slideVisibleClass)),o.progress=i?-c:c,o.originalProgress=i?-p:p}},updateProgress:function(e){const t=this;if(void 0===e){const s=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*s||0}const s=t.params,a=t.maxTranslate()-t.minTranslate();let{progress:i,isBeginning:r,isEnd:n,progressLoop:l}=t;const o=r,d=n;if(0===a)i=0,r=!0,n=!0;else{i=(e-t.minTranslate())/a;const s=Math.abs(e-t.minTranslate())<1,l=Math.abs(e-t.maxTranslate())<1;r=s||i<=0,n=l||i>=1,s&&(i=0),l&&(i=1)}if(s.loop){const s=t.getSlideIndexByData(0),a=t.getSlideIndexByData(t.slides.length-1),i=t.slidesGrid[s],r=t.slidesGrid[a],n=t.slidesGrid[t.slidesGrid.length-1],o=Math.abs(e);l=o>=i?(o-i)/n:(o+n-r)/n,l>1&&(l-=1)}Object.assign(t,{progress:i,progressLoop:l,isBeginning:r,isEnd:n}),(s.watchSlidesProgress||s.centeredSlides&&s.autoHeight)&&t.updateSlidesProgress(e),r&&!o&&t.emit("reachBeginning toEdge"),n&&!d&&t.emit("reachEnd toEdge"),(o&&!r||d&&!n)&&t.emit("fromEdge"),t.emit("progress",i)},updateSlidesClasses:function(){const e=this,{slides:t,params:s,slidesEl:a,activeIndex:i}=e,r=e.virtual&&s.virtual.enabled,n=e=>h(a,`.${s.slideClass}${e}, swiper-slide${e}`)[0];let l;if(t.forEach((e=>{e.classList.remove(s.slideActiveClass,s.slideNextClass,s.slidePrevClass)})),r)if(s.loop){let t=i-e.virtual.slidesBefore;t<0&&(t=e.virtual.slides.length+t),t>=e.virtual.slides.length&&(t-=e.virtual.slides.length),l=n(`[data-swiper-slide-index="${t}"]`)}else l=n(`[data-swiper-slide-index="${i}"]`);else l=t[i];if(l){l.classList.add(s.slideActiveClass);let e=function(e,t){const s=[];for(;e.nextElementSibling;){const a=e.nextElementSibling;t?a.matches(t)&&s.push(a):s.push(a),e=a}return s}(l,`.${s.slideClass}, swiper-slide`)[0];s.loop&&!e&&(e=t[0]),e&&e.classList.add(s.slideNextClass);let a=function(e,t){const s=[];for(;e.previousElementSibling;){const a=e.previousElementSibling;t?a.matches(t)&&s.push(a):s.push(a),e=a}return s}(l,`.${s.slideClass}, swiper-slide`)[0];s.loop&&0===!a&&(a=t[t.length-1]),a&&a.classList.add(s.slidePrevClass)}e.emitSlidesClasses()},updateActiveIndex:function(e){const t=this,s=t.rtlTranslate?t.translate:-t.translate,{snapGrid:a,params:i,activeIndex:r,realIndex:n,snapIndex:l}=t;let o,d=e;const c=e=>{let s=e-t.virtual.slidesBefore;return s<0&&(s=t.virtual.slides.length+s),s>=t.virtual.slides.length&&(s-=t.virtual.slides.length),s};if(void 0===d&&(d=function(e){const{slidesGrid:t,params:s}=e,a=e.rtlTranslate?e.translate:-e.translate;let i;for(let e=0;e=t[e]&&a=t[e]&&a=t[e]&&(i=e);return s.normalizeSlideIndex&&(i<0||void 0===i)&&(i=0),i}(t)),a.indexOf(s)>=0)o=a.indexOf(s);else{const e=Math.min(i.slidesPerGroupSkip,d);o=e+Math.floor((d-e)/i.slidesPerGroup)}if(o>=a.length&&(o=a.length-1),d===r)return o!==l&&(t.snapIndex=o,t.emit("snapIndexChange")),void(t.params.loop&&t.virtual&&t.params.virtual.enabled&&(t.realIndex=c(d)));let p;p=t.virtual&&i.virtual.enabled&&i.loop?c(d):t.slides[d]?parseInt(t.slides[d].getAttribute("data-swiper-slide-index")||d,10):d,Object.assign(t,{previousSnapIndex:l,snapIndex:o,previousRealIndex:n,realIndex:p,previousIndex:r,activeIndex:d}),t.initialized&&$(t),t.emit("activeIndexChange"),t.emit("snapIndexChange"),(t.initialized||t.params.runCallbacksOnInit)&&(n!==p&&t.emit("realIndexChange"),t.emit("slideChange"))},updateClickedSlide:function(e,t){const s=this,a=s.params;let i=e.closest(`.${a.slideClass}, swiper-slide`);!i&&s.isElement&&t&&t.length>1&&t.includes(e)&&[...t.slice(t.indexOf(e)+1,t.length)].forEach((e=>{!i&&e.matches&&e.matches(`.${a.slideClass}, swiper-slide`)&&(i=e)}));let r,n=!1;if(i)for(let e=0;eo?o:a&&en?"next":r=o.length&&(v=o.length-1);const w=-o[v];if(l.normalizeSlideIndex)for(let e=0;e=s&&t=s&&t=s&&(n=e)}if(r.initialized&&n!==p){if(!r.allowSlideNext&&(m?w>r.translate&&w>r.minTranslate():wr.translate&&w>r.maxTranslate()&&(p||0)!==n)return!1}let b;if(n!==(c||0)&&s&&r.emit("beforeSlideChangeStart"),r.updateProgress(w),b=n>p?"next":n0?(r._cssModeVirtualInitialSet=!0,requestAnimationFrame((()=>{h[e?"scrollLeft":"scrollTop"]=s}))):h[e?"scrollLeft":"scrollTop"]=s,t&&requestAnimationFrame((()=>{r.wrapperEl.style.scrollSnapType="",r._immediateVirtual=!1}))}else{if(!r.support.smoothScroll)return u({swiper:r,targetPosition:s,side:e?"left":"top"}),!0;h.scrollTo({[e?"left":"top"]:s,behavior:"smooth"})}return!0}return r.setTransition(t),r.setTranslate(w),r.updateActiveIndex(n),r.updateSlidesClasses(),r.emit("beforeTransitionStart",t,a),r.transitionStart(s,b),0===t?r.transitionEnd(s,b):r.animating||(r.animating=!0,r.onSlideToWrapperTransitionEnd||(r.onSlideToWrapperTransitionEnd=function(e){r&&!r.destroyed&&e.target===this&&(r.wrapperEl.removeEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.onSlideToWrapperTransitionEnd=null,delete r.onSlideToWrapperTransitionEnd,r.transitionEnd(s,b))}),r.wrapperEl.addEventListener("transitionend",r.onSlideToWrapperTransitionEnd)),!0},slideToLoop:function(e,t,s,a){if(void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===s&&(s=!0),"string"==typeof e){e=parseInt(e,10)}const i=this;let r=e;return i.params.loop&&(i.virtual&&i.params.virtual.enabled?r+=i.virtual.slidesBefore:r=i.getSlideIndexByData(r)),i.slideTo(r,t,s,a)},slideNext:function(e,t,s){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const a=this,{enabled:i,params:r,animating:n}=a;if(!i)return a;let l=r.slidesPerGroup;"auto"===r.slidesPerView&&1===r.slidesPerGroup&&r.slidesPerGroupAuto&&(l=Math.max(a.slidesPerViewDynamic("current",!0),1));const o=a.activeIndex{a.slideTo(a.activeIndex+o,e,t,s)})),!0}return r.rewind&&a.isEnd?a.slideTo(0,e,t,s):a.slideTo(a.activeIndex+o,e,t,s)},slidePrev:function(e,t,s){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const a=this,{params:i,snapGrid:r,slidesGrid:n,rtlTranslate:l,enabled:o,animating:d}=a;if(!o)return a;const c=a.virtual&&i.virtual.enabled;if(i.loop){if(d&&!c&&i.loopPreventsSliding)return!1;a.loopFix({direction:"prev"}),a._clientLeft=a.wrapperEl.clientLeft}function p(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const u=p(l?a.translate:-a.translate),m=r.map((e=>p(e)));let h=r[m.indexOf(u)-1];if(void 0===h&&i.cssMode){let e;r.forEach(((t,s)=>{u>=t&&(e=s)})),void 0!==e&&(h=r[e>0?e-1:e])}let f=0;if(void 0!==h&&(f=n.indexOf(h),f<0&&(f=a.activeIndex-1),"auto"===i.slidesPerView&&1===i.slidesPerGroup&&i.slidesPerGroupAuto&&(f=f-a.slidesPerViewDynamic("previous",!0)+1,f=Math.max(f,0))),i.rewind&&a.isBeginning){const i=a.params.virtual&&a.params.virtual.enabled&&a.virtual?a.virtual.slides.length-1:a.slides.length-1;return a.slideTo(i,e,t,s)}return i.loop&&0===a.activeIndex&&i.cssMode?(requestAnimationFrame((()=>{a.slideTo(f,e,t,s)})),!0):a.slideTo(f,e,t,s)},slideReset:function(e,t,s){return void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),this.slideTo(this.activeIndex,e,t,s)},slideToClosest:function(e,t,s,a){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),void 0===a&&(a=.5);const i=this;let r=i.activeIndex;const n=Math.min(i.params.slidesPerGroupSkip,r),l=n+Math.floor((r-n)/i.params.slidesPerGroup),o=i.rtlTranslate?i.translate:-i.translate;if(o>=i.snapGrid[l]){const e=i.snapGrid[l];o-e>(i.snapGrid[l+1]-e)*a&&(r+=i.params.slidesPerGroup)}else{const e=i.snapGrid[l-1];o-e<=(i.snapGrid[l]-e)*a&&(r-=i.params.slidesPerGroup)}return r=Math.max(r,0),r=Math.min(r,i.slidesGrid.length-1),i.slideTo(r,e,t,s)},slideToClickedSlide:function(){const e=this,{params:t,slidesEl:s}=e,a="auto"===t.slidesPerView?e.slidesPerViewDynamic():t.slidesPerView;let i,r=e.clickedIndex;const l=e.isElement?"swiper-slide":`.${t.slideClass}`;if(t.loop){if(e.animating)return;i=parseInt(e.clickedSlide.getAttribute("data-swiper-slide-index"),10),t.centeredSlides?re.slides.length-e.loopedSlides+a/2?(e.loopFix(),r=e.getSlideIndex(h(s,`${l}[data-swiper-slide-index="${i}"]`)[0]),n((()=>{e.slideTo(r)}))):e.slideTo(r):r>e.slides.length-a?(e.loopFix(),r=e.getSlideIndex(h(s,`${l}[data-swiper-slide-index="${i}"]`)[0]),n((()=>{e.slideTo(r)}))):e.slideTo(r)}else e.slideTo(r)}};var G={loopCreate:function(e){const t=this,{params:s,slidesEl:a}=t;if(!s.loop||t.virtual&&t.params.virtual.enabled)return;h(a,`.${s.slideClass}, swiper-slide`).forEach(((e,t)=>{e.setAttribute("data-swiper-slide-index",t)})),t.loopFix({slideRealIndex:e,direction:s.centeredSlides?void 0:"next"})},loopFix:function(e){let{slideRealIndex:t,slideTo:s=!0,direction:a,setTranslate:i,activeSlideIndex:r,byController:n,byMousewheel:l}=void 0===e?{}:e;const o=this;if(!o.params.loop)return;o.emit("beforeLoopFix");const{slides:d,allowSlidePrev:c,allowSlideNext:p,slidesEl:u,params:m}=o;if(o.allowSlidePrev=!0,o.allowSlideNext=!0,o.virtual&&m.virtual.enabled)return s&&(m.centeredSlides||0!==o.snapIndex?m.centeredSlides&&o.snapIndexe.classList.contains(m.slideActiveClass)))[0]):w=r;const b="next"===a||!a,y="prev"===a||!a;let E=0,x=0;if(ro.slides.length-2*f){x=Math.max(r-(o.slides.length-2*f),m.slidesPerGroup);for(let e=0;e{o.slides[e].swiperLoopMoveDOM=!0,u.prepend(o.slides[e]),o.slides[e].swiperLoopMoveDOM=!1})),b&&v.forEach((e=>{o.slides[e].swiperLoopMoveDOM=!0,u.append(o.slides[e]),o.slides[e].swiperLoopMoveDOM=!1})),o.recalcSlides(),"auto"===m.slidesPerView&&o.updateSlides(),m.watchSlidesProgress&&o.updateSlidesOffset(),s)if(g.length>0&&y)if(void 0===t){const e=o.slidesGrid[w],t=o.slidesGrid[w+E]-e;l?o.setTranslate(o.translate-t):(o.slideTo(w+E,0,!1,!0),i&&(o.touches[o.isHorizontal()?"startX":"startY"]+=t,o.touchEventsData.currentTranslate=o.translate))}else i&&(o.slideToLoop(t,0,!1,!0),o.touchEventsData.currentTranslate=o.translate);else if(v.length>0&&b)if(void 0===t){const e=o.slidesGrid[w],t=o.slidesGrid[w-x]-e;l?o.setTranslate(o.translate-t):(o.slideTo(w-x,0,!1,!0),i&&(o.touches[o.isHorizontal()?"startX":"startY"]+=t,o.touchEventsData.currentTranslate=o.translate))}else o.slideToLoop(t,0,!1,!0);if(o.allowSlidePrev=c,o.allowSlideNext=p,o.controller&&o.controller.control&&!n){const e={slideRealIndex:t,direction:a,setTranslate:i,activeSlideIndex:r,byController:!0};Array.isArray(o.controller.control)?o.controller.control.forEach((t=>{!t.destroyed&&t.params.loop&&t.loopFix({...e,slideTo:t.params.slidesPerView===m.slidesPerView&&s})})):o.controller.control instanceof o.constructor&&o.controller.control.params.loop&&o.controller.control.loopFix({...e,slideTo:o.controller.control.params.slidesPerView===m.slidesPerView&&s})}o.emit("loopFix")},loopDestroy:function(){const e=this,{params:t,slidesEl:s}=e;if(!t.loop||e.virtual&&e.params.virtual.enabled)return;e.recalcSlides();const a=[];e.slides.forEach((e=>{const t=void 0===e.swiperSlideIndex?1*e.getAttribute("data-swiper-slide-index"):e.swiperSlideIndex;a[t]=e})),e.slides.forEach((e=>{e.removeAttribute("data-swiper-slide-index")})),a.forEach((e=>{s.append(e)})),e.recalcSlides(),e.slideTo(e.realIndex,0)}};function H(e){const t=this,s=a(),i=r(),n=t.touchEventsData;n.evCache.push(e);const{params:o,touches:d,enabled:c}=t;if(!c)return;if(!o.simulateTouch&&"mouse"===e.pointerType)return;if(t.animating&&o.preventInteractionOnTransition)return;!t.animating&&o.cssMode&&o.loop&&t.loopFix();let p=e;p.originalEvent&&(p=p.originalEvent);let u=p.target;if("wrapper"===o.touchEventsTarget&&!t.wrapperEl.contains(u))return;if("which"in p&&3===p.which)return;if("button"in p&&p.button>0)return;if(n.isTouched&&n.isMoved)return;const m=!!o.noSwipingClass&&""!==o.noSwipingClass,h=e.composedPath?e.composedPath():e.path;m&&p.target&&p.target.shadowRoot&&h&&(u=h[0]);const f=o.noSwipingSelector?o.noSwipingSelector:`.${o.noSwipingClass}`,g=!(!p.target||!p.target.shadowRoot);if(o.noSwiping&&(g?function(e,t){return void 0===t&&(t=this),function t(s){if(!s||s===a()||s===r())return null;s.assignedSlot&&(s=s.assignedSlot);const i=s.closest(e);return i||s.getRootNode?i||t(s.getRootNode().host):null}(t)}(f,u):u.closest(f)))return void(t.allowClick=!0);if(o.swipeHandler&&!u.closest(o.swipeHandler))return;d.currentX=p.pageX,d.currentY=p.pageY;const v=d.currentX,w=d.currentY,b=o.edgeSwipeDetection||o.iOSEdgeSwipeDetection,y=o.edgeSwipeThreshold||o.iOSEdgeSwipeThreshold;if(b&&(v<=y||v>=i.innerWidth-y)){if("prevent"!==b)return;e.preventDefault()}Object.assign(n,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),d.startX=v,d.startY=w,n.touchStartTime=l(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,o.threshold>0&&(n.allowThresholdMove=!1);let E=!0;u.matches(n.focusableElements)&&(E=!1,"SELECT"===u.nodeName&&(n.isTouched=!1)),s.activeElement&&s.activeElement.matches(n.focusableElements)&&s.activeElement!==u&&s.activeElement.blur();const x=E&&t.allowTouchMove&&o.touchStartPreventDefault;!o.touchStartForcePreventDefault&&!x||u.isContentEditable||p.preventDefault(),o.freeMode&&o.freeMode.enabled&&t.freeMode&&t.animating&&!o.cssMode&&t.freeMode.onTouchStart(),t.emit("touchStart",p)}function X(e){const t=a(),s=this,i=s.touchEventsData,{params:r,touches:n,rtlTranslate:o,enabled:d}=s;if(!d)return;if(!r.simulateTouch&&"mouse"===e.pointerType)return;let c=e;if(c.originalEvent&&(c=c.originalEvent),!i.isTouched)return void(i.startMoving&&i.isScrolling&&s.emit("touchMoveOpposite",c));const p=i.evCache.findIndex((e=>e.pointerId===c.pointerId));p>=0&&(i.evCache[p]=c);const u=i.evCache.length>1?i.evCache[0]:c,m=u.pageX,h=u.pageY;if(c.preventedByNestedSwiper)return n.startX=m,void(n.startY=h);if(!s.allowTouchMove)return c.target.matches(i.focusableElements)||(s.allowClick=!1),void(i.isTouched&&(Object.assign(n,{startX:m,startY:h,prevX:s.touches.currentX,prevY:s.touches.currentY,currentX:m,currentY:h}),i.touchStartTime=l()));if(r.touchReleaseOnEdges&&!r.loop)if(s.isVertical()){if(hn.startY&&s.translate>=s.minTranslate())return i.isTouched=!1,void(i.isMoved=!1)}else if(mn.startX&&s.translate>=s.minTranslate())return;if(t.activeElement&&c.target===t.activeElement&&c.target.matches(i.focusableElements))return i.isMoved=!0,void(s.allowClick=!1);if(i.allowTouchCallbacks&&s.emit("touchMove",c),c.targetTouches&&c.targetTouches.length>1)return;n.currentX=m,n.currentY=h;const f=n.currentX-n.startX,g=n.currentY-n.startY;if(s.params.threshold&&Math.sqrt(f**2+g**2)=25&&(e=180*Math.atan2(Math.abs(g),Math.abs(f))/Math.PI,i.isScrolling=s.isHorizontal()?e>r.touchAngle:90-e>r.touchAngle)}if(i.isScrolling&&s.emit("touchMoveOpposite",c),void 0===i.startMoving&&(n.currentX===n.startX&&n.currentY===n.startY||(i.startMoving=!0)),i.isScrolling||s.zoom&&s.params.zoom&&s.params.zoom.enabled&&i.evCache.length>1)return void(i.isTouched=!1);if(!i.startMoving)return;s.allowClick=!1,!r.cssMode&&c.cancelable&&c.preventDefault(),r.touchMoveStopPropagation&&!r.nested&&c.stopPropagation();let v=s.isHorizontal()?f:g,w=s.isHorizontal()?n.currentX-n.previousX:n.currentY-n.previousY;r.oneWayMovement&&(v=Math.abs(v)*(o?1:-1),w=Math.abs(w)*(o?1:-1)),n.diff=v,v*=r.touchRatio,o&&(v=-v,w=-w);const b=s.touchesDirection;s.swipeDirection=v>0?"prev":"next",s.touchesDirection=w>0?"prev":"next";const y=s.params.loop&&!r.cssMode,E="next"===s.swipeDirection&&s.allowSlideNext||"prev"===s.swipeDirection&&s.allowSlidePrev;if(!i.isMoved){if(y&&E&&s.loopFix({direction:s.swipeDirection}),i.startTranslate=s.getTranslate(),s.setTransition(0),s.animating){const e=new window.CustomEvent("transitionend",{bubbles:!0,cancelable:!0});s.wrapperEl.dispatchEvent(e)}i.allowMomentumBounce=!1,!r.grabCursor||!0!==s.allowSlideNext&&!0!==s.allowSlidePrev||s.setGrabCursor(!0),s.emit("sliderFirstMove",c)}let x;i.isMoved&&b!==s.touchesDirection&&y&&E&&Math.abs(v)>=1&&(s.loopFix({direction:s.swipeDirection,setTranslate:!0}),x=!0),s.emit("sliderMove",c),i.isMoved=!0,i.currentTranslate=v+i.startTranslate;let S=!0,T=r.resistanceRatio;if(r.touchReleaseOnEdges&&(T=0),v>0?(y&&E&&!x&&i.currentTranslate>(r.centeredSlides?s.minTranslate()-s.size/2:s.minTranslate())&&s.loopFix({direction:"prev",setTranslate:!0,activeSlideIndex:0}),i.currentTranslate>s.minTranslate()&&(S=!1,r.resistance&&(i.currentTranslate=s.minTranslate()-1+(-s.minTranslate()+i.startTranslate+v)**T))):v<0&&(y&&E&&!x&&i.currentTranslate<(r.centeredSlides?s.maxTranslate()+s.size/2:s.maxTranslate())&&s.loopFix({direction:"next",setTranslate:!0,activeSlideIndex:s.slides.length-("auto"===r.slidesPerView?s.slidesPerViewDynamic():Math.ceil(parseFloat(r.slidesPerView,10)))}),i.currentTranslatei.startTranslate&&(i.currentTranslate=i.startTranslate),s.allowSlidePrev||s.allowSlideNext||(i.currentTranslate=i.startTranslate),r.threshold>0){if(!(Math.abs(v)>r.threshold||i.allowThresholdMove))return void(i.currentTranslate=i.startTranslate);if(!i.allowThresholdMove)return i.allowThresholdMove=!0,n.startX=n.currentX,n.startY=n.currentY,i.currentTranslate=i.startTranslate,void(n.diff=s.isHorizontal()?n.currentX-n.startX:n.currentY-n.startY)}r.followFinger&&!r.cssMode&&((r.freeMode&&r.freeMode.enabled&&s.freeMode||r.watchSlidesProgress)&&(s.updateActiveIndex(),s.updateSlidesClasses()),r.freeMode&&r.freeMode.enabled&&s.freeMode&&s.freeMode.onTouchMove(),s.updateProgress(i.currentTranslate),s.setTranslate(i.currentTranslate))}function Y(e){const t=this,s=t.touchEventsData,a=s.evCache.findIndex((t=>t.pointerId===e.pointerId));if(a>=0&&s.evCache.splice(a,1),["pointercancel","pointerout","pointerleave","contextmenu"].includes(e.type)){if(!(["pointercancel","contextmenu"].includes(e.type)&&(t.browser.isSafari||t.browser.isWebView)))return}const{params:i,touches:r,rtlTranslate:o,slidesGrid:d,enabled:c}=t;if(!c)return;if(!i.simulateTouch&&"mouse"===e.pointerType)return;let p=e;if(p.originalEvent&&(p=p.originalEvent),s.allowTouchCallbacks&&t.emit("touchEnd",p),s.allowTouchCallbacks=!1,!s.isTouched)return s.isMoved&&i.grabCursor&&t.setGrabCursor(!1),s.isMoved=!1,void(s.startMoving=!1);i.grabCursor&&s.isMoved&&s.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);const u=l(),m=u-s.touchStartTime;if(t.allowClick){const e=p.path||p.composedPath&&p.composedPath();t.updateClickedSlide(e&&e[0]||p.target,e),t.emit("tap click",p),m<300&&u-s.lastClickTime<300&&t.emit("doubleTap doubleClick",p)}if(s.lastClickTime=l(),n((()=>{t.destroyed||(t.allowClick=!0)})),!s.isTouched||!s.isMoved||!t.swipeDirection||0===r.diff||s.currentTranslate===s.startTranslate)return s.isTouched=!1,s.isMoved=!1,void(s.startMoving=!1);let h;if(s.isTouched=!1,s.isMoved=!1,s.startMoving=!1,h=i.followFinger?o?t.translate:-t.translate:-s.currentTranslate,i.cssMode)return;if(i.freeMode&&i.freeMode.enabled)return void t.freeMode.onTouchEnd({currentPos:h});let f=0,g=t.slidesSizesGrid[0];for(let e=0;e=d[e]&&h=d[e]&&(f=e,g=d[d.length-1]-d[d.length-2])}let v=null,w=null;i.rewind&&(t.isBeginning?w=i.virtual&&i.virtual.enabled&&t.virtual?t.virtual.slides.length-1:t.slides.length-1:t.isEnd&&(v=0));const b=(h-d[f])/g,y=fi.longSwipesMs){if(!i.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(b>=i.longSwipesRatio?t.slideTo(i.rewind&&t.isEnd?v:f+y):t.slideTo(f)),"prev"===t.swipeDirection&&(b>1-i.longSwipesRatio?t.slideTo(f+y):null!==w&&b<0&&Math.abs(b)>i.longSwipesRatio?t.slideTo(w):t.slideTo(f))}else{if(!i.shortSwipes)return void t.slideTo(t.activeIndex);t.navigation&&(p.target===t.navigation.nextEl||p.target===t.navigation.prevEl)?p.target===t.navigation.nextEl?t.slideTo(f+y):t.slideTo(f):("next"===t.swipeDirection&&t.slideTo(null!==v?v:f+y),"prev"===t.swipeDirection&&t.slideTo(null!==w?w:f))}}function N(){const e=this,{params:t,el:s}=e;if(s&&0===s.offsetWidth)return;t.breakpoints&&e.setBreakpoint();const{allowSlideNext:a,allowSlidePrev:i,snapGrid:r}=e,n=e.virtual&&e.params.virtual.enabled;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses();const l=n&&t.loop;!("auto"===t.slidesPerView||t.slidesPerView>1)||!e.isEnd||e.isBeginning||e.params.centeredSlides||l?e.params.loop&&!n?e.slideToLoop(e.realIndex,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0):e.slideTo(e.slides.length-1,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&(clearTimeout(e.autoplay.resizeTimeout),e.autoplay.resizeTimeout=setTimeout((()=>{e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.resume()}),500)),e.allowSlidePrev=i,e.allowSlideNext=a,e.params.watchOverflow&&r!==e.snapGrid&&e.checkOverflow()}function B(e){const t=this;t.enabled&&(t.allowClick||(t.params.preventClicks&&e.preventDefault(),t.params.preventClicksPropagation&&t.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function R(){const e=this,{wrapperEl:t,rtlTranslate:s,enabled:a}=e;if(!a)return;let i;e.previousTranslate=e.translate,e.isHorizontal()?e.translate=-t.scrollLeft:e.translate=-t.scrollTop,0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();const r=e.maxTranslate()-e.minTranslate();i=0===r?0:(e.translate-e.minTranslate())/r,i!==e.progress&&e.updateProgress(s?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}function q(e){const t=this;z(t,e.target),t.params.cssMode||"auto"!==t.params.slidesPerView&&!t.params.autoHeight||t.update()}let V=!1;function F(){}const _=(e,t)=>{const s=a(),{params:i,el:r,wrapperEl:n,device:l}=e,o=!!i.nested,d="on"===t?"addEventListener":"removeEventListener",c=t;r[d]("pointerdown",e.onTouchStart,{passive:!1}),s[d]("pointermove",e.onTouchMove,{passive:!1,capture:o}),s[d]("pointerup",e.onTouchEnd,{passive:!0}),s[d]("pointercancel",e.onTouchEnd,{passive:!0}),s[d]("pointerout",e.onTouchEnd,{passive:!0}),s[d]("pointerleave",e.onTouchEnd,{passive:!0}),s[d]("contextmenu",e.onTouchEnd,{passive:!0}),(i.preventClicks||i.preventClicksPropagation)&&r[d]("click",e.onClick,!0),i.cssMode&&n[d]("scroll",e.onScroll),i.updateOnWindowResize?e[c](l.ios||l.android?"resize orientationchange observerUpdate":"resize observerUpdate",N,!0):e[c]("observerUpdate",N,!0),r[d]("load",e.onLoad,{capture:!0})};const j=(e,t)=>e.grid&&t.grid&&t.grid.rows>1;var W={init:!0,direction:"horizontal",oneWayMovement:!1,touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:5,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,loop:!1,loopedSlides:null,loopPreventsSliding:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",slideNextClass:"swiper-slide-next",slidePrevClass:"swiper-slide-prev",wrapperClass:"swiper-wrapper",lazyPreloaderClass:"swiper-lazy-preloader",lazyPreloadPrevNext:0,runCallbacksOnInit:!0,_emitClasses:!1};function U(e,t){return function(s){void 0===s&&(s={});const a=Object.keys(s)[0],i=s[a];"object"==typeof i&&null!==i?(!0===e[a]&&(e[a]={enabled:!0}),"navigation"===a&&e[a]&&e[a].enabled&&!e[a].prevEl&&!e[a].nextEl&&(e[a].auto=!0),["pagination","scrollbar"].indexOf(a)>=0&&e[a]&&e[a].enabled&&!e[a].el&&(e[a].auto=!0),a in e&&"enabled"in i?("object"!=typeof e[a]||"enabled"in e[a]||(e[a].enabled=!0),e[a]||(e[a]={enabled:!1}),c(t,s)):c(t,s)):c(t,s)}}const K={eventsEmitter:L,update:I,translate:k,transition:{setTransition:function(e,t){const s=this;s.params.cssMode||(s.wrapperEl.style.transitionDuration=`${e}ms`,s.wrapperEl.style.transitionDelay=0===e?"0ms":""),s.emit("setTransition",e,t)},transitionStart:function(e,t){void 0===e&&(e=!0);const s=this,{params:a}=s;a.cssMode||(a.autoHeight&&s.updateAutoHeight(),O({swiper:s,runCallbacks:e,direction:t,step:"Start"}))},transitionEnd:function(e,t){void 0===e&&(e=!0);const s=this,{params:a}=s;s.animating=!1,a.cssMode||(s.setTransition(0),O({swiper:s,runCallbacks:e,direction:t,step:"End"}))}},slide:D,loop:G,grabCursor:{setGrabCursor:function(e){const t=this;if(!t.params.simulateTouch||t.params.watchOverflow&&t.isLocked||t.params.cssMode)return;const s="container"===t.params.touchEventsTarget?t.el:t.wrapperEl;t.isElement&&(t.__preventObserver__=!0),s.style.cursor="move",s.style.cursor=e?"grabbing":"grab",t.isElement&&requestAnimationFrame((()=>{t.__preventObserver__=!1}))},unsetGrabCursor:function(){const e=this;e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e.isElement&&(e.__preventObserver__=!0),e["container"===e.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="",e.isElement&&requestAnimationFrame((()=>{e.__preventObserver__=!1})))}},events:{attachEvents:function(){const e=this,t=a(),{params:s}=e;e.onTouchStart=H.bind(e),e.onTouchMove=X.bind(e),e.onTouchEnd=Y.bind(e),s.cssMode&&(e.onScroll=R.bind(e)),e.onClick=B.bind(e),e.onLoad=q.bind(e),V||(t.addEventListener("touchstart",F),V=!0),_(e,"on")},detachEvents:function(){_(this,"off")}},breakpoints:{setBreakpoint:function(){const e=this,{realIndex:t,initialized:s,params:a,el:i}=e,r=a.breakpoints;if(!r||r&&0===Object.keys(r).length)return;const n=e.getBreakpoint(r,e.params.breakpointsBase,e.el);if(!n||e.currentBreakpoint===n)return;const l=(n in r?r[n]:void 0)||e.originalParams,o=j(e,a),d=j(e,l),p=a.enabled;o&&!d?(i.classList.remove(`${a.containerModifierClass}grid`,`${a.containerModifierClass}grid-column`),e.emitContainerClasses()):!o&&d&&(i.classList.add(`${a.containerModifierClass}grid`),(l.grid.fill&&"column"===l.grid.fill||!l.grid.fill&&"column"===a.grid.fill)&&i.classList.add(`${a.containerModifierClass}grid-column`),e.emitContainerClasses()),["navigation","pagination","scrollbar"].forEach((t=>{if(void 0===l[t])return;const s=a[t]&&a[t].enabled,i=l[t]&&l[t].enabled;s&&!i&&e[t].disable(),!s&&i&&e[t].enable()}));const u=l.direction&&l.direction!==a.direction,m=a.loop&&(l.slidesPerView!==a.slidesPerView||u),h=a.loop;u&&s&&e.changeDirection(),c(e.params,l);const f=e.params.enabled,g=e.params.loop;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),p&&!f?e.disable():!p&&f&&e.enable(),e.currentBreakpoint=n,e.emit("_beforeBreakpoint",l),s&&(m?(e.loopDestroy(),e.loopCreate(t),e.updateSlides()):!h&&g?(e.loopCreate(t),e.updateSlides()):h&&!g&&e.loopDestroy()),e.emit("breakpoint",l)},getBreakpoint:function(e,t,s){if(void 0===t&&(t="window"),!e||"container"===t&&!s)return;let a=!1;const i=r(),n="window"===t?i.innerHeight:s.clientHeight,l=Object.keys(e).map((e=>{if("string"==typeof e&&0===e.indexOf("@")){const t=parseFloat(e.substr(1));return{value:n*t,point:e}}return{value:e,point:e}}));l.sort(((e,t)=>parseInt(e.value,10)-parseInt(t.value,10)));for(let e=0;es}else e.isLocked=1===e.snapGrid.length;!0===s.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===s.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),t&&t!==e.isLocked&&(e.isEnd=!1),t!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:{addClasses:function(){const e=this,{classNames:t,params:s,rtl:a,el:i,device:r}=e,n=function(e,t){const s=[];return e.forEach((e=>{"object"==typeof e?Object.keys(e).forEach((a=>{e[a]&&s.push(t+a)})):"string"==typeof e&&s.push(t+e)})),s}(["initialized",s.direction,{"free-mode":e.params.freeMode&&s.freeMode.enabled},{autoheight:s.autoHeight},{rtl:a},{grid:s.grid&&s.grid.rows>1},{"grid-column":s.grid&&s.grid.rows>1&&"column"===s.grid.fill},{android:r.android},{ios:r.ios},{"css-mode":s.cssMode},{centered:s.cssMode&&s.centeredSlides},{"watch-progress":s.watchSlidesProgress}],s.containerModifierClass);t.push(...n),i.classList.add(...t),e.emitContainerClasses()},removeClasses:function(){const{el:e,classNames:t}=this;e.classList.remove(...t),this.emitContainerClasses()}}},Z={};class Q{constructor(){let e,t;for(var s=arguments.length,i=new Array(s),r=0;r1){const e=[];return n.querySelectorAll(t.el).forEach((s=>{const a=c({},t,{el:s});e.push(new Q(a))})),e}const l=this;l.__swiper__=!0,l.support=M(),l.device=C({userAgent:t.userAgent}),l.browser=P(),l.eventsListeners={},l.eventsAnyListeners=[],l.modules=[...l.__modules__],t.modules&&Array.isArray(t.modules)&&l.modules.push(...t.modules);const o={};l.modules.forEach((e=>{e({params:t,swiper:l,extendParams:U(t,o),on:l.on.bind(l),once:l.once.bind(l),off:l.off.bind(l),emit:l.emit.bind(l)})}));const d=c({},W,o);return l.params=c({},d,Z,t),l.originalParams=c({},l.params),l.passedParams=c({},t),l.params&&l.params.on&&Object.keys(l.params.on).forEach((e=>{l.on(e,l.params.on[e])})),l.params&&l.params.onAny&&l.onAny(l.params.onAny),Object.assign(l,{enabled:l.params.enabled,el:e,classNames:[],slides:[],slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===l.params.direction,isVertical:()=>"vertical"===l.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,cssOverflowAdjustment(){return Math.trunc(this.translate/2**23)*2**23},allowSlideNext:l.params.allowSlideNext,allowSlidePrev:l.params.allowSlidePrev,touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:l.params.focusableElements,lastClickTime:0,clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,startMoving:void 0,evCache:[]},allowClick:!0,allowTouchMove:l.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),l.emit("_swiper"),l.params.init&&l.init(),l}getSlideIndex(e){const{slidesEl:t,params:s}=this,a=w(h(t,`.${s.slideClass}, swiper-slide`)[0]);return w(e)-a}getSlideIndexByData(e){return this.getSlideIndex(this.slides.filter((t=>1*t.getAttribute("data-swiper-slide-index")===e))[0])}recalcSlides(){const{slidesEl:e,params:t}=this;this.slides=h(e,`.${t.slideClass}, swiper-slide`)}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,t){const s=this;e=Math.min(Math.max(e,0),1);const a=s.minTranslate(),i=(s.maxTranslate()-a)*e+a;s.translateTo(i,void 0===t?0:t),s.updateActiveIndex(),s.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=e.el.className.split(" ").filter((t=>0===t.indexOf("swiper")||0===t.indexOf(e.params.containerModifierClass)));e.emit("_containerClasses",t.join(" "))}getSlideClasses(e){const t=this;return t.destroyed?"":e.className.split(" ").filter((e=>0===e.indexOf("swiper-slide")||0===e.indexOf(t.params.slideClass))).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=[];e.slides.forEach((s=>{const a=e.getSlideClasses(s);t.push({slideEl:s,classNames:a}),e.emit("_slideClass",s,a)})),e.emit("_slideClasses",t)}slidesPerViewDynamic(e,t){void 0===e&&(e="current"),void 0===t&&(t=!1);const{params:s,slides:a,slidesGrid:i,slidesSizesGrid:r,size:n,activeIndex:l}=this;let o=1;if("number"==typeof s.slidesPerView)return s.slidesPerView;if(s.centeredSlides){let e,t=a[l]?a[l].swiperSlideSize:0;for(let s=l+1;sn&&(e=!0));for(let s=l-1;s>=0;s-=1)a[s]&&!e&&(t+=a[s].swiperSlideSize,o+=1,t>n&&(e=!0))}else if("current"===e)for(let e=l+1;e=0;e-=1){i[l]-i[e]{t.complete&&z(e,t)})),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),s.freeMode&&s.freeMode.enabled&&!s.cssMode)a(),s.autoHeight&&e.updateAutoHeight();else{if(("auto"===s.slidesPerView||s.slidesPerView>1)&&e.isEnd&&!s.centeredSlides){const t=e.virtual&&s.virtual.enabled?e.virtual.slides:e.slides;i=e.slideTo(t.length-1,0,!1,!0)}else i=e.slideTo(e.activeIndex,0,!1,!0);i||a()}s.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,t){void 0===t&&(t=!0);const s=this,a=s.params.direction;return e||(e="horizontal"===a?"vertical":"horizontal"),e===a||"horizontal"!==e&&"vertical"!==e||(s.el.classList.remove(`${s.params.containerModifierClass}${a}`),s.el.classList.add(`${s.params.containerModifierClass}${e}`),s.emitContainerClasses(),s.params.direction=e,s.slides.forEach((t=>{"vertical"===e?t.style.width="":t.style.height=""})),s.emit("changeDirection"),t&&s.update()),s}changeLanguageDirection(e){const t=this;t.rtl&&"rtl"===e||!t.rtl&&"ltr"===e||(t.rtl="rtl"===e,t.rtlTranslate="horizontal"===t.params.direction&&t.rtl,t.rtl?(t.el.classList.add(`${t.params.containerModifierClass}rtl`),t.el.dir="rtl"):(t.el.classList.remove(`${t.params.containerModifierClass}rtl`),t.el.dir="ltr"),t.update())}mount(e){const t=this;if(t.mounted)return!0;let s=e||t.params.el;if("string"==typeof s&&(s=document.querySelector(s)),!s)return!1;s.swiper=t,s.parentNode&&s.parentNode.host&&"SWIPER-CONTAINER"===s.parentNode.host.nodeName&&(t.isElement=!0);const a=()=>`.${(t.params.wrapperClass||"").trim().split(" ").join(".")}`;let i=(()=>{if(s&&s.shadowRoot&&s.shadowRoot.querySelector){return s.shadowRoot.querySelector(a())}return h(s,a())[0]})();return!i&&t.params.createElements&&(i=f("div",t.params.wrapperClass),s.append(i),h(s,`.${t.params.slideClass}`).forEach((e=>{i.append(e)}))),Object.assign(t,{el:s,wrapperEl:i,slidesEl:t.isElement&&!s.parentNode.host.slideSlots?s.parentNode.host:i,hostEl:t.isElement?s.parentNode.host:s,mounted:!0,rtl:"rtl"===s.dir.toLowerCase()||"rtl"===v(s,"direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===s.dir.toLowerCase()||"rtl"===v(s,"direction")),wrongRTL:"-webkit-box"===v(i,"display")}),!0}init(e){const t=this;if(t.initialized)return t;if(!1===t.mount(e))return t;t.emit("beforeInit"),t.params.breakpoints&&t.setBreakpoint(),t.addClasses(),t.updateSize(),t.updateSlides(),t.params.watchOverflow&&t.checkOverflow(),t.params.grabCursor&&t.enabled&&t.setGrabCursor(),t.params.loop&&t.virtual&&t.params.virtual.enabled?t.slideTo(t.params.initialSlide+t.virtual.slidesBefore,0,t.params.runCallbacksOnInit,!1,!0):t.slideTo(t.params.initialSlide,0,t.params.runCallbacksOnInit,!1,!0),t.params.loop&&t.loopCreate(),t.attachEvents();const s=[...t.el.querySelectorAll('[loading="lazy"]')];return t.isElement&&s.push(...t.hostEl.querySelectorAll('[loading="lazy"]')),s.forEach((e=>{e.complete?z(t,e):e.addEventListener("load",(e=>{z(t,e.target)}))})),$(t),t.initialized=!0,$(t),t.emit("init"),t.emit("afterInit"),t}destroy(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0);const s=this,{params:a,el:i,wrapperEl:r,slides:n}=s;return void 0===s.params||s.destroyed||(s.emit("beforeDestroy"),s.initialized=!1,s.detachEvents(),a.loop&&s.loopDestroy(),t&&(s.removeClasses(),i.removeAttribute("style"),r.removeAttribute("style"),n&&n.length&&n.forEach((e=>{e.classList.remove(a.slideVisibleClass,a.slideActiveClass,a.slideNextClass,a.slidePrevClass),e.removeAttribute("style"),e.removeAttribute("data-swiper-slide-index")}))),s.emit("destroy"),Object.keys(s.eventsListeners).forEach((e=>{s.off(e)})),!1!==e&&(s.el.swiper=null,function(e){const t=e;Object.keys(t).forEach((e=>{try{t[e]=null}catch(e){}try{delete t[e]}catch(e){}}))}(s)),s.destroyed=!0),null}static extendDefaults(e){c(Z,e)}static get extendedDefaults(){return Z}static get defaults(){return W}static installModule(e){Q.prototype.__modules__||(Q.prototype.__modules__=[]);const t=Q.prototype.__modules__;"function"==typeof e&&t.indexOf(e)<0&&t.push(e)}static use(e){return Array.isArray(e)?(e.forEach((e=>Q.installModule(e))),Q):(Q.installModule(e),Q)}}function J(e,t,s,a){return e.params.createElements&&Object.keys(a).forEach((i=>{if(!s[i]&&!0===s.auto){let r=h(e.el,`.${a[i]}`)[0];r||(r=f("div",a[i]),r.className=a[i],e.el.append(r)),s[i]=r,t[i]=r}})),s}function ee(e){return void 0===e&&(e=""),`.${e.trim().replace(/([\.:!+\/])/g,"\\$1").replace(/ /g,".")}`}function te(e){const t=this,{params:s,slidesEl:a}=t;s.loop&&t.loopDestroy();const i=e=>{if("string"==typeof e){const t=document.createElement("div");t.innerHTML=e,a.append(t.children[0]),t.innerHTML=""}else a.append(e)};if("object"==typeof e&&"length"in e)for(let t=0;t{if("string"==typeof e){const t=document.createElement("div");t.innerHTML=e,i.prepend(t.children[0]),t.innerHTML=""}else i.prepend(e)};if("object"==typeof e&&"length"in e){for(let t=0;t=l)return void s.appendSlide(t);let o=n>e?n+1:n;const d=[];for(let t=l-1;t>=e;t-=1){const e=s.slides[t];e.remove(),d.unshift(e)}if("object"==typeof t&&"length"in t){for(let e=0;ee?n+t.length:n}else r.append(t);for(let e=0;e{if(s.params.effect!==t)return;s.classNames.push(`${s.params.containerModifierClass}${t}`),l&&l()&&s.classNames.push(`${s.params.containerModifierClass}3d`);const e=n?n():{};Object.assign(s.params,e),Object.assign(s.originalParams,e)})),a("setTranslate",(()=>{s.params.effect===t&&i()})),a("setTransition",((e,a)=>{s.params.effect===t&&r(a)})),a("transitionEnd",(()=>{if(s.params.effect===t&&o){if(!d||!d().slideShadows)return;s.slides.forEach((e=>{e.querySelectorAll(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").forEach((e=>e.remove()))})),o()}})),a("virtualUpdate",(()=>{s.params.effect===t&&(s.slides.length||(c=!0),requestAnimationFrame((()=>{c&&s.slides&&s.slides.length&&(i(),c=!1)})))}))}function le(e,t){const s=m(t);return s!==t&&(s.style.backfaceVisibility="hidden",s.style["-webkit-backface-visibility"]="hidden"),s}function oe(e){let{swiper:t,duration:s,transformElements:a,allSlides:i}=e;const{activeIndex:r}=t;if(t.params.virtualTranslate&&0!==s){let e,s=!1;e=i?a:a.filter((e=>{const s=e.classList.contains("swiper-slide-transform")?(e=>{if(!e.parentElement)return t.slides.filter((t=>t.shadowRoot&&t.shadowRoot===e.parentNode))[0];return e.parentElement})(e):e;return t.getSlideIndex(s)===r})),e.forEach((e=>{y(e,(()=>{if(s)return;if(!t||t.destroyed)return;s=!0,t.animating=!1;const e=new window.CustomEvent("transitionend",{bubbles:!0,cancelable:!0});t.wrapperEl.dispatchEvent(e)}))}))}}function de(e,t,s){const a=`swiper-slide-shadow${s?`-${s}`:""}${e?` swiper-slide-shadow-${e}`:""}`,i=m(t);let r=i.querySelector(`.${a.split(" ").join(".")}`);return r||(r=f("div",a.split(" ")),i.append(r)),r}Object.keys(K).forEach((e=>{Object.keys(K[e]).forEach((t=>{Q.prototype[t]=K[e][t]}))})),Q.use([function(e){let{swiper:t,on:s,emit:a}=e;const i=r();let n=null,l=null;const o=()=>{t&&!t.destroyed&&t.initialized&&(a("beforeResize"),a("resize"))},d=()=>{t&&!t.destroyed&&t.initialized&&a("orientationchange")};s("init",(()=>{t.params.resizeObserver&&void 0!==i.ResizeObserver?t&&!t.destroyed&&t.initialized&&(n=new ResizeObserver((e=>{l=i.requestAnimationFrame((()=>{const{width:s,height:a}=t;let i=s,r=a;e.forEach((e=>{let{contentBoxSize:s,contentRect:a,target:n}=e;n&&n!==t.el||(i=a?a.width:(s[0]||s).inlineSize,r=a?a.height:(s[0]||s).blockSize)})),i===s&&r===a||o()}))})),n.observe(t.el)):(i.addEventListener("resize",o),i.addEventListener("orientationchange",d))})),s("destroy",(()=>{l&&i.cancelAnimationFrame(l),n&&n.unobserve&&t.el&&(n.unobserve(t.el),n=null),i.removeEventListener("resize",o),i.removeEventListener("orientationchange",d)}))},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const n=[],l=r(),o=function(e,s){void 0===s&&(s={});const a=new(l.MutationObserver||l.WebkitMutationObserver)((e=>{if(t.__preventObserver__)return;if(1===e.length)return void i("observerUpdate",e[0]);const s=function(){i("observerUpdate",e[0])};l.requestAnimationFrame?l.requestAnimationFrame(s):l.setTimeout(s,0)}));a.observe(e,{attributes:void 0===s.attributes||s.attributes,childList:void 0===s.childList||s.childList,characterData:void 0===s.characterData||s.characterData}),n.push(a)};s({observer:!1,observeParents:!1,observeSlideChildren:!1}),a("init",(()=>{if(t.params.observer){if(t.params.observeParents){const e=b(t.hostEl);for(let t=0;t{n.forEach((e=>{e.disconnect()})),n.splice(0,n.length)}))}]);const ce=[function(e){let t,{swiper:s,extendParams:i,on:r,emit:n}=e;i({virtual:{enabled:!1,slides:[],cache:!0,renderSlide:null,renderExternal:null,renderExternalUpdate:!0,addSlidesBefore:0,addSlidesAfter:0}});const l=a();s.virtual={cache:{},from:void 0,to:void 0,slides:[],offset:0,slidesGrid:[]};const o=l.createElement("div");function d(e,t){const a=s.params.virtual;if(a.cache&&s.virtual.cache[t])return s.virtual.cache[t];let i;return a.renderSlide?(i=a.renderSlide.call(s,e,t),"string"==typeof i&&(o.innerHTML=i,i=o.children[0])):i=s.isElement?f("swiper-slide"):f("div",s.params.slideClass),i.setAttribute("data-swiper-slide-index",t),a.renderSlide||(i.innerHTML=e),a.cache&&(s.virtual.cache[t]=i),i}function c(e){const{slidesPerView:t,slidesPerGroup:a,centeredSlides:i,loop:r}=s.params,{addSlidesBefore:l,addSlidesAfter:o}=s.params.virtual,{from:c,to:p,slides:u,slidesGrid:m,offset:f}=s.virtual;s.params.cssMode||s.updateActiveIndex();const g=s.activeIndex||0;let v,w,b;v=s.rtlTranslate?"right":s.isHorizontal()?"left":"top",i?(w=Math.floor(t/2)+a+o,b=Math.floor(t/2)+a+l):(w=t+(a-1)+o,b=(r?t:a)+l);let y=g-b,E=g+w;r||(y=Math.max(y,0),E=Math.min(E,u.length-1));let x=(s.slidesGrid[y]||0)-(s.slidesGrid[0]||0);function S(){s.updateSlides(),s.updateProgress(),s.updateSlidesClasses(),n("virtualUpdate")}if(r&&g>=b?(y-=b,i||(x+=s.slidesGrid[0])):r&&g{e.style[v]=x-Math.abs(s.cssOverflowAdjustment())+"px"})),s.updateProgress(),void n("virtualUpdate");if(s.params.virtual.renderExternal)return s.params.virtual.renderExternal.call(s,{offset:x,from:y,to:E,slides:function(){const e=[];for(let t=y;t<=E;t+=1)e.push(u[t]);return e}()}),void(s.params.virtual.renderExternalUpdate?S():n("virtualUpdate"));const T=[],M=[],C=e=>{let t=e;return e<0?t=u.length+e:t>=u.length&&(t-=u.length),t};if(e)s.slides.filter((e=>e.matches(`.${s.params.slideClass}, swiper-slide`))).forEach((e=>{e.remove()}));else for(let e=c;e<=p;e+=1)if(eE){const t=C(e);s.slides.filter((e=>e.matches(`.${s.params.slideClass}[data-swiper-slide-index="${t}"], swiper-slide[data-swiper-slide-index="${t}"]`))).forEach((e=>{e.remove()}))}const P=r?-u.length:0,L=r?2*u.length:u.length;for(let t=P;t=y&&t<=E){const s=C(t);void 0===p||e?M.push(s):(t>p&&M.push(s),t{s.slidesEl.append(d(u[e],e))})),r)for(let e=T.length-1;e>=0;e-=1){const t=T[e];s.slidesEl.prepend(d(u[t],t))}else T.sort(((e,t)=>t-e)),T.forEach((e=>{s.slidesEl.prepend(d(u[e],e))}));h(s.slidesEl,".swiper-slide, swiper-slide").forEach((e=>{e.style[v]=x-Math.abs(s.cssOverflowAdjustment())+"px"})),S()}r("beforeInit",(()=>{if(!s.params.virtual.enabled)return;let e;if(void 0===s.passedParams.virtual.slides){const t=[...s.slidesEl.children].filter((e=>e.matches(`.${s.params.slideClass}, swiper-slide`)));t&&t.length&&(s.virtual.slides=[...t],e=!0,t.forEach(((e,t)=>{e.setAttribute("data-swiper-slide-index",t),s.virtual.cache[t]=e,e.remove()})))}e||(s.virtual.slides=s.params.virtual.slides),s.classNames.push(`${s.params.containerModifierClass}virtual`),s.params.watchSlidesProgress=!0,s.originalParams.watchSlidesProgress=!0,c()})),r("setTranslate",(()=>{s.params.virtual.enabled&&(s.params.cssMode&&!s._immediateVirtual?(clearTimeout(t),t=setTimeout((()=>{c()}),100)):c())})),r("init update resize",(()=>{s.params.virtual.enabled&&s.params.cssMode&&p(s.wrapperEl,"--swiper-virtual-size",`${s.virtualSize}px`)})),Object.assign(s.virtual,{appendSlide:function(e){if("object"==typeof e&&"length"in e)for(let t=0;t{const a=e[s],r=a.getAttribute("data-swiper-slide-index");r&&a.setAttribute("data-swiper-slide-index",parseInt(r,10)+i),t[parseInt(s,10)+i]=a})),s.virtual.cache=t}c(!0),s.slideTo(a,0)},removeSlide:function(e){if(null==e)return;let t=s.activeIndex;if(Array.isArray(e))for(let a=e.length-1;a>=0;a-=1)s.params.virtual.cache&&(delete s.virtual.cache[e[a]],Object.keys(s.virtual.cache).forEach((t=>{t>e&&(s.virtual.cache[t-1]=s.virtual.cache[t],s.virtual.cache[t-1].setAttribute("data-swiper-slide-index",t-1),delete s.virtual.cache[t])}))),s.virtual.slides.splice(e[a],1),e[a]{t>e&&(s.virtual.cache[t-1]=s.virtual.cache[t],s.virtual.cache[t-1].setAttribute("data-swiper-slide-index",t-1),delete s.virtual.cache[t])}))),s.virtual.slides.splice(e,1),e0&&0===b(t.el,`.${t.params.slideActiveClass}`).length)return;const a=t.el,i=a.clientWidth,r=a.clientHeight,n=o.innerWidth,l=o.innerHeight,d=g(a);s&&(d.left-=a.scrollLeft);const c=[[d.left,d.top],[d.left+i,d.top],[d.left,d.top+r],[d.left+i,d.top+r]];for(let t=0;t=0&&s[0]<=n&&s[1]>=0&&s[1]<=l){if(0===s[0]&&0===s[1])continue;e=!0}}if(!e)return}t.isHorizontal()?((d||c||p||u)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),((c||u)&&!s||(d||p)&&s)&&t.slideNext(),((d||p)&&!s||(c||u)&&s)&&t.slidePrev()):((d||c||m||h)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),(c||h)&&t.slideNext(),(d||m)&&t.slidePrev()),n("keyPress",i)}}function c(){t.keyboard.enabled||(l.addEventListener("keydown",d),t.keyboard.enabled=!0)}function p(){t.keyboard.enabled&&(l.removeEventListener("keydown",d),t.keyboard.enabled=!1)}t.keyboard={enabled:!1},s({keyboard:{enabled:!1,onlyInViewport:!0,pageUpDown:!0}}),i("init",(()=>{t.params.keyboard.enabled&&c()})),i("destroy",(()=>{t.keyboard.enabled&&p()})),Object.assign(t.keyboard,{enable:c,disable:p})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const o=r();let d;s({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null,noMousewheelClass:"swiper-no-mousewheel"}}),t.mousewheel={enabled:!1};let c,p=l();const u=[];function m(){t.enabled&&(t.mouseEntered=!0)}function h(){t.enabled&&(t.mouseEntered=!1)}function f(e){return!(t.params.mousewheel.thresholdDelta&&e.delta=6&&l()-p<60||(e.direction<0?t.isEnd&&!t.params.loop||t.animating||(t.slideNext(),i("scroll",e.raw)):t.isBeginning&&!t.params.loop||t.animating||(t.slidePrev(),i("scroll",e.raw)),p=(new o.Date).getTime(),!1)))}function g(e){let s=e,a=!0;if(!t.enabled)return;if(e.target.closest(`.${t.params.mousewheel.noMousewheelClass}`))return;const r=t.params.mousewheel;t.params.cssMode&&s.preventDefault();let o=t.el;"container"!==t.params.mousewheel.eventsTarget&&(o=document.querySelector(t.params.mousewheel.eventsTarget));const p=o&&o.contains(s.target);if(!t.mouseEntered&&!p&&!r.releaseOnEdges)return!0;s.originalEvent&&(s=s.originalEvent);let m=0;const h=t.rtlTranslate?-1:1,g=function(e){let t=0,s=0,a=0,i=0;return"detail"in e&&(s=e.detail),"wheelDelta"in e&&(s=-e.wheelDelta/120),"wheelDeltaY"in e&&(s=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=s,s=0),a=10*t,i=10*s,"deltaY"in e&&(i=e.deltaY),"deltaX"in e&&(a=e.deltaX),e.shiftKey&&!a&&(a=i,i=0),(a||i)&&e.deltaMode&&(1===e.deltaMode?(a*=40,i*=40):(a*=800,i*=800)),a&&!t&&(t=a<1?-1:1),i&&!s&&(s=i<1?-1:1),{spinX:t,spinY:s,pixelX:a,pixelY:i}}(s);if(r.forceToAxis)if(t.isHorizontal()){if(!(Math.abs(g.pixelX)>Math.abs(g.pixelY)))return!0;m=-g.pixelX*h}else{if(!(Math.abs(g.pixelY)>Math.abs(g.pixelX)))return!0;m=-g.pixelY}else m=Math.abs(g.pixelX)>Math.abs(g.pixelY)?-g.pixelX*h:-g.pixelY;if(0===m)return!0;r.invert&&(m=-m);let v=t.getTranslate()+m*r.sensitivity;if(v>=t.minTranslate()&&(v=t.minTranslate()),v<=t.maxTranslate()&&(v=t.maxTranslate()),a=!!t.params.loop||!(v===t.minTranslate()||v===t.maxTranslate()),a&&t.params.nested&&s.stopPropagation(),t.params.freeMode&&t.params.freeMode.enabled){const e={time:l(),delta:Math.abs(m),direction:Math.sign(m)},a=c&&e.time=t.minTranslate()&&(l=t.minTranslate()),l<=t.maxTranslate()&&(l=t.maxTranslate()),t.setTransition(0),t.setTranslate(l),t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses(),(!o&&t.isBeginning||!p&&t.isEnd)&&t.updateSlidesClasses(),t.params.loop&&t.loopFix({direction:e.direction<0?"next":"prev",byMousewheel:!0}),t.params.freeMode.sticky){clearTimeout(d),d=void 0,u.length>=15&&u.shift();const s=u.length?u[u.length-1]:void 0,a=u[0];if(u.push(e),s&&(e.delta>s.delta||e.direction!==s.direction))u.splice(0);else if(u.length>=15&&e.time-a.time<500&&a.delta-e.delta>=1&&e.delta<=6){const s=m>0?.8:.2;c=e,u.splice(0),d=n((()=>{t.slideToClosest(t.params.speed,!0,void 0,s)}),0)}d||(d=n((()=>{c=e,u.splice(0),t.slideToClosest(t.params.speed,!0,void 0,.5)}),500))}if(a||i("scroll",s),t.params.autoplay&&t.params.autoplayDisableOnInteraction&&t.autoplay.stop(),r.releaseOnEdges&&(l===t.minTranslate()||l===t.maxTranslate()))return!0}}else{const s={time:l(),delta:Math.abs(m),direction:Math.sign(m),raw:e};u.length>=2&&u.shift();const a=u.length?u[u.length-1]:void 0;if(u.push(s),a?(s.direction!==a.direction||s.delta>a.delta||s.time>a.time+150)&&f(s):f(s),function(e){const s=t.params.mousewheel;if(e.direction<0){if(t.isEnd&&!t.params.loop&&s.releaseOnEdges)return!0}else if(t.isBeginning&&!t.params.loop&&s.releaseOnEdges)return!0;return!1}(s))return!0}return s.preventDefault?s.preventDefault():s.returnValue=!1,!1}function v(e){let s=t.el;"container"!==t.params.mousewheel.eventsTarget&&(s=document.querySelector(t.params.mousewheel.eventsTarget)),s[e]("mouseenter",m),s[e]("mouseleave",h),s[e]("wheel",g)}function w(){return t.params.cssMode?(t.wrapperEl.removeEventListener("wheel",g),!0):!t.mousewheel.enabled&&(v("addEventListener"),t.mousewheel.enabled=!0,!0)}function b(){return t.params.cssMode?(t.wrapperEl.addEventListener(event,g),!0):!!t.mousewheel.enabled&&(v("removeEventListener"),t.mousewheel.enabled=!1,!0)}a("init",(()=>{!t.params.mousewheel.enabled&&t.params.cssMode&&b(),t.params.mousewheel.enabled&&w()})),a("destroy",(()=>{t.params.cssMode&&w(),t.mousewheel.enabled&&b()})),Object.assign(t.mousewheel,{enable:w,disable:b})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;s({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock",navigationDisabledClass:"swiper-navigation-disabled"}}),t.navigation={nextEl:null,prevEl:null};const r=e=>(Array.isArray(e)?e:[e]).filter((e=>!!e));function n(e){let s;return e&&"string"==typeof e&&t.isElement&&(s=t.el.querySelector(e),s)?s:(e&&("string"==typeof e&&(s=[...document.querySelectorAll(e)]),t.params.uniqueNavElements&&"string"==typeof e&&s.length>1&&1===t.el.querySelectorAll(e).length&&(s=t.el.querySelector(e))),e&&!s?e:s)}function l(e,s){const a=t.params.navigation;(e=r(e)).forEach((e=>{e&&(e.classList[s?"add":"remove"](...a.disabledClass.split(" ")),"BUTTON"===e.tagName&&(e.disabled=s),t.params.watchOverflow&&t.enabled&&e.classList[t.isLocked?"add":"remove"](a.lockClass))}))}function o(){const{nextEl:e,prevEl:s}=t.navigation;if(t.params.loop)return l(s,!1),void l(e,!1);l(s,t.isBeginning&&!t.params.rewind),l(e,t.isEnd&&!t.params.rewind)}function d(e){e.preventDefault(),(!t.isBeginning||t.params.loop||t.params.rewind)&&(t.slidePrev(),i("navigationPrev"))}function c(e){e.preventDefault(),(!t.isEnd||t.params.loop||t.params.rewind)&&(t.slideNext(),i("navigationNext"))}function p(){const e=t.params.navigation;if(t.params.navigation=J(t,t.originalParams.navigation,t.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!e.nextEl&&!e.prevEl)return;let s=n(e.nextEl),a=n(e.prevEl);Object.assign(t.navigation,{nextEl:s,prevEl:a}),s=r(s),a=r(a);const i=(s,a)=>{s&&s.addEventListener("click","next"===a?c:d),!t.enabled&&s&&s.classList.add(...e.lockClass.split(" "))};s.forEach((e=>i(e,"next"))),a.forEach((e=>i(e,"prev")))}function u(){let{nextEl:e,prevEl:s}=t.navigation;e=r(e),s=r(s);const a=(e,s)=>{e.removeEventListener("click","next"===s?c:d),e.classList.remove(...t.params.navigation.disabledClass.split(" "))};e.forEach((e=>a(e,"next"))),s.forEach((e=>a(e,"prev")))}a("init",(()=>{!1===t.params.navigation.enabled?m():(p(),o())})),a("toEdge fromEdge lock unlock",(()=>{o()})),a("destroy",(()=>{u()})),a("enable disable",(()=>{let{nextEl:e,prevEl:s}=t.navigation;e=r(e),s=r(s),t.enabled?o():[...e,...s].filter((e=>!!e)).forEach((e=>e.classList.add(t.params.navigation.lockClass)))})),a("click",((e,s)=>{let{nextEl:a,prevEl:n}=t.navigation;a=r(a),n=r(n);const l=s.target;if(t.params.navigation.hideOnClick&&!n.includes(l)&&!a.includes(l)){if(t.pagination&&t.params.pagination&&t.params.pagination.clickable&&(t.pagination.el===l||t.pagination.el.contains(l)))return;let e;a.length?e=a[0].classList.contains(t.params.navigation.hiddenClass):n.length&&(e=n[0].classList.contains(t.params.navigation.hiddenClass)),i(!0===e?"navigationShow":"navigationHide"),[...a,...n].filter((e=>!!e)).forEach((e=>e.classList.toggle(t.params.navigation.hiddenClass)))}}));const m=()=>{t.el.classList.add(...t.params.navigation.navigationDisabledClass.split(" ")),u()};Object.assign(t.navigation,{enable:()=>{t.el.classList.remove(...t.params.navigation.navigationDisabledClass.split(" ")),p(),o()},disable:m,update:o,init:p,destroy:u})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const r="swiper-pagination";let n;s({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:e=>e,formatFractionTotal:e=>e,bulletClass:`${r}-bullet`,bulletActiveClass:`${r}-bullet-active`,modifierClass:`${r}-`,currentClass:`${r}-current`,totalClass:`${r}-total`,hiddenClass:`${r}-hidden`,progressbarFillClass:`${r}-progressbar-fill`,progressbarOppositeClass:`${r}-progressbar-opposite`,clickableClass:`${r}-clickable`,lockClass:`${r}-lock`,horizontalClass:`${r}-horizontal`,verticalClass:`${r}-vertical`,paginationDisabledClass:`${r}-disabled`}}),t.pagination={el:null,bullets:[]};let l=0;const o=e=>(Array.isArray(e)?e:[e]).filter((e=>!!e));function d(){return!t.params.pagination.el||!t.pagination.el||Array.isArray(t.pagination.el)&&0===t.pagination.el.length}function c(e,s){const{bulletActiveClass:a}=t.params.pagination;e&&(e=e[("prev"===s?"previous":"next")+"ElementSibling"])&&(e.classList.add(`${a}-${s}`),(e=e[("prev"===s?"previous":"next")+"ElementSibling"])&&e.classList.add(`${a}-${s}-${s}`))}function p(e){const s=e.target.closest(ee(t.params.pagination.bulletClass));if(!s)return;e.preventDefault();const a=w(s)*t.params.slidesPerGroup;if(t.params.loop){if(t.realIndex===a)return;const e=t.realIndex,s=t.getSlideIndexByData(a),i=t.getSlideIndexByData(t.realIndex),r=a=>{const i=t.activeIndex;t.loopFix({direction:a,activeSlideIndex:s,slideTo:!1});i===t.activeIndex&&t.slideToLoop(e,0,!1,!0)};if(s>t.slides.length-t.loopedSlides)r(s>i?"next":"prev");else if(t.params.centeredSlides){const e="auto"===t.params.slidesPerView?t.slidesPerViewDynamic():Math.ceil(parseFloat(t.params.slidesPerView,10));s1?Math.floor(t.realIndex/t.params.slidesPerGroup):t.realIndex):void 0!==t.snapIndex?(a=t.snapIndex,r=t.previousSnapIndex):(r=t.previousIndex||0,a=t.activeIndex||0),"bullets"===s.type&&t.pagination.bullets&&t.pagination.bullets.length>0){const i=t.pagination.bullets;let o,d,u;if(s.dynamicBullets&&(n=E(i[0],t.isHorizontal()?"width":"height",!0),p.forEach((e=>{e.style[t.isHorizontal()?"width":"height"]=n*(s.dynamicMainBullets+4)+"px"})),s.dynamicMainBullets>1&&void 0!==r&&(l+=a-(r||0),l>s.dynamicMainBullets-1?l=s.dynamicMainBullets-1:l<0&&(l=0)),o=Math.max(a-l,0),d=o+(Math.min(i.length,s.dynamicMainBullets)-1),u=(d+o)/2),i.forEach((e=>{const t=[...["","-next","-next-next","-prev","-prev-prev","-main"].map((e=>`${s.bulletActiveClass}${e}`))].map((e=>"string"==typeof e&&e.includes(" ")?e.split(" "):e)).flat();e.classList.remove(...t)})),p.length>1)i.forEach((e=>{const i=w(e);i===a?e.classList.add(...s.bulletActiveClass.split(" ")):t.isElement&&e.setAttribute("part","bullet"),s.dynamicBullets&&(i>=o&&i<=d&&e.classList.add(...`${s.bulletActiveClass}-main`.split(" ")),i===o&&c(e,"prev"),i===d&&c(e,"next"))}));else{const e=i[a];if(e&&e.classList.add(...s.bulletActiveClass.split(" ")),t.isElement&&i.forEach(((e,t)=>{e.setAttribute("part",t===a?"bullet-active":"bullet")})),s.dynamicBullets){const e=i[o],t=i[d];for(let e=o;e<=d;e+=1)i[e]&&i[e].classList.add(...`${s.bulletActiveClass}-main`.split(" "));c(e,"prev"),c(t,"next")}}if(s.dynamicBullets){const a=Math.min(i.length,s.dynamicMainBullets+4),r=(n*a-n)/2-u*n,l=e?"right":"left";i.forEach((e=>{e.style[t.isHorizontal()?l:"top"]=`${r}px`}))}}p.forEach(((e,r)=>{if("fraction"===s.type&&(e.querySelectorAll(ee(s.currentClass)).forEach((e=>{e.textContent=s.formatFractionCurrent(a+1)})),e.querySelectorAll(ee(s.totalClass)).forEach((e=>{e.textContent=s.formatFractionTotal(m)}))),"progressbar"===s.type){let i;i=s.progressbarOpposite?t.isHorizontal()?"vertical":"horizontal":t.isHorizontal()?"horizontal":"vertical";const r=(a+1)/m;let n=1,l=1;"horizontal"===i?n=r:l=r,e.querySelectorAll(ee(s.progressbarFillClass)).forEach((e=>{e.style.transform=`translate3d(0,0,0) scaleX(${n}) scaleY(${l})`,e.style.transitionDuration=`${t.params.speed}ms`}))}"custom"===s.type&&s.renderCustom?(e.innerHTML=s.renderCustom(t,a+1,m),0===r&&i("paginationRender",e)):(0===r&&i("paginationRender",e),i("paginationUpdate",e)),t.params.watchOverflow&&t.enabled&&e.classList[t.isLocked?"add":"remove"](s.lockClass)}))}function m(){const e=t.params.pagination;if(d())return;const s=t.virtual&&t.params.virtual.enabled?t.virtual.slides.length:t.slides.length;let a=t.pagination.el;a=o(a);let r="";if("bullets"===e.type){let a=t.params.loop?Math.ceil(s/t.params.slidesPerGroup):t.snapGrid.length;t.params.freeMode&&t.params.freeMode.enabled&&a>s&&(a=s);for(let s=0;s${e.bulletElement}>`}"fraction"===e.type&&(r=e.renderFraction?e.renderFraction.call(t,e.currentClass,e.totalClass):` / `),"progressbar"===e.type&&(r=e.renderProgressbar?e.renderProgressbar.call(t,e.progressbarFillClass):` `),t.pagination.bullets=[],a.forEach((s=>{"custom"!==e.type&&(s.innerHTML=r||""),"bullets"===e.type&&t.pagination.bullets.push(...s.querySelectorAll(ee(e.bulletClass)))})),"custom"!==e.type&&i("paginationRender",a[0])}function h(){t.params.pagination=J(t,t.originalParams.pagination,t.params.pagination,{el:"swiper-pagination"});const e=t.params.pagination;if(!e.el)return;let s;"string"==typeof e.el&&t.isElement&&(s=t.el.querySelector(e.el)),s||"string"!=typeof e.el||(s=[...document.querySelectorAll(e.el)]),s||(s=e.el),s&&0!==s.length&&(t.params.uniqueNavElements&&"string"==typeof e.el&&Array.isArray(s)&&s.length>1&&(s=[...t.el.querySelectorAll(e.el)],s.length>1&&(s=s.filter((e=>b(e,".swiper")[0]===t.el))[0])),Array.isArray(s)&&1===s.length&&(s=s[0]),Object.assign(t.pagination,{el:s}),s=o(s),s.forEach((s=>{"bullets"===e.type&&e.clickable&&s.classList.add(...(e.clickableClass||"").split(" ")),s.classList.add(e.modifierClass+e.type),s.classList.add(t.isHorizontal()?e.horizontalClass:e.verticalClass),"bullets"===e.type&&e.dynamicBullets&&(s.classList.add(`${e.modifierClass}${e.type}-dynamic`),l=0,e.dynamicMainBullets<1&&(e.dynamicMainBullets=1)),"progressbar"===e.type&&e.progressbarOpposite&&s.classList.add(e.progressbarOppositeClass),e.clickable&&s.addEventListener("click",p),t.enabled||s.classList.add(e.lockClass)})))}function f(){const e=t.params.pagination;if(d())return;let s=t.pagination.el;s&&(s=o(s),s.forEach((s=>{s.classList.remove(e.hiddenClass),s.classList.remove(e.modifierClass+e.type),s.classList.remove(t.isHorizontal()?e.horizontalClass:e.verticalClass),e.clickable&&(s.classList.remove(...(e.clickableClass||"").split(" ")),s.removeEventListener("click",p))}))),t.pagination.bullets&&t.pagination.bullets.forEach((t=>t.classList.remove(...e.bulletActiveClass.split(" "))))}a("changeDirection",(()=>{if(!t.pagination||!t.pagination.el)return;const e=t.params.pagination;let{el:s}=t.pagination;s=o(s),s.forEach((s=>{s.classList.remove(e.horizontalClass,e.verticalClass),s.classList.add(t.isHorizontal()?e.horizontalClass:e.verticalClass)}))})),a("init",(()=>{!1===t.params.pagination.enabled?g():(h(),m(),u())})),a("activeIndexChange",(()=>{void 0===t.snapIndex&&u()})),a("snapIndexChange",(()=>{u()})),a("snapGridLengthChange",(()=>{m(),u()})),a("destroy",(()=>{f()})),a("enable disable",(()=>{let{el:e}=t.pagination;e&&(e=o(e),e.forEach((e=>e.classList[t.enabled?"remove":"add"](t.params.pagination.lockClass))))})),a("lock unlock",(()=>{u()})),a("click",((e,s)=>{const a=s.target,r=o(t.pagination.el);if(t.params.pagination.el&&t.params.pagination.hideOnClick&&r&&r.length>0&&!a.classList.contains(t.params.pagination.bulletClass)){if(t.navigation&&(t.navigation.nextEl&&a===t.navigation.nextEl||t.navigation.prevEl&&a===t.navigation.prevEl))return;const e=r[0].classList.contains(t.params.pagination.hiddenClass);i(!0===e?"paginationShow":"paginationHide"),r.forEach((e=>e.classList.toggle(t.params.pagination.hiddenClass)))}}));const g=()=>{t.el.classList.add(t.params.pagination.paginationDisabledClass);let{el:e}=t.pagination;e&&(e=o(e),e.forEach((e=>e.classList.add(t.params.pagination.paginationDisabledClass)))),f()};Object.assign(t.pagination,{enable:()=>{t.el.classList.remove(t.params.pagination.paginationDisabledClass);let{el:e}=t.pagination;e&&(e=o(e),e.forEach((e=>e.classList.remove(t.params.pagination.paginationDisabledClass)))),h(),m(),u()},disable:g,render:m,update:u,init:h,destroy:f})},function(e){let{swiper:t,extendParams:s,on:i,emit:r}=e;const l=a();let o,d,c,p,u=!1,m=null,h=null;function v(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e,rtlTranslate:s}=t,{dragEl:a,el:i}=e,r=t.params.scrollbar,n=t.params.loop?t.progressLoop:t.progress;let l=d,o=(c-d)*n;s?(o=-o,o>0?(l=d-o,o=0):-o+d>c&&(l=c+o)):o<0?(l=d+o,o=0):o+d>c&&(l=c-o),t.isHorizontal()?(a.style.transform=`translate3d(${o}px, 0, 0)`,a.style.width=`${l}px`):(a.style.transform=`translate3d(0px, ${o}px, 0)`,a.style.height=`${l}px`),r.hide&&(clearTimeout(m),i.style.opacity=1,m=setTimeout((()=>{i.style.opacity=0,i.style.transitionDuration="400ms"}),1e3))}function w(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e}=t,{dragEl:s,el:a}=e;s.style.width="",s.style.height="",c=t.isHorizontal()?a.offsetWidth:a.offsetHeight,p=t.size/(t.virtualSize+t.params.slidesOffsetBefore-(t.params.centeredSlides?t.snapGrid[0]:0)),d="auto"===t.params.scrollbar.dragSize?c*p:parseInt(t.params.scrollbar.dragSize,10),t.isHorizontal()?s.style.width=`${d}px`:s.style.height=`${d}px`,a.style.display=p>=1?"none":"",t.params.scrollbar.hide&&(a.style.opacity=0),t.params.watchOverflow&&t.enabled&&e.el.classList[t.isLocked?"add":"remove"](t.params.scrollbar.lockClass)}function b(e){return t.isHorizontal()?e.clientX:e.clientY}function y(e){const{scrollbar:s,rtlTranslate:a}=t,{el:i}=s;let r;r=(b(e)-g(i)[t.isHorizontal()?"left":"top"]-(null!==o?o:d/2))/(c-d),r=Math.max(Math.min(r,1),0),a&&(r=1-r);const n=t.minTranslate()+(t.maxTranslate()-t.minTranslate())*r;t.updateProgress(n),t.setTranslate(n),t.updateActiveIndex(),t.updateSlidesClasses()}function E(e){const s=t.params.scrollbar,{scrollbar:a,wrapperEl:i}=t,{el:n,dragEl:l}=a;u=!0,o=e.target===l?b(e)-e.target.getBoundingClientRect()[t.isHorizontal()?"left":"top"]:null,e.preventDefault(),e.stopPropagation(),i.style.transitionDuration="100ms",l.style.transitionDuration="100ms",y(e),clearTimeout(h),n.style.transitionDuration="0ms",s.hide&&(n.style.opacity=1),t.params.cssMode&&(t.wrapperEl.style["scroll-snap-type"]="none"),r("scrollbarDragStart",e)}function x(e){const{scrollbar:s,wrapperEl:a}=t,{el:i,dragEl:n}=s;u&&(e.preventDefault?e.preventDefault():e.returnValue=!1,y(e),a.style.transitionDuration="0ms",i.style.transitionDuration="0ms",n.style.transitionDuration="0ms",r("scrollbarDragMove",e))}function S(e){const s=t.params.scrollbar,{scrollbar:a,wrapperEl:i}=t,{el:l}=a;u&&(u=!1,t.params.cssMode&&(t.wrapperEl.style["scroll-snap-type"]="",i.style.transitionDuration=""),s.hide&&(clearTimeout(h),h=n((()=>{l.style.opacity=0,l.style.transitionDuration="400ms"}),1e3)),r("scrollbarDragEnd",e),s.snapOnRelease&&t.slideToClosest())}function T(e){const{scrollbar:s,params:a}=t,i=s.el;if(!i)return;const r=i,n=!!a.passiveListeners&&{passive:!1,capture:!1},o=!!a.passiveListeners&&{passive:!0,capture:!1};if(!r)return;const d="on"===e?"addEventListener":"removeEventListener";r[d]("pointerdown",E,n),l[d]("pointermove",x,n),l[d]("pointerup",S,o)}function M(){const{scrollbar:e,el:s}=t;t.params.scrollbar=J(t,t.originalParams.scrollbar,t.params.scrollbar,{el:"swiper-scrollbar"});const a=t.params.scrollbar;if(!a.el)return;let i,r;"string"==typeof a.el&&t.isElement&&(i=t.el.querySelector(a.el)),i||"string"!=typeof a.el?i||(i=a.el):i=l.querySelectorAll(a.el),t.params.uniqueNavElements&&"string"==typeof a.el&&i.length>1&&1===s.querySelectorAll(a.el).length&&(i=s.querySelector(a.el)),i.length>0&&(i=i[0]),i.classList.add(t.isHorizontal()?a.horizontalClass:a.verticalClass),i&&(r=i.querySelector(`.${t.params.scrollbar.dragClass}`),r||(r=f("div",t.params.scrollbar.dragClass),i.append(r))),Object.assign(e,{el:i,dragEl:r}),a.draggable&&t.params.scrollbar.el&&t.scrollbar.el&&T("on"),i&&i.classList[t.enabled?"remove":"add"](t.params.scrollbar.lockClass)}function C(){const e=t.params.scrollbar,s=t.scrollbar.el;s&&s.classList.remove(t.isHorizontal()?e.horizontalClass:e.verticalClass),t.params.scrollbar.el&&t.scrollbar.el&&T("off")}s({scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag",scrollbarDisabledClass:"swiper-scrollbar-disabled",horizontalClass:"swiper-scrollbar-horizontal",verticalClass:"swiper-scrollbar-vertical"}}),t.scrollbar={el:null,dragEl:null},i("init",(()=>{!1===t.params.scrollbar.enabled?P():(M(),w(),v())})),i("update resize observerUpdate lock unlock",(()=>{w()})),i("setTranslate",(()=>{v()})),i("setTransition",((e,s)=>{!function(e){t.params.scrollbar.el&&t.scrollbar.el&&(t.scrollbar.dragEl.style.transitionDuration=`${e}ms`)}(s)})),i("enable disable",(()=>{const{el:e}=t.scrollbar;e&&e.classList[t.enabled?"remove":"add"](t.params.scrollbar.lockClass)})),i("destroy",(()=>{C()}));const P=()=>{t.el.classList.add(t.params.scrollbar.scrollbarDisabledClass),t.scrollbar.el&&t.scrollbar.el.classList.add(t.params.scrollbar.scrollbarDisabledClass),C()};Object.assign(t.scrollbar,{enable:()=>{t.el.classList.remove(t.params.scrollbar.scrollbarDisabledClass),t.scrollbar.el&&t.scrollbar.el.classList.remove(t.params.scrollbar.scrollbarDisabledClass),M(),w(),v()},disable:P,updateSize:w,setTranslate:v,init:M,destroy:C})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({parallax:{enabled:!1}});const i="[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]",r=(e,s)=>{const{rtl:a}=t,i=a?-1:1,r=e.getAttribute("data-swiper-parallax")||"0";let n=e.getAttribute("data-swiper-parallax-x"),l=e.getAttribute("data-swiper-parallax-y");const o=e.getAttribute("data-swiper-parallax-scale"),d=e.getAttribute("data-swiper-parallax-opacity"),c=e.getAttribute("data-swiper-parallax-rotate");if(n||l?(n=n||"0",l=l||"0"):t.isHorizontal()?(n=r,l="0"):(l=r,n="0"),n=n.indexOf("%")>=0?parseInt(n,10)*s*i+"%":n*s*i+"px",l=l.indexOf("%")>=0?parseInt(l,10)*s+"%":l*s+"px",null!=d){const t=d-(d-1)*(1-Math.abs(s));e.style.opacity=t}let p=`translate3d(${n}, ${l}, 0px)`;if(null!=o){p+=` scale(${o-(o-1)*(1-Math.abs(s))})`}if(c&&null!=c){p+=` rotate(${c*s*-1}deg)`}e.style.transform=p},n=()=>{const{el:e,slides:s,progress:a,snapGrid:n,isElement:l}=t,o=h(e,i);t.isElement&&o.push(...h(t.hostEl,i)),o.forEach((e=>{r(e,a)})),s.forEach(((e,s)=>{let l=e.progress;t.params.slidesPerGroup>1&&"auto"!==t.params.slidesPerView&&(l+=Math.ceil(s/2)-a*(n.length-1)),l=Math.min(Math.max(l,-1),1),e.querySelectorAll(`${i}, [data-swiper-parallax-rotate]`).forEach((e=>{r(e,l)}))}))};a("beforeInit",(()=>{t.params.parallax.enabled&&(t.params.watchSlidesProgress=!0,t.originalParams.watchSlidesProgress=!0)})),a("init",(()=>{t.params.parallax.enabled&&n()})),a("setTranslate",(()=>{t.params.parallax.enabled&&n()})),a("setTransition",((e,s)=>{t.params.parallax.enabled&&function(e){void 0===e&&(e=t.params.speed);const{el:s,hostEl:a}=t,r=[...s.querySelectorAll(i)];t.isElement&&r.push(...a.querySelectorAll(i)),r.forEach((t=>{let s=parseInt(t.getAttribute("data-swiper-parallax-duration"),10)||e;0===e&&(s=0),t.style.transitionDuration=`${s}ms`}))}(s)}))},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const n=r();s({zoom:{enabled:!1,maxRatio:3,minRatio:1,toggle:!0,containerClass:"swiper-zoom-container",zoomedSlideClass:"swiper-slide-zoomed"}}),t.zoom={enabled:!1};let l,d,c=1,p=!1;const u=[],m={originX:0,originY:0,slideEl:void 0,slideWidth:void 0,slideHeight:void 0,imageEl:void 0,imageWrapEl:void 0,maxRatio:3},f={isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},v={x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0};let w=1;function y(){if(u.length<2)return 1;const e=u[0].pageX,t=u[0].pageY,s=u[1].pageX,a=u[1].pageY;return Math.sqrt((s-e)**2+(a-t)**2)}function E(e){const s=t.isElement?"swiper-slide":`.${t.params.slideClass}`;return!!e.target.matches(s)||t.slides.filter((t=>t.contains(e.target))).length>0}function x(e){if("mouse"===e.pointerType&&u.splice(0,u.length),!E(e))return;const s=t.params.zoom;if(l=!1,d=!1,u.push(e),!(u.length<2)){if(l=!0,m.scaleStart=y(),!m.slideEl){m.slideEl=e.target.closest(`.${t.params.slideClass}, swiper-slide`),m.slideEl||(m.slideEl=t.slides[t.activeIndex]);let a=m.slideEl.querySelector(`.${s.containerClass}`);if(a&&(a=a.querySelectorAll("picture, img, svg, canvas, .swiper-zoom-target")[0]),m.imageEl=a,m.imageWrapEl=a?b(m.imageEl,`.${s.containerClass}`)[0]:void 0,!m.imageWrapEl)return void(m.imageEl=void 0);m.maxRatio=m.imageWrapEl.getAttribute("data-swiper-zoom")||s.maxRatio}if(m.imageEl){const[e,t]=function(){if(u.length<2)return{x:null,y:null};const e=m.imageEl.getBoundingClientRect();return[(u[0].pageX+(u[1].pageX-u[0].pageX)/2-e.x-n.scrollX)/c,(u[0].pageY+(u[1].pageY-u[0].pageY)/2-e.y-n.scrollY)/c]}();m.originX=e,m.originY=t,m.imageEl.style.transitionDuration="0ms"}p=!0}}function S(e){if(!E(e))return;const s=t.params.zoom,a=t.zoom,i=u.findIndex((t=>t.pointerId===e.pointerId));i>=0&&(u[i]=e),u.length<2||(d=!0,m.scaleMove=y(),m.imageEl&&(a.scale=m.scaleMove/m.scaleStart*c,a.scale>m.maxRatio&&(a.scale=m.maxRatio-1+(a.scale-m.maxRatio+1)**.5),a.scalet.pointerId===e.pointerId));i>=0&&u.splice(i,1),l&&d&&(l=!1,d=!1,m.imageEl&&(a.scale=Math.max(Math.min(a.scale,m.maxRatio),s.minRatio),m.imageEl.style.transitionDuration=`${t.params.speed}ms`,m.imageEl.style.transform=`translate3d(0,0,0) scale(${a.scale})`,c=a.scale,p=!1,a.scale>1&&m.slideEl?m.slideEl.classList.add(`${s.zoomedSlideClass}`):a.scale<=1&&m.slideEl&&m.slideEl.classList.remove(`${s.zoomedSlideClass}`),1===a.scale&&(m.originX=0,m.originY=0,m.slideEl=void 0)))}function M(e){if(!E(e)||!function(e){const s=`.${t.params.zoom.containerClass}`;return!!e.target.matches(s)||[...t.hostEl.querySelectorAll(s)].filter((t=>t.contains(e.target))).length>0}(e))return;const s=t.zoom;if(!m.imageEl)return;if(!f.isTouched||!m.slideEl)return;f.isMoved||(f.width=m.imageEl.offsetWidth,f.height=m.imageEl.offsetHeight,f.startX=o(m.imageWrapEl,"x")||0,f.startY=o(m.imageWrapEl,"y")||0,m.slideWidth=m.slideEl.offsetWidth,m.slideHeight=m.slideEl.offsetHeight,m.imageWrapEl.style.transitionDuration="0ms");const a=f.width*s.scale,i=f.height*s.scale;if(a0?u[0].pageX:e.pageX,f.touchesCurrent.y=u.length>0?u[0].pageY:e.pageY;if(Math.max(Math.abs(f.touchesCurrent.x-f.touchesStart.x),Math.abs(f.touchesCurrent.y-f.touchesStart.y))>5&&(t.allowClick=!1),!f.isMoved&&!p){if(t.isHorizontal()&&(Math.floor(f.minX)===Math.floor(f.startX)&&f.touchesCurrent.xf.touchesStart.x))return void(f.isTouched=!1);if(!t.isHorizontal()&&(Math.floor(f.minY)===Math.floor(f.startY)&&f.touchesCurrent.yf.touchesStart.y))return void(f.isTouched=!1)}e.cancelable&&e.preventDefault(),e.stopPropagation(),f.isMoved=!0;const r=(s.scale-c)/(m.maxRatio-t.params.zoom.minRatio),{originX:n,originY:l}=m;f.currentX=f.touchesCurrent.x-f.touchesStart.x+f.startX+r*(f.width-2*n),f.currentY=f.touchesCurrent.y-f.touchesStart.y+f.startY+r*(f.height-2*l),f.currentXf.maxX&&(f.currentX=f.maxX-1+(f.currentX-f.maxX+1)**.8),f.currentYf.maxY&&(f.currentY=f.maxY-1+(f.currentY-f.maxY+1)**.8),v.prevPositionX||(v.prevPositionX=f.touchesCurrent.x),v.prevPositionY||(v.prevPositionY=f.touchesCurrent.y),v.prevTime||(v.prevTime=Date.now()),v.x=(f.touchesCurrent.x-v.prevPositionX)/(Date.now()-v.prevTime)/2,v.y=(f.touchesCurrent.y-v.prevPositionY)/(Date.now()-v.prevTime)/2,Math.abs(f.touchesCurrent.x-v.prevPositionX)<2&&(v.x=0),Math.abs(f.touchesCurrent.y-v.prevPositionY)<2&&(v.y=0),v.prevPositionX=f.touchesCurrent.x,v.prevPositionY=f.touchesCurrent.y,v.prevTime=Date.now(),m.imageWrapEl.style.transform=`translate3d(${f.currentX}px, ${f.currentY}px,0)`}function C(){const e=t.zoom;m.slideEl&&t.activeIndex!==t.slides.indexOf(m.slideEl)&&(m.imageEl&&(m.imageEl.style.transform="translate3d(0,0,0) scale(1)"),m.imageWrapEl&&(m.imageWrapEl.style.transform="translate3d(0,0,0)"),m.slideEl.classList.remove(`${t.params.zoom.zoomedSlideClass}`),e.scale=1,c=1,m.slideEl=void 0,m.imageEl=void 0,m.imageWrapEl=void 0,m.originX=0,m.originY=0)}function P(e){const s=t.zoom,a=t.params.zoom;if(!m.slideEl){e&&e.target&&(m.slideEl=e.target.closest(`.${t.params.slideClass}, swiper-slide`)),m.slideEl||(t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.slideEl=h(t.slidesEl,`.${t.params.slideActiveClass}`)[0]:m.slideEl=t.slides[t.activeIndex]);let s=m.slideEl.querySelector(`.${a.containerClass}`);s&&(s=s.querySelectorAll("picture, img, svg, canvas, .swiper-zoom-target")[0]),m.imageEl=s,m.imageWrapEl=s?b(m.imageEl,`.${a.containerClass}`)[0]:void 0}if(!m.imageEl||!m.imageWrapEl)return;let i,r,l,o,d,p,u,v,w,y,E,x,S,T,M,C,P,L;t.params.cssMode&&(t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.touchAction="none"),m.slideEl.classList.add(`${a.zoomedSlideClass}`),void 0===f.touchesStart.x&&e?(i=e.pageX,r=e.pageY):(i=f.touchesStart.x,r=f.touchesStart.y);const z="number"==typeof e?e:null;1===c&&z&&(i=void 0,r=void 0),s.scale=z||m.imageWrapEl.getAttribute("data-swiper-zoom")||a.maxRatio,c=z||m.imageWrapEl.getAttribute("data-swiper-zoom")||a.maxRatio,!e||1===c&&z?(u=0,v=0):(P=m.slideEl.offsetWidth,L=m.slideEl.offsetHeight,l=g(m.slideEl).left+n.scrollX,o=g(m.slideEl).top+n.scrollY,d=l+P/2-i,p=o+L/2-r,w=m.imageEl.offsetWidth,y=m.imageEl.offsetHeight,E=w*s.scale,x=y*s.scale,S=Math.min(P/2-E/2,0),T=Math.min(L/2-x/2,0),M=-S,C=-T,u=d*s.scale,v=p*s.scale,uM&&(u=M),vC&&(v=C)),z&&1===s.scale&&(m.originX=0,m.originY=0),m.imageWrapEl.style.transitionDuration="300ms",m.imageWrapEl.style.transform=`translate3d(${u}px, ${v}px,0)`,m.imageEl.style.transitionDuration="300ms",m.imageEl.style.transform=`translate3d(0,0,0) scale(${s.scale})`}function L(){const e=t.zoom,s=t.params.zoom;if(!m.slideEl){t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.slideEl=h(t.slidesEl,`.${t.params.slideActiveClass}`)[0]:m.slideEl=t.slides[t.activeIndex];let e=m.slideEl.querySelector(`.${s.containerClass}`);e&&(e=e.querySelectorAll("picture, img, svg, canvas, .swiper-zoom-target")[0]),m.imageEl=e,m.imageWrapEl=e?b(m.imageEl,`.${s.containerClass}`)[0]:void 0}m.imageEl&&m.imageWrapEl&&(t.params.cssMode&&(t.wrapperEl.style.overflow="",t.wrapperEl.style.touchAction=""),e.scale=1,c=1,m.imageWrapEl.style.transitionDuration="300ms",m.imageWrapEl.style.transform="translate3d(0,0,0)",m.imageEl.style.transitionDuration="300ms",m.imageEl.style.transform="translate3d(0,0,0) scale(1)",m.slideEl.classList.remove(`${s.zoomedSlideClass}`),m.slideEl=void 0,m.originX=0,m.originY=0)}function z(e){const s=t.zoom;s.scale&&1!==s.scale?L():P(e)}function A(){return{passiveListener:!!t.params.passiveListeners&&{passive:!0,capture:!1},activeListenerWithCapture:!t.params.passiveListeners||{passive:!1,capture:!0}}}function $(){const e=t.zoom;if(e.enabled)return;e.enabled=!0;const{passiveListener:s,activeListenerWithCapture:a}=A();t.wrapperEl.addEventListener("pointerdown",x,s),t.wrapperEl.addEventListener("pointermove",S,a),["pointerup","pointercancel","pointerout"].forEach((e=>{t.wrapperEl.addEventListener(e,T,s)})),t.wrapperEl.addEventListener("pointermove",M,a)}function I(){const e=t.zoom;if(!e.enabled)return;e.enabled=!1;const{passiveListener:s,activeListenerWithCapture:a}=A();t.wrapperEl.removeEventListener("pointerdown",x,s),t.wrapperEl.removeEventListener("pointermove",S,a),["pointerup","pointercancel","pointerout"].forEach((e=>{t.wrapperEl.removeEventListener(e,T,s)})),t.wrapperEl.removeEventListener("pointermove",M,a)}Object.defineProperty(t.zoom,"scale",{get:()=>w,set(e){if(w!==e){const t=m.imageEl,s=m.slideEl;i("zoomChange",e,t,s)}w=e}}),a("init",(()=>{t.params.zoom.enabled&&$()})),a("destroy",(()=>{I()})),a("touchStart",((e,s)=>{t.zoom.enabled&&function(e){const s=t.device;if(!m.imageEl)return;if(f.isTouched)return;s.android&&e.cancelable&&e.preventDefault(),f.isTouched=!0;const a=u.length>0?u[0]:e;f.touchesStart.x=a.pageX,f.touchesStart.y=a.pageY}(s)})),a("touchEnd",((e,s)=>{t.zoom.enabled&&function(){const e=t.zoom;if(!m.imageEl)return;if(!f.isTouched||!f.isMoved)return f.isTouched=!1,void(f.isMoved=!1);f.isTouched=!1,f.isMoved=!1;let s=300,a=300;const i=v.x*s,r=f.currentX+i,n=v.y*a,l=f.currentY+n;0!==v.x&&(s=Math.abs((r-f.currentX)/v.x)),0!==v.y&&(a=Math.abs((l-f.currentY)/v.y));const o=Math.max(s,a);f.currentX=r,f.currentY=l;const d=f.width*e.scale,c=f.height*e.scale;f.minX=Math.min(m.slideWidth/2-d/2,0),f.maxX=-f.minX,f.minY=Math.min(m.slideHeight/2-c/2,0),f.maxY=-f.minY,f.currentX=Math.max(Math.min(f.currentX,f.maxX),f.minX),f.currentY=Math.max(Math.min(f.currentY,f.maxY),f.minY),m.imageWrapEl.style.transitionDuration=`${o}ms`,m.imageWrapEl.style.transform=`translate3d(${f.currentX}px, ${f.currentY}px,0)`}()})),a("doubleTap",((e,s)=>{!t.animating&&t.params.zoom.enabled&&t.zoom.enabled&&t.params.zoom.toggle&&z(s)})),a("transitionEnd",(()=>{t.zoom.enabled&&t.params.zoom.enabled&&C()})),a("slideChange",(()=>{t.zoom.enabled&&t.params.zoom.enabled&&t.params.cssMode&&C()})),Object.assign(t.zoom,{enable:$,disable:I,in:P,out:L,toggle:z})},function(e){let{swiper:t,extendParams:s,on:a}=e;function i(e,t){const s=function(){let e,t,s;return(a,i)=>{for(t=-1,e=a.length;e-t>1;)s=e+t>>1,a[s]<=i?t=s:e=s;return e}}();let a,i;return this.x=e,this.y=t,this.lastIndex=e.length-1,this.interpolate=function(e){return e?(i=s(this.x,e),a=i-1,(e-this.x[a])*(this.y[i]-this.y[a])/(this.x[i]-this.x[a])+this.y[a]):0},this}function r(){t.controller.control&&t.controller.spline&&(t.controller.spline=void 0,delete t.controller.spline)}s({controller:{control:void 0,inverse:!1,by:"slide"}}),t.controller={control:void 0},a("beforeInit",(()=>{if("undefined"!=typeof window&&("string"==typeof t.params.controller.control||t.params.controller.control instanceof HTMLElement)){const e=document.querySelector(t.params.controller.control);if(e&&e.swiper)t.controller.control=e.swiper;else if(e){const s=a=>{t.controller.control=a.detail[0],t.update(),e.removeEventListener("init",s)};e.addEventListener("init",s)}}else t.controller.control=t.params.controller.control})),a("update",(()=>{r()})),a("resize",(()=>{r()})),a("observerUpdate",(()=>{r()})),a("setTranslate",((e,s,a)=>{t.controller.control&&!t.controller.control.destroyed&&t.controller.setTranslate(s,a)})),a("setTransition",((e,s,a)=>{t.controller.control&&!t.controller.control.destroyed&&t.controller.setTransition(s,a)})),Object.assign(t.controller,{setTranslate:function(e,s){const a=t.controller.control;let r,n;const l=t.constructor;function o(e){if(e.destroyed)return;const s=t.rtlTranslate?-t.translate:t.translate;"slide"===t.params.controller.by&&(!function(e){t.controller.spline=t.params.loop?new i(t.slidesGrid,e.slidesGrid):new i(t.snapGrid,e.snapGrid)}(e),n=-t.controller.spline.interpolate(-s)),n&&"container"!==t.params.controller.by||(r=(e.maxTranslate()-e.minTranslate())/(t.maxTranslate()-t.minTranslate()),!Number.isNaN(r)&&Number.isFinite(r)||(r=1),n=(s-t.minTranslate())*r+e.minTranslate()),t.params.controller.inverse&&(n=e.maxTranslate()-n),e.updateProgress(n),e.setTranslate(n,t),e.updateActiveIndex(),e.updateSlidesClasses()}if(Array.isArray(a))for(let e=0;e{s.updateAutoHeight()})),y(s.wrapperEl,(()=>{i&&s.transitionEnd()}))))}if(Array.isArray(i))for(r=0;r(Array.isArray(e)?e:[e]).filter((e=>!!e));function l(e){(e=n(e)).forEach((e=>{e.setAttribute("tabIndex","0")}))}function o(e){(e=n(e)).forEach((e=>{e.setAttribute("tabIndex","-1")}))}function d(e,t){(e=n(e)).forEach((e=>{e.setAttribute("role",t)}))}function c(e,t){(e=n(e)).forEach((e=>{e.setAttribute("aria-roledescription",t)}))}function p(e,t){(e=n(e)).forEach((e=>{e.setAttribute("aria-label",t)}))}function u(e){(e=n(e)).forEach((e=>{e.setAttribute("aria-disabled",!0)}))}function m(e){(e=n(e)).forEach((e=>{e.setAttribute("aria-disabled",!1)}))}function h(e){if(13!==e.keyCode&&32!==e.keyCode)return;const s=t.params.a11y,a=e.target;t.pagination&&t.pagination.el&&(a===t.pagination.el||t.pagination.el.contains(e.target))&&!e.target.matches(ee(t.params.pagination.bulletClass))||(t.navigation&&t.navigation.nextEl&&a===t.navigation.nextEl&&(t.isEnd&&!t.params.loop||t.slideNext(),t.isEnd?r(s.lastSlideMessage):r(s.nextSlideMessage)),t.navigation&&t.navigation.prevEl&&a===t.navigation.prevEl&&(t.isBeginning&&!t.params.loop||t.slidePrev(),t.isBeginning?r(s.firstSlideMessage):r(s.prevSlideMessage)),t.pagination&&a.matches(ee(t.params.pagination.bulletClass))&&a.click())}function g(){return t.pagination&&t.pagination.bullets&&t.pagination.bullets.length}function v(){return g()&&t.params.pagination.clickable}const b=(e,t,s)=>{l(e),"BUTTON"!==e.tagName&&(d(e,"button"),e.addEventListener("keydown",h)),p(e,s),function(e,t){(e=n(e)).forEach((e=>{e.setAttribute("aria-controls",t)}))}(e,t)},y=()=>{t.a11y.clicked=!0},E=()=>{requestAnimationFrame((()=>{requestAnimationFrame((()=>{t.destroyed||(t.a11y.clicked=!1)}))}))},x=e=>{if(t.a11y.clicked)return;const s=e.target.closest(`.${t.params.slideClass}, swiper-slide`);if(!s||!t.slides.includes(s))return;const a=t.slides.indexOf(s)===t.activeIndex,i=t.params.watchSlidesProgress&&t.visibleSlides&&t.visibleSlides.includes(s);a||i||e.sourceCapabilities&&e.sourceCapabilities.firesTouchEvents||(t.isHorizontal()?t.el.scrollLeft=0:t.el.scrollTop=0,t.slideTo(t.slides.indexOf(s),0))},S=()=>{const e=t.params.a11y;e.itemRoleDescriptionMessage&&c(t.slides,e.itemRoleDescriptionMessage),e.slideRole&&d(t.slides,e.slideRole);const s=t.slides.length;e.slideLabelMessage&&t.slides.forEach(((a,i)=>{const r=t.params.loop?parseInt(a.getAttribute("data-swiper-slide-index"),10):i;p(a,e.slideLabelMessage.replace(/\{\{index\}\}/,r+1).replace(/\{\{slidesLength\}\}/,s))}))},T=()=>{const e=t.params.a11y;t.el.append(i);const s=t.el;e.containerRoleDescriptionMessage&&c(s,e.containerRoleDescriptionMessage),e.containerMessage&&p(s,e.containerMessage);const a=t.wrapperEl,r=e.id||a.getAttribute("id")||`swiper-wrapper-${l=16,void 0===l&&(l=16),"x".repeat(l).replace(/x/g,(()=>Math.round(16*Math.random()).toString(16)))}`;var l;const o=t.params.autoplay&&t.params.autoplay.enabled?"off":"polite";var d;d=r,n(a).forEach((e=>{e.setAttribute("id",d)})),function(e,t){(e=n(e)).forEach((e=>{e.setAttribute("aria-live",t)}))}(a,o),S();let{nextEl:u,prevEl:m}=t.navigation?t.navigation:{};if(u=n(u),m=n(m),u&&u.forEach((t=>b(t,r,e.nextSlideMessage))),m&&m.forEach((t=>b(t,r,e.prevSlideMessage))),v()){(Array.isArray(t.pagination.el)?t.pagination.el:[t.pagination.el]).forEach((e=>{e.addEventListener("keydown",h)}))}t.el.addEventListener("focus",x,!0),t.el.addEventListener("pointerdown",y,!0),t.el.addEventListener("pointerup",E,!0)};a("beforeInit",(()=>{i=f("span",t.params.a11y.notificationClass),i.setAttribute("aria-live","assertive"),i.setAttribute("aria-atomic","true")})),a("afterInit",(()=>{t.params.a11y.enabled&&T()})),a("slidesLengthChange snapGridLengthChange slidesGridLengthChange",(()=>{t.params.a11y.enabled&&S()})),a("fromEdge toEdge afterInit lock unlock",(()=>{t.params.a11y.enabled&&function(){if(t.params.loop||t.params.rewind||!t.navigation)return;const{nextEl:e,prevEl:s}=t.navigation;s&&(t.isBeginning?(u(s),o(s)):(m(s),l(s))),e&&(t.isEnd?(u(e),o(e)):(m(e),l(e)))}()})),a("paginationUpdate",(()=>{t.params.a11y.enabled&&function(){const e=t.params.a11y;g()&&t.pagination.bullets.forEach((s=>{t.params.pagination.clickable&&(l(s),t.params.pagination.renderBullet||(d(s,"button"),p(s,e.paginationBulletMessage.replace(/\{\{index\}\}/,w(s)+1)))),s.matches(ee(t.params.pagination.bulletActiveClass))?s.setAttribute("aria-current","true"):s.removeAttribute("aria-current")}))}()})),a("destroy",(()=>{t.params.a11y.enabled&&function(){i&&i.remove();let{nextEl:e,prevEl:s}=t.navigation?t.navigation:{};e=n(e),s=n(s),e&&e.forEach((e=>e.removeEventListener("keydown",h))),s&&s.forEach((e=>e.removeEventListener("keydown",h))),v()&&(Array.isArray(t.pagination.el)?t.pagination.el:[t.pagination.el]).forEach((e=>{e.removeEventListener("keydown",h)}));t.el.removeEventListener("focus",x,!0),t.el.removeEventListener("pointerdown",y,!0),t.el.removeEventListener("pointerup",E,!0)}()}))},function(e){let{swiper:t,extendParams:s,on:a}=e;s({history:{enabled:!1,root:"",replaceState:!1,key:"slides",keepQuery:!1}});let i=!1,n={};const l=e=>e.toString().replace(/\s+/g,"-").replace(/[^\w-]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,""),o=e=>{const t=r();let s;s=e?new URL(e):t.location;const a=s.pathname.slice(1).split("/").filter((e=>""!==e)),i=a.length;return{key:a[i-2],value:a[i-1]}},d=(e,s)=>{const a=r();if(!i||!t.params.history.enabled)return;let n;n=t.params.url?new URL(t.params.url):a.location;const o=t.slides[s];let d=l(o.getAttribute("data-history"));if(t.params.history.root.length>0){let s=t.params.history.root;"/"===s[s.length-1]&&(s=s.slice(0,s.length-1)),d=`${s}/${e?`${e}/`:""}${d}`}else n.pathname.includes(e)||(d=`${e?`${e}/`:""}${d}`);t.params.history.keepQuery&&(d+=n.search);const c=a.history.state;c&&c.value===d||(t.params.history.replaceState?a.history.replaceState({value:d},null,d):a.history.pushState({value:d},null,d))},c=(e,s,a)=>{if(s)for(let i=0,r=t.slides.length;i{n=o(t.params.url),c(t.params.speed,n.value,!1)};a("init",(()=>{t.params.history.enabled&&(()=>{const e=r();if(t.params.history){if(!e.history||!e.history.pushState)return t.params.history.enabled=!1,void(t.params.hashNavigation.enabled=!0);i=!0,n=o(t.params.url),n.key||n.value?(c(0,n.value,t.params.runCallbacksOnInit),t.params.history.replaceState||e.addEventListener("popstate",p)):t.params.history.replaceState||e.addEventListener("popstate",p)}})()})),a("destroy",(()=>{t.params.history.enabled&&(()=>{const e=r();t.params.history.replaceState||e.removeEventListener("popstate",p)})()})),a("transitionEnd _freeModeNoMomentumRelease",(()=>{i&&d(t.params.history.key,t.activeIndex)})),a("slideChange",(()=>{i&&t.params.cssMode&&d(t.params.history.key,t.activeIndex)}))},function(e){let{swiper:t,extendParams:s,emit:i,on:n}=e,l=!1;const o=a(),d=r();s({hashNavigation:{enabled:!1,replaceState:!1,watchState:!1,getSlideIndex(e,s){if(t.virtual&&t.params.virtual.enabled){const e=t.slides.filter((e=>e.getAttribute("data-hash")===s))[0];if(!e)return 0;return parseInt(e.getAttribute("data-swiper-slide-index"),10)}return t.getSlideIndex(h(t.slidesEl,`.${t.params.slideClass}[data-hash="${s}"], swiper-slide[data-hash="${s}"]`)[0])}}});const c=()=>{i("hashChange");const e=o.location.hash.replace("#",""),s=t.virtual&&t.params.virtual.enabled?t.slidesEl.querySelector(`[data-swiper-slide-index="${t.activeIndex}"]`):t.slides[t.activeIndex];if(e!==(s?s.getAttribute("data-hash"):"")){const s=t.params.hashNavigation.getSlideIndex(t,e);if(void 0===s||Number.isNaN(s))return;t.slideTo(s)}},p=()=>{if(!l||!t.params.hashNavigation.enabled)return;const e=t.virtual&&t.params.virtual.enabled?t.slidesEl.querySelector(`[data-swiper-slide-index="${t.activeIndex}"]`):t.slides[t.activeIndex],s=e?e.getAttribute("data-hash")||e.getAttribute("data-history"):"";t.params.hashNavigation.replaceState&&d.history&&d.history.replaceState?(d.history.replaceState(null,null,`#${s}`||""),i("hashSet")):(o.location.hash=s||"",i("hashSet"))};n("init",(()=>{t.params.hashNavigation.enabled&&(()=>{if(!t.params.hashNavigation.enabled||t.params.history&&t.params.history.enabled)return;l=!0;const e=o.location.hash.replace("#","");if(e){const s=0,a=t.params.hashNavigation.getSlideIndex(t,e);t.slideTo(a||0,s,t.params.runCallbacksOnInit,!0)}t.params.hashNavigation.watchState&&d.addEventListener("hashchange",c)})()})),n("destroy",(()=>{t.params.hashNavigation.enabled&&t.params.hashNavigation.watchState&&d.removeEventListener("hashchange",c)})),n("transitionEnd _freeModeNoMomentumRelease",(()=>{l&&p()})),n("slideChange",(()=>{l&&t.params.cssMode&&p()}))},function(e){let t,s,{swiper:i,extendParams:r,on:n,emit:l,params:o}=e;i.autoplay={running:!1,paused:!1,timeLeft:0},r({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}});let d,c,p,u,m,h,f,g=o&&o.autoplay?o.autoplay.delay:3e3,v=o&&o.autoplay?o.autoplay.delay:3e3,w=(new Date).getTime;function b(e){i&&!i.destroyed&&i.wrapperEl&&e.target===i.wrapperEl&&(i.wrapperEl.removeEventListener("transitionend",b),M())}const y=()=>{if(i.destroyed||!i.autoplay.running)return;i.autoplay.paused?c=!0:c&&(v=d,c=!1);const e=i.autoplay.paused?d:w+v-(new Date).getTime();i.autoplay.timeLeft=e,l("autoplayTimeLeft",e,e/g),s=requestAnimationFrame((()=>{y()}))},E=e=>{if(i.destroyed||!i.autoplay.running)return;cancelAnimationFrame(s),y();let a=void 0===e?i.params.autoplay.delay:e;g=i.params.autoplay.delay,v=i.params.autoplay.delay;const r=(()=>{let e;if(e=i.virtual&&i.params.virtual.enabled?i.slides.filter((e=>e.classList.contains("swiper-slide-active")))[0]:i.slides[i.activeIndex],!e)return;return parseInt(e.getAttribute("data-swiper-autoplay"),10)})();!Number.isNaN(r)&&r>0&&void 0===e&&(a=r,g=r,v=r),d=a;const n=i.params.speed,o=()=>{i&&!i.destroyed&&(i.params.autoplay.reverseDirection?!i.isBeginning||i.params.loop||i.params.rewind?(i.slidePrev(n,!0,!0),l("autoplay")):i.params.autoplay.stopOnLastSlide||(i.slideTo(i.slides.length-1,n,!0,!0),l("autoplay")):!i.isEnd||i.params.loop||i.params.rewind?(i.slideNext(n,!0,!0),l("autoplay")):i.params.autoplay.stopOnLastSlide||(i.slideTo(0,n,!0,!0),l("autoplay")),i.params.cssMode&&(w=(new Date).getTime(),requestAnimationFrame((()=>{E()}))))};return a>0?(clearTimeout(t),t=setTimeout((()=>{o()}),a)):requestAnimationFrame((()=>{o()})),a},x=()=>{i.autoplay.running=!0,E(),l("autoplayStart")},S=()=>{i.autoplay.running=!1,clearTimeout(t),cancelAnimationFrame(s),l("autoplayStop")},T=(e,s)=>{if(i.destroyed||!i.autoplay.running)return;clearTimeout(t),e||(f=!0);const a=()=>{l("autoplayPause"),i.params.autoplay.waitForTransition?i.wrapperEl.addEventListener("transitionend",b):M()};if(i.autoplay.paused=!0,s)return h&&(d=i.params.autoplay.delay),h=!1,void a();const r=d||i.params.autoplay.delay;d=r-((new Date).getTime()-w),i.isEnd&&d<0&&!i.params.loop||(d<0&&(d=0),a())},M=()=>{i.isEnd&&d<0&&!i.params.loop||i.destroyed||!i.autoplay.running||(w=(new Date).getTime(),f?(f=!1,E(d)):E(),i.autoplay.paused=!1,l("autoplayResume"))},C=()=>{if(i.destroyed||!i.autoplay.running)return;const e=a();"hidden"===e.visibilityState&&(f=!0,T(!0)),"visible"===e.visibilityState&&M()},P=e=>{"mouse"===e.pointerType&&(f=!0,i.animating||i.autoplay.paused||T(!0))},L=e=>{"mouse"===e.pointerType&&i.autoplay.paused&&M()};n("init",(()=>{i.params.autoplay.enabled&&(i.params.autoplay.pauseOnMouseEnter&&(i.el.addEventListener("pointerenter",P),i.el.addEventListener("pointerleave",L)),a().addEventListener("visibilitychange",C),w=(new Date).getTime(),x())})),n("destroy",(()=>{i.el.removeEventListener("pointerenter",P),i.el.removeEventListener("pointerleave",L),a().removeEventListener("visibilitychange",C),i.autoplay.running&&S()})),n("beforeTransitionStart",((e,t,s)=>{!i.destroyed&&i.autoplay.running&&(s||!i.params.autoplay.disableOnInteraction?T(!0,!0):S())})),n("sliderFirstMove",(()=>{!i.destroyed&&i.autoplay.running&&(i.params.autoplay.disableOnInteraction?S():(p=!0,u=!1,f=!1,m=setTimeout((()=>{f=!0,u=!0,T(!0)}),200)))})),n("touchEnd",(()=>{if(!i.destroyed&&i.autoplay.running&&p){if(clearTimeout(m),clearTimeout(t),i.params.autoplay.disableOnInteraction)return u=!1,void(p=!1);u&&i.params.cssMode&&M(),u=!1,p=!1}})),n("slideChange",(()=>{!i.destroyed&&i.autoplay.running&&(h=!0)})),Object.assign(i.autoplay,{start:x,stop:S,pause:T,resume:M})},function(e){let{swiper:t,extendParams:s,on:i}=e;s({thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"swiper-slide-thumb-active",thumbsContainerClass:"swiper-thumbs"}});let r=!1,n=!1;function l(){const e=t.thumbs.swiper;if(!e||e.destroyed)return;const s=e.clickedIndex,a=e.clickedSlide;if(a&&a.classList.contains(t.params.thumbs.slideThumbActiveClass))return;if(null==s)return;let i;i=e.params.loop?parseInt(e.clickedSlide.getAttribute("data-swiper-slide-index"),10):s,t.params.loop?t.slideToLoop(i):t.slideTo(i)}function o(){const{thumbs:e}=t.params;if(r)return!1;r=!0;const s=t.constructor;if(e.swiper instanceof s)t.thumbs.swiper=e.swiper,Object.assign(t.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),Object.assign(t.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1}),t.thumbs.swiper.update();else if(d(e.swiper)){const a=Object.assign({},e.swiper);Object.assign(a,{watchSlidesProgress:!0,slideToClickedSlide:!1}),t.thumbs.swiper=new s(a),n=!0}return t.thumbs.swiper.el.classList.add(t.params.thumbs.thumbsContainerClass),t.thumbs.swiper.on("tap",l),!0}function c(e){const s=t.thumbs.swiper;if(!s||s.destroyed)return;const a="auto"===s.params.slidesPerView?s.slidesPerViewDynamic():s.params.slidesPerView;let i=1;const r=t.params.thumbs.slideThumbActiveClass;if(t.params.slidesPerView>1&&!t.params.centeredSlides&&(i=t.params.slidesPerView),t.params.thumbs.multipleActiveThumbs||(i=1),i=Math.floor(i),s.slides.forEach((e=>e.classList.remove(r))),s.params.loop||s.params.virtual&&s.params.virtual.enabled)for(let e=0;e{e.classList.add(r)}));else for(let e=0;ee.getAttribute("data-swiper-slide-index")===`${t.realIndex}`))[0];r=s.slides.indexOf(e),o=t.activeIndex>t.previousIndex?"next":"prev"}else r=t.realIndex,o=r>t.previousIndex?"next":"prev";l&&(r+="next"===o?n:-1*n),s.visibleSlidesIndexes&&s.visibleSlidesIndexes.indexOf(r)<0&&(s.params.centeredSlides?r=r>i?r-Math.floor(a/2)+1:r+Math.floor(a/2)-1:r>i&&s.params.slidesPerGroup,s.slideTo(r,e?0:void 0))}}t.thumbs={swiper:null},i("beforeInit",(()=>{const{thumbs:e}=t.params;if(e&&e.swiper)if("string"==typeof e.swiper||e.swiper instanceof HTMLElement){const s=a(),i=()=>{const a="string"==typeof e.swiper?s.querySelector(e.swiper):e.swiper;if(a&&a.swiper)e.swiper=a.swiper,o(),c(!0);else if(a){const s=i=>{e.swiper=i.detail[0],a.removeEventListener("init",s),o(),c(!0),e.swiper.update(),t.update()};a.addEventListener("init",s)}return a},r=()=>{if(t.destroyed)return;i()||requestAnimationFrame(r)};requestAnimationFrame(r)}else o(),c(!0)})),i("slideChange update resize observerUpdate",(()=>{c()})),i("setTransition",((e,s)=>{const a=t.thumbs.swiper;a&&!a.destroyed&&a.setTransition(s)})),i("beforeDestroy",(()=>{const e=t.thumbs.swiper;e&&!e.destroyed&&n&&e.destroy()})),Object.assign(t.thumbs,{init:o,update:c})},function(e){let{swiper:t,extendParams:s,emit:a,once:i}=e;s({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}}),Object.assign(t,{freeMode:{onTouchStart:function(){if(t.params.cssMode)return;const e=t.getTranslate();t.setTranslate(e),t.setTransition(0),t.touchEventsData.velocities.length=0,t.freeMode.onTouchEnd({currentPos:t.rtl?t.translate:-t.translate})},onTouchMove:function(){if(t.params.cssMode)return;const{touchEventsData:e,touches:s}=t;0===e.velocities.length&&e.velocities.push({position:s[t.isHorizontal()?"startX":"startY"],time:e.touchStartTime}),e.velocities.push({position:s[t.isHorizontal()?"currentX":"currentY"],time:l()})},onTouchEnd:function(e){let{currentPos:s}=e;if(t.params.cssMode)return;const{params:r,wrapperEl:n,rtlTranslate:o,snapGrid:d,touchEventsData:c}=t,p=l()-c.touchStartTime;if(s<-t.minTranslate())t.slideTo(t.activeIndex);else if(s>-t.maxTranslate())t.slides.length1){const e=c.velocities.pop(),s=c.velocities.pop(),a=e.position-s.position,i=e.time-s.time;t.velocity=a/i,t.velocity/=2,Math.abs(t.velocity)150||l()-e.time>300)&&(t.velocity=0)}else t.velocity=0;t.velocity*=r.freeMode.momentumVelocityRatio,c.velocities.length=0;let e=1e3*r.freeMode.momentumRatio;const s=t.velocity*e;let p=t.translate+s;o&&(p=-p);let u,m=!1;const h=20*Math.abs(t.velocity)*r.freeMode.momentumBounceRatio;let f;if(pt.minTranslate())r.freeMode.momentumBounce?(p-t.minTranslate()>h&&(p=t.minTranslate()+h),u=t.minTranslate(),m=!0,c.allowMomentumBounce=!0):p=t.minTranslate(),r.loop&&r.centeredSlides&&(f=!0);else if(r.freeMode.sticky){let e;for(let t=0;t-p){e=t;break}p=Math.abs(d[e]-p){t.loopFix()})),0!==t.velocity){if(e=o?Math.abs((-p-t.translate)/t.velocity):Math.abs((p-t.translate)/t.velocity),r.freeMode.sticky){const s=Math.abs((o?-p:p)-t.translate),a=t.slidesSizesGrid[t.activeIndex];e=s{t&&!t.destroyed&&c.allowMomentumBounce&&(a("momentumBounce"),t.setTransition(r.speed),setTimeout((()=>{t.setTranslate(u),y(n,(()=>{t&&!t.destroyed&&t.transitionEnd()}))}),0))}))):t.velocity?(a("_freeModeNoMomentumRelease"),t.updateProgress(p),t.setTransition(e),t.setTranslate(p),t.transitionStart(!0,t.swipeDirection),t.animating||(t.animating=!0,y(n,(()=>{t&&!t.destroyed&&t.transitionEnd()})))):t.updateProgress(p),t.updateActiveIndex(),t.updateSlidesClasses()}else{if(r.freeMode.sticky)return void t.slideToClosest();r.freeMode&&a("_freeModeNoMomentumRelease")}(!r.freeMode.momentum||p>=r.longSwipesMs)&&(t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses())}}}})},function(e){let t,s,a,i,{swiper:r,extendParams:n,on:l}=e;n({grid:{rows:1,fill:"column"}});const o=()=>{let e=r.params.spaceBetween;return"string"==typeof e&&e.indexOf("%")>=0?e=parseFloat(e.replace("%",""))/100*r.size:"string"==typeof e&&(e=parseFloat(e)),e};l("init",(()=>{i=r.params.grid&&r.params.grid.rows>1})),l("update",(()=>{const{params:e,el:t}=r,s=e.grid&&e.grid.rows>1;i&&!s?(t.classList.remove(`${e.containerModifierClass}grid`,`${e.containerModifierClass}grid-column`),a=1,r.emitContainerClasses()):!i&&s&&(t.classList.add(`${e.containerModifierClass}grid`),"column"===e.grid.fill&&t.classList.add(`${e.containerModifierClass}grid-column`),r.emitContainerClasses()),i=s})),r.grid={initSlides:e=>{const{slidesPerView:i}=r.params,{rows:n,fill:l}=r.params.grid;a=Math.floor(e/n),t=Math.floor(e/n)===e/n?e:Math.ceil(e/n)*n,"auto"!==i&&"row"===l&&(t=Math.max(t,i*n)),s=t/n},updateSlide:(e,i,n,l)=>{const{slidesPerGroup:d}=r.params,c=o(),{rows:p,fill:u}=r.params.grid;let m,h,f;if("row"===u&&d>1){const s=Math.floor(e/(d*p)),a=e-p*d*s,r=0===s?d:Math.min(Math.ceil((n-s*p*d)/p),d);f=Math.floor(a/r),h=a-f*r+s*d,m=h+f*t/p,i.style.order=m}else"column"===u?(h=Math.floor(e/p),f=e-h*p,(h>a||h===a&&f===p-1)&&(f+=1,f>=p&&(f=0,h+=1))):(f=Math.floor(e/s),h=e-f*s);i.row=f,i.column=h,i.style[l("margin-top")]=0!==f?c&&`${c}px`:""},updateWrapperSize:(e,s,a)=>{const{centeredSlides:i,roundLengths:n}=r.params,l=o(),{rows:d}=r.params.grid;if(r.virtualSize=(e+l)*t,r.virtualSize=Math.ceil(r.virtualSize/d)-l,r.wrapperEl.style[a("width")]=`${r.virtualSize+l}px`,i){const e=[];for(let t=0;t{const{slides:e}=t;t.params.fadeEffect;for(let s=0;s{const s=t.slides.map((e=>m(e)));s.forEach((t=>{t.style.transitionDuration=`${e}ms`})),oe({swiper:t,duration:e,transformElements:s,allSlides:!0})},overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({cubeEffect:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94}});const i=(e,t,s)=>{let a=s?e.querySelector(".swiper-slide-shadow-left"):e.querySelector(".swiper-slide-shadow-top"),i=s?e.querySelector(".swiper-slide-shadow-right"):e.querySelector(".swiper-slide-shadow-bottom");a||(a=f("div",("swiper-slide-shadow-cube swiper-slide-shadow-"+(s?"left":"top")).split(" ")),e.append(a)),i||(i=f("div",("swiper-slide-shadow-cube swiper-slide-shadow-"+(s?"right":"bottom")).split(" ")),e.append(i)),a&&(a.style.opacity=Math.max(-t,0)),i&&(i.style.opacity=Math.max(t,0))};ne({effect:"cube",swiper:t,on:a,setTranslate:()=>{const{el:e,wrapperEl:s,slides:a,width:r,height:n,rtlTranslate:l,size:o,browser:d}=t,c=t.params.cubeEffect,p=t.isHorizontal(),u=t.virtual&&t.params.virtual.enabled;let m,h=0;c.shadow&&(p?(m=t.wrapperEl.querySelector(".swiper-cube-shadow"),m||(m=f("div","swiper-cube-shadow"),t.wrapperEl.append(m)),m.style.height=`${r}px`):(m=e.querySelector(".swiper-cube-shadow"),m||(m=f("div","swiper-cube-shadow"),e.append(m))));for(let e=0;e-1&&(h=90*s+90*d,l&&(h=90*-s-90*d)),t.style.transform=v,c.slideShadows&&i(t,d,p)}if(s.style.transformOrigin=`50% 50% -${o/2}px`,s.style["-webkit-transform-origin"]=`50% 50% -${o/2}px`,c.shadow)if(p)m.style.transform=`translate3d(0px, ${r/2+c.shadowOffset}px, ${-r/2}px) rotateX(90deg) rotateZ(0deg) scale(${c.shadowScale})`;else{const e=Math.abs(h)-90*Math.floor(Math.abs(h)/90),t=1.5-(Math.sin(2*e*Math.PI/360)/2+Math.cos(2*e*Math.PI/360)/2),s=c.shadowScale,a=c.shadowScale/t,i=c.shadowOffset;m.style.transform=`scale3d(${s}, 1, ${a}) translate3d(0px, ${n/2+i}px, ${-n/2/a}px) rotateX(-90deg)`}const g=(d.isSafari||d.isWebView)&&d.needPerspectiveFix?-o/2:0;s.style.transform=`translate3d(0px,0,${g}px) rotateX(${t.isHorizontal()?0:h}deg) rotateY(${t.isHorizontal()?-h:0}deg)`,s.style.setProperty("--swiper-cube-translate-z",`${g}px`)},setTransition:e=>{const{el:s,slides:a}=t;if(a.forEach((t=>{t.style.transitionDuration=`${e}ms`,t.querySelectorAll(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").forEach((t=>{t.style.transitionDuration=`${e}ms`}))})),t.params.cubeEffect.shadow&&!t.isHorizontal()){const t=s.querySelector(".swiper-cube-shadow");t&&(t.style.transitionDuration=`${e}ms`)}},recreateShadows:()=>{const e=t.isHorizontal();t.slides.forEach((t=>{const s=Math.max(Math.min(t.progress,1),-1);i(t,s,e)}))},getEffectParams:()=>t.params.cubeEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,resistanceRatio:0,spaceBetween:0,centeredSlides:!1,virtualTranslate:!0})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({flipEffect:{slideShadows:!0,limitRotation:!0}});const i=(e,s)=>{let a=t.isHorizontal()?e.querySelector(".swiper-slide-shadow-left"):e.querySelector(".swiper-slide-shadow-top"),i=t.isHorizontal()?e.querySelector(".swiper-slide-shadow-right"):e.querySelector(".swiper-slide-shadow-bottom");a||(a=de("flip",e,t.isHorizontal()?"left":"top")),i||(i=de("flip",e,t.isHorizontal()?"right":"bottom")),a&&(a.style.opacity=Math.max(-s,0)),i&&(i.style.opacity=Math.max(s,0))};ne({effect:"flip",swiper:t,on:a,setTranslate:()=>{const{slides:e,rtlTranslate:s}=t,a=t.params.flipEffect;for(let r=0;r{const s=t.slides.map((e=>m(e)));s.forEach((t=>{t.style.transitionDuration=`${e}ms`,t.querySelectorAll(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").forEach((t=>{t.style.transitionDuration=`${e}ms`}))})),oe({swiper:t,duration:e,transformElements:s})},recreateShadows:()=>{t.params.flipEffect,t.slides.forEach((e=>{let s=e.progress;t.params.flipEffect.limitRotation&&(s=Math.max(Math.min(e.progress,1),-1)),i(e,s)}))},getEffectParams:()=>t.params.flipEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({coverflowEffect:{rotate:50,stretch:0,depth:100,scale:1,modifier:1,slideShadows:!0}}),ne({effect:"coverflow",swiper:t,on:a,setTranslate:()=>{const{width:e,height:s,slides:a,slidesSizesGrid:i}=t,r=t.params.coverflowEffect,n=t.isHorizontal(),l=t.translate,o=n?e/2-l:s/2-l,d=n?r.rotate:-r.rotate,c=r.depth;for(let e=0,t=a.length;e0?p:0),s&&(s.style.opacity=-p>0?-p:0)}}},setTransition:e=>{t.slides.map((e=>m(e))).forEach((t=>{t.style.transitionDuration=`${e}ms`,t.querySelectorAll(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").forEach((t=>{t.style.transitionDuration=`${e}ms`}))}))},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({creativeEffect:{limitProgress:1,shadowPerProgress:!1,progressMultiplier:1,perspective:!0,prev:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1},next:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1}}});const i=e=>"string"==typeof e?e:`${e}px`;ne({effect:"creative",swiper:t,on:a,setTranslate:()=>{const{slides:e,wrapperEl:s,slidesSizesGrid:a}=t,r=t.params.creativeEffect,{progressMultiplier:n}=r,l=t.params.centeredSlides;if(l){const e=a[0]/2-t.params.slidesOffsetBefore||0;s.style.transform=`translateX(calc(50% - ${e}px))`}for(let s=0;s0&&(f=r.prev,h=!0),u.forEach(((e,t)=>{u[t]=`calc(${e}px + (${i(f.translate[t])} * ${Math.abs(d*n)}))`})),m.forEach(((e,t)=>{m[t]=f.rotate[t]*Math.abs(d*n)})),a.style.zIndex=-Math.abs(Math.round(o))+e.length;const g=u.join(", "),v=`rotateX(${m[0]}deg) rotateY(${m[1]}deg) rotateZ(${m[2]}deg)`,w=c<0?`scale(${1+(1-f.scale)*c*n})`:`scale(${1-(1-f.scale)*c*n})`,b=c<0?1+(1-f.opacity)*c*n:1-(1-f.opacity)*c*n,y=`translate3d(${g}) ${v} ${w}`;if(h&&f.shadow||!h){let e=a.querySelector(".swiper-slide-shadow");if(!e&&f.shadow&&(e=de("creative",a)),e){const t=r.shadowPerProgress?d*(1/r.limitProgress):d;e.style.opacity=Math.min(Math.max(Math.abs(t),0),1)}}const E=le(0,a);E.style.transform=y,E.style.opacity=b,f.origin&&(E.style.transformOrigin=f.origin)}},setTransition:e=>{const s=t.slides.map((e=>m(e)));s.forEach((t=>{t.style.transitionDuration=`${e}ms`,t.querySelectorAll(".swiper-slide-shadow").forEach((t=>{t.style.transitionDuration=`${e}ms`}))})),oe({swiper:t,duration:e,transformElements:s,allSlides:!0})},perspective:()=>t.params.creativeEffect.perspective,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({cardsEffect:{slideShadows:!0,rotate:!0,perSlideRotate:2,perSlideOffset:8}}),ne({effect:"cards",swiper:t,on:a,setTranslate:()=>{const{slides:e,activeIndex:s,rtlTranslate:a}=t,i=t.params.cardsEffect,{startTranslate:r,isTouched:n}=t.touchEventsData,l=a?-t.translate:t.translate;for(let o=0;o0&&p<1&&(n||t.params.cssMode)&&l-1&&(n||t.params.cssMode)&&l>r;if(y||E){const e=(1-Math.abs((Math.abs(p)-.5)/.5))**.5;v+=-28*p*e,g+=-.5*e,w+=96*e,h=-25*e*Math.abs(p)+"%"}if(m=p<0?`calc(${m}px ${a?"-":"+"} (${w*Math.abs(p)}%))`:p>0?`calc(${m}px ${a?"-":"+"} (-${w*Math.abs(p)}%))`:`${m}px`,!t.isHorizontal()){const e=h;h=m,m=e}const x=p<0?""+(1+(1-g)*p):""+(1-(1-g)*p),S=`\n translate3d(${m}, ${h}, ${f}px)\n rotateZ(${i.rotate?a?-v:v:0}deg)\n scale(${x})\n `;if(i.slideShadows){let e=d.querySelector(".swiper-slide-shadow");e||(e=de("cards",d)),e&&(e.style.opacity=Math.min(Math.max((Math.abs(p)-.5)/.5,0),1))}d.style.zIndex=-Math.abs(Math.round(c))+e.length;le(0,d).style.transform=S}},setTransition:e=>{const s=t.slides.map((e=>m(e)));s.forEach((t=>{t.style.transitionDuration=`${e}ms`,t.querySelectorAll(".swiper-slide-shadow").forEach((t=>{t.style.transitionDuration=`${e}ms`}))})),oe({swiper:t,duration:e,transformElements:s})},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})}];return Q.use(ce),Q}();
+//# sourceMappingURL=swiper-bundle.min.js.map
\ No newline at end of file
diff --git a/public/build/libs/wnumb/wNumb.min.js b/public/build/libs/wnumb/wNumb.min.js
new file mode 100644
index 0000000..bb8f177
--- /dev/null
+++ b/public/build/libs/wnumb/wNumb.min.js
@@ -0,0 +1 @@
+!function(e){"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?module.exports=e():window.wNumb=e()}(function(){"use strict";var o=["decimals","thousand","mark","prefix","suffix","encoder","decoder","negativeBefore","negative","edit","undo"];function w(e){return e.split("").reverse().join("")}function h(e,t){return e.substring(0,t.length)===t}function f(e,t,n){if((e[t]||e[n])&&e[t]===e[n])throw new Error(t)}function x(e){return"number"==typeof e&&isFinite(e)}function n(e,t,n,r,i,o,f,u,s,c,a,p){var d,l,h,g=p,v="",m="";return o&&(p=o(p)),!!x(p)&&(!1!==e&&0===parseFloat(p.toFixed(e))&&(p=0),p<0&&(d=!0,p=Math.abs(p)),!1!==e&&(p=function(e,t){return e=e.toString().split("e"),(+((e=(e=Math.round(+(e[0]+"e"+(e[1]?+e[1]+t:t)))).toString().split("e"))[0]+"e"+(e[1]?e[1]-t:-t))).toFixed(t)}(p,e)),-1!==(p=p.toString()).indexOf(".")?(h=(l=p.split("."))[0],n&&(v=n+l[1])):h=p,t&&(h=w((h=w(h).match(/.{1,3}/g)).join(w(t)))),d&&u&&(m+=u),r&&(m+=r),d&&s&&(m+=s),m+=h,m+=v,i&&(m+=i),c&&(m=c(m,g)),m)}function r(e,t,n,r,i,o,f,u,s,c,a,p){var d,l="";return a&&(p=a(p)),!(!p||"string"!=typeof p)&&(u&&h(p,u)&&(p=p.replace(u,""),d=!0),r&&h(p,r)&&(p=p.replace(r,"")),s&&h(p,s)&&(p=p.replace(s,""),d=!0),i&&function(e,t){return e.slice(-1*t.length)===t}(p,i)&&(p=p.slice(0,-1*i.length)),t&&(p=p.split(t).join("")),n&&(p=p.replace(n,".")),d&&(l+="-"),""!==(l=(l+=p).replace(/[^0-9\.\-.]/g,""))&&(l=Number(l),f&&(l=f(l)),!!x(l)&&l))}function i(e,t,n){var r,i=[];for(r=0;r