ng-miam 3.5.13 → 3.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ng-miam.umd.js +270 -209
- package/bundles/ng-miam.umd.js.map +1 -1
- package/bundles/ng-miam.umd.min.js +2 -2
- package/bundles/ng-miam.umd.min.js.map +1 -1
- package/esm2015/lib/_components/abstracts/abstract-recipe-card.component.js +3 -2
- package/esm2015/lib/_components/icon/icon.component.js +20 -5
- package/esm2015/lib/_components/list-input/list-input.component.js +27 -43
- package/esm2015/lib/_services/analytics.service.js +2 -2
- package/esm2015/lib/_services/context.service.js +9 -3
- package/esm2015/lib/_services/groceries-lists.service.js +3 -3
- package/esm2015/lib/_services/ingredients.service.js +14 -1
- package/esm2015/lib/_services/recipes.service.js +4 -2
- package/esm2015/lib/_types/icon.enum.js +2 -1
- package/esm2015/lib/_web-components/basket-preview/basket-preview-block/basket-preview-block.component.js +2 -2
- package/esm2015/lib/_web-components/basket-preview/basket-preview-line/basket-preview-line.component.js +2 -2
- package/esm2015/lib/_web-components/order-button/order-button.component.js +2 -2
- package/esm2015/lib/_web-components/recipe-card/recipe-card.component.js +159 -127
- package/esm2015/lib/_web-components/recipe-details/recipe-details.component.js +2 -2
- package/esm2015/lib/_web-components/recipe-modal/recipe-modal.component.js +2 -2
- package/fesm2015/ng-miam.js +263 -209
- package/fesm2015/ng-miam.js.map +1 -1
- package/lib/_components/abstracts/abstract-recipe-card.component.d.ts +1 -0
- package/lib/_components/list-input/list-input.component.d.ts +3 -2
- package/lib/_services/analytics.service.d.ts +1 -0
- package/lib/_services/context.service.d.ts +2 -0
- package/lib/_services/groceries-lists.service.d.ts +1 -1
- package/lib/_services/ingredients.service.d.ts +2 -0
- package/lib/_services/recipes.service.d.ts +4 -0
- package/lib/_types/icon.enum.d.ts +2 -1
- package/package.json +1 -1
package/bundles/ng-miam.umd.js
CHANGED
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
Icon[Icon["DrawerHorizontalCloseBar"] = 53] = "DrawerHorizontalCloseBar";
|
|
74
74
|
Icon[Icon["Video"] = 54] = "Video";
|
|
75
75
|
Icon[Icon["Cross"] = 55] = "Cross";
|
|
76
|
+
Icon[Icon["Ingredients"] = 56] = "Ingredients";
|
|
76
77
|
})(exports.Icon || (exports.Icon = {}));
|
|
77
78
|
|
|
78
79
|
/*! *****************************************************************************
|
|
@@ -651,7 +652,7 @@
|
|
|
651
652
|
if (value === void 0) { value = null; }
|
|
652
653
|
if (this._initialized) {
|
|
653
654
|
var script = document.createElement('script');
|
|
654
|
-
script.innerHTML = " ga('m_i_a_m_Tracker.send', 'event', {\n eventCategory: 'ng-miam',\n eventAction: '" + action + "',\n eventLabel: '" + label + "',\n eventValue: " + (value === null || value === void 0 ? void 0 : value.toFixed()) + "\n });\n ";
|
|
655
|
+
script.innerHTML = " ga('m_i_a_m_Tracker.send', 'event', {\n eventCategory: 'ng-miam" + (this.abTestkey ? ':' + this.abTestkey : '') + "',\n eventAction: '" + action + "',\n eventLabel: '" + label + "',\n eventValue: " + (value === null || value === void 0 ? void 0 : value.toFixed()) + "\n });\n ";
|
|
655
656
|
document.head.appendChild(script);
|
|
656
657
|
}
|
|
657
658
|
};
|
|
@@ -722,7 +723,7 @@
|
|
|
722
723
|
var _this = this;
|
|
723
724
|
return this.get('reset').pipe(operators.skipWhile(function (l) { return l.is_loading; }), operators.tap(function (l) { return _this.assignList(l); }));
|
|
724
725
|
};
|
|
725
|
-
GroceriesListsService.prototype.appendRecipeToList = function (recipeId, guests, openBasket) {
|
|
726
|
+
GroceriesListsService.prototype.appendRecipeToList = function (recipeId, guests, origin, openBasket) {
|
|
726
727
|
if (openBasket === void 0) { openBasket = false; }
|
|
727
728
|
var list = this.list$.value;
|
|
728
729
|
if (list) {
|
|
@@ -735,7 +736,7 @@
|
|
|
735
736
|
}
|
|
736
737
|
list.attributes['recipes-infos'] = [info];
|
|
737
738
|
this.saveOperationType = 'ADD';
|
|
738
|
-
this.analyticsService.sendEvent('add-recipe');
|
|
739
|
+
this.analyticsService.sendEvent('add-recipe', origin);
|
|
739
740
|
}
|
|
740
741
|
else if (guests) {
|
|
741
742
|
// update guests number
|
|
@@ -2003,8 +2004,23 @@
|
|
|
2003
2004
|
_this.resource = Ingredient;
|
|
2004
2005
|
_this.type = 'ingredients';
|
|
2005
2006
|
_this.register();
|
|
2007
|
+
// if you are using this service you will need this, prefetch it
|
|
2008
|
+
_this.fetchReviewedNames();
|
|
2009
|
+
_this.fetchReviewedUnits();
|
|
2006
2010
|
return _this;
|
|
2007
2011
|
}
|
|
2012
|
+
IngredientsService.prototype.fetchReviewedNames = function () {
|
|
2013
|
+
var _this = this;
|
|
2014
|
+
return this.http.get(MIAM_API_HOST + "ingredients-definitions/reviewed_names").subscribe(function (reviewedNames) {
|
|
2015
|
+
_this.reviewedNames = reviewedNames;
|
|
2016
|
+
});
|
|
2017
|
+
};
|
|
2018
|
+
IngredientsService.prototype.fetchReviewedUnits = function () {
|
|
2019
|
+
var _this = this;
|
|
2020
|
+
return this.http.get(MIAM_API_HOST + "quantity-units/reviewed_names").subscribe(function (reviewedUnits) {
|
|
2021
|
+
_this.reviewedUnits = __spread(reviewedUnits.map(function (unitObject) { return unitObject['name']; }));
|
|
2022
|
+
});
|
|
2023
|
+
};
|
|
2008
2024
|
/**
|
|
2009
2025
|
* Check if ingredient is already known in backend
|
|
2010
2026
|
* @param ingredientDef exemple : 'steak'
|
|
@@ -2458,6 +2474,7 @@
|
|
|
2458
2474
|
_this.displayHelper$ = new rxjs.BehaviorSubject(false);
|
|
2459
2475
|
_this.displayedRecipeChanged = new i0.EventEmitter();
|
|
2460
2476
|
_this.hidden = new i0.EventEmitter();
|
|
2477
|
+
_this.suggestionsPrimaryButtonActions = { display: true, addToBasket: true };
|
|
2461
2478
|
_this.pageNumber = 1;
|
|
2462
2479
|
_this.recipes = [];
|
|
2463
2480
|
_this.register();
|
|
@@ -2477,6 +2494,7 @@
|
|
|
2477
2494
|
return _this.getOrFetch(info.id).pipe(operators.skipWhile(function (r) { return r.is_loading; }), operators.tap(function (r) { return r.modifiedGuests = info.guests; }));
|
|
2478
2495
|
}));
|
|
2479
2496
|
};
|
|
2497
|
+
// TODO: REMOVE UNUSED
|
|
2480
2498
|
// Create recipe & append to groceries list
|
|
2481
2499
|
RecipesService.prototype.getOrCreate = function (recipe, openBasket) {
|
|
2482
2500
|
var _this = this;
|
|
@@ -2488,7 +2506,7 @@
|
|
|
2488
2506
|
// NOTE : adding of(void 0) for falsy observable (ngx-jsonapi is triggering an http request when save() called)
|
|
2489
2507
|
operators.switchMap(function (r) { return rxjs.iif(function () { return !!r.data.length; }, rxjs.of(r.data[0]), rxjs.of(void 0).pipe(operators.switchMap(function (_) { return _this.create(extId, recipe); }))); }),
|
|
2490
2508
|
// Append recipe to current saved list
|
|
2491
|
-
operators.switchMap(function (r) { return _this.listsService.appendRecipeToList(r.id, r.modifiedGuests, openBasket); }));
|
|
2509
|
+
operators.switchMap(function (r) { return _this.listsService.appendRecipeToList(r.id, r.modifiedGuests, 'order-button', openBasket); }));
|
|
2492
2510
|
};
|
|
2493
2511
|
RecipesService.prototype.getRandom = function (page, filters, clear) {
|
|
2494
2512
|
if (page === void 0) { page = { number: this.pageNumber, size: 1 }; }
|
|
@@ -3456,7 +3474,7 @@
|
|
|
3456
3474
|
},
|
|
3457
3475
|
list: {
|
|
3458
3476
|
reset: function () { return _this.listsService.resetList().subscribe(); },
|
|
3459
|
-
addRecipe: function (recipeId, guests) { return _this.listsService.appendRecipeToList(recipeId, guests); },
|
|
3477
|
+
addRecipe: function (recipeId, guests) { return _this.listsService.appendRecipeToList(recipeId, guests, 'client'); },
|
|
3460
3478
|
hasRecipe: function (recipeId) { return _this.listsService.list$.pipe(operators.map(function (list) { return list.hasRecipe(recipeId); })); }
|
|
3461
3479
|
},
|
|
3462
3480
|
pos: {
|
|
@@ -3506,12 +3524,20 @@
|
|
|
3506
3524
|
},
|
|
3507
3525
|
shouldDisplayIngredientPicturesOnRecipeCards: function (should) {
|
|
3508
3526
|
_this.displayIngredientPicturesOnRecipeCards = should;
|
|
3527
|
+
},
|
|
3528
|
+
setSuggestionsPrimaryButtonActions: function (display, addToBasket) {
|
|
3529
|
+
if (display === void 0) { display = true; }
|
|
3530
|
+
if (addToBasket === void 0) { addToBasket = true; }
|
|
3531
|
+
_this.recipesService.suggestionsPrimaryButtonActions = { display: display, addToBasket: addToBasket };
|
|
3509
3532
|
}
|
|
3510
3533
|
},
|
|
3511
3534
|
analytics: {
|
|
3512
3535
|
init: function (gaKey, optimizeKey) {
|
|
3513
3536
|
if (optimizeKey === void 0) { optimizeKey = null; }
|
|
3514
3537
|
return _this.analyticsService.init(gaKey, optimizeKey);
|
|
3538
|
+
},
|
|
3539
|
+
setAbTestKey: function (key) {
|
|
3540
|
+
_this.analyticsService.abTestkey = key;
|
|
3515
3541
|
}
|
|
3516
3542
|
},
|
|
3517
3543
|
hook: {
|
|
@@ -4872,6 +4898,20 @@
|
|
|
4872
4898
|
}
|
|
4873
4899
|
}
|
|
4874
4900
|
function IconComponent_ng_template_1_ng_container_58_Template(rf, ctx) {
|
|
4901
|
+
if (rf & 1) {
|
|
4902
|
+
i0.ɵɵelementContainerStart(0);
|
|
4903
|
+
i0.ɵɵnamespaceSVG();
|
|
4904
|
+
i0.ɵɵelementStart(1, "svg", 285);
|
|
4905
|
+
i0.ɵɵelement(2, "path", 309);
|
|
4906
|
+
i0.ɵɵelement(3, "path", 310);
|
|
4907
|
+
i0.ɵɵelement(4, "path", 311);
|
|
4908
|
+
i0.ɵɵelement(5, "path", 312);
|
|
4909
|
+
i0.ɵɵelement(6, "path", 313);
|
|
4910
|
+
i0.ɵɵelementEnd();
|
|
4911
|
+
i0.ɵɵelementContainerEnd();
|
|
4912
|
+
}
|
|
4913
|
+
}
|
|
4914
|
+
function IconComponent_ng_template_1_ng_container_59_Template(rf, ctx) {
|
|
4875
4915
|
if (rf & 1) {
|
|
4876
4916
|
i0.ɵɵelementContainer(0);
|
|
4877
4917
|
}
|
|
@@ -4936,7 +4976,8 @@
|
|
|
4936
4976
|
i0.ɵɵtemplate(55, IconComponent_ng_template_1_ng_container_55_Template, 3, 0, "ng-container", 5);
|
|
4937
4977
|
i0.ɵɵtemplate(56, IconComponent_ng_template_1_ng_container_56_Template, 11, 1, "ng-container", 5);
|
|
4938
4978
|
i0.ɵɵtemplate(57, IconComponent_ng_template_1_ng_container_57_Template, 3, 1, "ng-container", 5);
|
|
4939
|
-
i0.ɵɵtemplate(58, IconComponent_ng_template_1_ng_container_58_Template,
|
|
4979
|
+
i0.ɵɵtemplate(58, IconComponent_ng_template_1_ng_container_58_Template, 7, 0, "ng-container", 5);
|
|
4980
|
+
i0.ɵɵtemplate(59, IconComponent_ng_template_1_ng_container_59_Template, 1, 0, "ng-container", 6);
|
|
4940
4981
|
i0.ɵɵelementEnd();
|
|
4941
4982
|
i0.ɵɵelementContainerEnd();
|
|
4942
4983
|
}
|
|
@@ -4944,7 +4985,7 @@
|
|
|
4944
4985
|
var ctx_r2 = i0.ɵɵnextContext();
|
|
4945
4986
|
i0.ɵɵproperty("ngSwitch", ctx_r2.iconName);
|
|
4946
4987
|
i0.ɵɵadvance(1);
|
|
4947
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction2(
|
|
4988
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction2(59, _c0, ctx_r2.width + "px", ctx_r2.height + "px"));
|
|
4948
4989
|
i0.ɵɵadvance(1);
|
|
4949
4990
|
i0.ɵɵproperty("ngSwitchCase", ctx_r2.icon.CloudUpload);
|
|
4950
4991
|
i0.ɵɵadvance(1);
|
|
@@ -5057,6 +5098,8 @@
|
|
|
5057
5098
|
i0.ɵɵproperty("ngSwitchCase", ctx_r2.icon.Video);
|
|
5058
5099
|
i0.ɵɵadvance(1);
|
|
5059
5100
|
i0.ɵɵproperty("ngSwitchCase", ctx_r2.icon.Cross);
|
|
5101
|
+
i0.ɵɵadvance(1);
|
|
5102
|
+
i0.ɵɵproperty("ngSwitchCase", ctx_r2.icon.Ingredients);
|
|
5060
5103
|
}
|
|
5061
5104
|
}
|
|
5062
5105
|
var IconComponent = /** @class */ (function () {
|
|
@@ -5076,10 +5119,10 @@
|
|
|
5076
5119
|
return IconComponent;
|
|
5077
5120
|
}());
|
|
5078
5121
|
IconComponent.ɵfac = function IconComponent_Factory(t) { return new (t || IconComponent)(i0.ɵɵdirectiveInject(ContextService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
|
|
5079
|
-
IconComponent.ɵcmp = i0.ɵɵdefineComponent({ type: IconComponent, selectors: [["ng-miam-icon"]], inputs: { primaryColor: "primaryColor", secondaryColor: "secondaryColor", width: "width", height: "height", iconName: "iconName" }, features: [i0.ɵɵNgOnChangesFeature], decls: 3, vars: 2, consts: [["class", "icon-container", 3, "ngStyle", 4, "ngIf", "ngIfElse"], ["switchIcon", ""], [1, "icon-container", 3, "ngStyle"], [1, "icon-container__icon", 3, "src", "ngStyle"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"], ["viewBox", "0 0 16 16", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M12.5018 13.821H9.91582H9.21945H9.06906V10.3523H10.2035C10.4912 10.3523 10.6612 10.0253 10.4912 9.78995L8.28443 6.73642C8.14385 6.54026 7.85288 6.54026 7.7123 6.73642L5.50552 9.78995C5.33551 10.0253 5.50225 10.3523 5.79322 10.3523H6.92767V13.821H6.77728H6.08092H3.08296C1.36657 13.7262 0 12.121 0 10.3817C0 9.18186 0.650593 8.13568 1.61504 7.57009C1.52677 7.33143 1.481 7.07643 1.481 6.80834C1.481 5.58235 2.4716 4.59175 3.69759 4.59175C3.9624 4.59175 4.21741 4.63752 4.45607 4.72579C5.16551 3.22191 6.69555 2.179 8.47405 2.179C10.7756 2.18227 12.6718 3.94443 12.8876 6.19044C14.6563 6.49449 16 8.13241 16 9.98611C16 11.9673 14.4569 13.6837 12.5018 13.821Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-share"], ["fill-rule", "evenodd", "d", "M11.724 3.947l-7 3.5-.448-.894 7-3.5.448.894zm-.448 9l-7-3.5.448-.894 7 3.5-.448.894z"], ["fill-rule", "evenodd", "d", "M13.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm-11-6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 16 16"], ["fill-rule", "evenodd", "d", "M9.5 0a.5.5 0 0 1 .068.995L9.5 1h-1v2.019a6.467 6.467 0 0 1 3.452 1.32l.606-.605a.5.5 0 0 1 .74-.636l.056.048.5.5a.5.5 0 0 1-.588.796l-.568.566A6.5 6.5 0 1 1 7.5 3.018V1h-1a.5.5 0 0 1-.068-.995L6.5 0h3zM8 4a5.5 5.5 0 1 0 0 11A5.5 5.5 0 0 0 8 4zM5.817 6.846l.054.051 2.5 2.768a.5.5 0 0 1-.688.721l-.054-.05-2.5-2.768a.5.5 0 0 1 .688-.722z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-check-circle-fill"], ["fill-rule", "evenodd", "d", "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-x"], ["fill-rule", "evenodd", "d", "M11.854 4.146a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708-.708l7-7a.5.5 0 0 1 .708 0z"], ["fill-rule", "evenodd", "d", "M4.146 4.146a.5.5 0 0 0 0 .708l7 7a.5.5 0 0 0 .708-.708l-7-7a.5.5 0 0 0-.708 0z"], ["viewBox", "0 0 24 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M22 9C22 5.5 19.538 3 16.5 3C14.64 3 13 4 12 5C11 4 9.36 3 7.5 3C4.5 3 2 5.5 2 9C2 15.6009 8.66916 19.5341 11.5259 21.219C11.6987 21.3208 11.8575 21.4145 12 21.5C12.1425 21.4145 12.3013 21.3208 12.4741 21.219C15.3308 19.5341 22 15.6009 22 9Z"], ["d", "M12 5L11.6464 5.35355L12 5.70711L12.3536 5.35355L12 5ZM11.5259 21.219L11.2719 21.6496L11.5259 21.219ZM12 21.5L11.7428 21.9287L12 22.0831L12.2572 21.9287L12 21.5ZM12.4741 21.219L12.7281 21.6496L12.4741 21.219ZM16.5 3.5C19.2316 3.5 21.5 5.74484 21.5 9H22.5C22.5 5.25516 19.8444 2.5 16.5 2.5V3.5ZM12.3536 5.35355C13.2936 4.41346 14.8138 3.5 16.5 3.5V2.5C14.4662 2.5 12.7064 3.58654 11.6464 4.64645L12.3536 5.35355ZM7.5 3.5C9.18616 3.5 10.7064 4.41346 11.6464 5.35355L12.3536 4.64645C11.2936 3.58654 9.53384 2.5 7.5 2.5V3.5ZM2.5 9C2.5 5.74715 4.80427 3.5 7.5 3.5V2.5C4.19573 2.5 1.5 5.25285 1.5 9H2.5ZM11.7799 20.7883C10.3495 19.9446 8.01919 18.5682 6.04476 16.599C4.07253 14.632 2.5 12.1183 2.5 9H1.5C1.5 12.4826 3.26205 15.236 5.3386 17.307C7.41295 19.3759 9.84566 20.8085 11.2719 21.6496L11.7799 20.7883ZM12.2572 21.0713C12.1128 20.9846 11.9522 20.8899 11.7799 20.7883L11.2719 21.6496C11.4451 21.7518 11.6022 21.8444 11.7428 21.9287L12.2572 21.0713ZM12.2201 20.7883C12.0478 20.8899 11.8872 20.9846 11.7428 21.0713L12.2572 21.9287C12.3978 21.8444 12.5549 21.7518 12.7281 21.6496L12.2201 20.7883ZM21.5 9C21.5 12.1183 19.9275 14.632 17.9552 16.599C15.9808 18.5682 13.6505 19.9446 12.2201 20.7883L12.7281 21.6496C14.1543 20.8085 16.587 19.3759 18.6614 17.307C20.7379 15.236 22.5 12.4826 22.5 9H21.5Z"], ["viewBox", "0 0 17 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-image"], ["fill-rule", "evenodd", "d", "M14.002 2h-12a1 1 0 0 0-1 1v9l2.646-2.354a.5.5 0 0 1 .63-.062l2.66 1.773 3.71-3.71a.5.5 0 0 1 .577-.094L15.002 9.5V3a1 1 0 0 0-1-1zm-12-1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-12zm4 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-clipboard-check"], ["fill-rule", "evenodd", "d", "M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"], ["fill-rule", "evenodd", "d", "M9.5 1h-3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3zm4.354 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z"], ["xmlns", "http://www.w3.org/2000/svg", 0, "xmlns", "xlink", "http://www.w3.org/1999/xlink", "version", "1.1", "id", "Capa_1", "x", "0px", "y", "0px", "viewBox", "0 0 325.799 325.799", 0, "xml", "space", "preserve", 2, "enable-background", "new 0 0 325.799 325.799"], ["d", "M285.306,296.302c-73.7,28.4-156.5-8.4-184.9-82.2c-0.5-1.4-1-2.7-1.5-4.1h147.8c5.5,0,10-4.5,10-10s-4.5-10-10-10h-153.1 c-3-15.8-3.3-32.1-1-48h170.1c5.5,0,10-4.5,10-10s-4.5-10-10-10h-165.6c22.7-75.6,102.5-118.5,178.2-95.8c3.3,1,6.7,2.1,10.1,3.4 c5.1,2,10.9-0.5,13-5.7c2-5.1-0.5-10.9-5.7-13h-0.1c-84-32.3-178.3,9.6-210.7,93.6c-2.2,5.7-4.1,11.5-5.6,17.4h-39.6 c-5.5,0-10,4.5-10,10s4.5,10,10,10h35.7c-2,16-1.7,32.1,0.9,48h-36.6c-5.5,0-10,4.5-10,10s4.5,10,10,10h41.3 c26.1,86.2,117.1,134.9,203.2,108.9c3.8-1.2,7.6-2.5,11.3-3.9c5.1-2,7.7-7.8,5.7-12.9 C296.206,296.902,290.406,294.302,285.306,296.302z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-calendar-week"], ["fill-rule", "evenodd", "d", "M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1zm1-3a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2z"], ["fill-rule", "evenodd", "d", "M3.5 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5zm9 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5z"], ["d", "M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-basket"], ["fill-rule", "evenodd", "d", "M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v4.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5V9a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h1.217L5.07 1.243a.5.5 0 0 1 .686-.172zM2 9v4.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V9H2zM1 7v1h14V7H1zm3 3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 4 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 6 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 8 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5z"], ["viewBox", "0 0 64 16", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["clip-path", "url(#clip0)"], ["d", "M14.7613 14.2631C14.5819 13.8245 14.3992 13.386 14.1998 12.954C14.0237 12.5686 13.7978 12.4557 13.3759 12.552C12.8409 12.6749 12.316 12.8377 11.7811 12.9474C10.7478 13.1634 9.71117 13.1833 8.69117 12.861C7.41202 12.459 6.73091 11.532 6.31228 10.3359H9.78094C10.0534 10.3359 10.2727 10.1166 10.2727 9.8442V8.75111C10.2727 8.47866 10.0534 8.25938 9.78094 8.25938H5.98003C5.98003 7.95371 5.97671 7.66134 5.98003 7.36896H9.78094C10.0534 7.36896 10.2727 7.14968 10.2727 6.87723V5.78414C10.2727 5.5117 10.0534 5.29241 9.78094 5.29241H6.45847C6.45847 5.27912 6.45847 5.26583 6.46512 5.25919C6.86381 4.35215 7.44524 3.62453 8.39879 3.24577C9.5085 2.8072 10.6415 2.81717 11.7844 3.05307C12.326 3.16271 12.8576 3.32883 13.3991 3.45176C13.7945 3.54147 14.0237 3.42518 14.1932 3.05639C14.3892 2.63111 14.5686 2.19919 14.748 1.76395C14.9175 1.35528 14.8178 1.06623 14.4324 0.840299C14.3361 0.783817 14.2364 0.737303 14.1334 0.697433C12.532 0.072808 10.8807 -0.159765 9.17625 0.112678C7.97684 0.305381 6.85717 0.717368 5.89033 1.46825C4.67098 2.41183 3.88023 3.65776 3.42173 5.12297L3.36525 5.29241H1.6575C1.38505 5.29241 1.16577 5.5117 1.16577 5.78414V6.87723C1.16577 7.14968 1.38505 7.36896 1.6575 7.36896H3.0031C3.0031 7.66798 3.0031 7.95704 3.0031 8.25938H1.6575C1.38505 8.25938 1.16577 8.47866 1.16577 8.75111V9.8442C1.16577 10.1166 1.38505 10.3359 1.6575 10.3359H3.27886C3.4018 10.7346 3.50479 11.14 3.66095 11.522C4.4816 13.5022 5.8571 14.911 7.927 15.5821C9.63808 16.137 11.3624 16.1204 13.0868 15.6452C13.5353 15.5223 13.9805 15.3628 14.4058 15.1668C14.8178 14.9774 14.9241 14.6585 14.7613 14.2631Z"], ["clip-path", "url(#clip1)"], ["d", "M38.7613 14.2631C38.5819 13.8245 38.3992 13.386 38.1998 12.954C38.0237 12.5686 37.7978 12.4557 37.3759 12.552C36.8409 12.6749 36.316 12.8377 35.7811 12.9474C34.7478 13.1634 33.7112 13.1833 32.6912 12.861C31.412 12.459 30.7309 11.532 30.3123 10.3359H33.7809C34.0534 10.3359 34.2727 10.1166 34.2727 9.8442V8.75111C34.2727 8.47866 34.0534 8.25938 33.7809 8.25938H29.98C29.98 7.95371 29.9767 7.66134 29.98 7.36896H33.7809C34.0534 7.36896 34.2727 7.14968 34.2727 6.87723V5.78414C34.2727 5.5117 34.0534 5.29241 33.7809 5.29241H30.4585C30.4585 5.27912 30.4585 5.26583 30.4651 5.25919C30.8638 4.35215 31.4452 3.62453 32.3988 3.24577C33.5085 2.8072 34.6415 2.81717 35.7844 3.05307C36.326 3.16271 36.8576 3.32883 37.3991 3.45176C37.7945 3.54147 38.0237 3.42518 38.1932 3.05639C38.3892 2.63111 38.5686 2.19919 38.748 1.76395C38.9175 1.35528 38.8178 1.06623 38.4324 0.840299C38.3361 0.783817 38.2364 0.737303 38.1334 0.697433C36.532 0.072808 34.8807 -0.159765 33.1763 0.112678C31.9768 0.305381 30.8572 0.717368 29.8903 1.46825C28.671 2.41183 27.8802 3.65776 27.4217 5.12297L27.3652 5.29241H25.6575C25.3851 5.29241 25.1658 5.5117 25.1658 5.78414V6.87723C25.1658 7.14968 25.3851 7.36896 25.6575 7.36896H27.0031C27.0031 7.66798 27.0031 7.95704 27.0031 8.25938H25.6575C25.3851 8.25938 25.1658 8.47866 25.1658 8.75111V9.8442C25.1658 10.1166 25.3851 10.3359 25.6575 10.3359H27.2789C27.4018 10.7346 27.5048 11.14 27.6609 11.522C28.4816 13.5022 29.8571 14.911 31.927 15.5821C33.6381 16.137 35.3624 16.1204 37.0868 15.6452C37.5353 15.5223 37.9805 15.3628 38.4058 15.1668C38.8178 14.9774 38.9241 14.6585 38.7613 14.2631Z", "fill", "#8C8CA1"], ["clip-path", "url(#clip2)"], ["d", "M62.7613 14.2631C62.5819 13.8245 62.3992 13.386 62.1998 12.954C62.0237 12.5686 61.7978 12.4557 61.3759 12.552C60.8409 12.6749 60.316 12.8377 59.7811 12.9474C58.7478 13.1634 57.7112 13.1833 56.6912 12.861C55.412 12.459 54.7309 11.532 54.3123 10.3359H57.7809C58.0534 10.3359 58.2727 10.1166 58.2727 9.8442V8.75111C58.2727 8.47866 58.0534 8.25938 57.7809 8.25938H53.98C53.98 7.95371 53.9767 7.66134 53.98 7.36896H57.7809C58.0534 7.36896 58.2727 7.14968 58.2727 6.87723V5.78414C58.2727 5.5117 58.0534 5.29241 57.7809 5.29241H54.4585C54.4585 5.27912 54.4585 5.26583 54.4651 5.25919C54.8638 4.35215 55.4452 3.62453 56.3988 3.24577C57.5085 2.8072 58.6415 2.81717 59.7844 3.05307C60.326 3.16271 60.8576 3.32883 61.3991 3.45176C61.7945 3.54147 62.0237 3.42518 62.1932 3.05639C62.3892 2.63111 62.5686 2.19919 62.748 1.76395C62.9175 1.35528 62.8178 1.06623 62.4324 0.840299C62.3361 0.783817 62.2364 0.737303 62.1334 0.697433C60.532 0.072808 58.8807 -0.159765 57.1763 0.112678C55.9768 0.305381 54.8572 0.717368 53.8903 1.46825C52.671 2.41183 51.8802 3.65776 51.4217 5.12297L51.3652 5.29241H49.6575C49.3851 5.29241 49.1658 5.5117 49.1658 5.78414V6.87723C49.1658 7.14968 49.3851 7.36896 49.6575 7.36896H51.0031C51.0031 7.66798 51.0031 7.95704 51.0031 8.25938H49.6575C49.3851 8.25938 49.1658 8.47866 49.1658 8.75111V9.8442C49.1658 10.1166 49.3851 10.3359 49.6575 10.3359H51.2789C51.4018 10.7346 51.5048 11.14 51.6609 11.522C52.4816 13.5022 53.8571 14.911 55.927 15.5821C57.6381 16.137 59.3624 16.1204 61.0868 15.6452C61.5353 15.5223 61.9805 15.3628 62.4058 15.1668C62.8178 14.9774 62.9241 14.6585 62.7613 14.2631Z", "fill", "#8C8CA1"], ["id", "clip0"], ["width", "16", "height", "16", "fill", "white"], ["id", "clip1"], ["width", "16", "height", "16", "fill", "white", "transform", "translate(24)"], ["id", "clip2"], ["width", "16", "height", "16", "fill", "white", "transform", "translate(48)"], ["d", "M38.7613 14.2631C38.5819 13.8245 38.3992 13.386 38.1998 12.954C38.0237 12.5686 37.7978 12.4557 37.3759 12.552C36.8409 12.6749 36.316 12.8377 35.7811 12.9474C34.7478 13.1634 33.7112 13.1833 32.6912 12.861C31.412 12.459 30.7309 11.532 30.3123 10.3359H33.7809C34.0534 10.3359 34.2727 10.1166 34.2727 9.8442V8.75111C34.2727 8.47866 34.0534 8.25938 33.7809 8.25938H29.98C29.98 7.95371 29.9767 7.66134 29.98 7.36896H33.7809C34.0534 7.36896 34.2727 7.14968 34.2727 6.87723V5.78414C34.2727 5.5117 34.0534 5.29241 33.7809 5.29241H30.4585C30.4585 5.27912 30.4585 5.26583 30.4651 5.25919C30.8638 4.35215 31.4452 3.62453 32.3988 3.24577C33.5085 2.8072 34.6415 2.81717 35.7844 3.05307C36.326 3.16271 36.8576 3.32883 37.3991 3.45176C37.7945 3.54147 38.0237 3.42518 38.1932 3.05639C38.3892 2.63111 38.5686 2.19919 38.748 1.76395C38.9175 1.35528 38.8178 1.06623 38.4324 0.840299C38.3361 0.783817 38.2364 0.737303 38.1334 0.697433C36.532 0.072808 34.8807 -0.159765 33.1763 0.112678C31.9768 0.305381 30.8572 0.717368 29.8903 1.46825C28.671 2.41183 27.8802 3.65776 27.4217 5.12297L27.3652 5.29241H25.6575C25.3851 5.29241 25.1658 5.5117 25.1658 5.78414V6.87723C25.1658 7.14968 25.3851 7.36896 25.6575 7.36896H27.0031C27.0031 7.66798 27.0031 7.95704 27.0031 8.25938H25.6575C25.3851 8.25938 25.1658 8.47866 25.1658 8.75111V9.8442C25.1658 10.1166 25.3851 10.3359 25.6575 10.3359H27.2789C27.4018 10.7346 27.5048 11.14 27.6609 11.522C28.4816 13.5022 29.8571 14.911 31.927 15.5821C33.6381 16.137 35.3624 16.1204 37.0868 15.6452C37.5353 15.5223 37.9805 15.3628 38.4058 15.1668C38.8178 14.9774 38.9241 14.6585 38.7613 14.2631Z"], ["d", "M62.7613 14.2631C62.5819 13.8245 62.3992 13.386 62.1998 12.954C62.0237 12.5686 61.7978 12.4557 61.3759 12.552C60.8409 12.6749 60.316 12.8377 59.7811 12.9474C58.7478 13.1634 57.7112 13.1833 56.6912 12.861C55.412 12.459 54.7309 11.532 54.3123 10.3359H57.7809C58.0534 10.3359 58.2727 10.1166 58.2727 9.8442V8.75111C58.2727 8.47866 58.0534 8.25938 57.7809 8.25938H53.98C53.98 7.95371 53.9767 7.66134 53.98 7.36896H57.7809C58.0534 7.36896 58.2727 7.14968 58.2727 6.87723V5.78414C58.2727 5.5117 58.0534 5.29241 57.7809 5.29241H54.4585C54.4585 5.27912 54.4585 5.26583 54.4651 5.25919C54.8638 4.35215 55.4452 3.62453 56.3988 3.24577C57.5085 2.8072 58.6415 2.81717 59.7844 3.05307C60.326 3.16271 60.8576 3.32883 61.3991 3.45176C61.7945 3.54147 62.0237 3.42518 62.1932 3.05639C62.3892 2.63111 62.5686 2.19919 62.748 1.76395C62.9175 1.35528 62.8178 1.06623 62.4324 0.840299C62.3361 0.783817 62.2364 0.737303 62.1334 0.697433C60.532 0.072808 58.8807 -0.159765 57.1763 0.112678C55.9768 0.305381 54.8572 0.717368 53.8903 1.46825C52.671 2.41183 51.8802 3.65776 51.4217 5.12297L51.3652 5.29241H49.6575C49.3851 5.29241 49.1658 5.5117 49.1658 5.78414V6.87723C49.1658 7.14968 49.3851 7.36896 49.6575 7.36896H51.0031C51.0031 7.66798 51.0031 7.95704 51.0031 8.25938H49.6575C49.3851 8.25938 49.1658 8.47866 49.1658 8.75111V9.8442C49.1658 10.1166 49.3851 10.3359 49.6575 10.3359H51.2789C51.4018 10.7346 51.5048 11.14 51.6609 11.522C52.4816 13.5022 53.8571 14.911 55.927 15.5821C57.6381 16.137 59.3624 16.1204 61.0868 15.6452C61.5353 15.5223 61.9805 15.3628 62.4058 15.1668C62.8178 14.9774 62.9241 14.6585 62.7613 14.2631Z"], ["d", "M6.96527 1.04078C7.42036 -0.346927 9.40188 -0.346924 9.85698 1.04078L10.8004 3.91742C11.0039 4.53802 11.5876 4.95819 12.2462 4.95819H15.2991C16.7718 4.95819 17.3841 6.82534 16.1927 7.68298L13.7228 9.46084C13.19 9.8444 12.9671 10.5243 13.1706 11.1449L14.114 14.0215C14.5691 15.4092 12.966 16.5632 11.7745 15.7055L9.30471 13.9276C8.77188 13.5441 8.05037 13.5441 7.51754 13.9276L5.04772 15.7055C3.85627 16.5632 2.25319 15.4092 2.70828 14.0215L3.65167 11.1449C3.85519 10.5243 3.63223 9.84439 3.0994 9.46084L0.629587 7.68298C-0.561862 6.82533 0.0504642 4.95819 1.52318 4.95819H4.57603C5.23465 4.95819 5.81836 4.53802 6.02189 3.91742L6.96527 1.04078Z"], ["d", "M30.579 1.04078C31.0341 -0.346927 33.0156 -0.346924 33.4707 1.04078L34.4141 3.91742C34.6176 4.53802 35.2013 4.95819 35.8599 4.95819H38.9128C40.3855 4.95819 40.9978 6.82534 39.8064 7.68298L37.3365 9.46084C36.8037 9.8444 36.5807 10.5243 36.7843 11.1449L37.7277 14.0215C38.1827 15.4092 36.5797 16.5632 35.3882 15.7055L32.9184 13.9276C32.3856 13.5441 31.6641 13.5441 31.1312 13.9276L28.6614 15.7055C27.47 16.5632 25.8669 15.4092 26.322 14.0215L27.2654 11.1449C27.4689 10.5243 27.2459 9.84439 26.7131 9.46084L24.2433 7.68298C23.0518 6.82533 23.6642 4.95819 25.1369 4.95819H28.1897C28.8484 4.95819 29.4321 4.53802 29.6356 3.91742L30.579 1.04078Z", "fill", "#8C8CA1"], ["d", "M54.143 1.04078C54.5981 -0.346927 56.5796 -0.346924 57.0347 1.04078L57.9781 3.91742C58.1816 4.53802 58.7653 4.95819 59.424 4.95819H62.4768C63.9495 4.95819 64.5618 6.82534 63.3704 7.68298L60.9006 9.46084C60.3677 9.8444 60.1448 10.5243 60.3483 11.1449L61.2917 14.0215C61.7468 15.4092 60.1437 16.5632 58.9523 15.7055L56.4824 13.9276C55.9496 13.5441 55.2281 13.5441 54.6953 13.9276L52.2255 15.7055C51.034 16.5632 49.4309 15.4092 49.886 14.0215L50.8294 11.1449C51.0329 10.5243 50.81 9.84439 50.2771 9.46084L47.8073 7.68298C46.6159 6.82533 47.2282 4.95819 48.7009 4.95819H51.7538C52.4124 4.95819 52.9961 4.53802 53.1996 3.91742L54.143 1.04078Z", "fill", "#8C8CA1"], ["d", "M30.579 1.04078C31.0341 -0.346927 33.0156 -0.346924 33.4707 1.04078L34.4141 3.91742C34.6176 4.53802 35.2013 4.95819 35.8599 4.95819H38.9128C40.3855 4.95819 40.9978 6.82534 39.8064 7.68298L37.3365 9.46084C36.8037 9.8444 36.5807 10.5243 36.7843 11.1449L37.7277 14.0215C38.1827 15.4092 36.5797 16.5632 35.3882 15.7055L32.9184 13.9276C32.3856 13.5441 31.6641 13.5441 31.1312 13.9276L28.6614 15.7055C27.47 16.5632 25.8669 15.4092 26.322 14.0215L27.2654 11.1449C27.4689 10.5243 27.2459 9.84439 26.7131 9.46084L24.2433 7.68298C23.0518 6.82533 23.6642 4.95819 25.1369 4.95819H28.1897C28.8484 4.95819 29.4321 4.53802 29.6356 3.91742L30.579 1.04078Z"], ["viewBox", "0 0 12 20", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M4.33333 3.6C4.33333 4.48366 3.58714 5.2 2.66667 5.2C1.74619 5.2 1 4.48366 1 3.6C1 2.71634 1.74619 2 2.66667 2C3.58714 2 4.33333 2.71634 4.33333 3.6Z"], ["d", "M4.33333 10C4.33333 10.8837 3.58714 11.6 2.66667 11.6C1.74619 11.6 1 10.8837 1 10C1 9.11634 1.74619 8.4 2.66667 8.4C3.58714 8.4 4.33333 9.11634 4.33333 10Z"], ["d", "M4.33333 16.4C4.33333 17.2837 3.58714 18 2.66667 18C1.74619 18 1 17.2837 1 16.4C1 15.5163 1.74619 14.8 2.66667 14.8C3.58714 14.8 4.33333 15.5163 4.33333 16.4Z"], ["d", "M11 3.6C11 4.48366 10.2538 5.2 9.33333 5.2C8.41286 5.2 7.66667 4.48366 7.66667 3.6C7.66667 2.71634 8.41286 2 9.33333 2C10.2538 2 11 2.71634 11 3.6Z"], ["d", "M11 10C11 10.8837 10.2538 11.6 9.33333 11.6C8.41286 11.6 7.66667 10.8837 7.66667 10C7.66667 9.11634 8.41286 8.4 9.33333 8.4C10.2538 8.4 11 9.11634 11 10Z"], ["d", "M11 16.4C11 17.2837 10.2538 18 9.33333 18C8.41286 18 7.66667 17.2837 7.66667 16.4C7.66667 15.5163 8.41286 14.8 9.33333 14.8C10.2538 14.8 11 15.5163 11 16.4Z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 24 24"], ["d", "M0 0h24v24H0V0z", "fill", "none"], ["d", "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-return-left"], ["fill-rule", "evenodd", "d", "M14.5 1.5a.5.5 0 0 1 .5.5v4.8a2.5 2.5 0 0 1-2.5 2.5H2.707l3.347 3.346a.5.5 0 0 1-.708.708l-4.2-4.2a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 8.3H12.5A1.5 1.5 0 0 0 14 6.8V2a.5.5 0 0 1 .5-.5z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-down"], ["fill-rule", "evenodd", "d", "M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z"], ["d", "M12.5 13c.828 0 1.5.672 1.5 1.5s-.672 1.5-1.5 1.5-1.5-.672-1.5-1.5.672-1.5 1.5-1.5zm-9 0c.828 0 1.5.672 1.5 1.5S4.328 16 3.5 16 2 15.328 2 14.5 2.672 13 3.5 13zM3 0l.591 2H15c.623 0 1.095.564.984 1.177C15.27 7.14 14.526 9 13 9H4.42c-.377.391-.67.729-.876 1H13c.552 0 1 .448 1 1s-.448 1-1 1H3c-1.28 0-2.11-.83-1.699-2.066.218-.654.813-1.44 1.807-2.454L1.433 2H0V0h3zm10.786 4H4.182l.887 3h7.737c.09-.124.2-.333.315-.621.224-.56.447-1.355.665-2.379z"], ["d", "M54.143 1.04078C54.5981 -0.346927 56.5796 -0.346924 57.0347 1.04078L57.9781 3.91742C58.1816 4.53802 58.7653 4.95819 59.424 4.95819H62.4768C63.9495 4.95819 64.5618 6.82534 63.3704 7.68298L60.9006 9.46084C60.3677 9.8444 60.1448 10.5243 60.3483 11.1449L61.2917 14.0215C61.7468 15.4092 60.1437 16.5632 58.9523 15.7055L56.4824 13.9276C55.9496 13.5441 55.2281 13.5441 54.6953 13.9276L52.2255 15.7055C51.034 16.5632 49.4309 15.4092 49.886 14.0215L50.8294 11.1449C51.0329 10.5243 50.81 9.84439 50.2771 9.46084L47.8073 7.68298C46.6159 6.82533 47.2282 4.95819 48.7009 4.95819H51.7538C52.4124 4.95819 52.9961 4.53802 53.1996 3.91742L54.143 1.04078Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-people"], ["fill-rule", "evenodd", "d", "M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8zm-7.978-1h7.956a.274.274 0 0 0 .014-.002l.008-.002c-.002-.264-.167-1.03-.76-1.72C13.688 10.629 12.718 10 11 10c-1.717 0-2.687.63-3.24 1.276-.593.69-.759 1.457-.76 1.72a1.05 1.05 0 0 0 .022.004zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816zM4.92 10c-1.668.02-2.615.64-3.16 1.276C1.163 11.97 1 12.739 1 13h3c0-1.045.323-2.086.92-3zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"], ["xmlns", "http://www.w3.org/2000/svg", "id", "Out_line", "data-name", "Out line", "viewBox", "0 0 512 512"], ["d", "M496,184h-8V95.21a79.51747,79.51747,0,0,0-48.24-73.15991,40.20637,40.20637,0,0,0-31.52,0A79.51747,79.51747,0,0,0,360,95.21v75.6001A87.54442,87.54442,0,0,1,344.36,127.99l-.00061-.00806A7.99364,7.99364,0,0,0,352,120V72a8.00008,8.00008,0,0,0-8-8H280a8.00008,8.00008,0,0,0-8,8v2.8501c-.43994-.51026-.9-1-1.38-1.48A31.984,31.984,0,0,0,220.01,80.51a32.22031,32.22031,0,0,0-5.39-7.13989,32.00263,32.00263,0,0,0-53.80994,15.43994A31.98816,31.98816,0,0,0,146.86,144,31.96526,31.96526,0,0,0,152,195.7V240h16V200H408V480H344v16H496a7.9979,7.9979,0,0,0,8-8V192A7.9979,7.9979,0,0,0,496,184ZM376,136h24a8,8,0,0,1,0,16H376Zm4.37-64H400a8,8,0,1,1,0,16H376.4A64.01244,64.01244,0,0,1,380.37,72ZM288,80h48v32H288ZM168,184a16,16,0,0,1,0-32,8,8,0,0,0,0-16,16,16,0,0,1,0-32,7.9979,7.9979,0,0,0,8-8,16.00013,16.00013,0,0,1,31.62-3.47A31.958,31.958,0,0,0,202.86,144a31.93735,31.93735,0,0,0-6.55994,40Zm56,0a16,16,0,0,1,0-32,8,8,0,0,0,0-16,16,16,0,0,1,0-32,7.9979,7.9979,0,0,0,8-8,16,16,0,1,1,32,0,7.9979,7.9979,0,0,0,8,8v16a7.99364,7.99364,0,0,0,7.64062,7.98193L279.64,127.99A87.73358,87.73358,0,0,1,256,180.62012V96H240v88Zm50.14,0a103.38584,103.38584,0,0,0,21.54993-56h32.62012A103.38584,103.38584,0,0,0,349.86,184ZM376,184V168h24a24,24,0,0,0,0-48H376V104h24a24,24,0,0,0,0-48H389.52a63.465,63.465,0,0,1,25.03-19.24,24.04215,24.04215,0,0,1,18.8999,0A63.51551,63.51551,0,0,1,472,95.21V184ZM488,480H424V200h64Z"], ["d", "M176,432a24.04267,24.04267,0,0,0-18.334-23.32422,67.0819,67.0819,0,0,0-123.332,0,24.00336,24.00336,0,0,0,0,46.64844,67.0819,67.0819,0,0,0,123.332,0A24.04267,24.04267,0,0,0,176,432Zm-24,8a7.99922,7.99922,0,0,0-7.42773,5.0293l-1.14454,2.86132a51.08168,51.08168,0,0,1-94.85546,0l-1.14454-2.86132A7.99922,7.99922,0,0,0,40,440a8,8,0,0,1,0-16,7.99922,7.99922,0,0,0,7.42773-5.0293l1.14454-2.86132a51.08168,51.08168,0,0,1,94.85546,0l1.14454,2.86132A7.99922,7.99922,0,0,0,152,424a8,8,0,0,1,0,16Z"], ["x", "64", "y", "408", "width", "16", "height", "16"], ["x", "80", "y", "440", "width", "16", "height", "16"], ["x", "112", "y", "424", "width", "16", "height", "16"], ["d", "M206.02,341.8501l17.13989-34.27-14.31982-7.16016-11.03,22.07007L192,316.67993V299.75a40.18506,40.18506,0,0,0-34.34009-39.59009L129.13,256.08008a7.99356,7.99356,0,0,0-9.04992,9.0498l4.07983,28.53A40.18506,40.18506,0,0,0,163.75,328h16.92993l9.21008,9.21a80.07936,80.07936,0,0,0-67.2301,19.16016L133.34009,368.29A63.911,63.911,0,0,1,176,352a62.44161,62.44161,0,0,1,6.87.37012l-9.07,18.12988a7.74033,7.74033,0,0,0-2.22-1.66016l-16-8-7.16016,14.32007,13.8501,6.92017A25.95522,25.95522,0,0,0,191.61,392.75l12.80993,6.40991,7.16016-14.32007-16-8a8.044,8.044,0,0,0-7.02-.06982l10.28-20.55a64.00695,64.00695,0,0,1-44.17017,120.13989L149.33008,491.45A80.01072,80.01072,0,0,0,206.02,341.8501ZM176,300.68994l-15.6-15.6001L149.09009,296.3999,164.68994,312H163.75a24.12661,24.12661,0,0,1-23.76-20.60986l-2.56006-17.96021L155.39,276A24.10891,24.10891,0,0,1,176,299.75Z"], ["d", "M304,272h-8v-8h8a7.9979,7.9979,0,0,0,8-8V224a7.9979,7.9979,0,0,0-8-8H224a7.9979,7.9979,0,0,0-8,8v32a7.9979,7.9979,0,0,0,8,8h8v8h-8a32.0512,32.0512,0,0,0-23.85,10.66992l11.92,10.66016A16.0305,16.0305,0,0,1,224,288h16a7.9979,7.9979,0,0,0,8-8V264h32v8H264v16h40a16.02116,16.02116,0,0,1,16,16v16H232v16h88v96H272v16h48v16a16.02116,16.02116,0,0,1-16,16H240v16h64a32.036,32.036,0,0,0,32-32V304A32.036,32.036,0,0,0,304,272Zm-72-24V232h64v16Z"], ["height", "2", "viewBox", "0 0 12 2", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M10.5 0.25H1.5C1.05 0.25 0.75 0.55 0.75 1C0.75 1.45 1.05 1.75 1.5 1.75H10.5C10.95 1.75 11.25 1.45 11.25 1C11.25 0.55 10.95 0.25 10.5 0.25Z"], ["viewBox", "0 0 16 17", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M13.25 2.67871H10.5V2.17871C10.5 1.35027 9.82844 0.678711 9 0.678711H7C6.17156 0.678711 5.5 1.35027 5.5 2.17871V2.67871H2.75C2.05966 2.67871 1.5 3.23837 1.5 3.92871V4.92871C1.5 5.20487 1.72384 5.42871 2 5.42871H14C14.2762 5.42871 14.5 5.20487 14.5 4.92871V3.92871C14.5 3.23837 13.9403 2.67871 13.25 2.67871ZM6.5 2.17871C6.5 1.90309 6.72437 1.67871 7 1.67871H9C9.27563 1.67871 9.5 1.90309 9.5 2.17871V2.67871H6.5V2.17871Z"], ["d", "M2.44897 6.42871C2.35975 6.42871 2.28866 6.50327 2.29291 6.5924L2.70541 15.25C2.74353 16.0512 3.40166 16.6787 4.20353 16.6787H11.7967C12.5985 16.6787 13.2567 16.0512 13.2948 15.25L13.7073 6.5924C13.7115 6.50327 13.6404 6.42871 13.5512 6.42871H2.44897ZM10.0001 7.67871C10.0001 7.40246 10.2238 7.17871 10.5001 7.17871C10.7763 7.17871 11.0001 7.40246 11.0001 7.67871V14.1787C11.0001 14.455 10.7763 14.6787 10.5001 14.6787C10.2238 14.6787 10.0001 14.455 10.0001 14.1787V7.67871ZM7.50009 7.67871C7.50009 7.40246 7.72384 7.17871 8.00009 7.17871C8.27634 7.17871 8.50009 7.40246 8.50009 7.67871V14.1787C8.50009 14.455 8.27634 14.6787 8.00009 14.6787C7.72384 14.6787 7.50009 14.455 7.50009 14.1787V7.67871ZM5.00009 7.67871C5.00009 7.40246 5.22384 7.17871 5.50009 7.17871C5.77634 7.17871 6.00009 7.40246 6.00009 7.67871V14.1787C6.00009 14.455 5.77634 14.6787 5.50009 14.6787C5.22384 14.6787 5.00009 14.455 5.00009 14.1787V7.67871Z"], ["width", "16", "height", "16", "fill", "none", "transform", "translate(0 0.678711)"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M12.8889 4.88889C12.8889 4.39797 12.4909 4 12 4C11.5091 4 11.1111 4.39797 11.1111 4.88889V11.1111H4.88889C4.39797 11.1111 4 11.5091 4 12C4 12.4909 4.39797 12.8889 4.88889 12.8889H11.1111V19.1111C11.1111 19.602 11.5091 20 12 20C12.4909 20 12.8889 19.602 12.8889 19.1111V12.8889H19.1111C19.602 12.8889 20 12.4909 20 12C20 11.5091 19.602 11.1111 19.1111 11.1111H12.8889V4.88889Z"], ["d", "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z"], ["d", "M0 0h24v24H0z", "fill", "none"], ["d", "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z"], ["d", "M4.41768 3.64119C4.18693 3.41025 3.81256 3.41025 3.58181 3.64119C2.72506 4.49794 2.30397 5.69144 2.42634 6.91587C2.45687 7.22091 2.71384 7.44828 3.01393 7.44828C3.03365 7.44828 3.05353 7.44728 3.07325 7.44531C3.39818 7.41281 3.63522 7.12294 3.60272 6.79822C3.51562 5.92806 3.81278 5.08197 4.41768 4.47703C4.64862 4.24631 4.64862 3.87191 4.41768 3.64119Z"], ["d", "M6.75863 0C3.03191 0 0 3.03191 0 6.75863C0 10.4853 3.03191 13.5173 6.75863 13.5173C10.4853 13.5173 13.5173 10.4853 13.5173 6.75863C13.5173 3.03191 10.4853 0 6.75863 0ZM6.75863 12.335C3.68375 12.335 1.18228 9.8335 1.18228 6.75863C1.18228 3.68375 3.68375 1.18228 6.75863 1.18228C9.83331 1.18228 12.335 3.68375 12.335 6.75863C12.335 9.8335 9.8335 12.335 6.75863 12.335Z"], ["d", "M15.8268 14.9909L11.5312 10.6954C11.3002 10.4644 10.9262 10.4644 10.6953 10.6954C10.4644 10.9261 10.4644 11.3005 10.6953 11.5312L14.9909 15.8268C15.1064 15.9423 15.2575 16 15.4088 16C15.5602 16 15.7113 15.9423 15.8268 15.8268C16.0577 15.5961 16.0577 15.2217 15.8268 14.9909Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-left-right"], ["fill-rule", "evenodd", "d", "M10.146 7.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 11l-2.647-2.646a.5.5 0 0 1 0-.708z"], ["fill-rule", "evenodd", "d", "M2 11a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 11zm3.854-9.354a.5.5 0 0 1 0 .708L3.207 5l2.647 2.646a.5.5 0 1 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0z"], ["fill-rule", "evenodd", "d", "M2.5 5a.5.5 0 0 1 .5-.5h10.5a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"], ["xmlns", "http://www.w3.org/2000/svg", "width", "26", "height", "17", "fill", "none", "viewBox", "0 0 26 17"], ["id", "v8f0hpt10a", "width", "26", "height", "17", "x", "0", "y", "0", "fill", "#000", "maskUnits", "userSpaceOnUse"], ["fill", "#fff", "d", "M0 0H26V17H0z"], ["d", "M21.757 7.705c.702-.494 1.168-1.315 1.168-2.241 0-1.515-1.225-2.74-2.74-2.74-1.515 0-2.74 1.225-2.74 2.74 0 .926.46 1.747 1.168 2.241-.603.21-1.154.532-1.62.95-.64-.546-1.395-.964-2.222-1.211 1.002-.608 1.677-1.714 1.677-2.973C16.448 2.553 14.895 1 12.976 1c-1.918 0-3.471 1.558-3.471 3.471 0 1.259.67 2.365 1.676 2.973-.816.247-1.562.66-2.198 1.197-.466-.409-1.007-.727-1.6-.931.702-.494 1.167-1.315 1.167-2.241 0-1.515-1.225-2.74-2.74-2.74-1.514 0-2.74 1.225-2.74 2.74 0 .926.461 1.747 1.169 2.24C2.353 8.362 1 10.152 1 12.256v.313c0 .01.01.019.019.019h5.808c-.034.261-.053.532-.053.802v.323c0 1.396 1.13 2.527 2.527 2.527h7.36c1.396 0 2.527-1.13 2.527-2.527v-.323c0-.27-.02-.541-.053-.802h5.846c.01 0 .019-.01.019-.02v-.313c-.01-2.108-1.358-3.898-3.243-4.549zM18.205 5.46c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.078-.019-1.942-.897-1.942-1.98zm-7.95-.988c0-1.496 1.216-2.711 2.712-2.711 1.496 0 2.711 1.215 2.711 2.711 0 1.444-1.135 2.626-2.555 2.707h-.313c-1.42-.08-2.555-1.263-2.555-2.707zm-6.439.988c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.073-.019-1.942-.897-1.942-1.98zm3.144 6.363H1.77C1.982 9.8 3.692 8.213 5.767 8.2h.057c.987.005 1.89.37 2.588.964-.684.74-1.192 1.653-1.453 2.66zm11.458 1.89c0 .974-.793 1.767-1.766 1.767h-7.36c-.974 0-1.767-.793-1.767-1.767v-.323c0-2.949 2.355-5.36 5.285-5.446.052.004.11.004.162.004.052 0 .109 0 .161-.004 2.93.085 5.285 2.497 5.285 5.446v.323zm.565-1.89c-.26-1.002-.76-1.9-1.439-2.64.703-.608 1.615-.973 2.612-.983h.057c2.075.014 3.785 1.6 3.999 3.623h-5.229z"], ["fill", "#202020", "d", "M21.757 7.705c.702-.494 1.168-1.315 1.168-2.241 0-1.515-1.225-2.74-2.74-2.74-1.515 0-2.74 1.225-2.74 2.74 0 .926.46 1.747 1.168 2.241-.603.21-1.154.532-1.62.95-.64-.546-1.395-.964-2.222-1.211 1.002-.608 1.677-1.714 1.677-2.973C16.448 2.553 14.895 1 12.976 1c-1.918 0-3.471 1.558-3.471 3.471 0 1.259.67 2.365 1.676 2.973-.816.247-1.562.66-2.198 1.197-.466-.409-1.007-.727-1.6-.931.702-.494 1.167-1.315 1.167-2.241 0-1.515-1.225-2.74-2.74-2.74-1.514 0-2.74 1.225-2.74 2.74 0 .926.461 1.747 1.169 2.24C2.353 8.362 1 10.152 1 12.256v.313c0 .01.01.019.019.019h5.808c-.034.261-.053.532-.053.802v.323c0 1.396 1.13 2.527 2.527 2.527h7.36c1.396 0 2.527-1.13 2.527-2.527v-.323c0-.27-.02-.541-.053-.802h5.846c.01 0 .019-.01.019-.02v-.313c-.01-2.108-1.358-3.898-3.243-4.549zM18.205 5.46c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.078-.019-1.942-.897-1.942-1.98zm-7.95-.988c0-1.496 1.216-2.711 2.712-2.711 1.496 0 2.711 1.215 2.711 2.711 0 1.444-1.135 2.626-2.555 2.707h-.313c-1.42-.08-2.555-1.263-2.555-2.707zm-6.439.988c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.073-.019-1.942-.897-1.942-1.98zm3.144 6.363H1.77C1.982 9.8 3.692 8.213 5.767 8.2h.057c.987.005 1.89.37 2.588.964-.684.74-1.192 1.653-1.453 2.66zm11.458 1.89c0 .974-.793 1.767-1.766 1.767h-7.36c-.974 0-1.767-.793-1.767-1.767v-.323c0-2.949 2.355-5.36 5.285-5.446.052.004.11.004.162.004.052 0 .109 0 .161-.004 2.93.085 5.285 2.497 5.285 5.446v.323zm.565-1.89c-.26-1.002-.76-1.9-1.439-2.64.703-.608 1.615-.973 2.612-.983h.057c2.075.014 3.785 1.6 3.999 3.623h-5.229z"], ["fill", "#202020", "d", "M21.757 7.705l-.23-.327-.64.45.74.255.13-.378zm-3.144 0l.13.378.742-.257-.643-.449-.229.328zm-1.62.95l-.259.304.267.227.26-.233-.267-.298zm-2.222-1.211l-.207-.342-.77.467.863.258.114-.383zm-3.59 0l.116.383.861-.26-.77-.465-.207.342zM8.983 8.641l-.264.3.258.227.263-.222-.257-.305zm-1.6-.931l-.23-.327-.642.45.741.255.13-.378zm-3.144 0l.13.378.743-.256-.644-.45-.23.328zm2.588 4.877l.396.05.058-.45h-.454v.4zm12.308 0v-.4h-.454l.057.45.397-.05zM25 12.255h.4v-.002l-.4.002zm-4.777-4.816v.4h.009l-.01-.4zm-.076 0l-.007.4h.007v-.4zm-7.023-.26v.4h.01l.012-.002-.023-.399zm-.314 0l-.023.398.012.001h.011v-.4zm-6.976.26v.4h.009l-.009-.4zm-.076 0l-.007.4h.007v-.4zm1.202 4.383v.4h.31l.077-.3-.387-.1zm-5.19 0l-.399-.042-.046.442h.444v-.4zM5.767 8.2v-.4h-.003l.003.4zm.057 0l.002-.4h-.002v.4zm2.588.964l.294.271.282-.306-.317-.27-.26.305zm4.397-1.22l.036-.399-.024-.002h-.024l.012.4zm.323 0l.012-.4h-.024l-.024.001.036.399zm5.85 3.88l-.387.1.078.3h.31v-.4zm-1.439-2.641l-.261-.303-.312.27.279.303.294-.27zm2.612-.983v-.4h-.003l.003.4zm.057 0l.003-.4h-.003v.4zm3.999 3.623v.4h.444l-.046-.442-.398.042zm-2.225-3.79c.804-.565 1.338-1.505 1.338-2.568h-.8c0 .79-.397 1.491-.998 1.914l.46.654zm1.338-2.568c0-1.736-1.404-3.14-3.14-3.14v.8c1.294 0 2.34 1.046 2.34 2.34h.8zm-3.14-3.14c-1.736 0-3.14 1.404-3.14 3.14h.8c0-1.294 1.046-2.34 2.34-2.34v-.8zm-3.14 3.14c0 1.061.528 2.003 1.339 2.57l.458-.657c-.604-.422-.997-1.123-.997-1.913h-.8zm1.437 1.863c-.652.226-1.25.576-1.756 1.03l.535.596c.425-.382.929-.678 1.483-.87l-.262-.756zM17.253 8.35c-.682-.58-1.486-1.026-2.367-1.29l-.23.767c.772.23 1.478.621 2.078 1.132l.52-.609zm-2.274-.564c1.116-.677 1.869-1.91 1.869-3.315h-.8c0 1.113-.596 2.092-1.484 2.631l.415.684zm1.869-3.315c0-2.14-1.732-3.871-3.872-3.871v.8c1.698 0 3.072 1.374 3.072 3.071h.8zM12.976.6c-2.14 0-3.871 1.737-3.871 3.871h.8c0-1.693 1.374-3.071 3.071-3.071V.6zM9.105 4.471c0 1.404.747 2.638 1.87 3.315l.413-.684c-.891-.538-1.483-1.517-1.483-2.63h-.8zm1.96 2.59c-.87.263-1.664.703-2.34 1.274l.515.611c.597-.502 1.294-.888 2.057-1.12l-.232-.765zM9.247 8.34c-.503-.442-1.09-.787-1.734-1.008l-.26.756c.543.187 1.04.478 1.467.853l.527-.601zm-1.634-.303C8.416 7.472 8.95 6.531 8.95 5.47h-.8c0 .789-.396 1.49-.998 1.914l.46.654zM8.95 5.47c0-1.736-1.404-3.14-3.14-3.14v.8c1.294 0 2.34 1.046 2.34 2.34h.8zm-3.14-3.14c-1.735 0-3.14 1.404-3.14 3.14h.8c0-1.294 1.047-2.34 2.34-2.34v-.8zm-3.14 3.14c0 1.061.529 2.003 1.34 2.569l.458-.656c-.605-.422-.998-1.123-.998-1.913h-.8zm1.438 1.863C2.067 8.036.6 9.975.6 12.255h.8c0-1.928 1.24-3.57 2.97-4.167l-.262-.756zM.6 12.255v.313h.8v-.313H.6zm0 .313c0 .135.063.236.123.296s.161.123.296.123v-.8c.125 0 .217.059.27.111.052.053.111.145.111.27H.6zm.419.419h5.808v-.8H1.019v.8zm5.41-.45c-.034.276-.055.563-.055.852h.8c0-.252.018-.506.05-.752l-.794-.1zm-.055.852v.323h.8v-.323h-.8zm0 .323c0 1.617 1.31 2.927 2.927 2.927v-.8c-1.175 0-2.127-.952-2.127-2.127h-.8zm2.927 2.927h7.36v-.8h-7.36v.8zm7.36 0c1.617 0 2.927-1.31 2.927-2.927h-.8c0 1.175-.951 2.127-2.127 2.127v.8zm2.927-2.927v-.323h-.8v.323h.8zm0-.323c0-.289-.02-.576-.056-.853l-.794.101c.032.246.05.5.05.752h.8zm-.453-.402h5.846v-.8h-5.846v.8zm5.846 0c.135 0 .236-.063.296-.123s.123-.161.123-.296h-.8c0-.125.059-.217.111-.27.053-.053.145-.111.27-.111v.8zm.419-.42v-.313h-.8v.314h.8zm0-.314c-.01-2.282-1.47-4.221-3.513-4.926l-.26.756c1.727.597 2.964 2.238 2.973 4.173l.8-.003zm-6.795-6.794c0-.871.709-1.58 1.58-1.58v-.8c-1.313 0-2.38 1.067-2.38 2.38h.8zm1.58-1.58c.871 0 1.58.709 1.58 1.58h.8c0-1.313-1.067-2.38-2.38-2.38v.8zm1.58 1.58c0 .859-.693 1.561-1.551 1.58l.018.8c1.288-.028 2.333-1.083 2.333-2.38h-.8zm-1.542 1.58h-.002-.002-.001-.001-.002-.003-.001-.001-.002-.001-.002-.001-.002-.001-.001-.004-.001-.002-.001-.001-.001-.002-.001-.002v.8H20.223v-.8zm-.038 0h-.002-.003-.002-.001-.001-.006-.001-.002-.001-.002-.001-.005-.001-.002-.001-.001-.001-.002-.003v.8H20.185v-.8zm-.031 0c-.86-.015-1.55-.715-1.55-1.58h-.8c0 1.3 1.04 2.357 2.336 2.38l.014-.8zm-9.499-2.568c0-1.275 1.037-2.311 2.312-2.311v-.8c-1.717 0-3.112 1.395-3.112 3.111h.8zm2.312-2.311c1.275 0 2.311 1.036 2.311 2.311h.8c0-1.716-1.394-3.111-3.111-3.111v.8zm2.311 2.311c0 1.23-.968 2.239-2.177 2.308l.045.798c1.63-.092 2.932-1.448 2.932-3.106h-.8zm-2.155 2.307h-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001H13h-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002v.8H13.124v-.8zm-.156 0h-.001-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001v.8H12.967v-.8zm-.134 0c-1.21-.068-2.178-1.077-2.178-2.307h-.8c0 1.658 1.302 3.014 2.932 3.106l.046-.798zM4.216 5.46c0-.871.709-1.58 1.58-1.58v-.8c-1.313 0-2.38 1.067-2.38 2.38h.8zm1.58-1.58c.871 0 1.58.709 1.58 1.58h.8c0-1.313-1.067-2.38-2.38-2.38v.8zm1.58 1.58c0 .859-.693 1.561-1.55 1.58l.017.8c1.289-.028 2.333-1.083 2.333-2.38h-.8zm-1.542 1.58h-.002-.002-.003-.002-.001-.001-.001-.001-.001-.002-.001-.002-.001-.003-.001-.001-.001-.002-.001-.001-.001-.001H5.8h-.002-.001-.001v.8H5.835v-.8zm-.038 0h-.002-.005-.002-.001-.001-.001-.001-.001-.002-.001-.002-.003-.001-.001-.001-.001-.001-.002-.001-.001-.001-.001-.002-.001-.001v.8H5.797v-.8zm-.03 0c-.856-.015-1.55-.716-1.55-1.58h-.8c0 1.301 1.044 2.357 2.335 2.38l.014-.8zm1.194 4.383H1.77v.8h5.19v-.8zm-4.793.442C2.36 10.041 3.901 8.612 5.77 8.6l-.005-.8c-2.281.016-4.159 1.758-4.393 3.981l.795.084zm3.6-3.265H5.797v-.8h-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.002H5.774h-.001-.002-.002-.001-.001v.8zm.03 0H5.825v-.8h-.001-.001-.001-.002-.001-.002-.007-.002-.001-.002-.001-.001H5.8 5.8h-.001-.001-.001v.8zm.026 0c.888.004 1.7.333 2.33.869l.519-.61c-.766-.65-1.758-1.054-2.845-1.059l-.004.8zm2.296.293c-.728.788-1.268 1.758-1.547 2.83l.775.2c.244-.94.72-1.794 1.36-2.488l-.588-.542zm9.9 4.82c0 .753-.615 1.367-1.367 1.367v.8c1.194 0 2.166-.972 2.166-2.167h-.8zm-1.367 1.367h-7.36v.8h7.36v-.8zm-7.36 0c-.753 0-1.367-.614-1.367-1.367h-.8c0 1.195.972 2.167 2.166 2.167v-.8zm-1.367-1.367v-.323h-.8v.323h.8zm0-.323c0-2.732 2.183-4.967 4.897-5.047l-.024-.8c-3.145.093-5.673 2.682-5.673 5.847h.8zm4.849-5.048c.073.007.15.006.198.006v-.8c-.056 0-.095 0-.126-.003l-.072.797zm.198.006c.048 0 .124 0 .197-.006l-.072-.797c-.031.003-.07.003-.125.003v.8zm.15-.005c2.713.08 4.896 2.315 4.896 5.047h.8c0-3.165-2.527-5.754-5.673-5.846l-.024.8zm4.896 5.047v.323h.8v-.323h-.8zm1.352-1.668c-.277-1.066-.808-2.021-1.53-2.81l-.59.541c.636.694 1.102 1.534 1.346 2.471l.774-.202zm-1.564-2.236c.633-.548 1.454-.877 2.354-.886l-.008-.8c-1.094.01-2.097.412-2.87 1.08l.524.606zm2.35-.886H20.185v-.8h-.001-.001-.001-.001-.001-.001H20.165h-.001-.001-.001-.001-.001-.001-.001-.001-.001v.8zm.029 0H20.214v-.8h-.001-.001H20.198h-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001v.8zm.026 0c1.869.013 3.41 1.442 3.603 3.265l.796-.084c-.235-2.223-2.113-3.965-4.394-3.98l-.005.799zm4 2.823h-5.228v.8h5.229v-.8z", "mask", "url(#v8f0hpt10a)"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 32 32"], ["d", "M24.507 0H2.86C1.284 0 0 1.284 0 2.861V29.14C0 30.716 1.284 32 2.861 32h21.646c.961 0 1.743-.782 1.743-1.743V1.743C26.25.782 25.468 0 24.507 0zM1.25 29.139c0-.889.723-1.612 1.611-1.612H22.5v3.223H2.86c-.888 0-1.611-.723-1.611-1.611zM25 30.257c0 .272-.221.493-.493.493h-.757v-3.223h.757c.171 0 .337-.024.493-.07v2.8zm0-4.473c0 .272-.221.493-.493.493H3.75V11.125c0-.345-.28-.625-.625-.625s-.625.28-.625.625V26.3c-.46.058-.885.226-1.25.475V2.861c0-.764.535-1.405 1.25-1.57v9.66c0 .345.28.625.625.625s.625-.28.625-.625V1.25h20.757c.272 0 .493.221.493.493v24.041z"], ["d", "M18.807 6.74c-.473 0-.937.09-1.37.264-.68-1.005-1.822-1.627-3.062-1.627-1.24 0-2.382.622-3.061 1.627-.434-.173-.898-.263-1.37-.263-2.037 0-3.694 1.657-3.694 3.693 0 1.565.96 2.922 2.386 3.456v7.294c0 .533.434.966.966.966h9.546c.532 0 .966-.433.966-.966V13.89C21.54 13.356 22.5 12 22.5 10.434c0-2.036-1.657-3.693-3.693-3.693zm-8.92 14.16v-1.25h8.977v1.25H9.886zm9.463-8.083c-.284.064-.486.317-.486.61V18.4H9.886v-4.974c0-.292-.201-.545-.486-.61-1.119-.253-1.9-1.233-1.9-2.382 0-1.347 1.096-2.443 2.443-2.443.46 0 .906.128 1.293.37.154.096.342.12.515.068.173-.054.315-.18.388-.345.392-.885 1.27-1.457 2.236-1.457.967 0 1.845.572 2.236 1.457.073.166.215.291.388.345.173.053.361.028.515-.068.387-.242.834-.37 1.293-.37 1.347 0 2.443 1.096 2.443 2.443 0 1.15-.781 2.129-1.9 2.383zM3.125 13.138c-.345 0-.625.28-.625.626 0 .345.28.625.625.625s.625-.28.625-.625c0-.346-.28-.626-.625-.626z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 64 65"], ["clip-path", "url(#clipHelp)"], ["d", "M32 .6C14.3.6 0 14.9 0 32.6s14.3 32 32 32 32-14.3 32-32S49.7.6 32 .6zm1.7 47.8c-.6.6-1.5.8-2.4.8-.8 0-1.7-.2-2.3-.8-.6-.6-.9-1.3-.9-2.3 0-.9.4-1.7 1.1-2.3.7-.6 1.5-.9 2.4-.9.8 0 1.7.2 2.3.9.6.7.9 1.3.9 2.3-.2 1-.5 1.9-1.1 2.3zM39 27.7c-.4 1.1-.8 1.7-1.5 2.3l-1.9 1.9-1.3 1.3c-.2.4-.6.9-.8 1.5-.2.6-.4 1.3-.4 1.9 0 .6.2 1.5.4 2.6-.9.4-1.7.8-2.4.8-1.9 0-2.8-1.1-2.8-3 0-.8.2-1.7.6-2.3.4-.9.8-1.5 1.1-1.9.4-.4.9-1.1 1.7-1.9l1.7-1.7c.4-.4.6-1.1 1.1-1.9.4-.8.6-1.5.6-2.3 0-1.1-.2-1.7-.9-2.1-.6-.4-1.3-.6-2.1-.6-1.1 0-1.9.2-2.8.8-.7.5-1.3 1.4-1.6 2.5-2.3-.4-3.4-1.1-3.4-2.3 0-1.3.6-2.4 2.1-3 1.5-.9 3.2-1.1 5.1-1.1 2.3 0 4.5.4 6 1.5s2.3 2.6 2.3 4.5c.1.4-.1 1.4-.8 2.5z"], ["id", "clipHelp"], ["fill", "#fff", "d", "M0 0H64V64H0z", "transform", "translate(0 .6)"], ["viewBox", "0 0 128 128", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["clip-path", "url(#clipRecipeHelp)"], ["d", "M126.689 65.5088C126.689 85.8154 116.964 103.879 101.935 115.293C100.072 116.707 97.3936 115.369 97.3936 113.03C97.3936 108.62 93.8184 105.044 89.4072 105.044H21.3613C17.5742 105.044 14.0088 103.182 11.9111 100.028C5.33301 90.1377 1.5 78.2705 1.5 65.5088C1.5 30.9961 29.5244 3.01758 64.0947 3.01758C98.6651 3.01758 126.689 30.9961 126.689 65.5088Z", "fill", "#1177BC"], ["d", "M121.324 31.0752H99.3525V14.8584C99.3525 8.31934 104.653 3.01758 111.192 3.01758H112.894C118.961 3.01758 123.879 7.93652 123.879 14.0039V28.5205C123.879 29.9316 122.735 31.0752 121.324 31.0752Z", "fill", "#D2D1CD"], ["d", "M112.894 3.01855C106.826 3.01855 101.907 7.92871 101.907 13.9863V115.313C96.3711 119.511 90.1152 122.807 83.3564 124.985C77.2881 126.941 70.8154 127.23 64.0947 127.23C52.9336 127.227 42.4561 124.186 33.3828 119C26.749 115.209 22.7061 108.105 22.7061 100.464V13.9854C22.7061 7.92871 27.624 3.01758 33.6914 3.01758H112.894V3.01855Z", "fill", "#EFEFEF"], ["d", "M65.1172 32.6074V33.8788C65.1172 34.5839 64.5449 35.1562 63.8389 35.1562H45.9551C45.25 35.1562 44.6777 34.5839 44.6777 33.8788V32.6074C44.6777 31.9023 45.25 31.33 45.9551 31.33H63.8389C64.5449 31.33 65.1172 31.9023 65.1172 32.6074Z", "fill", "#797979"], ["d", "M75.3359 45.999V47.2695C75.3359 47.9755 74.7646 48.5468 74.0586 48.5468H45.9551C45.25 48.5468 44.6777 47.9755 44.6777 47.2695V45.999C44.6777 45.2929 45.25 44.7216 45.9551 44.7216H74.0586C74.7646 44.7216 75.3359 45.2929 75.3359 45.999ZM45.9551 56.1992H71.5039C72.209 56.1992 72.7812 55.6269 72.7812 54.9218V53.6503C72.7812 52.9453 72.209 52.373 71.5039 52.373H45.9551C45.25 52.373 44.6777 52.9453 44.6777 53.6503V54.9218C44.6777 55.6269 45.25 56.1992 45.9551 56.1992ZM74.0586 60.0253H45.9551C45.25 60.0253 44.6777 60.5966 44.6777 61.3027V62.5732C44.6777 63.2792 45.25 63.8505 45.9551 63.8505H74.0586C74.7646 63.8505 75.3359 63.2792 75.3359 62.5732V61.3027C75.3359 60.5966 74.7646 60.0253 74.0586 60.0253ZM70.8223 75.7118H45.9551C45.25 75.7118 44.6777 76.2831 44.6777 76.9892V78.2597C44.6777 78.9658 45.25 79.537 45.9551 79.537H70.8223C71.5283 79.537 72.0996 78.9658 72.0996 78.2597V76.9892C72.0996 76.2831 71.5283 75.7118 70.8223 75.7118ZM45.9551 71.6308H63.8389C64.5449 71.6308 65.1172 71.0585 65.1172 70.3525V69.082C65.1172 68.3769 64.5449 67.8046 63.8389 67.8046H45.9551C45.25 67.8046 44.6777 68.3769 44.6777 69.082V70.3525C44.6777 71.0585 45.25 71.6308 45.9551 71.6308Z", "fill", "#DCDCDC"], ["d", "M48.5098 90.1191V90.1269C48.5098 91.1806 47.6553 92.0361 46.6006 92.0361H46.5869C45.5322 92.0361 44.6777 91.1806 44.6777 90.1269V90.1191C44.6777 89.0644 45.5322 88.2099 46.5869 88.2099H46.6006C47.6553 88.2099 48.5098 89.0644 48.5098 90.1191ZM52.5996 88.2099H52.585C51.5312 88.2099 50.6758 89.0644 50.6758 90.1191V90.1269C50.6758 91.1816 51.5312 92.0361 52.585 92.0361H52.5996C53.6533 92.0361 54.5088 91.1816 54.5088 90.1269V90.1191C54.5088 89.0644 53.6533 88.2099 52.5996 88.2099ZM58.5977 88.2099H58.584C57.5293 88.2099 56.6748 89.0644 56.6748 90.1191V90.1269C56.6748 91.1816 57.5293 92.0361 58.584 92.0361H58.5977C59.6523 92.0361 60.5068 91.1816 60.5068 90.1269V90.1191C60.5068 89.0644 59.6523 88.2099 58.5977 88.2099Z", "fill", "#D7D7D7"], ["d", "M29.3486 13.9854V105.044H22.7061V13.9854C22.7061 7.92871 27.624 3.01758 33.6914 3.01758H40.334C34.2666 3.01855 29.3486 7.92871 29.3486 13.9854Z", "fill", "#FAFAFA"], ["d", "M49.3008 3.24899C52.793 6.73532 53.6016 11.58 51.1074 14.0703C48.6123 16.5605 43.7598 15.7529 40.2676 12.2666C36.7754 8.78122 35.9668 3.93552 38.4609 1.44528C40.9551 -1.04495 45.8086 -0.237334 49.3008 3.24899Z", "fill", "#ECB700"], ["d", "M49.3007 3.249C49.872 3.81931 50.371 4.42673 50.7958 5.05368C51.0898 5.48728 51.1289 6.05368 50.8847 6.51658C50.8828 6.51853 50.8818 6.52146 50.8808 6.52439C49.2294 9.63669 44.3535 10.29 39.9892 7.9824C39.5644 7.75876 39.1611 7.51462 38.7792 7.25388C37.3564 6.28122 36.79 4.41697 37.498 2.84665C37.5019 2.83786 37.5058 2.82907 37.5097 2.82029C37.2832 3.37693 37.2802 3.874 37.5576 4.15036C38.0566 4.64841 39.2695 4.24509 40.2675 3.249C41.2656 2.2529 41.6699 1.04099 41.1708 0.542942C40.8945 0.267551 40.3974 0.269504 39.8398 0.49509C42.4882 -0.712918 46.373 0.326144 49.3007 3.249Z", "fill", "#F1CA50"], ["d", "M111.876 36.5156L110.241 44.2109C109.275 48.7558 105.257 52.0068 100.603 52.0068C97.9366 52.0068 95.7754 49.8496 95.7754 47.1875C95.7754 42.542 99.0323 38.5293 103.585 37.5654L111.292 35.9326C111.641 35.8584 111.95 36.168 111.876 36.5156ZM11.4746 72.2246L13.1104 79.9199C14.0762 84.4648 18.0948 87.7158 22.7491 87.7158C25.4141 87.7158 27.5752 85.5586 27.5752 82.8965C27.5752 78.251 24.3194 74.2383 19.7666 73.2744L12.0596 71.6416C11.711 71.5674 11.4014 71.8769 11.4746 72.2246Z", "fill", "#059B7E"], ["d", "M103.885 51.4434C103.035 51.7432 102.074 51.4717 101.539 50.7471C101.519 50.7187 101.498 50.6904 101.478 50.6621C100.905 49.8506 100.986 48.7539 101.665 48.0293C102.594 47.04 103.46 46.0254 104.194 45.0498L107.562 40.5771C107.636 40.4805 107.626 40.3457 107.54 40.2607C107.455 40.1758 107.32 40.166 107.224 40.2383L102.744 43.6016C102.332 43.9111 101.912 44.2432 101.491 44.5937C101.196 44.8398 100.755 44.5586 100.859 44.1885C101.634 41.4404 103.593 39.0781 106.351 37.8584L110.161 36.1719L111.292 35.9326C111.641 35.8594 111.949 36.168 111.876 36.5156L110.241 44.2109C109.513 47.6377 107.048 50.3271 103.885 51.4434ZM19.7666 73.2734L12.0596 71.6416C11.7109 71.5674 11.4014 71.877 11.4756 72.2246L11.7148 73.3535L13.4033 77.1572C14.626 79.9111 16.9912 81.8662 19.7451 82.6406C20.1152 82.7441 20.3975 82.3037 20.1504 82.0088C19.7998 81.5879 19.4658 81.1699 19.1562 80.7588L15.7881 76.2861C15.7158 76.1895 15.7256 76.0547 15.8105 75.9697C15.8955 75.8848 16.0303 75.875 16.1269 75.9473L20.6064 79.3105C21.584 80.0439 22.6006 80.9082 23.5918 81.835C24.3174 82.5127 25.416 82.5938 26.2285 82.0234C26.2578 82.0029 26.2861 81.9824 26.3144 81.9609C27.04 81.4277 27.3125 80.4678 27.0117 79.6201C25.8945 76.4619 23.2002 74.001 19.7666 73.2734Z", "fill", "#0AB59E"], ["d", "M95.7754 61.4277C87.3096 61.4277 80.4463 68.2792 80.4463 76.7314C80.4463 85.1835 87.3096 92.0351 95.7754 92.0351C104.241 92.0351 111.104 85.1835 111.104 76.7314C111.104 68.2792 104.241 61.4277 95.7754 61.4277ZM95.7754 84.3837C91.542 84.3837 88.1104 80.9579 88.1104 76.7324C88.1104 72.5058 91.542 69.08 95.7754 69.08C100.009 69.08 103.44 72.5058 103.44 76.7324C103.44 80.9579 100.009 84.3837 95.7754 84.3837Z", "fill", "#FAFAFA"], ["d", "M95.7754 66.5292C90.1318 66.5292 85.5557 71.0976 85.5557 76.7324C85.5557 82.3671 90.1318 86.9345 95.7754 86.9345C101.42 86.9345 105.995 82.3671 105.995 76.7324C105.995 71.0976 101.42 66.5292 95.7754 66.5292ZM95.7754 81.8329C92.9531 81.8329 90.666 79.5497 90.666 76.7314C90.666 73.914 92.9531 71.6308 95.7754 71.6308C98.5977 71.6308 100.885 73.914 100.885 76.7314C100.885 79.5497 98.5977 81.8329 95.7754 81.8329Z", "fill", "#FDDFA6"], ["d", "M31.3379 39.249C36.3271 44.2294 31.9043 49.5038 25.9179 55.4814C19.9316 61.4579 14.6484 65.872 9.65916 60.8915C4.66991 55.9111 5.47948 47.0292 11.4658 41.0527C17.4521 35.0751 26.3496 34.2685 31.3379 39.249Z", "fill", "#CC7556"], ["d", "M36.4648 61.1181C35.9121 62.1025 35.206 63.042 34.3486 63.8974C33.4922 64.7529 32.5508 65.458 31.5654 66.0097C30.0342 66.8672 28.0957 66.6562 26.8457 65.4248C26.8379 65.417 26.8291 65.4091 26.8213 65.4004L21.2617 59.8506C18.9209 61.3379 16.5273 61.4365 14.4013 59.3134C10.8672 55.7851 11.4404 49.4941 15.6806 45.2607C19.9209 41.0273 26.2236 40.455 29.7568 43.9834C31.8828 46.1064 31.7842 48.4951 30.2939 50.832L35.8545 56.3828C35.8623 56.3906 35.8701 56.3994 35.8789 56.4072C37.1123 57.6552 37.3242 59.5908 36.4648 61.1181Z", "fill", "#994122"], ["d", "M26.7969 47.3408C26.8047 47.3486 26.8135 47.3564 26.8223 47.3652L35.8545 56.3828L35.8789 56.4072C37.0694 57.6093 37.3643 59.4472 36.5655 60.9365C36.5557 60.955 36.5459 60.9736 36.5362 60.9912C36.1524 61.6963 35.5762 62.2714 34.8701 62.6543C34.8526 62.664 34.834 62.6738 34.8155 62.6836C33.3233 63.4814 31.4824 63.1875 30.2793 61.999C30.2705 61.9902 30.2627 61.9824 30.2539 61.9746L21.2217 52.956C21.2129 52.9482 21.2051 52.9394 21.1963 52.9316C20.0069 51.7304 19.711 49.8925 20.5098 48.4033C20.5196 48.3847 20.5303 48.3671 20.5401 48.3486C20.9229 47.6435 21.5 47.0673 22.2071 46.6845C22.2246 46.6738 22.2432 46.665 22.2617 46.6552C23.753 45.8574 25.5938 46.1523 26.7969 47.3408Z", "fill", "#CC7556"], ["d", "M31.9033 99.6874C31.9033 101.097 30.7598 102.238 29.3486 102.238C27.9375 102.238 26.793 101.097 26.793 99.6874C26.793 98.2792 27.9375 97.1367 29.3486 97.1367C30.7598 97.1367 31.9033 98.2792 31.9033 99.6874ZM34.458 18.0673C33.0469 18.0673 31.9033 19.2089 31.9033 20.6171C31.9033 22.0263 33.0469 23.1679 34.458 23.1679C35.8691 23.1679 37.0127 22.0263 37.0127 20.6171C37.0127 19.2089 35.8691 18.0673 34.458 18.0673ZM90.666 97.1367C89.2549 97.1367 88.1104 98.2792 88.1104 99.6874C88.1104 101.097 89.2549 102.238 90.666 102.238C92.0771 102.238 93.2207 101.097 93.2207 99.6874C93.2207 98.2792 92.0771 97.1367 90.666 97.1367Z", "fill", "#E43950"], ["d", "M98.3301 30.8203C98.3301 32.2285 97.1865 33.3711 95.7754 33.3711C94.3643 33.3711 93.2207 32.2285 93.2207 30.8203C93.2207 29.4111 94.3643 28.2695 95.7754 28.2695C97.1865 28.2695 98.3301 29.4111 98.3301 30.8203ZM116.215 63.9785C114.804 63.9785 113.66 65.1201 113.66 66.5293C113.66 67.9375 114.804 69.0801 116.215 69.0801C117.626 69.0801 118.77 67.9375 118.77 66.5293C118.77 65.1201 117.626 63.9785 116.215 63.9785ZM103.44 56.3262C102.029 56.3262 100.885 57.4687 100.885 58.8769C100.885 60.2861 102.029 61.4277 103.44 61.4277C104.852 61.4277 105.995 60.2861 105.995 58.8769C105.995 57.4687 104.852 56.3262 103.44 56.3262Z", "fill", "#86523E"], ["d", "M82.9404 0.532186C83.6348 -0.16215 84.7705 -0.184611 85.4668 0.508748C85.4717 0.512654 85.4756 0.517537 85.4795 0.521444C90.4688 5.50191 90.4688 13.5771 85.4795 18.5566C80.4912 23.5371 72.4024 23.5371 67.4141 18.5566C67.4092 18.5527 67.4053 18.5478 67.4014 18.5439C66.7071 17.8496 66.7295 16.7158 67.4248 16.0214L82.9404 0.532186Z", "fill", "#EF7280"], ["d", "M80.915 2.55273C81.4121 2.87012 81.8838 3.24414 82.3184 3.67773C85.5605 6.91504 85.5605 12.1641 82.3184 15.4014C79.0752 18.6387 73.8184 18.6387 70.5752 15.4014C70.1406 14.9678 69.7666 14.4971 69.4492 14.001L80.915 2.55273Z", "fill", "#E43950"], ["d", "M82.8633 11.2558C82.7217 11.7832 81.751 11.9814 80.6943 11.6982C79.6387 11.416 78.8965 10.7597 79.0381 10.2324C79.1797 9.70504 80.1504 9.5068 81.207 9.78903C82.2627 10.0722 83.0049 10.7285 82.8633 11.2558ZM77.1406 12.1259C76.6133 12.2675 76.4141 13.2373 76.6973 14.292C76.9805 15.3457 77.6377 16.0859 78.166 15.9453C78.6943 15.8037 78.8926 14.8349 78.6103 13.7802C78.3271 12.7256 77.6689 11.9853 77.1406 12.1259ZM72.4502 12.1318C71.6768 12.9033 71.3633 13.8427 71.75 14.2285C72.1367 14.6142 73.0762 14.3017 73.8496 13.5293C74.623 12.7578 74.9365 11.8193 74.5498 11.4326C74.1631 11.0468 73.2236 11.3593 72.4502 12.1318ZM81.1436 4.84958C80.7568 4.46383 79.8164 4.77731 79.0439 5.54879C78.2705 6.32125 77.957 7.25973 78.3437 7.64547C78.7305 8.03122 79.6709 7.71872 80.4434 6.94625C81.2168 6.17477 81.5303 5.23629 81.1436 4.84958Z", "fill", "#FD7C66"], ["d", "M83.3564 124.985C77.2881 126.943 70.8105 128 64.0889 128C42.2656 128 23.0537 116.848 11.8516 99.9423H77.375C78.7861 99.9423 79.9297 101.085 79.9297 102.493V117.032C79.9297 120.161 81.251 122.987 83.3564 124.985Z", "fill", "#FCFCFC"], ["id", "clipRecipeHelp"], ["width", "128", "height", "128", "fill", "white"], ["d", "M14.7499 1.75002H14.9999V8.25002H12.9999V3.50002C13.0005 3.03606 13.185 2.59124 13.5131 2.26316C13.8412 1.93509 14.286 1.75055 14.7499 1.75002ZM13.9999 13.25C13.9999 13.3826 14.0526 13.5098 14.1464 13.6036C14.2402 13.6973 14.3673 13.75 14.4999 13.75C14.6326 13.75 14.7597 13.6973 14.8535 13.6036C14.9473 13.5098 14.9999 13.3826 14.9999 13.25V8.75002H13.9999V13.25ZM1.99995 6.25002V8.25002H2.49995V6.25002H1.99995ZM7.99995 4.50003C7.30771 4.50003 6.63102 4.7053 6.05545 5.08988C5.47988 5.47447 5.03128 6.02109 4.76637 6.66063C4.50146 7.30017 4.43215 8.00391 4.5672 8.68284C4.70225 9.36177 5.03559 9.98541 5.52507 10.4749C6.01456 10.9644 6.6382 11.2977 7.31713 11.4328C7.99607 11.5678 8.6998 11.4985 9.33934 11.2336C9.97888 10.9687 10.5255 10.5201 10.9101 9.94452C11.2947 9.36895 11.4999 8.69226 11.4999 8.00002C11.4989 7.07209 11.1298 6.18246 10.4737 5.52631C9.81751 4.87016 8.92788 4.50108 7.99995 4.50003ZM1.74995 13.25C1.74995 13.3826 1.80263 13.5098 1.8964 13.6036C1.99016 13.6973 2.11734 13.75 2.24995 13.75C2.38256 13.75 2.50973 13.6973 2.6035 13.6036C2.69727 13.5098 2.74995 13.3826 2.74995 13.25V8.75002H1.74995V13.25ZM2.49995 4.50003V2.48421C2.49995 2.41791 2.47361 2.35432 2.42673 2.30744C2.37984 2.26055 2.31625 2.23421 2.24995 2.23421C2.18364 2.23421 2.12006 2.26055 2.07317 2.30744C2.02629 2.35432 1.99995 2.41791 1.99995 2.48421V4.50003C1.99995 4.56633 2.02629 4.62992 2.07317 4.6768C2.12006 4.72369 2.18364 4.75003 2.24995 4.75003C2.31625 4.75003 2.37984 4.72369 2.42673 4.6768C2.47361 4.62992 2.49995 4.56633 2.49995 4.50003ZM13.449 8.75002C13.2929 9.88353 12.7872 10.9401 12.0023 11.7727C11.2174 12.6053 10.1925 13.1723 9.07013 13.3949C7.94779 13.6175 6.78397 13.4846 5.74075 13.0146C4.69753 12.5446 3.82684 11.761 3.24995 10.7729V8.50002C3.24995 8.43372 3.22361 8.37013 3.17673 8.32325C3.12984 8.27636 3.06625 8.25002 2.99995 8.25002V5.7384C2.94546 5.74608 2.89051 5.74996 2.83548 5.75002H1.66436C1.50568 5.75004 1.34868 5.71763 1.20298 5.65477C1.05729 5.59192 0.925976 5.49995 0.817112 5.38451C0.708248 5.26907 0.624127 5.13259 0.569914 4.98347C0.515702 4.83434 0.492541 4.67571 0.501855 4.51731L0.695011 1.98421C0.696814 1.95124 0.705131 1.91896 0.71948 1.88922C0.73383 1.85948 0.753928 1.83288 0.778615 1.81095C0.803302 1.78902 0.832088 1.7722 0.863312 1.76146C0.894535 1.75072 0.927577 1.74627 0.960529 1.74837C0.993482 1.75047 1.02569 1.75907 1.0553 1.77369C1.08491 1.78831 1.11133 1.80864 1.13303 1.83353C1.15474 1.85841 1.1713 1.88734 1.18176 1.91866C1.19222 1.94998 1.19637 1.98306 1.19398 2.01599L1.00092 4.54787C0.995779 4.63816 1.00913 4.72855 1.04015 4.81351C1.07117 4.89846 1.11921 4.97618 1.18132 5.04192C1.24343 5.10766 1.31831 5.16002 1.40137 5.19581C1.48443 5.23159 1.57392 5.25004 1.66436 5.25003H2.83554C2.92607 5.25002 3.01565 5.23152 3.09877 5.19565C3.18189 5.15978 3.2568 5.1073 3.31891 5.04143C3.38102 4.97557 3.42901 4.8977 3.45994 4.81262C3.49086 4.72753 3.50408 4.63702 3.49876 4.54665L3.30579 2.01599C3.30219 1.95018 3.32473 1.8856 3.36851 1.83632C3.41228 1.78704 3.47375 1.75704 3.53953 1.75285C3.60531 1.74866 3.67009 1.77062 3.71976 1.81395C3.76943 1.85728 3.79998 1.91847 3.80476 1.98421L3.9806 4.24606C4.53903 3.64803 5.22386 3.18215 5.98518 2.88238C6.7465 2.58262 7.56512 2.45651 8.38136 2.51327C9.1976 2.57003 9.99089 2.80821 10.7034 3.21046C11.4159 3.6127 12.0297 4.16888 12.4999 4.83843V8.50002C12.4999 8.56633 12.5263 8.62992 12.5732 8.6768C12.6201 8.72369 12.6836 8.75002 12.7499 8.75002H13.449ZM11.9999 8.00002C11.9999 7.2089 11.7654 6.43554 11.3258 5.77774C10.8863 5.11995 10.2616 4.60726 9.53068 4.30451C8.79978 4.00176 7.99551 3.92254 7.21959 4.07688C6.44366 4.23123 5.73093 4.61219 5.17152 5.1716C4.61211 5.73101 4.23115 6.44374 4.07681 7.21966C3.92247 7.99559 4.00168 8.79985 4.30443 9.53076C4.60718 10.2617 5.11987 10.8864 5.77767 11.3259C6.43546 11.7654 7.20882 12 7.99995 12C9.06044 11.9988 10.0772 11.577 10.827 10.8271C11.5769 10.0772 11.9987 9.06052 11.9999 8.00002Z"], ["viewBox", "0 0 32 32", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M29.7425 8.06222H26.1582V2.21007C26.1582 1.67561 25.725 1.24255 25.1907 1.24255H6.80935C6.27502 1.24255 5.84184 1.67561 5.84184 2.21007V8.06222H2.25753C1.01279 8.06222 0 9.07488 0 10.3197V22.7329C0 23.9777 1.01279 24.9905 2.25753 24.9905H5.84184V29.7897C5.84184 30.3242 6.27502 30.7572 6.80935 30.7572H25.1905C25.7248 30.7572 26.158 30.3242 26.158 29.7897V24.9905H29.7423C30.9871 24.9905 31.9999 23.9777 31.9999 22.7329V10.3197C32 9.07501 30.9872 8.06222 29.7425 8.06222ZM7.77686 3.17758H24.223V8.06222H7.77686V3.17758ZM24.223 28.8222H7.77686V19.224H24.223V28.8222ZM30.065 22.7329C30.065 22.9077 29.9173 23.0554 29.7425 23.0554H26.1582V18.2564C26.1582 17.722 25.725 17.2889 25.1907 17.2889H6.80935C6.27502 17.2889 5.84184 17.722 5.84184 18.2564V23.0554H2.25753C2.08273 23.0554 1.93502 22.9077 1.93502 22.7329V10.3197C1.93502 10.1448 2.08273 9.99725 2.25753 9.99725H6.80935H25.1905H29.7423C29.9171 9.99725 30.0648 10.1448 30.0648 10.3197V22.7329H30.065Z"], ["d", "M25.1904 15.0192C25.9505 15.0192 26.5666 14.4031 26.5666 13.643C26.5666 12.883 25.9505 12.2668 25.1904 12.2668C24.4304 12.2668 23.8142 12.883 23.8142 13.643C23.8142 14.4031 24.4304 15.0192 25.1904 15.0192Z"], ["d", "M20.4018 21.1333H11.5982C11.0639 21.1333 10.6307 21.5664 10.6307 22.1008C10.6307 22.6353 11.0639 23.0683 11.5982 23.0683H20.4018C20.9361 23.0683 21.3693 22.6353 21.3693 22.1008C21.3693 21.5665 20.9362 21.1333 20.4018 21.1333Z"], ["d", "M20.4018 24.9775H11.5982C11.0639 24.9775 10.6307 25.4106 10.6307 25.9451C10.6307 26.4795 11.0639 26.9126 11.5982 26.9126H20.4018C20.9361 26.9126 21.3693 26.4795 21.3693 25.9451C21.3693 25.4106 20.9362 24.9775 20.4018 24.9775Z"], ["viewBox", "0 -192 512 512", "xmlns", "http://www.w3.org/2000/svg"], ["d", "m320 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["d", "m128 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["d", "m512 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["width", "279", "height", "243", "viewBox", "0 0 279 243", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["cx", "199", "cy", "80", "r", "80", "fill", "#E9F6FF"], ["cx", "47", "cy", "184", "r", "40", "fill", "#5AA9DF"], ["cx", "80.5", "cy", "68.5", "r", "40", "stroke", "#5AA9DF", "stroke-dasharray", "2 10"], ["cx", "216", "cy", "114", "r", "22.5", "stroke", "#5AA9DF", "stroke-dasharray", "2 10"], ["filter", "url(#filter0_bi)"], ["d", "M221.916 198H36.0845C38.1794 148.493 78.9777 109 129 109C179.022 109 219.821 148.493 221.916 198Z", "fill", "white", "fill-opacity", "0.6"], ["filter", "url(#filter1_bi)"], ["d", "M11 219.5C11 213.149 16.1487 208 22.5 208H236.5C242.851 208 248 213.149 248 219.5C248 225.851 242.851 231 236.5 231H22.5C16.1487 231 11 225.851 11 219.5Z", "fill", "white", "fill-opacity", "0.6"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M147.85 95C149.151 91.9557 149.876 88.5688 149.876 85C149.876 71.7452 139.874 61 127.534 61C115.195 61 105.193 71.7452 105.193 85C105.193 88.6387 105.946 92.0882 107.295 95.1783C61.3702 104.98 26.1653 146.756 22.6335 198H37.5764C41.5855 148.132 80.5385 109 128 109C175.461 109 214.414 148.132 218.423 198H233.366C229.813 146.439 194.193 104.463 147.85 95ZM134.051 85C134.051 88.866 131.133 92 127.534 92C123.936 92 121.018 88.866 121.018 85C121.018 81.134 123.936 78 127.534 78C131.133 78 134.051 81.134 134.051 85Z", "fill", "#1177BC"], ["x", "6.5", "y", "204.5", "width", "243", "height", "32", "rx", "16", "stroke", "#1177BC", "stroke-width", "13", "stroke-linecap", "round", "stroke-linejoin", "round"], ["d", "M137.476 176.545C138.462 176.545 139.443 176.098 140.133 175.229C141.385 173.654 141.21 171.287 139.744 169.942C136.898 167.332 133.118 165.888 129.101 165.875C129.083 165.875 129.065 165.875 129.046 165.875C125.05 165.875 121.284 167.294 118.436 169.874C116.962 171.209 116.775 173.575 118.018 175.158C119.26 176.741 121.463 176.943 122.937 175.608C124.504 174.188 126.73 173.375 129.048 173.375H129.08C131.41 173.383 133.645 174.211 135.212 175.647C135.869 176.25 136.675 176.545 137.476 176.545Z", "fill", "#1177BC"], ["d", "M110.566 152H110.525C108.596 152 107.054 153.679 107.054 155.75C107.054 157.821 108.637 159.5 110.566 159.5C112.494 159.5 114.057 157.821 114.057 155.75C114.057 153.679 112.494 152 110.566 152Z", "fill", "#1177BC"], ["d", "M148.142 159.472C148.155 159.474 148.169 159.477 148.182 159.478C148.256 159.487 148.331 159.488 148.406 159.492C148.449 159.494 148.493 159.499 148.537 159.5H148.556C150.475 159.5 152.037 157.835 152.047 155.771C152.056 153.951 150.857 152.427 149.257 152.076C149.245 152.074 149.233 152.073 149.221 152.07C149.121 152.049 149.019 152.032 148.916 152.021C148.874 152.016 148.831 152.016 148.789 152.013C148.718 152.008 148.648 152.001 148.576 152H148.534C148.528 152 148.522 152 148.515 152C148.395 152 148.276 152.006 148.159 152.019C146.398 152.209 145.041 153.807 145.041 155.75C145.04 157.672 146.404 159.254 148.142 159.472Z", "fill", "#1177BC"], ["d", "M45.0983 102.566C45.8308 103.298 46.7908 103.664 47.7503 103.664C48.7098 103.664 49.6698 103.298 50.4023 102.566L53.3828 99.585L56.3632 102.566C57.0957 103.298 58.0558 103.664 59.0153 103.664C59.9748 103.664 60.9347 103.298 61.6672 102.566C63.1318 101.101 63.1318 98.7265 61.6672 97.2625L58.6862 94.2816L61.6672 91.3005C63.1318 89.836 63.1318 87.4615 61.6672 85.9975C60.2022 84.533 57.8282 84.533 56.3637 85.9975L53.3833 88.978L50.4028 85.9975C48.9378 84.533 46.5637 84.533 45.0992 85.9975C43.6347 87.462 43.6347 89.8365 45.0992 91.3005L48.0803 94.2816L45.0992 97.2625C43.6337 98.7265 43.6338 101.101 45.0983 102.566Z", "fill", "#1177BC"], ["d", "M194.142 96.9331L197.123 99.9141L194.142 102.895C192.677 104.36 192.677 106.734 194.142 108.198C194.874 108.93 195.834 109.297 196.794 109.297C197.753 109.297 198.713 108.931 199.446 108.198L202.426 105.218L205.407 108.198C206.139 108.93 207.099 109.297 208.059 109.297C209.018 109.297 209.978 108.931 210.711 108.198C212.175 106.734 212.175 104.359 210.711 102.895L207.73 99.9141L210.711 96.9331C212.175 95.4686 212.175 93.0941 210.711 91.6301C209.246 90.1656 206.872 90.1656 205.407 91.6301L202.427 94.6106L199.446 91.6301C197.981 90.1656 195.607 90.1656 194.143 91.6301C192.677 93.0941 192.677 95.4686 194.142 96.9331Z", "fill", "#1177BC"], ["d", "M75.5998 75.242C84.4888 75.242 91.7203 68.0105 91.7203 59.121C91.7203 50.2315 84.4888 43 75.5998 43C66.7108 43 59.4788 50.232 59.4788 59.121C59.4788 68.01 66.7108 75.242 75.5998 75.242ZM75.5998 50.5C80.3533 50.5 84.2203 54.367 84.2203 59.121C84.2203 63.875 80.3533 67.742 75.5998 67.742C70.8458 67.742 66.9788 63.875 66.9788 59.121C66.9788 54.367 70.8458 50.5 75.5998 50.5Z", "fill", "#1177BC"], ["d", "M179.73 85.1125C187.929 85.1125 194.599 78.442 194.599 70.243C194.599 62.044 187.929 55.3735 179.73 55.3735C171.531 55.3735 164.86 62.044 164.86 70.243C164.86 78.4425 171.53 85.1125 179.73 85.1125ZM179.73 62.8735C183.793 62.8735 187.099 66.1795 187.099 70.243C187.099 74.3065 183.793 77.6125 179.73 77.6125C175.666 77.6125 172.36 74.3065 172.36 70.243C172.36 66.1795 175.666 62.8735 179.73 62.8735Z", "fill", "#1177BC"], ["id", "filter0_bi", "x", "28.0845", "y", "101", "width", "201.831", "height", "105", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["flood-opacity", "0", "result", "BackgroundImageFix"], ["in", "BackgroundImage", "stdDeviation", "4"], ["in2", "SourceAlpha", "operator", "in", "result", "effect1_backgroundBlur"], ["mode", "normal", "in", "SourceGraphic", "in2", "effect1_backgroundBlur", "result", "shape"], ["in", "SourceAlpha", "type", "matrix", "values", "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", "result", "hardAlpha"], ["dy", "4"], ["stdDeviation", "2"], ["in2", "hardAlpha", "operator", "arithmetic", "k2", "-1", "k3", "1"], ["type", "matrix", "values", "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0"], ["mode", "normal", "in2", "shape", "result", "effect2_innerShadow"], ["id", "filter1_bi", "x", "3", "y", "200", "width", "253", "height", "39", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["dy", "3"], ["d", "M15.0661 1.80645H13.0835C12.9121 0.772355 12.0038 -0.0160968 10.9185 0.000258065C9.73275 0.0180968 8.79029 1.00616 8.79029 2.19203V10.2383C8.79029 10.3707 8.73991 10.4986 8.64797 10.5939C8.06733 11.1957 7.74639 11.9984 7.75836 12.8526C7.78297 14.6074 9.24191 16.0241 10.9967 15.9997C13.7939 15.9608 15.1739 12.5853 13.2567 10.5954C13.1643 10.4995 13.1129 10.3715 13.1129 10.2383V9.29032H13.7758C14.0538 9.29032 14.2929 9.07658 14.3058 8.7989C14.3196 8.50248 14.0836 8.25806 13.7903 8.25806H13.1129V6.06452H14.421C14.699 6.06452 14.9381 5.85077 14.951 5.5731C14.9648 5.27668 14.7288 5.03226 14.4355 5.03226H13.1129V2.83871H15.0806C15.374 2.83871 15.61 2.59429 15.5962 2.29787C15.5832 2.02019 15.3441 1.80645 15.0661 1.80645ZM10.8655 13.997C9.78113 13.9205 9.35033 12.5256 10.2305 11.856C10.3592 11.758 10.4355 11.6063 10.4355 11.4445V5.27255C10.4355 4.99455 10.6492 4.75542 10.9269 4.74252C11.2233 4.72871 11.4677 4.96474 11.4677 5.25806V11.438C11.4677 11.6001 11.5402 11.7558 11.6695 11.8536C12.6164 12.569 12.0469 14.0803 10.8655 13.997ZM1.82255 2.83871C1.03991 2.83871 0.403198 2.202 0.403198 1.41935C0.403198 0.63671 1.03991 0 1.82255 0C2.6052 0 3.24191 0.63671 3.24191 1.41935C3.24191 2.202 2.6052 2.83871 1.82255 2.83871ZM1.82255 1.03226C1.6091 1.03226 1.43546 1.2059 1.43546 1.41935C1.43546 1.63281 1.6091 1.80645 1.82255 1.80645C2.036 1.80645 2.20965 1.63281 2.20965 1.41935C2.20965 1.2059 2.036 1.03226 1.82255 1.03226ZM5.41933 7.16129C4.20091 7.16129 3.20965 6.17003 3.20965 4.95161V3.43548C3.20965 2.21706 4.20088 1.22581 5.41933 1.22581C6.08117 1.22581 6.70255 1.51881 7.12423 2.02971C7.30568 2.24955 7.27455 2.57484 7.05471 2.75629C6.83491 2.93774 6.50959 2.90661 6.32813 2.68677C5.62807 1.83855 4.24191 2.33361 4.24191 3.43548V4.95161C4.24191 6.05432 5.62884 6.54794 6.32813 5.70026C6.50959 5.48039 6.83488 5.44919 7.05471 5.63061C7.27459 5.81203 7.30578 6.13732 7.12436 6.35719C6.70278 6.86819 6.0813 7.16129 5.41933 7.16129Z"], ["width", "16", "height", "16", "fill", "none"], ["viewBox", "0 0 16 10", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M0.416079 2.75106L6.67781 8.98175C7.4096 9.70971 8.59205 9.70971 9.32349 8.98175L15.5856 2.75106C15.9902 2.34819 16.1119 1.80685 15.8939 1.27841C15.6763 0.751018 15.1618 0.472323 14.5911 0.472323L1.41122 0.472324C0.839875 0.472324 0.325738 0.751019 0.108084 1.27876C-0.110266 1.80685 0.0114654 2.34785 0.416079 2.75106Z"], ["width", "152", "height", "157", "viewBox", "0 0 152 157", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M59.9006 157C91.9469 157 117.926 152.409 117.926 146.747C117.926 141.084 91.9469 136.493 59.9006 136.493C27.8542 136.493 1.87549 141.084 1.87549 146.747C1.87549 152.409 27.8542 157 59.9006 157Z", "fill", "#3F3D56"], ["d", "M95.167 113.446C126.486 113.446 151.876 88.0505 151.876 56.7232C151.876 25.3958 126.486 0 95.167 0C63.8478 0 38.4586 25.3958 38.4586 56.7232C38.4586 88.0505 63.8478 113.446 95.167 113.446Z", "fill", "#3F3D56"], ["opacity", "0.05", "d", "M95.167 103.55C121.022 103.55 141.982 82.5849 141.982 56.7232C141.982 30.8615 121.022 9.89639 95.167 9.89639C69.312 9.89639 48.3524 30.8615 48.3524 56.7232C48.3524 82.5849 69.312 103.55 95.167 103.55Z", "fill", "black"], ["opacity", "0.05", "d", "M95.167 95.1019C116.357 95.1019 133.536 77.9191 133.536 56.7232C133.536 35.5272 116.357 18.3445 95.167 18.3445C73.9766 18.3445 56.7983 35.5272 56.7983 56.7232C56.7983 77.9191 73.9766 95.1019 95.167 95.1019Z", "fill", "black"], ["opacity", "0.05", "d", "M95.167 84.24C110.36 84.24 122.677 71.9203 122.677 56.7232C122.677 41.5261 110.36 29.2064 95.167 29.2064C79.9738 29.2064 67.6573 41.5261 67.6573 56.7232C67.6573 71.9203 79.9738 84.24 95.167 84.24Z", "fill", "black"], ["d", "M38.9608 61.7996C38.9608 61.7996 34.5023 74.3525 36.4839 78.812C38.4654 83.2716 41.6028 87.566 41.6028 87.566C41.6028 87.566 40.4469 62.6254 38.9608 61.7996Z", "fill", "#D0CDE1"], ["opacity", "0.1", "d", "M38.9608 61.7996C38.9608 61.7996 34.5023 74.3525 36.4839 78.812C38.4654 83.2716 41.6028 87.566 41.6028 87.566C41.6028 87.566 40.4469 62.6254 38.9608 61.7996Z", "fill", "black"], ["d", "M42.0982 90.8694C42.0982 90.8694 41.7679 94.0076 41.6028 94.1728C41.4377 94.338 41.7679 94.6683 41.6028 95.1638C41.4377 95.6593 41.2726 96.32 41.6028 96.4851C41.9331 96.6503 39.7864 111.185 39.7864 111.185C39.7864 111.185 34.5024 118.122 36.649 129.024L37.3095 140.09C37.3095 140.09 42.4285 140.42 42.4285 138.603C42.4285 138.603 42.0982 136.456 42.0982 135.465C42.0982 134.474 42.9238 134.474 42.4285 133.979C41.9331 133.483 41.9331 133.153 41.9331 133.153C41.9331 133.153 42.7587 132.492 42.5936 132.327C42.4285 132.162 44.0797 120.435 44.0797 120.435C44.0797 120.435 45.8961 118.618 45.8961 117.627V116.636C45.8961 116.636 46.7217 114.489 46.7217 114.323C46.7217 114.158 51.1802 104.083 51.1802 104.083L52.9966 111.35L54.9781 121.756C54.9781 121.756 55.9688 131.171 57.9504 134.804C57.9504 134.804 61.418 146.697 61.418 146.366C61.418 146.036 67.1974 145.21 67.0323 143.724C66.8672 142.237 63.5647 121.426 63.5647 121.426L64.3903 90.5391L42.0982 90.8694Z", "fill", "#2F2E41"], ["d", "M37.6398 139.264C37.6398 139.264 33.1813 148.018 36.1536 148.348C39.1259 148.679 40.2818 148.679 41.6028 147.357C42.325 146.635 43.7875 145.666 44.965 144.936C45.6627 144.51 46.2263 143.896 46.5912 143.165C46.9561 142.433 47.1075 141.614 47.0281 140.8C46.941 139.992 46.6392 139.326 45.8961 139.264C43.9146 139.099 41.6028 137.282 41.6028 137.282L37.6398 139.264Z", "fill", "#2F2E41"], ["d", "M62.2437 145.706C62.2437 145.706 57.7853 154.46 60.7575 154.79C63.7298 155.12 64.8857 155.12 66.2067 153.799C66.9289 153.077 68.3914 152.107 69.5689 151.377C70.2666 150.951 70.8302 150.338 71.1951 149.606C71.56 148.875 71.7115 148.055 71.632 147.242C71.5449 146.433 71.2431 145.768 70.5 145.706C68.5185 145.541 66.2067 143.724 66.2067 143.724L62.2437 145.706Z", "fill", "#2F2E41"], ["d", "M57.5316 47.4739C61.3652 47.4739 64.4729 44.3653 64.4729 40.5308C64.4729 36.6962 61.3652 33.5876 57.5316 33.5876C53.6981 33.5876 50.5903 36.6962 50.5903 40.5308C50.5903 44.3653 53.6981 47.4739 57.5316 47.4739Z", "fill", "#FFB8B8"], ["d", "M53.0693 42.8121C53.0693 42.8121 48.1112 51.9373 47.7146 51.9373C47.3179 51.9373 56.6391 54.9129 56.6391 54.9129C56.6391 54.9129 59.2173 46.1844 59.614 45.3909L53.0693 42.8121Z", "fill", "#FFB8B8"], ["d", "M60.6749 52.7978C60.6749 52.7978 50.7673 47.3472 49.7766 47.5123C48.7858 47.6775 38.2177 56.927 38.3828 60.7259C38.548 64.5248 39.869 70.8013 39.869 70.8013C39.869 70.8013 40.3644 88.3092 41.3551 88.4744C42.3459 88.6396 41.19 91.6126 41.5202 91.6126C41.8505 91.6126 64.638 91.6126 64.8031 91.1171C64.9682 90.6216 60.6749 52.7978 60.6749 52.7978Z", "fill", "#D0CDE1"], ["d", "M66.2067 92.0256C66.2067 92.0256 69.3442 101.605 66.7021 101.275C64.0601 100.945 62.9042 93.0166 62.9042 93.0166L66.2067 92.0256Z", "fill", "#FFB8B8"], ["d", "M57.7852 52.2197C57.7852 52.2197 51.6755 53.5411 52.6663 61.7995C53.6571 70.058 55.4734 78.3165 55.4734 78.3165L61.5831 91.6952L62.2436 94.1728L66.7021 93.0166L63.3995 73.8569C63.3995 73.8569 62.2436 53.3759 60.7575 52.7152C59.8203 52.3156 58.8013 52.1457 57.7852 52.2197Z", "fill", "#D0CDE1"], ["opacity", "0.1", "d", "M54.0698 78.0688L61.6657 91.6125L55.2661 77.3411L54.0698 78.0688Z", "fill", "black"], ["d", "M64.4422 38.4863L64.4651 37.9558L65.5203 38.2185C65.509 38.0481 65.4609 37.8823 65.3792 37.7324C65.2976 37.5825 65.1844 37.4521 65.0475 37.3502L66.1714 37.2873C65.2283 35.9467 64.0233 34.8112 62.6292 33.9494C61.2351 33.0877 59.6808 32.5174 58.0603 32.2732C55.6291 31.9208 52.922 32.4308 51.2549 34.2356C50.4462 35.111 49.9381 36.2242 49.5767 37.3599C48.911 39.4517 48.7754 41.9452 50.1635 43.6455C51.5742 45.3735 54.0384 45.712 56.2586 45.9259C57.0398 46.0012 57.8585 46.0712 58.5824 45.768C58.6629 44.9374 58.5566 44.0994 58.2713 43.3153C58.1525 43.0726 58.0957 42.8041 58.106 42.5341C58.2047 41.8734 59.0857 41.7069 59.7475 41.7962C60.4094 41.8855 61.2052 42.022 61.6401 41.5151C61.9396 41.1659 61.922 40.6574 61.9617 40.1989C62.0697 38.9509 64.4308 38.748 64.4422 38.4863Z", "fill", "#2F2E41"], ["d", "M12.0322 145.336C16.499 145.336 20.12 141.714 20.12 137.246C20.12 132.778 16.499 129.156 12.0322 129.156C7.56548 129.156 3.94446 132.778 3.94446 137.246C3.94446 141.714 7.56548 145.336 12.0322 145.336Z", "fill", "#F9A826"], ["d", "M103.31 128.34C103.073 127.739 102.591 127.264 101.987 127.037C100.807 126.594 100.208 125.274 100.651 124.095C101.094 122.915 102.414 122.316 103.593 122.759C104.166 122.974 104.62 123.398 104.871 123.954C105.044 124.337 104.874 124.789 104.491 124.962C104.107 125.134 103.656 124.966 103.483 124.582C103.228 124.018 102.296 124.047 102.077 124.63C101.929 125.024 102.129 125.463 102.522 125.611C103.53 125.989 104.333 126.781 104.727 127.782C104.881 128.174 104.689 128.615 104.297 128.77C103.905 128.924 103.463 128.731 103.31 128.34Z", "fill", "#9DCC3D"], ["d", "M110.008 131.677C109.248 131.392 108.138 131.333 106.917 132.403C106.169 131.441 105.201 130.685 104.036 130.248C102.872 129.811 101.648 129.742 100.453 129.973C100.312 128.896 99.8398 127.858 98.5985 127.392C95.7093 126.307 90.5089 129.29 88.6341 134.282C86.7594 139.275 88.7113 144.943 91.6006 146.028C92.6663 146.428 93.7017 146.176 94.6912 145.301C95.4393 146.263 96.4079 147.02 97.5732 147.457C98.736 147.894 99.9603 147.962 101.155 147.732C101.322 149.046 101.943 149.912 103.01 150.312C105.899 151.397 111.1 148.415 112.975 143.422C114.849 138.43 112.897 132.762 110.008 131.677Z", "fill", "#FF9F40"], ["d", "M103.01 150.312C105.899 151.397 111.1 148.415 112.975 143.423C114.849 138.43 112.897 132.762 110.008 131.677C109.248 131.392 108.138 131.333 106.917 132.403C106.169 131.441 105.201 130.685 104.036 130.248L97.5732 147.457C98.736 147.894 99.9603 147.963 101.155 147.732C101.322 149.046 101.943 149.912 103.01 150.312Z", "fill", "#FF7F40"], ["d", "M108.72 128.441C108.71 128.133 108.515 127.862 108.227 127.753L105.374 126.682C105.185 126.611 104.976 126.618 104.792 126.702C103.098 127.471 101.844 129.014 101.437 130.831C101.354 131.204 101.56 131.578 101.912 131.71C101.93 131.717 101.947 131.722 101.965 131.727L104.868 132.587C105.065 132.646 105.277 132.623 105.456 132.522C105.636 132.422 105.767 132.254 105.82 132.055C106.166 130.766 107.06 129.711 108.274 129.16C108.555 129.032 108.731 128.749 108.72 128.441Z", "fill", "#CBE645"], ["d", "M105.456 132.522C105.636 132.422 105.767 132.253 105.82 132.055C106.166 130.766 107.06 129.711 108.274 129.16C108.555 129.033 108.731 128.749 108.72 128.441C108.71 128.133 108.515 127.862 108.227 127.753L105.374 126.682L103.328 132.131L104.868 132.587C105.065 132.646 105.277 132.623 105.456 132.522Z", "fill", "#9DCC3D"], ["d", "M105.73 130.07C105.199 129.871 104.668 129.834 104.144 129.958C103.832 129.52 103.408 129.198 102.877 128.999C100.049 127.937 94.909 130.832 92.9752 135.912C90.5817 142.2 94.173 148.533 97.4644 147.747C97.7765 148.185 98.2009 148.507 98.7316 148.706C101.39 149.704 106.651 147.077 108.617 141.837C110.536 136.721 108.574 131.138 105.73 130.07Z", "fill", "#FFBE40"], ["d", "M108.617 141.837C110.536 136.721 108.574 131.138 105.73 130.07C105.199 129.871 104.668 129.834 104.144 129.958L97.4644 147.747C97.7766 148.185 98.201 148.507 98.7316 148.706C101.39 149.704 106.651 147.077 108.617 141.837Z", "fill", "#FF9F40"], ["d", "M10.9205 132.11C10.5133 131.992 10.0798 132.001 9.67786 132.136C9.44175 132.215 9.18741 132.22 8.94832 132.151C8.70923 132.082 8.49658 131.943 8.33837 131.751C8.11886 131.483 7.83658 131.275 7.51675 131.143C7.19693 131.012 6.8495 130.962 6.50552 130.997C6.16154 131.033 5.83172 131.153 5.54552 131.347C5.25931 131.541 5.02564 131.803 4.86537 132.109L4.86343 132.113C4.80308 132.235 4.69814 132.33 4.57023 132.377C4.44232 132.424 4.30117 132.421 4.17583 132.367C3.90325 132.246 3.60798 132.185 3.3098 132.187C3.01161 132.19 2.71739 132.256 2.44684 132.381C2.17629 132.507 1.93565 132.688 1.74104 132.914C1.54643 133.14 1.40234 133.405 1.31842 133.691C1.2345 133.977 1.21268 134.278 1.25444 134.574C1.29619 134.869 1.40054 135.152 1.56051 135.403C1.72048 135.655 1.93237 135.87 2.182 136.033C2.43163 136.196 2.71322 136.304 3.00793 136.349C3.14556 136.369 3.27063 136.44 3.35768 136.548C3.44474 136.656 3.48723 136.794 3.47652 136.932L3.4761 136.937C3.4489 137.282 3.50752 137.628 3.64672 137.945C3.78592 138.261 4.00136 138.539 4.27381 138.752C4.54626 138.965 4.86723 139.107 5.20805 139.166C5.54888 139.224 5.89894 139.198 6.22698 139.088C6.46308 139.01 6.71742 139.005 6.95651 139.073C7.1956 139.142 7.40825 139.282 7.56647 139.474C7.85869 139.83 8.26016 140.079 8.70865 140.184C9.15714 140.289 9.6276 140.242 10.0471 140.052C10.2805 139.945 10.541 139.91 10.7945 139.953C11.0479 139.996 11.2825 140.114 11.4675 140.293C11.7131 140.53 12.0132 140.703 12.3415 140.797C13.951 141.261 18.2112 138.566 18.2112 138.566C18.2112 138.566 16.0347 134.019 14.4255 133.555C14.0974 133.46 13.7509 133.447 13.4167 133.518C13.1651 133.57 12.9034 133.546 12.666 133.448C12.4286 133.349 12.2264 133.181 12.086 132.966C11.8121 132.551 11.3986 132.247 10.9205 132.11Z", "fill", "#58853F"], ["d", "M10.61 127.617C10.2404 127.409 9.81622 127.319 9.39413 127.359C9.14635 127.382 8.89753 127.329 8.68041 127.207C8.46329 127.086 8.28806 126.901 8.17776 126.678C8.0249 126.368 7.79758 126.101 7.51611 125.9C7.23463 125.699 6.90777 125.571 6.56471 125.527C6.22166 125.483 5.87311 125.525 5.55019 125.649C5.22727 125.773 4.94004 125.974 4.71417 126.236L4.71145 126.239C4.62483 126.345 4.50116 126.413 4.36588 126.43C4.2306 126.446 4.09401 126.411 3.98421 126.33C3.74635 126.15 3.47281 126.023 3.1819 125.958C2.891 125.892 2.58944 125.89 2.29744 125.95C2.00543 126.01 1.72972 126.133 1.48875 126.308C1.24778 126.484 1.04712 126.709 0.900219 126.969C0.753313 127.228 0.663548 127.516 0.636935 127.813C0.610321 128.11 0.647474 128.409 0.745904 128.691C0.844335 128.972 1.00177 129.229 1.20767 129.445C1.41357 129.661 1.66318 129.83 1.93979 129.941C2.06938 129.992 2.17497 130.089 2.23506 130.215C2.29515 130.34 2.30523 130.484 2.26324 130.616L2.2617 130.621C2.15665 130.95 2.13486 131.301 2.19826 131.641C2.26166 131.981 2.40828 132.3 2.62503 132.569C2.84177 132.839 3.12189 133.05 3.44037 133.185C3.75885 133.32 4.10576 133.374 4.45013 133.342C4.69792 133.319 4.94675 133.372 5.16387 133.494C5.381 133.615 5.55625 133.8 5.66656 134.023C5.87004 134.436 6.2041 134.77 6.61696 134.974C7.02982 135.178 7.49844 135.24 7.95019 135.151C8.20198 135.099 8.46352 135.125 8.70054 135.224C8.93755 135.324 9.139 135.492 9.27849 135.708C9.46351 135.995 9.71625 136.233 10.0145 136.399C11.4758 137.217 16.238 135.564 16.238 135.564C16.238 135.564 15.1549 130.64 13.6935 129.822C13.3957 129.655 13.0613 129.564 12.7198 129.556C12.4628 129.55 12.2136 129.466 12.0049 129.316C11.7961 129.166 11.6375 128.957 11.5499 128.715C11.3777 128.249 11.0444 127.859 10.61 127.617Z", "fill", "#649441"], ["d", "M16.473 135.141L13.3669 133.418L12.4506 130.173L11.5183 130.437L12.1733 132.756L10.0845 131.597L9.16256 128.333L8.23032 128.596L8.89094 130.935L7.16673 129.979L6.40086 127.267L5.46863 127.531L5.97314 129.317L2.79727 127.556L2.32736 128.403L5.41949 130.118L3.75923 130.587L4.02249 131.519L6.62202 130.785L8.35969 131.748L6.11215 132.383L6.37541 133.315L9.56223 132.415L11.6674 133.583L9.40009 134.223L9.66341 135.156L12.8699 134.25L16.0031 135.988L16.473 135.141Z", "fill", "#72A64E"], ["d", "M18.4746 121.538L17.3467 125.471L15.4235 125.236L17.0323 121.362L18.4746 121.538Z", "fill", "#6A9C46"], ["d", "M15.5898 121.185L15.4235 125.236L17.3466 125.471L17.0322 121.362L15.5898 121.185Z", "fill", "#79AD54"], ["d", "M18.3976 126.871C18.4197 127.094 18.408 127.32 18.3628 127.54L16.705 135.646C16.6257 136.033 16.4033 136.377 16.0821 136.608C15.7609 136.839 15.3644 136.94 14.9717 136.892C14.579 136.844 14.2188 136.65 13.9628 136.348C13.7069 136.047 13.5739 135.66 13.5905 135.264L13.6921 132.846L13.733 131.875L13.7945 130.417L13.8354 129.447L13.8963 127.989L13.9373 127.019L13.9383 126.998C13.9622 126.433 14.1995 125.898 14.6023 125.5C15.005 125.103 15.5434 124.873 16.1088 124.857C16.6743 124.841 17.2248 125.04 17.6495 125.414C18.0742 125.787 18.3416 126.308 18.3976 126.871Z", "fill", "#F07800"], ["d", "M16.1471 127.277L16.0347 128.239L13.8964 127.989L13.9373 127.019L16.1471 127.277Z", "fill", "#E66B00"], ["d", "M13.8355 129.447L15.8518 129.681L15.7406 130.642L13.7945 130.417L13.8355 129.447Z", "fill", "#E66B00"], ["d", "M15.5571 132.084L15.4466 133.047L13.6921 132.846L13.733 131.875L15.5571 132.084Z", "fill", "#E66B00"], ["d", "M5.31001 135.982C5.28847 135.823 5.26892 135.662 5.25295 135.501C4.62123 129.112 8.64111 123.484 14.2316 122.931C19.8222 122.379 24.8663 127.11 25.498 133.499C25.514 133.661 25.5262 133.822 25.5362 133.982L27.9475 133.744C27.9366 133.583 27.9241 133.422 27.9081 133.261C27.1448 125.541 20.9149 119.837 13.9933 120.521C7.07176 121.206 2.0795 128.019 2.84283 135.739C2.85879 135.901 2.87803 136.061 2.89868 136.22L5.31001 135.982Z", "fill", "#8C5237"], ["d", "M14.5522 128.346C14.4293 127.941 14.1856 127.582 13.8535 127.318C13.6591 127.163 13.5162 126.953 13.4438 126.715C13.3713 126.477 13.3725 126.222 13.4474 125.985C13.5519 125.655 13.5732 125.305 13.5093 124.965C13.4454 124.625 13.2983 124.306 13.0811 124.037C12.864 123.768 12.5835 123.557 12.2649 123.423C11.9462 123.288 11.5992 123.235 11.2549 123.268L11.2508 123.268C11.1154 123.284 10.979 123.248 10.8697 123.166C10.7604 123.084 10.6866 122.964 10.6633 122.83C10.6162 122.535 10.5068 122.254 10.3423 122.006C10.1778 121.757 9.96209 121.546 9.70958 121.388C9.45707 121.229 9.17359 121.126 8.87813 121.086C8.58267 121.046 8.28205 121.07 7.99639 121.155C7.71073 121.24 7.44662 121.386 7.22175 121.582C6.99689 121.778 6.81645 122.019 6.69252 122.29C6.56859 122.562 6.50403 122.856 6.50316 123.154C6.50229 123.452 6.56514 123.747 6.68749 124.019C6.74622 124.145 6.75472 124.289 6.71125 124.421C6.66779 124.553 6.57563 124.663 6.45354 124.73L6.44921 124.732C6.14527 124.897 5.88692 125.135 5.69723 125.424C5.50755 125.713 5.39244 126.045 5.36217 126.39C5.33191 126.734 5.38745 127.081 5.52381 127.399C5.66018 127.716 5.87314 127.995 6.14366 128.211C6.33814 128.366 6.48105 128.577 6.5536 128.815C6.62614 129.053 6.62492 129.307 6.55008 129.544C6.41085 129.983 6.42025 130.456 6.57681 130.889C6.73337 131.322 7.02836 131.691 7.41608 131.939C7.63351 132.077 7.80447 132.276 7.90658 132.512C8.00869 132.748 8.03718 133.009 7.98832 133.262C7.923 133.597 7.94117 133.943 8.04122 134.27C8.52908 135.872 13.1091 137.977 13.1091 137.977C13.1091 137.977 15.7376 133.675 15.2497 132.073C15.1507 131.746 14.9728 131.448 14.7316 131.206C14.5504 131.024 14.4285 130.791 14.3818 130.538C14.3351 130.286 14.3658 130.025 14.4699 129.79C14.6687 129.334 14.6979 128.822 14.5522 128.346Z", "fill", "#79AD54"], ["d", "M24.4651 123.053L21.8666 127.169L20.1334 126.303L23.1652 122.403L24.4651 123.053Z", "fill", "#6A9C46"], ["d", "M21.8654 121.753L20.1335 126.303L21.8666 127.169L23.1653 122.403L21.8654 121.753Z", "fill", "#79AD54"], ["d", "M22.1312 129.458L17.8546 136.54C17.6497 136.878 17.3251 137.127 16.9454 137.236C16.5656 137.346 16.1585 137.309 15.8049 137.132C15.4512 136.956 15.177 136.653 15.0367 136.283C14.8963 135.914 14.9002 135.505 15.0474 135.138L15.9676 132.858L16.3316 131.955L16.876 130.606L17.2401 129.704L17.785 128.354L18.1437 127.466C18.1457 127.461 18.1471 127.457 18.1491 127.452C18.3181 127.041 18.6056 126.69 18.9751 126.443C19.3446 126.196 19.7792 126.065 20.2236 126.066C20.2541 126.066 20.2846 126.067 20.3152 126.069C20.6287 126.082 20.9358 126.162 21.2163 126.303L21.2169 126.303C21.4976 126.442 21.7457 126.64 21.9447 126.882C21.9647 126.906 21.9835 126.93 22.0017 126.955C22.271 127.311 22.4273 127.74 22.4504 128.186C22.4735 128.633 22.3623 129.076 22.1312 129.458Z", "fill", "#F98500"], ["d", "M20.1384 128.471L19.6967 129.333L17.785 128.354L18.1437 127.466C18.1457 127.461 18.1471 127.457 18.1491 127.452L20.1384 128.471Z", "fill", "#EB7206"], ["d", "M19.0561 130.638L18.6132 131.5L16.876 130.606L17.2401 129.704L19.0561 130.638Z", "fill", "#EB7206"], ["d", "M17.9743 132.805L17.5295 133.665L15.9675 132.858L16.3316 131.955L17.9743 132.805Z", "fill", "#EB7206"], ["d", "M22.1769 129.447L24.5871 129.209C24.8427 129.183 25.098 129.261 25.2967 129.424C25.4953 129.586 25.6212 129.822 25.6464 130.077L25.6941 130.559L21.3559 130.988L21.3082 130.506C21.2829 130.251 21.3603 129.995 21.5232 129.797C21.6861 129.598 21.9213 129.472 22.1769 129.447Z", "fill", "#79AD54"], ["d", "M25.488 127.389L25.3715 126.211C23.3672 126.409 22.0475 128.137 22.2405 130.09L22.4629 132.339L25.5141 132.037L25.3499 130.377L24.9242 129.722C24.0574 128.774 24.2369 127.513 25.488 127.389Z", "fill", "#79AD54"], ["d", "M21.517 137.3C21.233 137.332 20.9468 137.263 20.7088 137.104C20.4708 136.946 20.2962 136.709 20.2158 136.434L19.0762 132.309C18.808 131.338 19.5083 130.36 20.546 130.257C21.4733 130.166 22.2969 130.817 22.3854 131.713L22.7898 135.803C22.8639 136.553 22.2941 137.223 21.517 137.3Z", "fill", "#FCAC1F"], ["d", "M26.7721 136.78C25.9948 136.857 25.3049 136.311 25.2307 135.561L24.8263 131.471C24.7378 130.576 25.4179 129.776 26.3452 129.684C27.3829 129.581 28.2611 130.403 28.1882 131.408L27.8786 135.677C27.8535 135.962 27.7287 136.228 27.5263 136.43C27.3239 136.632 27.0569 136.756 26.7721 136.78Z", "fill", "#FCAC1F"], ["d", "M23.2648 129.988L23.6263 129.953C24.0639 129.909 24.5007 130.042 24.8407 130.32C25.1807 130.599 25.3961 131.002 25.4393 131.439L25.7974 135.061C25.8445 135.538 25.7002 136.014 25.3962 136.384C25.0922 136.755 24.6535 136.99 24.1765 137.037L24.1126 137.043C23.6355 137.09 23.1593 136.946 22.7886 136.642C22.4179 136.338 22.1831 135.899 22.136 135.422L21.7779 131.801C21.7347 131.364 21.8671 130.927 22.1459 130.587C22.4248 130.247 22.8272 130.032 23.2648 129.988Z", "fill", "#FFB531"], ["d", "M14.1097 131.465L13.2548 131.01L12.1339 133.113L11.4353 130.819L13.0119 127.861L12.1571 127.405L11.0362 129.508L10.4596 127.615L11.7578 125.18L10.9028 124.724L10.0604 126.304L9.18139 123.418L8.25475 123.701L9.13384 126.587L7.55342 125.745L7.09772 126.6L9.53288 127.897L10.1095 129.791L8.0067 128.67L7.55101 129.525L10.5086 131.101L11.2073 133.395L9.10445 132.275L8.64876 133.13L11.6064 134.706L12.6457 138.118L13.5723 137.836L12.5331 134.424L14.1097 131.465Z", "fill", "#89BA66"], ["d", "M28.1941 136.153L28.1635 137.13L28.1484 137.618L28.1178 138.594L28.0722 140.059L28.0422 141.035L27.9966 142.5L27.966 143.477L27.9503 143.982C27.921 144.922 27.5505 145.82 26.908 146.507C26.2655 147.195 25.3949 147.625 24.4585 147.717L9.05665 149.24C8.12021 149.334 7.18184 149.083 6.417 148.534C5.65217 147.986 5.11325 147.178 4.90104 146.261L4.78664 145.768L4.56539 144.817L4.23382 143.389L4.01318 142.438L3.6816 141.01L3.46036 140.059L3.35003 139.583L3.12878 138.631L28.1941 136.153Z", "fill", "#92563A"], ["d", "M28.1941 136.153L28.1635 137.13L28.1485 137.618L28.1179 138.594L28.0723 140.059L28.0423 141.035L27.9967 142.5L27.9661 143.477L27.9503 143.982C27.921 144.922 27.5506 145.82 26.9081 146.507C26.2656 147.195 25.3949 147.625 24.4586 147.717L9.0567 149.24C8.17159 149.328 7.28312 149.109 6.54138 148.618C12.9712 146.969 19.8991 143.305 24.5331 136.515L28.1941 136.153Z", "fill", "#8C5237"], ["d", "M29.521 134.805C29.5525 135.125 29.4558 135.444 29.2522 135.692C29.0486 135.94 28.7547 136.097 28.4351 136.129L2.88782 138.655C2.56822 138.687 2.24915 138.59 2.00081 138.386C1.75248 138.183 1.59521 137.889 1.56361 137.569C1.53201 137.25 1.62866 136.931 1.83231 136.682C2.03596 136.434 2.32992 136.277 2.64952 136.245L28.1968 133.719C28.3551 133.703 28.5149 133.719 28.6671 133.765C28.8193 133.811 28.9609 133.887 29.0839 133.988C29.2069 134.089 29.3088 134.213 29.3838 134.353C29.4588 134.493 29.5054 134.647 29.521 134.805Z", "fill", "#A8684A"], ["d", "M13.8763 139.029L17.7325 138.648L17.8279 139.612L13.9717 139.993L13.8763 139.029Z", "fill", "#78462F"], ["d", "M8.09204 139.601L11.9482 139.22L12.0436 140.184L8.18736 140.565L8.09204 139.601Z", "fill", "#78462F"], ["d", "M6.16394 139.791L6.25926 140.756L3.68164 141.01L3.46039 140.059L6.16394 139.791Z", "fill", "#78462F"], ["d", "M19.6606 138.457L23.5168 138.076L23.6122 139.04L19.756 139.421L19.6606 138.457Z", "fill", "#78462F"], ["d", "M28.1484 137.618L28.1178 138.594L25.5402 138.849L25.4449 137.885L28.1484 137.618Z", "fill", "#78462F"], ["d", "M14.1146 141.439L17.9708 141.058L18.0661 142.022L14.2099 142.403L14.1146 141.439Z", "fill", "#78462F"], ["d", "M8.33032 142.011L12.1865 141.63L12.2818 142.594L8.42564 142.975L8.33032 142.011Z", "fill", "#78462F"], ["d", "M6.40228 142.202L6.4976 143.166L4.23389 143.389L4.01324 142.438L6.40228 142.202Z", "fill", "#78462F"], ["d", "M19.8989 140.867L23.7551 140.486L23.8504 141.45L19.9942 141.831L19.8989 140.867Z", "fill", "#78462F"], ["d", "M28.0723 140.059L28.0423 141.035L25.7785 141.259L25.6832 140.295L28.0723 140.059Z", "fill", "#78462F"], ["d", "M14.3529 143.849L18.2091 143.468L18.3044 144.432L14.4482 144.813L14.3529 143.849Z", "fill", "#78462F"], ["d", "M8.5686 144.421L12.4248 144.04L12.5201 145.004L8.66392 145.385L8.5686 144.421Z", "fill", "#78462F"], ["d", "M6.64048 144.612L6.7358 145.576L4.78662 145.768L4.56537 144.817L6.64048 144.612Z", "fill", "#78462F"], ["d", "M20.1372 143.277L23.9934 142.896L24.0887 143.86L20.2325 144.241L20.1372 143.277Z", "fill", "#78462F"], ["d", "M27.9966 142.5L25.9215 142.705L26.0168 143.669L27.966 143.477L27.9966 142.5Z", "fill", "#78462F"], ["d", "M14.5912 146.259L18.4474 145.878L18.5427 146.842L14.6865 147.223L14.5912 146.259Z", "fill", "#78462F"], ["d", "M8.80695 146.831L12.6631 146.45L12.7585 147.414L8.90227 147.795L8.80695 146.831Z", "fill", "#78462F"], ["d", "M6.87885 147.022L6.97417 147.986L5.90347 148.092C5.64046 147.823 5.41797 147.517 5.24298 147.184L6.87885 147.022Z", "fill", "#78462F"], ["d", "M20.3755 145.687L24.2317 145.306L24.327 146.27L20.4708 146.651L20.3755 145.687Z", "fill", "#78462F"], ["d", "M27.7957 144.954C27.6893 145.315 27.531 145.658 27.3258 145.974L26.2551 146.079L26.1598 145.115L27.7957 144.954Z", "fill", "#78462F"], ["d", "M28.1941 136.153L28.1635 137.13L3.35003 139.583L3.12878 138.631L28.1941 136.153Z", "fill", "#8C5237"], ["width", "128", "height", "128", "viewBox", "0 0 128 128", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["cx", "64", "cy", "64", "r", "63.5"], ["width", "64", "height", "64", "transform", "translate(32 32)"], ["d", "M39.8797 55.457C41.8103 58.4437 43.9388 61.2977 46.2507 64H47.9797C47.7618 62.7512 47.452 61.5202 47.0527 60.317C45.5261 55.8537 42.8646 51.8644 39.3297 48.741L40.6717 47.259C44.4623 50.6117 47.3148 54.8935 48.9487 59.683C49.2127 60.47 49.4297 61.277 49.6227 62.092C49.7127 61.928 49.8057 61.766 49.8847 61.592C52.1357 56.592 51.0417 48.63 46.2577 45.868C45.1092 45.2752 43.8524 44.9214 42.5633 44.8281C41.2743 44.7348 39.9796 44.9038 38.7577 45.325C38.2002 45.4664 37.6777 45.7207 37.2225 46.0723C36.7674 46.4239 36.3893 46.8653 36.1117 47.369C35.5807 48.71 37.0387 51.064 39.8797 55.457Z"], ["d", "M62.9391 54.2789C62.8634 53.6755 62.7126 53.0839 62.4901 52.5179C60.9311 48.5619 56.3811 46.3569 53.6551 47.1689C52.7601 47.4707 51.9878 48.0559 51.4551 48.8359C53.2969 52.8481 53.5056 57.4195 52.0371 61.5829C52.0941 61.5129 52.1621 61.4509 52.2181 61.3829C54.3425 58.6357 55.6553 55.3487 56.0081 51.8939L57.9961 52.1119C57.6083 55.9415 56.1492 59.5844 53.7861 62.6229C53.4051 63.1049 52.9861 63.5579 52.5581 64.0029H57.1701L57.2531 63.9639C56.7286 61.9259 57.0326 59.7632 58.0985 57.9488C59.1645 56.1344 60.9056 54.8159 62.9411 54.2819L62.9391 54.2789Z"], ["d", "M81.2003 63.9998H91.2153C90.5783 63.077 89.6863 62.3597 88.6483 61.9358C87.9706 61.7072 87.2631 61.5792 86.5483 61.5558C85.6303 61.4878 84.5893 61.4098 84.1073 60.4468C83.6073 59.4368 84.2903 58.5858 84.8383 57.9008C85.3954 57.2956 85.8026 56.5681 86.0273 55.7768C86.5213 53.6218 86.5273 50.0048 84.5113 48.8708C84.0428 48.6317 83.5309 48.4893 83.0062 48.4522C82.4816 48.4151 81.9548 48.484 81.4573 48.6548C79.9565 49.1054 78.6821 50.1076 77.8903 51.4598C77.1113 52.9658 77.5663 54.6358 78.0063 56.2488C78.4463 57.8618 78.9063 59.5578 77.6943 60.7218C76.4633 61.9068 74.6653 61.4218 72.9243 60.9468C73.0715 61.9665 73.0082 63.0055 72.7383 63.9998H79.1673C79.4173 62.5838 79.6993 61.1658 80.0263 59.7708C80.5863 57.3868 81.2683 55.0008 82.0533 52.6798L83.9473 53.3198C83.1833 55.5808 82.5193 57.9058 81.9743 60.2288C81.6823 61.4728 81.4293 62.7368 81.2003 63.9998Z"], ["d", "M70.654 64.0002C70.8375 63.4828 70.9469 62.9421 70.979 62.3941L69.316 62.9482L68.684 61.0482L70.766 60.3541C70.4534 59.2669 69.8403 58.2899 68.9972 57.5356C68.1541 56.7813 67.1152 56.2803 66 56.0901V58.0001H64V56.0901C63.0433 56.2537 62.1405 56.6464 61.3687 57.2349C60.5968 57.8233 59.979 58.5899 59.568 59.4691L61.316 60.0521L60.684 61.9521L59.031 61.4001C59.0107 61.5995 59.0004 61.7998 59 62.0002C58.9987 62.6818 59.1157 63.3585 59.346 64.0002H70.654ZM64 60.0001H66V62.0002H64V60.0001Z"], ["d", "M43.6534 63.9998C42.5347 62.6371 41.4577 61.2318 40.4224 59.7838C39.5084 60.0881 38.6238 60.4743 37.7794 60.9378C37.0936 61.236 36.5356 61.7674 36.2044 62.4378C36.0004 62.9319 35.9461 63.4751 36.0484 63.9998H43.6534Z"], ["d", "M36.0186 66C36.2852 72.9803 39.2437 79.5864 44.2738 84.4335C49.304 89.2805 56.0151 91.9922 63.0006 92H65.0006C71.986 91.9922 78.6971 89.2805 83.7273 84.4335C88.7574 79.5864 91.7159 72.9803 91.9826 66H36.0186ZM52.5656 86.9C47.8351 84.6169 43.8682 81.0109 41.1456 76.519L42.8556 75.481C45.3782 79.6426 49.0532 82.9838 53.4356 85.1L52.5656 86.9ZM57.0006 88H55.0006V86H57.0006V88Z"], ["d", "M79 40V38H75C72.8783 38 70.8434 38.8429 69.3431 40.3431C67.8429 41.8434 67 43.8783 67 46V48H71C73.1217 48 75.1566 47.1571 76.6569 45.6569C78.1571 44.1566 79 42.1217 79 40Z"], ["d", "M60 42C61.1046 42 62 41.1046 62 40C62 38.8954 61.1046 38 60 38C58.8954 38 58 38.8954 58 40C58 41.1046 58.8954 42 60 42Z"], ["d", "M47 39C48.1046 39 49 38.1046 49 37C49 35.8954 48.1046 35 47 35C45.8954 35 45 35.8954 45 37C45 38.1046 45.8954 39 47 39Z"], ["d", "M82.5675 49.1194C80.7141 52.5068 77.1166 54.8096 72.9905 54.8096C68.4715 54.8096 64.5861 52.0474 62.9326 48.1233L30.8906 58.5846H91.3083L82.5675 49.1194Z"], ["d", "M28 84.3115C28 86.839 30.0487 88.8877 32.5762 88.8877H87.4238C89.9513 88.8877 92 86.839 92 84.3115V77.7011H28V84.3115Z"], ["d", "M92 62.221H28V72.8877H92V62.221Z"], ["d", "M72.9905 51.1733C77.007 51.1733 80.2632 47.9171 80.2632 43.9006C80.2632 40.9866 78.549 38.4744 76.0746 37.3139C76.4681 36.2426 76.9711 35.1045 77.6055 34.0189C79.2499 31.2055 81.7818 28.7491 85.6128 28.7491C86.6172 28.7491 87.431 27.9352 87.431 26.9309C87.431 25.9265 86.6172 25.1127 85.6128 25.1127C80.7025 25.1127 76.6933 27.8504 73.9815 33.0385C73.3706 34.2053 72.8666 35.4152 72.4438 36.6506C68.6826 36.9304 65.7178 40.0683 65.7178 43.9006C65.7178 47.9171 68.974 51.1733 72.9905 51.1733ZM68.6227 41.8346C69.1398 40.8029 69.9471 39.9612 70.9568 39.4014C71.8203 38.9217 72.9362 39.222 73.4286 40.1095C73.9156 40.9876 73.5985 42.0945 72.7204 42.5813C72.3755 42.7728 72.0889 43.0688 71.9025 43.416C71.8935 43.4322 71.8819 43.4472 71.8737 43.4637C71.5549 44.1001 70.9132 44.4679 70.2467 44.4679C68.9042 44.4681 68.0152 43.047 68.6227 41.8346Z"], ["cx", "64", "cy", "64", "r", "64"], ["d", "M72.9844 50.1088C73.0559 49.6716 73.0887 49.2561 73.0688 48.8719L75.8274 46.9943C76.8994 46.4646 77.9872 46.5364 78.5618 46.6344C78.6067 46.6427 80.2207 46.9779 81.1124 46.3707C82.2105 45.624 82.4989 44.1229 81.7484 43.0268C81.3209 42.3972 80.6524 42.0452 79.9509 41.9881C80.1553 41.3172 80.0738 40.5627 79.6483 39.9386C78.9018 38.8362 77.4007 38.5522 76.3024 39.3005C75.6888 39.7178 75.3229 40.8139 75.2081 41.8448C75.157 42.2372 74.8972 43.5828 73.8155 44.5585L71.169 46.3624C69.4272 45.8881 66.5898 46.2369 63.7456 47.0575C66.6574 47.6022 69.5608 48.5343 72.4076 49.8435L72.9844 50.1088Z"], ["d", "M37.3761 75.4477H59.3169C58.7081 74.8924 58.1594 74.2697 57.6875 73.5765C55.6223 70.5406 55.266 66.872 56.684 63.2453C57.9067 60.1192 60.3356 57.254 63.7074 54.9608C65.193 53.9497 66.9936 53.0233 68.9228 52.2383C66.3707 51.2458 63.6527 50.5316 60.8035 50.2228C58.8013 50.005 56.8367 49.8909 54.9367 49.8909C42.7396 49.8909 33.1877 54.6601 33.1877 66.948C33.1877 71.1366 35.2822 75.4477 37.3761 75.4477Z"], ["d", "M65.714 57.909C60.1777 61.6742 57.7195 67.284 60.636 71.5708C62.1463 73.7905 64.6402 74.8679 67.4623 74.8679C70.0902 74.8679 73.0029 73.9341 75.6722 72.1187C80.4168 68.8875 85.2271 61.0646 85.0041 56.5672L88.3378 54.3014C89.3639 53.7934 90.5628 53.6726 91.6409 53.8635C92.6059 54.0342 93.9177 54.0958 94.7269 53.5445C96.052 52.6404 96.3977 50.8305 95.4979 49.4992C94.9782 48.7423 94.1685 48.317 93.3219 48.2494C93.5673 47.4376 93.4734 46.5275 92.9558 45.7687C92.0496 44.4364 90.2369 44.096 88.9103 44.9996C88.17 45.5027 87.7281 46.8321 87.5873 48.0754C87.5279 48.5459 87.2129 50.1736 85.9061 51.358L82.7055 53.5361C82.0463 53.355 81.2556 53.2708 80.3752 53.2708C76.043 53.2711 69.5301 55.3118 65.714 57.909Z"], ["d", "M93.3869 71.058L88.1832 70.0173C88.181 69.9994 88.1794 69.9809 88.1772 69.9628C88.0439 68.7858 87.3846 67.0675 86.1201 65.1323C85.8139 65.7114 85.5163 66.229 85.2531 66.6638C83.1309 70.1715 80.3708 73.234 77.6787 75.0674C77.6067 75.1164 77.5334 75.162 77.4609 75.2103C82.8235 75.2103 87.411 75.2103 92.9759 75.2103C94.1336 75.2103 95.0722 74.2717 95.0722 73.114C95.0722 72.1143 94.3668 71.2539 93.3869 71.058Z"], ["d", "M93.7486 79.2515H34.0962C33.3752 79.2515 32.7048 79.6221 32.3209 80.2328C31.9374 80.8433 31.8946 81.6084 32.2075 82.2581L34.0813 86.1464C34.9568 87.9627 36.795 89.1174 38.8112 89.1174H89.0332C91.0494 89.1174 92.8877 87.9627 93.7633 86.1464L95.6371 82.2581C95.95 81.6086 95.9074 80.8436 95.5237 80.2328C95.1403 79.6219 94.4699 79.2515 93.7486 79.2515Z"], ["d", "M16.757 3L14.757 5H5V19H19V9.243L21 7.243V20C21 20.2652 20.8946 20.5196 20.7071 20.7071C20.5196 20.8946 20.2652 21 20 21H4C3.73478 21 3.48043 20.8946 3.29289 20.7071C3.10536 20.5196 3 20.2652 3 20V4C3 3.73478 3.10536 3.48043 3.29289 3.29289C3.48043 3.10536 3.73478 3 4 3H16.757ZM20.485 2.1L21.9 3.516L12.708 12.708L11.296 12.711L11.294 11.294L20.485 2.1Z"], ["viewBox", "0 0 64 64", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M34.6667 56V61.3333H29.3333V56H8.00001C7.29277 56 6.61449 55.7191 6.11439 55.219C5.61429 54.7189 5.33334 54.0406 5.33334 53.3333V10.6667C5.33334 9.95943 5.61429 9.28115 6.11439 8.78106C6.61449 8.28096 7.29277 8.00001 8.00001 8.00001H24C25.5136 7.99821 27.0101 8.31936 28.3897 8.942C29.7692 9.56464 31.0001 10.4745 32 11.6107C32.9999 10.4745 34.2308 9.56464 35.6104 8.942C36.9899 8.31936 38.4864 7.99821 40 8.00001H56C56.7073 8.00001 57.3855 8.28096 57.8856 8.78106C58.3857 9.28115 58.6667 9.95943 58.6667 10.6667V53.3333C58.6667 54.0406 58.3857 54.7189 57.8856 55.219C57.3855 55.7191 56.7073 56 56 56H34.6667ZM53.3333 50.6667V13.3333H40C38.5855 13.3333 37.229 13.8952 36.2288 14.8954C35.2286 15.8956 34.6667 17.2522 34.6667 18.6667V50.6667H53.3333ZM29.3333 50.6667V18.6667C29.3333 17.2522 28.7714 15.8956 27.7712 14.8954C26.7711 13.8952 25.4145 13.3333 24 13.3333H10.6667V50.6667H29.3333Z"], ["d", "M11 11V7H13V11H17V13H13V17H11V13H7V11H11ZM12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20Z"], ["d", "M15.6676 11.9985L10.0155 1.60859C9.10743 0.0798092 6.89378 0.077778 5.98446 1.60859L0.332715 11.9985C-0.595597 13.5606 0.528309 15.5388 2.34778 15.5388H13.652C15.47 15.5388 16.5959 13.5622 15.6676 11.9985ZM8 13.6638C7.48318 13.6638 7.0625 13.2431 7.0625 12.7263C7.0625 12.2095 7.48318 11.7888 8 11.7888C8.51681 11.7888 8.9375 12.2095 8.9375 12.7263C8.9375 13.2431 8.51681 13.6638 8 13.6638ZM8.9375 9.91381C8.9375 10.4306 8.51681 10.8513 8 10.8513C7.48318 10.8513 7.0625 10.4306 7.0625 9.91381V5.22631C7.0625 4.7095 7.48318 4.28881 8 4.28881C8.51681 4.28881 8.9375 4.7095 8.9375 5.22631V9.91381Z"], ["d", "M22.2349 0.0535024C21.9723 -0.0552476 21.6697 0.00484617 21.4686 0.20594L1.53749 20.137C1.26289 20.4115 1.26289 20.8567 1.53749 21.1313L4.20022 23.794C4.33752 23.9313 4.51747 24 4.69738 24C4.87729 24 5.05728 23.9313 5.19453 23.794L11.2548 17.7337L13.0548 18.5043C13.144 18.5425 13.238 18.561 13.3313 18.561C13.5141 18.561 13.6941 18.4897 13.8286 18.3551L16.438 15.7457C18.4235 13.7603 19.975 11.4382 21.0495 8.84416C22.124 6.25005 22.6688 3.5111 22.6688 0.703284C22.6689 0.418893 22.4976 0.162299 22.2349 0.0535024ZM4.69738 22.3025L3.02905 20.6342L6.29497 17.3682L7.9633 19.0366L4.69738 22.3025ZM8.95771 18.0422L7.28938 16.3738L8.42516 15.2381L10.0935 16.9064L8.95771 18.0422ZM19.7503 8.30608C18.7469 10.7287 17.2979 12.8972 15.4438 14.7514L13.1708 17.0243L11.4735 16.2977L9.41961 14.2437L21.1841 2.47914C21.006 4.48042 20.5259 6.43366 19.7503 8.30608Z"], ["width", "24", "height", "24", "fill", "white"], ["width", "24", "height", "24", "viewBox", "0 0 24 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M8.67143 2H3C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3V19C2 19.7956 2.31607 20.5587 2.87868 21.1213C3.44129 21.6839 4.20435 22 5 22H19C19.7956 22 20.5587 21.6839 21.1213 21.1213C21.6839 20.5587 22 19.7956 22 19V15H18V13.5H16V20H5C4.73478 20 4.48043 19.8946 4.29289 19.7071C4.10536 19.5196 4 19.2652 4 19V4H8.5V2.83333C8.5 2.544 8.5594 2.26079 8.67143 2ZM18 19V17H20V19C20 19.2652 19.8946 19.5196 19.7071 19.7071C19.5196 19.8946 19.2652 20 19 20C18.7348 20 18.4804 19.8946 18.2929 19.7071C18.1054 19.5196 18 19.2652 18 19Z", "fill", "white"], ["d", "M8.5 7H6V9H8.5V7Z", "fill", "white"], ["d", "M8.5 11H6V13H9.24688C9.20258 12.9625 9.15968 12.923 9.11833 12.8817C8.72242 12.4858 8.5 11.9488 8.5 11.3889V11Z", "fill", "white"], ["d", "M11 17V15H6V17H11Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M17.8 1H14.2L13 2.22222H10.6C10.4409 2.22222 10.2883 2.28661 10.1757 2.40121C10.0632 2.51582 10 2.67126 10 2.83333V11.3889C10 11.551 10.0632 11.7064 10.1757 11.821C10.2883 11.9356 10.4409 12 10.6 12H21.4C21.5591 12 21.7117 11.9356 21.8243 11.821C21.9368 11.7064 22 11.551 22 11.3889V2.83333C22 2.67126 21.9368 2.51582 21.8243 2.40121C21.7117 2.28661 21.5591 2.22222 21.4 2.22222H19L17.8 1ZM17.3636 3L18.3455 4H19.8182V10H11.9636V4H13.4364L14.4182 3H17.3636Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M18.3455 7C18.3455 8.38071 17.2465 9.5 15.8909 9.5C14.5353 9.5 13.4364 8.38071 13.4364 7C13.4364 5.61929 14.5353 4.5 15.8909 4.5C17.2465 4.5 18.3455 5.61929 18.3455 7ZM15.8909 8C16.4332 8 16.8727 7.55228 16.8727 7C16.8727 6.44772 16.4332 6 15.8909 6C15.3487 6 14.9091 6.44772 14.9091 7C14.9091 7.55228 15.3487 8 15.8909 8Z", "fill", "white"], ["width", "25", "height", "24", "viewBox", "0 0 25 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M19.5 2H17.5V5L14.5 5V7H17.5V10H19.5V7H22.5V5L19.5 5V2Z", "fill", "white"], ["d", "M12.5 6.37125H6.85996L6.10996 3.74625C6.03496 3.44625 5.73496 3.22125 5.43496 3.22125H3.25996C2.88496 3.22125 2.58496 3.52125 2.58496 3.89625C2.58496 4.27125 2.88496 4.57125 3.25996 4.57125H4.90996L7.68496 14.4713C7.68496 14.5463 7.75996 14.6963 7.83496 14.7713C7.88737 14.9809 8.01303 15.1173 8.16076 15.1804C8.22443 15.2076 8.29219 15.2213 8.35996 15.2213H18.335C18.56 15.2213 18.785 15.0713 18.86 14.8463L19.6263 12H17.555L17.2262 13.2213H9.41167L8.0522 8.37125H12.5V6.37125Z", "fill", "white"], ["d", "M18.0935 10L18.532 8.37125H17.5V7H14.5V6.37125H20.36C20.585 6.37125 20.735 6.44625 20.81 6.59625C20.9445 6.73083 20.9584 6.86542 20.9598 7L19.5 7V10H18.0935Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M17.2099 17.0963C17.4363 17.0963 17.6546 17.1407 17.8564 17.2213C18.5236 17.4875 19.0099 18.1477 19.0099 18.8963C19.0099 19.8713 18.1849 20.6963 17.2099 20.6963C16.2349 20.6963 15.4099 19.8713 15.4099 18.8963C15.4099 18.1477 15.8963 17.4875 16.5634 17.2213C16.7652 17.1407 16.9835 17.0963 17.2099 17.0963ZM17.4099 18.8963C17.4099 18.9812 17.3746 19.0287 17.3585 19.0448C17.3424 19.061 17.2949 19.0963 17.2099 19.0963C17.1249 19.0963 17.0775 19.061 17.0613 19.0448C17.0452 19.0287 17.0099 18.9812 17.0099 18.8963C17.0099 18.8113 17.0452 18.7638 17.0613 18.7477C17.0775 18.7315 17.1249 18.6963 17.2099 18.6963C17.2949 18.6963 17.3424 18.7315 17.3585 18.7477C17.3746 18.7638 17.4099 18.8113 17.4099 18.8963Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M8.95991 17.0963C9.19305 17.0963 9.41583 17.1406 9.6203 17.2213C10.2877 17.4846 10.7599 18.1353 10.7599 18.8963C10.7599 19.8904 9.95402 20.6963 8.95991 20.6963C7.9658 20.6963 7.15991 19.8904 7.15991 18.8963C7.15991 18.1346 7.63294 17.4835 8.30123 17.2206C8.32065 17.2129 8.34023 17.2056 8.35996 17.1987C8.54761 17.1323 8.74955 17.0963 8.95991 17.0963ZM8.75991 18.8963C8.75991 18.7858 8.84946 18.6963 8.95991 18.6963C9.07037 18.6963 9.15991 18.7858 9.15991 18.8963C9.15991 19.0067 9.07037 19.0963 8.95991 19.0963C8.84946 19.0963 8.75991 19.0067 8.75991 18.8963Z", "fill", "white"], ["width", "65", "height", "4", "viewBox", "0 0 65 4", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["x1", "2.5", "y1", "2", "x2", "62.5", "y2", "2", "stroke", "#CCCCCC", "stroke-width", "4", "stroke-linecap", "round"], ["width", "48", "height", "48", "viewBox", "0 0 48 48", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["filter", "url(#filter0_b_2567_109244)"], ["width", "48", "height", "48", "rx", "24", "fill-opacity", "0.65"], ["d", "M19.752 17.439L30.26 23.569C30.3353 23.6131 30.3978 23.6761 30.4412 23.7518C30.4846 23.8275 30.5074 23.9132 30.5074 24.0005C30.5074 24.0878 30.4846 24.1735 30.4412 24.2492C30.3978 24.3249 30.3353 24.3879 30.26 24.432L19.752 30.562C19.6759 30.6064 19.5893 30.6299 19.5012 30.6301C19.4131 30.6304 19.3264 30.6073 19.2501 30.5632C19.1737 30.5191 19.1104 30.4557 19.0665 30.3793C19.0226 30.3028 18.9996 30.2161 19 30.128V17.871C19 17.783 19.0232 17.6966 19.0672 17.6204C19.1113 17.5443 19.1747 17.4811 19.2509 17.4373C19.3272 17.3935 19.4137 17.3706 19.5017 17.3709C19.5897 17.3712 19.676 17.3947 19.752 17.439Z", "fill", "white"], ["id", "filter0_b_2567_109244", "x", "-8", "y", "-8", "width", "64", "height", "64", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["in2", "SourceAlpha", "operator", "in", "result", "effect1_backgroundBlur_2567_109244"], ["mode", "normal", "in", "SourceGraphic", "in2", "effect1_backgroundBlur_2567_109244", "result", "shape"], ["width", "32", "height", "32", "viewBox", "0 0 32 32", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M13.2265 16L7.94672 10.7203L10.5866 8.08041L15.8663 13.3601L21.146 8.0804L23.7859 10.7203L18.5062 16L23.7859 21.2797L21.146 23.9196L15.8663 18.6399L10.5866 23.9196L7.94672 21.2797L13.2265 16Z", "fill", "#676767"]], template: function IconComponent_Template(rf, ctx) {
|
|
5122
|
+
IconComponent.ɵcmp = i0.ɵɵdefineComponent({ type: IconComponent, selectors: [["ng-miam-icon"]], inputs: { primaryColor: "primaryColor", secondaryColor: "secondaryColor", width: "width", height: "height", iconName: "iconName" }, features: [i0.ɵɵNgOnChangesFeature], decls: 3, vars: 2, consts: [["class", "icon-container", 3, "ngStyle", 4, "ngIf", "ngIfElse"], ["switchIcon", ""], [1, "icon-container", 3, "ngStyle"], [1, "icon-container__icon", 3, "src", "ngStyle"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"], ["viewBox", "0 0 16 16", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M12.5018 13.821H9.91582H9.21945H9.06906V10.3523H10.2035C10.4912 10.3523 10.6612 10.0253 10.4912 9.78995L8.28443 6.73642C8.14385 6.54026 7.85288 6.54026 7.7123 6.73642L5.50552 9.78995C5.33551 10.0253 5.50225 10.3523 5.79322 10.3523H6.92767V13.821H6.77728H6.08092H3.08296C1.36657 13.7262 0 12.121 0 10.3817C0 9.18186 0.650593 8.13568 1.61504 7.57009C1.52677 7.33143 1.481 7.07643 1.481 6.80834C1.481 5.58235 2.4716 4.59175 3.69759 4.59175C3.9624 4.59175 4.21741 4.63752 4.45607 4.72579C5.16551 3.22191 6.69555 2.179 8.47405 2.179C10.7756 2.18227 12.6718 3.94443 12.8876 6.19044C14.6563 6.49449 16 8.13241 16 9.98611C16 11.9673 14.4569 13.6837 12.5018 13.821Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-share"], ["fill-rule", "evenodd", "d", "M11.724 3.947l-7 3.5-.448-.894 7-3.5.448.894zm-.448 9l-7-3.5.448-.894 7 3.5-.448.894z"], ["fill-rule", "evenodd", "d", "M13.5 4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm0 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm-11-6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm0 1a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 16 16"], ["fill-rule", "evenodd", "d", "M9.5 0a.5.5 0 0 1 .068.995L9.5 1h-1v2.019a6.467 6.467 0 0 1 3.452 1.32l.606-.605a.5.5 0 0 1 .74-.636l.056.048.5.5a.5.5 0 0 1-.588.796l-.568.566A6.5 6.5 0 1 1 7.5 3.018V1h-1a.5.5 0 0 1-.068-.995L6.5 0h3zM8 4a5.5 5.5 0 1 0 0 11A5.5 5.5 0 0 0 8 4zM5.817 6.846l.054.051 2.5 2.768a.5.5 0 0 1-.688.721l-.054-.05-2.5-2.768a.5.5 0 0 1 .688-.722z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-check-circle-fill"], ["fill-rule", "evenodd", "d", "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-x"], ["fill-rule", "evenodd", "d", "M11.854 4.146a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708-.708l7-7a.5.5 0 0 1 .708 0z"], ["fill-rule", "evenodd", "d", "M4.146 4.146a.5.5 0 0 0 0 .708l7 7a.5.5 0 0 0 .708-.708l-7-7a.5.5 0 0 0-.708 0z"], ["viewBox", "0 0 24 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M16.5 3C19.538 3 22 5.5 22 9C22 16 14.5 20 12 21.5C9.5 20 2 16 2 9C2 5.5 4.5 3 7.5 3C9.36 3 11 4 12 5C13 4 14.64 3 16.5 3ZM12.934 18.604C13.815 18.048 14.61 17.495 15.354 16.903C18.335 14.533 20 11.943 20 9C20 6.64 18.463 5 16.5 5C15.424 5 14.26 5.57 13.414 6.414L12 7.828L10.586 6.414C9.74 5.57 8.576 5 7.5 5C5.56 5 4 6.656 4 9C4 11.944 5.666 14.533 8.645 16.903C9.39 17.495 10.185 18.048 11.066 18.603C11.365 18.792 11.661 18.973 12 19.175C12.339 18.973 12.635 18.792 12.934 18.604Z"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M22 9C22 5.5 19.538 3 16.5 3C14.64 3 13 4 12 5C11 4 9.36 3 7.5 3C4.5 3 2 5.5 2 9C2 15.6009 8.66916 19.5341 11.5259 21.219C11.6987 21.3208 11.8575 21.4145 12 21.5C12.1425 21.4145 12.3013 21.3208 12.4741 21.219C15.3308 19.5341 22 15.6009 22 9Z"], ["d", "M12 5L11.6464 5.35355L12 5.70711L12.3536 5.35355L12 5ZM11.5259 21.219L11.2719 21.6496L11.5259 21.219ZM12 21.5L11.7428 21.9287L12 22.0831L12.2572 21.9287L12 21.5ZM12.4741 21.219L12.7281 21.6496L12.4741 21.219ZM16.5 3.5C19.2316 3.5 21.5 5.74484 21.5 9H22.5C22.5 5.25516 19.8444 2.5 16.5 2.5V3.5ZM12.3536 5.35355C13.2936 4.41346 14.8138 3.5 16.5 3.5V2.5C14.4662 2.5 12.7064 3.58654 11.6464 4.64645L12.3536 5.35355ZM7.5 3.5C9.18616 3.5 10.7064 4.41346 11.6464 5.35355L12.3536 4.64645C11.2936 3.58654 9.53384 2.5 7.5 2.5V3.5ZM2.5 9C2.5 5.74715 4.80427 3.5 7.5 3.5V2.5C4.19573 2.5 1.5 5.25285 1.5 9H2.5ZM11.7799 20.7883C10.3495 19.9446 8.01919 18.5682 6.04476 16.599C4.07253 14.632 2.5 12.1183 2.5 9H1.5C1.5 12.4826 3.26205 15.236 5.3386 17.307C7.41295 19.3759 9.84566 20.8085 11.2719 21.6496L11.7799 20.7883ZM12.2572 21.0713C12.1128 20.9846 11.9522 20.8899 11.7799 20.7883L11.2719 21.6496C11.4451 21.7518 11.6022 21.8444 11.7428 21.9287L12.2572 21.0713ZM12.2201 20.7883C12.0478 20.8899 11.8872 20.9846 11.7428 21.0713L12.2572 21.9287C12.3978 21.8444 12.5549 21.7518 12.7281 21.6496L12.2201 20.7883ZM21.5 9C21.5 12.1183 19.9275 14.632 17.9552 16.599C15.9808 18.5682 13.6505 19.9446 12.2201 20.7883L12.7281 21.6496C14.1543 20.8085 16.587 19.3759 18.6614 17.307C20.7379 15.236 22.5 12.4826 22.5 9H21.5Z"], ["viewBox", "0 0 17 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-image"], ["fill-rule", "evenodd", "d", "M14.002 2h-12a1 1 0 0 0-1 1v9l2.646-2.354a.5.5 0 0 1 .63-.062l2.66 1.773 3.71-3.71a.5.5 0 0 1 .577-.094L15.002 9.5V3a1 1 0 0 0-1-1zm-12-1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-12zm4 4.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-clipboard-check"], ["fill-rule", "evenodd", "d", "M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"], ["fill-rule", "evenodd", "d", "M9.5 1h-3a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3zm4.354 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0z"], ["xmlns", "http://www.w3.org/2000/svg", 0, "xmlns", "xlink", "http://www.w3.org/1999/xlink", "version", "1.1", "id", "Capa_1", "x", "0px", "y", "0px", "viewBox", "0 0 325.799 325.799", 0, "xml", "space", "preserve", 2, "enable-background", "new 0 0 325.799 325.799"], ["d", "M285.306,296.302c-73.7,28.4-156.5-8.4-184.9-82.2c-0.5-1.4-1-2.7-1.5-4.1h147.8c5.5,0,10-4.5,10-10s-4.5-10-10-10h-153.1 c-3-15.8-3.3-32.1-1-48h170.1c5.5,0,10-4.5,10-10s-4.5-10-10-10h-165.6c22.7-75.6,102.5-118.5,178.2-95.8c3.3,1,6.7,2.1,10.1,3.4 c5.1,2,10.9-0.5,13-5.7c2-5.1-0.5-10.9-5.7-13h-0.1c-84-32.3-178.3,9.6-210.7,93.6c-2.2,5.7-4.1,11.5-5.6,17.4h-39.6 c-5.5,0-10,4.5-10,10s4.5,10,10,10h35.7c-2,16-1.7,32.1,0.9,48h-36.6c-5.5,0-10,4.5-10,10s4.5,10,10,10h41.3 c26.1,86.2,117.1,134.9,203.2,108.9c3.8-1.2,7.6-2.5,11.3-3.9c5.1-2,7.7-7.8,5.7-12.9 C296.206,296.902,290.406,294.302,285.306,296.302z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-calendar-week"], ["fill-rule", "evenodd", "d", "M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1zm1-3a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2H2z"], ["fill-rule", "evenodd", "d", "M3.5 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5zm9 0a.5.5 0 0 1 .5.5V1a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 .5-.5z"], ["d", "M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm-5 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-basket"], ["fill-rule", "evenodd", "d", "M5.757 1.071a.5.5 0 0 1 .172.686L3.383 6h9.234L10.07 1.757a.5.5 0 1 1 .858-.514L13.783 6H15a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1v4.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 13.5V9a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h1.217L5.07 1.243a.5.5 0 0 1 .686-.172zM2 9v4.5A1.5 1.5 0 0 0 3.5 15h9a1.5 1.5 0 0 0 1.5-1.5V9H2zM1 7v1h14V7H1zm3 3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 4 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 6 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3A.5.5 0 0 1 8 10zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5zm2 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5z"], ["viewBox", "0 0 64 16", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["clip-path", "url(#clip0)"], ["d", "M14.7613 14.2631C14.5819 13.8245 14.3992 13.386 14.1998 12.954C14.0237 12.5686 13.7978 12.4557 13.3759 12.552C12.8409 12.6749 12.316 12.8377 11.7811 12.9474C10.7478 13.1634 9.71117 13.1833 8.69117 12.861C7.41202 12.459 6.73091 11.532 6.31228 10.3359H9.78094C10.0534 10.3359 10.2727 10.1166 10.2727 9.8442V8.75111C10.2727 8.47866 10.0534 8.25938 9.78094 8.25938H5.98003C5.98003 7.95371 5.97671 7.66134 5.98003 7.36896H9.78094C10.0534 7.36896 10.2727 7.14968 10.2727 6.87723V5.78414C10.2727 5.5117 10.0534 5.29241 9.78094 5.29241H6.45847C6.45847 5.27912 6.45847 5.26583 6.46512 5.25919C6.86381 4.35215 7.44524 3.62453 8.39879 3.24577C9.5085 2.8072 10.6415 2.81717 11.7844 3.05307C12.326 3.16271 12.8576 3.32883 13.3991 3.45176C13.7945 3.54147 14.0237 3.42518 14.1932 3.05639C14.3892 2.63111 14.5686 2.19919 14.748 1.76395C14.9175 1.35528 14.8178 1.06623 14.4324 0.840299C14.3361 0.783817 14.2364 0.737303 14.1334 0.697433C12.532 0.072808 10.8807 -0.159765 9.17625 0.112678C7.97684 0.305381 6.85717 0.717368 5.89033 1.46825C4.67098 2.41183 3.88023 3.65776 3.42173 5.12297L3.36525 5.29241H1.6575C1.38505 5.29241 1.16577 5.5117 1.16577 5.78414V6.87723C1.16577 7.14968 1.38505 7.36896 1.6575 7.36896H3.0031C3.0031 7.66798 3.0031 7.95704 3.0031 8.25938H1.6575C1.38505 8.25938 1.16577 8.47866 1.16577 8.75111V9.8442C1.16577 10.1166 1.38505 10.3359 1.6575 10.3359H3.27886C3.4018 10.7346 3.50479 11.14 3.66095 11.522C4.4816 13.5022 5.8571 14.911 7.927 15.5821C9.63808 16.137 11.3624 16.1204 13.0868 15.6452C13.5353 15.5223 13.9805 15.3628 14.4058 15.1668C14.8178 14.9774 14.9241 14.6585 14.7613 14.2631Z"], ["clip-path", "url(#clip1)"], ["d", "M38.7613 14.2631C38.5819 13.8245 38.3992 13.386 38.1998 12.954C38.0237 12.5686 37.7978 12.4557 37.3759 12.552C36.8409 12.6749 36.316 12.8377 35.7811 12.9474C34.7478 13.1634 33.7112 13.1833 32.6912 12.861C31.412 12.459 30.7309 11.532 30.3123 10.3359H33.7809C34.0534 10.3359 34.2727 10.1166 34.2727 9.8442V8.75111C34.2727 8.47866 34.0534 8.25938 33.7809 8.25938H29.98C29.98 7.95371 29.9767 7.66134 29.98 7.36896H33.7809C34.0534 7.36896 34.2727 7.14968 34.2727 6.87723V5.78414C34.2727 5.5117 34.0534 5.29241 33.7809 5.29241H30.4585C30.4585 5.27912 30.4585 5.26583 30.4651 5.25919C30.8638 4.35215 31.4452 3.62453 32.3988 3.24577C33.5085 2.8072 34.6415 2.81717 35.7844 3.05307C36.326 3.16271 36.8576 3.32883 37.3991 3.45176C37.7945 3.54147 38.0237 3.42518 38.1932 3.05639C38.3892 2.63111 38.5686 2.19919 38.748 1.76395C38.9175 1.35528 38.8178 1.06623 38.4324 0.840299C38.3361 0.783817 38.2364 0.737303 38.1334 0.697433C36.532 0.072808 34.8807 -0.159765 33.1763 0.112678C31.9768 0.305381 30.8572 0.717368 29.8903 1.46825C28.671 2.41183 27.8802 3.65776 27.4217 5.12297L27.3652 5.29241H25.6575C25.3851 5.29241 25.1658 5.5117 25.1658 5.78414V6.87723C25.1658 7.14968 25.3851 7.36896 25.6575 7.36896H27.0031C27.0031 7.66798 27.0031 7.95704 27.0031 8.25938H25.6575C25.3851 8.25938 25.1658 8.47866 25.1658 8.75111V9.8442C25.1658 10.1166 25.3851 10.3359 25.6575 10.3359H27.2789C27.4018 10.7346 27.5048 11.14 27.6609 11.522C28.4816 13.5022 29.8571 14.911 31.927 15.5821C33.6381 16.137 35.3624 16.1204 37.0868 15.6452C37.5353 15.5223 37.9805 15.3628 38.4058 15.1668C38.8178 14.9774 38.9241 14.6585 38.7613 14.2631Z", "fill", "#8C8CA1"], ["clip-path", "url(#clip2)"], ["d", "M62.7613 14.2631C62.5819 13.8245 62.3992 13.386 62.1998 12.954C62.0237 12.5686 61.7978 12.4557 61.3759 12.552C60.8409 12.6749 60.316 12.8377 59.7811 12.9474C58.7478 13.1634 57.7112 13.1833 56.6912 12.861C55.412 12.459 54.7309 11.532 54.3123 10.3359H57.7809C58.0534 10.3359 58.2727 10.1166 58.2727 9.8442V8.75111C58.2727 8.47866 58.0534 8.25938 57.7809 8.25938H53.98C53.98 7.95371 53.9767 7.66134 53.98 7.36896H57.7809C58.0534 7.36896 58.2727 7.14968 58.2727 6.87723V5.78414C58.2727 5.5117 58.0534 5.29241 57.7809 5.29241H54.4585C54.4585 5.27912 54.4585 5.26583 54.4651 5.25919C54.8638 4.35215 55.4452 3.62453 56.3988 3.24577C57.5085 2.8072 58.6415 2.81717 59.7844 3.05307C60.326 3.16271 60.8576 3.32883 61.3991 3.45176C61.7945 3.54147 62.0237 3.42518 62.1932 3.05639C62.3892 2.63111 62.5686 2.19919 62.748 1.76395C62.9175 1.35528 62.8178 1.06623 62.4324 0.840299C62.3361 0.783817 62.2364 0.737303 62.1334 0.697433C60.532 0.072808 58.8807 -0.159765 57.1763 0.112678C55.9768 0.305381 54.8572 0.717368 53.8903 1.46825C52.671 2.41183 51.8802 3.65776 51.4217 5.12297L51.3652 5.29241H49.6575C49.3851 5.29241 49.1658 5.5117 49.1658 5.78414V6.87723C49.1658 7.14968 49.3851 7.36896 49.6575 7.36896H51.0031C51.0031 7.66798 51.0031 7.95704 51.0031 8.25938H49.6575C49.3851 8.25938 49.1658 8.47866 49.1658 8.75111V9.8442C49.1658 10.1166 49.3851 10.3359 49.6575 10.3359H51.2789C51.4018 10.7346 51.5048 11.14 51.6609 11.522C52.4816 13.5022 53.8571 14.911 55.927 15.5821C57.6381 16.137 59.3624 16.1204 61.0868 15.6452C61.5353 15.5223 61.9805 15.3628 62.4058 15.1668C62.8178 14.9774 62.9241 14.6585 62.7613 14.2631Z", "fill", "#8C8CA1"], ["id", "clip0"], ["width", "16", "height", "16", "fill", "white"], ["id", "clip1"], ["width", "16", "height", "16", "fill", "white", "transform", "translate(24)"], ["id", "clip2"], ["width", "16", "height", "16", "fill", "white", "transform", "translate(48)"], ["d", "M38.7613 14.2631C38.5819 13.8245 38.3992 13.386 38.1998 12.954C38.0237 12.5686 37.7978 12.4557 37.3759 12.552C36.8409 12.6749 36.316 12.8377 35.7811 12.9474C34.7478 13.1634 33.7112 13.1833 32.6912 12.861C31.412 12.459 30.7309 11.532 30.3123 10.3359H33.7809C34.0534 10.3359 34.2727 10.1166 34.2727 9.8442V8.75111C34.2727 8.47866 34.0534 8.25938 33.7809 8.25938H29.98C29.98 7.95371 29.9767 7.66134 29.98 7.36896H33.7809C34.0534 7.36896 34.2727 7.14968 34.2727 6.87723V5.78414C34.2727 5.5117 34.0534 5.29241 33.7809 5.29241H30.4585C30.4585 5.27912 30.4585 5.26583 30.4651 5.25919C30.8638 4.35215 31.4452 3.62453 32.3988 3.24577C33.5085 2.8072 34.6415 2.81717 35.7844 3.05307C36.326 3.16271 36.8576 3.32883 37.3991 3.45176C37.7945 3.54147 38.0237 3.42518 38.1932 3.05639C38.3892 2.63111 38.5686 2.19919 38.748 1.76395C38.9175 1.35528 38.8178 1.06623 38.4324 0.840299C38.3361 0.783817 38.2364 0.737303 38.1334 0.697433C36.532 0.072808 34.8807 -0.159765 33.1763 0.112678C31.9768 0.305381 30.8572 0.717368 29.8903 1.46825C28.671 2.41183 27.8802 3.65776 27.4217 5.12297L27.3652 5.29241H25.6575C25.3851 5.29241 25.1658 5.5117 25.1658 5.78414V6.87723C25.1658 7.14968 25.3851 7.36896 25.6575 7.36896H27.0031C27.0031 7.66798 27.0031 7.95704 27.0031 8.25938H25.6575C25.3851 8.25938 25.1658 8.47866 25.1658 8.75111V9.8442C25.1658 10.1166 25.3851 10.3359 25.6575 10.3359H27.2789C27.4018 10.7346 27.5048 11.14 27.6609 11.522C28.4816 13.5022 29.8571 14.911 31.927 15.5821C33.6381 16.137 35.3624 16.1204 37.0868 15.6452C37.5353 15.5223 37.9805 15.3628 38.4058 15.1668C38.8178 14.9774 38.9241 14.6585 38.7613 14.2631Z"], ["d", "M62.7613 14.2631C62.5819 13.8245 62.3992 13.386 62.1998 12.954C62.0237 12.5686 61.7978 12.4557 61.3759 12.552C60.8409 12.6749 60.316 12.8377 59.7811 12.9474C58.7478 13.1634 57.7112 13.1833 56.6912 12.861C55.412 12.459 54.7309 11.532 54.3123 10.3359H57.7809C58.0534 10.3359 58.2727 10.1166 58.2727 9.8442V8.75111C58.2727 8.47866 58.0534 8.25938 57.7809 8.25938H53.98C53.98 7.95371 53.9767 7.66134 53.98 7.36896H57.7809C58.0534 7.36896 58.2727 7.14968 58.2727 6.87723V5.78414C58.2727 5.5117 58.0534 5.29241 57.7809 5.29241H54.4585C54.4585 5.27912 54.4585 5.26583 54.4651 5.25919C54.8638 4.35215 55.4452 3.62453 56.3988 3.24577C57.5085 2.8072 58.6415 2.81717 59.7844 3.05307C60.326 3.16271 60.8576 3.32883 61.3991 3.45176C61.7945 3.54147 62.0237 3.42518 62.1932 3.05639C62.3892 2.63111 62.5686 2.19919 62.748 1.76395C62.9175 1.35528 62.8178 1.06623 62.4324 0.840299C62.3361 0.783817 62.2364 0.737303 62.1334 0.697433C60.532 0.072808 58.8807 -0.159765 57.1763 0.112678C55.9768 0.305381 54.8572 0.717368 53.8903 1.46825C52.671 2.41183 51.8802 3.65776 51.4217 5.12297L51.3652 5.29241H49.6575C49.3851 5.29241 49.1658 5.5117 49.1658 5.78414V6.87723C49.1658 7.14968 49.3851 7.36896 49.6575 7.36896H51.0031C51.0031 7.66798 51.0031 7.95704 51.0031 8.25938H49.6575C49.3851 8.25938 49.1658 8.47866 49.1658 8.75111V9.8442C49.1658 10.1166 49.3851 10.3359 49.6575 10.3359H51.2789C51.4018 10.7346 51.5048 11.14 51.6609 11.522C52.4816 13.5022 53.8571 14.911 55.927 15.5821C57.6381 16.137 59.3624 16.1204 61.0868 15.6452C61.5353 15.5223 61.9805 15.3628 62.4058 15.1668C62.8178 14.9774 62.9241 14.6585 62.7613 14.2631Z"], ["d", "M6.96527 1.04078C7.42036 -0.346927 9.40188 -0.346924 9.85698 1.04078L10.8004 3.91742C11.0039 4.53802 11.5876 4.95819 12.2462 4.95819H15.2991C16.7718 4.95819 17.3841 6.82534 16.1927 7.68298L13.7228 9.46084C13.19 9.8444 12.9671 10.5243 13.1706 11.1449L14.114 14.0215C14.5691 15.4092 12.966 16.5632 11.7745 15.7055L9.30471 13.9276C8.77188 13.5441 8.05037 13.5441 7.51754 13.9276L5.04772 15.7055C3.85627 16.5632 2.25319 15.4092 2.70828 14.0215L3.65167 11.1449C3.85519 10.5243 3.63223 9.84439 3.0994 9.46084L0.629587 7.68298C-0.561862 6.82533 0.0504642 4.95819 1.52318 4.95819H4.57603C5.23465 4.95819 5.81836 4.53802 6.02189 3.91742L6.96527 1.04078Z"], ["d", "M30.579 1.04078C31.0341 -0.346927 33.0156 -0.346924 33.4707 1.04078L34.4141 3.91742C34.6176 4.53802 35.2013 4.95819 35.8599 4.95819H38.9128C40.3855 4.95819 40.9978 6.82534 39.8064 7.68298L37.3365 9.46084C36.8037 9.8444 36.5807 10.5243 36.7843 11.1449L37.7277 14.0215C38.1827 15.4092 36.5797 16.5632 35.3882 15.7055L32.9184 13.9276C32.3856 13.5441 31.6641 13.5441 31.1312 13.9276L28.6614 15.7055C27.47 16.5632 25.8669 15.4092 26.322 14.0215L27.2654 11.1449C27.4689 10.5243 27.2459 9.84439 26.7131 9.46084L24.2433 7.68298C23.0518 6.82533 23.6642 4.95819 25.1369 4.95819H28.1897C28.8484 4.95819 29.4321 4.53802 29.6356 3.91742L30.579 1.04078Z", "fill", "#8C8CA1"], ["d", "M54.143 1.04078C54.5981 -0.346927 56.5796 -0.346924 57.0347 1.04078L57.9781 3.91742C58.1816 4.53802 58.7653 4.95819 59.424 4.95819H62.4768C63.9495 4.95819 64.5618 6.82534 63.3704 7.68298L60.9006 9.46084C60.3677 9.8444 60.1448 10.5243 60.3483 11.1449L61.2917 14.0215C61.7468 15.4092 60.1437 16.5632 58.9523 15.7055L56.4824 13.9276C55.9496 13.5441 55.2281 13.5441 54.6953 13.9276L52.2255 15.7055C51.034 16.5632 49.4309 15.4092 49.886 14.0215L50.8294 11.1449C51.0329 10.5243 50.81 9.84439 50.2771 9.46084L47.8073 7.68298C46.6159 6.82533 47.2282 4.95819 48.7009 4.95819H51.7538C52.4124 4.95819 52.9961 4.53802 53.1996 3.91742L54.143 1.04078Z", "fill", "#8C8CA1"], ["d", "M30.579 1.04078C31.0341 -0.346927 33.0156 -0.346924 33.4707 1.04078L34.4141 3.91742C34.6176 4.53802 35.2013 4.95819 35.8599 4.95819H38.9128C40.3855 4.95819 40.9978 6.82534 39.8064 7.68298L37.3365 9.46084C36.8037 9.8444 36.5807 10.5243 36.7843 11.1449L37.7277 14.0215C38.1827 15.4092 36.5797 16.5632 35.3882 15.7055L32.9184 13.9276C32.3856 13.5441 31.6641 13.5441 31.1312 13.9276L28.6614 15.7055C27.47 16.5632 25.8669 15.4092 26.322 14.0215L27.2654 11.1449C27.4689 10.5243 27.2459 9.84439 26.7131 9.46084L24.2433 7.68298C23.0518 6.82533 23.6642 4.95819 25.1369 4.95819H28.1897C28.8484 4.95819 29.4321 4.53802 29.6356 3.91742L30.579 1.04078Z"], ["viewBox", "0 0 12 20", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M4.33333 3.6C4.33333 4.48366 3.58714 5.2 2.66667 5.2C1.74619 5.2 1 4.48366 1 3.6C1 2.71634 1.74619 2 2.66667 2C3.58714 2 4.33333 2.71634 4.33333 3.6Z"], ["d", "M4.33333 10C4.33333 10.8837 3.58714 11.6 2.66667 11.6C1.74619 11.6 1 10.8837 1 10C1 9.11634 1.74619 8.4 2.66667 8.4C3.58714 8.4 4.33333 9.11634 4.33333 10Z"], ["d", "M4.33333 16.4C4.33333 17.2837 3.58714 18 2.66667 18C1.74619 18 1 17.2837 1 16.4C1 15.5163 1.74619 14.8 2.66667 14.8C3.58714 14.8 4.33333 15.5163 4.33333 16.4Z"], ["d", "M11 3.6C11 4.48366 10.2538 5.2 9.33333 5.2C8.41286 5.2 7.66667 4.48366 7.66667 3.6C7.66667 2.71634 8.41286 2 9.33333 2C10.2538 2 11 2.71634 11 3.6Z"], ["d", "M11 10C11 10.8837 10.2538 11.6 9.33333 11.6C8.41286 11.6 7.66667 10.8837 7.66667 10C7.66667 9.11634 8.41286 8.4 9.33333 8.4C10.2538 8.4 11 9.11634 11 10Z"], ["d", "M11 16.4C11 17.2837 10.2538 18 9.33333 18C8.41286 18 7.66667 17.2837 7.66667 16.4C7.66667 15.5163 8.41286 14.8 9.33333 14.8C10.2538 14.8 11 15.5163 11 16.4Z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 24 24"], ["d", "M0 0h24v24H0V0z", "fill", "none"], ["d", "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-return-left"], ["fill-rule", "evenodd", "d", "M14.5 1.5a.5.5 0 0 1 .5.5v4.8a2.5 2.5 0 0 1-2.5 2.5H2.707l3.347 3.346a.5.5 0 0 1-.708.708l-4.2-4.2a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 8.3H12.5A1.5 1.5 0 0 0 14 6.8V2a.5.5 0 0 1 .5-.5z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-down"], ["fill-rule", "evenodd", "d", "M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z"], ["d", "M12.5 13c.828 0 1.5.672 1.5 1.5s-.672 1.5-1.5 1.5-1.5-.672-1.5-1.5.672-1.5 1.5-1.5zm-9 0c.828 0 1.5.672 1.5 1.5S4.328 16 3.5 16 2 15.328 2 14.5 2.672 13 3.5 13zM3 0l.591 2H15c.623 0 1.095.564.984 1.177C15.27 7.14 14.526 9 13 9H4.42c-.377.391-.67.729-.876 1H13c.552 0 1 .448 1 1s-.448 1-1 1H3c-1.28 0-2.11-.83-1.699-2.066.218-.654.813-1.44 1.807-2.454L1.433 2H0V0h3zm10.786 4H4.182l.887 3h7.737c.09-.124.2-.333.315-.621.224-.56.447-1.355.665-2.379z"], ["d", "M54.143 1.04078C54.5981 -0.346927 56.5796 -0.346924 57.0347 1.04078L57.9781 3.91742C58.1816 4.53802 58.7653 4.95819 59.424 4.95819H62.4768C63.9495 4.95819 64.5618 6.82534 63.3704 7.68298L60.9006 9.46084C60.3677 9.8444 60.1448 10.5243 60.3483 11.1449L61.2917 14.0215C61.7468 15.4092 60.1437 16.5632 58.9523 15.7055L56.4824 13.9276C55.9496 13.5441 55.2281 13.5441 54.6953 13.9276L52.2255 15.7055C51.034 16.5632 49.4309 15.4092 49.886 14.0215L50.8294 11.1449C51.0329 10.5243 50.81 9.84439 50.2771 9.46084L47.8073 7.68298C46.6159 6.82533 47.2282 4.95819 48.7009 4.95819H51.7538C52.4124 4.95819 52.9961 4.53802 53.1996 3.91742L54.143 1.04078Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-people"], ["fill-rule", "evenodd", "d", "M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8zm-7.978-1h7.956a.274.274 0 0 0 .014-.002l.008-.002c-.002-.264-.167-1.03-.76-1.72C13.688 10.629 12.718 10 11 10c-1.717 0-2.687.63-3.24 1.276-.593.69-.759 1.457-.76 1.72a1.05 1.05 0 0 0 .022.004zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816zM4.92 10c-1.668.02-2.615.64-3.16 1.276C1.163 11.97 1 12.739 1 13h3c0-1.045.323-2.086.92-3zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"], ["xmlns", "http://www.w3.org/2000/svg", "id", "Out_line", "data-name", "Out line", "viewBox", "0 0 512 512"], ["d", "M496,184h-8V95.21a79.51747,79.51747,0,0,0-48.24-73.15991,40.20637,40.20637,0,0,0-31.52,0A79.51747,79.51747,0,0,0,360,95.21v75.6001A87.54442,87.54442,0,0,1,344.36,127.99l-.00061-.00806A7.99364,7.99364,0,0,0,352,120V72a8.00008,8.00008,0,0,0-8-8H280a8.00008,8.00008,0,0,0-8,8v2.8501c-.43994-.51026-.9-1-1.38-1.48A31.984,31.984,0,0,0,220.01,80.51a32.22031,32.22031,0,0,0-5.39-7.13989,32.00263,32.00263,0,0,0-53.80994,15.43994A31.98816,31.98816,0,0,0,146.86,144,31.96526,31.96526,0,0,0,152,195.7V240h16V200H408V480H344v16H496a7.9979,7.9979,0,0,0,8-8V192A7.9979,7.9979,0,0,0,496,184ZM376,136h24a8,8,0,0,1,0,16H376Zm4.37-64H400a8,8,0,1,1,0,16H376.4A64.01244,64.01244,0,0,1,380.37,72ZM288,80h48v32H288ZM168,184a16,16,0,0,1,0-32,8,8,0,0,0,0-16,16,16,0,0,1,0-32,7.9979,7.9979,0,0,0,8-8,16.00013,16.00013,0,0,1,31.62-3.47A31.958,31.958,0,0,0,202.86,144a31.93735,31.93735,0,0,0-6.55994,40Zm56,0a16,16,0,0,1,0-32,8,8,0,0,0,0-16,16,16,0,0,1,0-32,7.9979,7.9979,0,0,0,8-8,16,16,0,1,1,32,0,7.9979,7.9979,0,0,0,8,8v16a7.99364,7.99364,0,0,0,7.64062,7.98193L279.64,127.99A87.73358,87.73358,0,0,1,256,180.62012V96H240v88Zm50.14,0a103.38584,103.38584,0,0,0,21.54993-56h32.62012A103.38584,103.38584,0,0,0,349.86,184ZM376,184V168h24a24,24,0,0,0,0-48H376V104h24a24,24,0,0,0,0-48H389.52a63.465,63.465,0,0,1,25.03-19.24,24.04215,24.04215,0,0,1,18.8999,0A63.51551,63.51551,0,0,1,472,95.21V184ZM488,480H424V200h64Z"], ["d", "M176,432a24.04267,24.04267,0,0,0-18.334-23.32422,67.0819,67.0819,0,0,0-123.332,0,24.00336,24.00336,0,0,0,0,46.64844,67.0819,67.0819,0,0,0,123.332,0A24.04267,24.04267,0,0,0,176,432Zm-24,8a7.99922,7.99922,0,0,0-7.42773,5.0293l-1.14454,2.86132a51.08168,51.08168,0,0,1-94.85546,0l-1.14454-2.86132A7.99922,7.99922,0,0,0,40,440a8,8,0,0,1,0-16,7.99922,7.99922,0,0,0,7.42773-5.0293l1.14454-2.86132a51.08168,51.08168,0,0,1,94.85546,0l1.14454,2.86132A7.99922,7.99922,0,0,0,152,424a8,8,0,0,1,0,16Z"], ["x", "64", "y", "408", "width", "16", "height", "16"], ["x", "80", "y", "440", "width", "16", "height", "16"], ["x", "112", "y", "424", "width", "16", "height", "16"], ["d", "M206.02,341.8501l17.13989-34.27-14.31982-7.16016-11.03,22.07007L192,316.67993V299.75a40.18506,40.18506,0,0,0-34.34009-39.59009L129.13,256.08008a7.99356,7.99356,0,0,0-9.04992,9.0498l4.07983,28.53A40.18506,40.18506,0,0,0,163.75,328h16.92993l9.21008,9.21a80.07936,80.07936,0,0,0-67.2301,19.16016L133.34009,368.29A63.911,63.911,0,0,1,176,352a62.44161,62.44161,0,0,1,6.87.37012l-9.07,18.12988a7.74033,7.74033,0,0,0-2.22-1.66016l-16-8-7.16016,14.32007,13.8501,6.92017A25.95522,25.95522,0,0,0,191.61,392.75l12.80993,6.40991,7.16016-14.32007-16-8a8.044,8.044,0,0,0-7.02-.06982l10.28-20.55a64.00695,64.00695,0,0,1-44.17017,120.13989L149.33008,491.45A80.01072,80.01072,0,0,0,206.02,341.8501ZM176,300.68994l-15.6-15.6001L149.09009,296.3999,164.68994,312H163.75a24.12661,24.12661,0,0,1-23.76-20.60986l-2.56006-17.96021L155.39,276A24.10891,24.10891,0,0,1,176,299.75Z"], ["d", "M304,272h-8v-8h8a7.9979,7.9979,0,0,0,8-8V224a7.9979,7.9979,0,0,0-8-8H224a7.9979,7.9979,0,0,0-8,8v32a7.9979,7.9979,0,0,0,8,8h8v8h-8a32.0512,32.0512,0,0,0-23.85,10.66992l11.92,10.66016A16.0305,16.0305,0,0,1,224,288h16a7.9979,7.9979,0,0,0,8-8V264h32v8H264v16h40a16.02116,16.02116,0,0,1,16,16v16H232v16h88v96H272v16h48v16a16.02116,16.02116,0,0,1-16,16H240v16h64a32.036,32.036,0,0,0,32-32V304A32.036,32.036,0,0,0,304,272Zm-72-24V232h64v16Z"], ["height", "2", "viewBox", "0 0 12 2", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M10.5 0.25H1.5C1.05 0.25 0.75 0.55 0.75 1C0.75 1.45 1.05 1.75 1.5 1.75H10.5C10.95 1.75 11.25 1.45 11.25 1C11.25 0.55 10.95 0.25 10.5 0.25Z"], ["viewBox", "0 0 16 17", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M13.25 2.67871H10.5V2.17871C10.5 1.35027 9.82844 0.678711 9 0.678711H7C6.17156 0.678711 5.5 1.35027 5.5 2.17871V2.67871H2.75C2.05966 2.67871 1.5 3.23837 1.5 3.92871V4.92871C1.5 5.20487 1.72384 5.42871 2 5.42871H14C14.2762 5.42871 14.5 5.20487 14.5 4.92871V3.92871C14.5 3.23837 13.9403 2.67871 13.25 2.67871ZM6.5 2.17871C6.5 1.90309 6.72437 1.67871 7 1.67871H9C9.27563 1.67871 9.5 1.90309 9.5 2.17871V2.67871H6.5V2.17871Z"], ["d", "M2.44897 6.42871C2.35975 6.42871 2.28866 6.50327 2.29291 6.5924L2.70541 15.25C2.74353 16.0512 3.40166 16.6787 4.20353 16.6787H11.7967C12.5985 16.6787 13.2567 16.0512 13.2948 15.25L13.7073 6.5924C13.7115 6.50327 13.6404 6.42871 13.5512 6.42871H2.44897ZM10.0001 7.67871C10.0001 7.40246 10.2238 7.17871 10.5001 7.17871C10.7763 7.17871 11.0001 7.40246 11.0001 7.67871V14.1787C11.0001 14.455 10.7763 14.6787 10.5001 14.6787C10.2238 14.6787 10.0001 14.455 10.0001 14.1787V7.67871ZM7.50009 7.67871C7.50009 7.40246 7.72384 7.17871 8.00009 7.17871C8.27634 7.17871 8.50009 7.40246 8.50009 7.67871V14.1787C8.50009 14.455 8.27634 14.6787 8.00009 14.6787C7.72384 14.6787 7.50009 14.455 7.50009 14.1787V7.67871ZM5.00009 7.67871C5.00009 7.40246 5.22384 7.17871 5.50009 7.17871C5.77634 7.17871 6.00009 7.40246 6.00009 7.67871V14.1787C6.00009 14.455 5.77634 14.6787 5.50009 14.6787C5.22384 14.6787 5.00009 14.455 5.00009 14.1787V7.67871Z"], ["width", "16", "height", "16", "fill", "none", "transform", "translate(0 0.678711)"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M12.8889 4.88889C12.8889 4.39797 12.4909 4 12 4C11.5091 4 11.1111 4.39797 11.1111 4.88889V11.1111H4.88889C4.39797 11.1111 4 11.5091 4 12C4 12.4909 4.39797 12.8889 4.88889 12.8889H11.1111V19.1111C11.1111 19.602 11.5091 20 12 20C12.4909 20 12.8889 19.602 12.8889 19.1111V12.8889H19.1111C19.602 12.8889 20 12.4909 20 12C20 11.5091 19.602 11.1111 19.1111 11.1111H12.8889V4.88889Z"], ["d", "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z"], ["d", "M0 0h24v24H0z", "fill", "none"], ["d", "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z"], ["d", "M4.41768 3.64119C4.18693 3.41025 3.81256 3.41025 3.58181 3.64119C2.72506 4.49794 2.30397 5.69144 2.42634 6.91587C2.45687 7.22091 2.71384 7.44828 3.01393 7.44828C3.03365 7.44828 3.05353 7.44728 3.07325 7.44531C3.39818 7.41281 3.63522 7.12294 3.60272 6.79822C3.51562 5.92806 3.81278 5.08197 4.41768 4.47703C4.64862 4.24631 4.64862 3.87191 4.41768 3.64119Z"], ["d", "M6.75863 0C3.03191 0 0 3.03191 0 6.75863C0 10.4853 3.03191 13.5173 6.75863 13.5173C10.4853 13.5173 13.5173 10.4853 13.5173 6.75863C13.5173 3.03191 10.4853 0 6.75863 0ZM6.75863 12.335C3.68375 12.335 1.18228 9.8335 1.18228 6.75863C1.18228 3.68375 3.68375 1.18228 6.75863 1.18228C9.83331 1.18228 12.335 3.68375 12.335 6.75863C12.335 9.8335 9.8335 12.335 6.75863 12.335Z"], ["d", "M15.8268 14.9909L11.5312 10.6954C11.3002 10.4644 10.9262 10.4644 10.6953 10.6954C10.4644 10.9261 10.4644 11.3005 10.6953 11.5312L14.9909 15.8268C15.1064 15.9423 15.2575 16 15.4088 16C15.5602 16 15.7113 15.9423 15.8268 15.8268C16.0577 15.5961 16.0577 15.2217 15.8268 14.9909Z"], ["viewBox", "0 0 16 16", "xmlns", "http://www.w3.org/2000/svg", 1, "bi", "bi-arrow-left-right"], ["fill-rule", "evenodd", "d", "M10.146 7.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 11l-2.647-2.646a.5.5 0 0 1 0-.708z"], ["fill-rule", "evenodd", "d", "M2 11a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 11zm3.854-9.354a.5.5 0 0 1 0 .708L3.207 5l2.647 2.646a.5.5 0 1 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0z"], ["fill-rule", "evenodd", "d", "M2.5 5a.5.5 0 0 1 .5-.5h10.5a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"], ["xmlns", "http://www.w3.org/2000/svg", "width", "26", "height", "17", "fill", "none", "viewBox", "0 0 26 17"], ["id", "v8f0hpt10a", "width", "26", "height", "17", "x", "0", "y", "0", "fill", "#000", "maskUnits", "userSpaceOnUse"], ["fill", "#fff", "d", "M0 0H26V17H0z"], ["d", "M21.757 7.705c.702-.494 1.168-1.315 1.168-2.241 0-1.515-1.225-2.74-2.74-2.74-1.515 0-2.74 1.225-2.74 2.74 0 .926.46 1.747 1.168 2.241-.603.21-1.154.532-1.62.95-.64-.546-1.395-.964-2.222-1.211 1.002-.608 1.677-1.714 1.677-2.973C16.448 2.553 14.895 1 12.976 1c-1.918 0-3.471 1.558-3.471 3.471 0 1.259.67 2.365 1.676 2.973-.816.247-1.562.66-2.198 1.197-.466-.409-1.007-.727-1.6-.931.702-.494 1.167-1.315 1.167-2.241 0-1.515-1.225-2.74-2.74-2.74-1.514 0-2.74 1.225-2.74 2.74 0 .926.461 1.747 1.169 2.24C2.353 8.362 1 10.152 1 12.256v.313c0 .01.01.019.019.019h5.808c-.034.261-.053.532-.053.802v.323c0 1.396 1.13 2.527 2.527 2.527h7.36c1.396 0 2.527-1.13 2.527-2.527v-.323c0-.27-.02-.541-.053-.802h5.846c.01 0 .019-.01.019-.02v-.313c-.01-2.108-1.358-3.898-3.243-4.549zM18.205 5.46c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.078-.019-1.942-.897-1.942-1.98zm-7.95-.988c0-1.496 1.216-2.711 2.712-2.711 1.496 0 2.711 1.215 2.711 2.711 0 1.444-1.135 2.626-2.555 2.707h-.313c-1.42-.08-2.555-1.263-2.555-2.707zm-6.439.988c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.073-.019-1.942-.897-1.942-1.98zm3.144 6.363H1.77C1.982 9.8 3.692 8.213 5.767 8.2h.057c.987.005 1.89.37 2.588.964-.684.74-1.192 1.653-1.453 2.66zm11.458 1.89c0 .974-.793 1.767-1.766 1.767h-7.36c-.974 0-1.767-.793-1.767-1.767v-.323c0-2.949 2.355-5.36 5.285-5.446.052.004.11.004.162.004.052 0 .109 0 .161-.004 2.93.085 5.285 2.497 5.285 5.446v.323zm.565-1.89c-.26-1.002-.76-1.9-1.439-2.64.703-.608 1.615-.973 2.612-.983h.057c2.075.014 3.785 1.6 3.999 3.623h-5.229z"], ["fill", "#202020", "d", "M21.757 7.705c.702-.494 1.168-1.315 1.168-2.241 0-1.515-1.225-2.74-2.74-2.74-1.515 0-2.74 1.225-2.74 2.74 0 .926.46 1.747 1.168 2.241-.603.21-1.154.532-1.62.95-.64-.546-1.395-.964-2.222-1.211 1.002-.608 1.677-1.714 1.677-2.973C16.448 2.553 14.895 1 12.976 1c-1.918 0-3.471 1.558-3.471 3.471 0 1.259.67 2.365 1.676 2.973-.816.247-1.562.66-2.198 1.197-.466-.409-1.007-.727-1.6-.931.702-.494 1.167-1.315 1.167-2.241 0-1.515-1.225-2.74-2.74-2.74-1.514 0-2.74 1.225-2.74 2.74 0 .926.461 1.747 1.169 2.24C2.353 8.362 1 10.152 1 12.256v.313c0 .01.01.019.019.019h5.808c-.034.261-.053.532-.053.802v.323c0 1.396 1.13 2.527 2.527 2.527h7.36c1.396 0 2.527-1.13 2.527-2.527v-.323c0-.27-.02-.541-.053-.802h5.846c.01 0 .019-.01.019-.02v-.313c-.01-2.108-1.358-3.898-3.243-4.549zM18.205 5.46c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.078-.019-1.942-.897-1.942-1.98zm-7.95-.988c0-1.496 1.216-2.711 2.712-2.711 1.496 0 2.711 1.215 2.711 2.711 0 1.444-1.135 2.626-2.555 2.707h-.313c-1.42-.08-2.555-1.263-2.555-2.707zm-6.439.988c0-1.092.888-1.98 1.98-1.98s1.98.888 1.98 1.98c0 1.078-.869 1.957-1.942 1.98h-.076c-1.073-.019-1.942-.897-1.942-1.98zm3.144 6.363H1.77C1.982 9.8 3.692 8.213 5.767 8.2h.057c.987.005 1.89.37 2.588.964-.684.74-1.192 1.653-1.453 2.66zm11.458 1.89c0 .974-.793 1.767-1.766 1.767h-7.36c-.974 0-1.767-.793-1.767-1.767v-.323c0-2.949 2.355-5.36 5.285-5.446.052.004.11.004.162.004.052 0 .109 0 .161-.004 2.93.085 5.285 2.497 5.285 5.446v.323zm.565-1.89c-.26-1.002-.76-1.9-1.439-2.64.703-.608 1.615-.973 2.612-.983h.057c2.075.014 3.785 1.6 3.999 3.623h-5.229z"], ["fill", "#202020", "d", "M21.757 7.705l-.23-.327-.64.45.74.255.13-.378zm-3.144 0l.13.378.742-.257-.643-.449-.229.328zm-1.62.95l-.259.304.267.227.26-.233-.267-.298zm-2.222-1.211l-.207-.342-.77.467.863.258.114-.383zm-3.59 0l.116.383.861-.26-.77-.465-.207.342zM8.983 8.641l-.264.3.258.227.263-.222-.257-.305zm-1.6-.931l-.23-.327-.642.45.741.255.13-.378zm-3.144 0l.13.378.743-.256-.644-.45-.23.328zm2.588 4.877l.396.05.058-.45h-.454v.4zm12.308 0v-.4h-.454l.057.45.397-.05zM25 12.255h.4v-.002l-.4.002zm-4.777-4.816v.4h.009l-.01-.4zm-.076 0l-.007.4h.007v-.4zm-7.023-.26v.4h.01l.012-.002-.023-.399zm-.314 0l-.023.398.012.001h.011v-.4zm-6.976.26v.4h.009l-.009-.4zm-.076 0l-.007.4h.007v-.4zm1.202 4.383v.4h.31l.077-.3-.387-.1zm-5.19 0l-.399-.042-.046.442h.444v-.4zM5.767 8.2v-.4h-.003l.003.4zm.057 0l.002-.4h-.002v.4zm2.588.964l.294.271.282-.306-.317-.27-.26.305zm4.397-1.22l.036-.399-.024-.002h-.024l.012.4zm.323 0l.012-.4h-.024l-.024.001.036.399zm5.85 3.88l-.387.1.078.3h.31v-.4zm-1.439-2.641l-.261-.303-.312.27.279.303.294-.27zm2.612-.983v-.4h-.003l.003.4zm.057 0l.003-.4h-.003v.4zm3.999 3.623v.4h.444l-.046-.442-.398.042zm-2.225-3.79c.804-.565 1.338-1.505 1.338-2.568h-.8c0 .79-.397 1.491-.998 1.914l.46.654zm1.338-2.568c0-1.736-1.404-3.14-3.14-3.14v.8c1.294 0 2.34 1.046 2.34 2.34h.8zm-3.14-3.14c-1.736 0-3.14 1.404-3.14 3.14h.8c0-1.294 1.046-2.34 2.34-2.34v-.8zm-3.14 3.14c0 1.061.528 2.003 1.339 2.57l.458-.657c-.604-.422-.997-1.123-.997-1.913h-.8zm1.437 1.863c-.652.226-1.25.576-1.756 1.03l.535.596c.425-.382.929-.678 1.483-.87l-.262-.756zM17.253 8.35c-.682-.58-1.486-1.026-2.367-1.29l-.23.767c.772.23 1.478.621 2.078 1.132l.52-.609zm-2.274-.564c1.116-.677 1.869-1.91 1.869-3.315h-.8c0 1.113-.596 2.092-1.484 2.631l.415.684zm1.869-3.315c0-2.14-1.732-3.871-3.872-3.871v.8c1.698 0 3.072 1.374 3.072 3.071h.8zM12.976.6c-2.14 0-3.871 1.737-3.871 3.871h.8c0-1.693 1.374-3.071 3.071-3.071V.6zM9.105 4.471c0 1.404.747 2.638 1.87 3.315l.413-.684c-.891-.538-1.483-1.517-1.483-2.63h-.8zm1.96 2.59c-.87.263-1.664.703-2.34 1.274l.515.611c.597-.502 1.294-.888 2.057-1.12l-.232-.765zM9.247 8.34c-.503-.442-1.09-.787-1.734-1.008l-.26.756c.543.187 1.04.478 1.467.853l.527-.601zm-1.634-.303C8.416 7.472 8.95 6.531 8.95 5.47h-.8c0 .789-.396 1.49-.998 1.914l.46.654zM8.95 5.47c0-1.736-1.404-3.14-3.14-3.14v.8c1.294 0 2.34 1.046 2.34 2.34h.8zm-3.14-3.14c-1.735 0-3.14 1.404-3.14 3.14h.8c0-1.294 1.047-2.34 2.34-2.34v-.8zm-3.14 3.14c0 1.061.529 2.003 1.34 2.569l.458-.656c-.605-.422-.998-1.123-.998-1.913h-.8zm1.438 1.863C2.067 8.036.6 9.975.6 12.255h.8c0-1.928 1.24-3.57 2.97-4.167l-.262-.756zM.6 12.255v.313h.8v-.313H.6zm0 .313c0 .135.063.236.123.296s.161.123.296.123v-.8c.125 0 .217.059.27.111.052.053.111.145.111.27H.6zm.419.419h5.808v-.8H1.019v.8zm5.41-.45c-.034.276-.055.563-.055.852h.8c0-.252.018-.506.05-.752l-.794-.1zm-.055.852v.323h.8v-.323h-.8zm0 .323c0 1.617 1.31 2.927 2.927 2.927v-.8c-1.175 0-2.127-.952-2.127-2.127h-.8zm2.927 2.927h7.36v-.8h-7.36v.8zm7.36 0c1.617 0 2.927-1.31 2.927-2.927h-.8c0 1.175-.951 2.127-2.127 2.127v.8zm2.927-2.927v-.323h-.8v.323h.8zm0-.323c0-.289-.02-.576-.056-.853l-.794.101c.032.246.05.5.05.752h.8zm-.453-.402h5.846v-.8h-5.846v.8zm5.846 0c.135 0 .236-.063.296-.123s.123-.161.123-.296h-.8c0-.125.059-.217.111-.27.053-.053.145-.111.27-.111v.8zm.419-.42v-.313h-.8v.314h.8zm0-.314c-.01-2.282-1.47-4.221-3.513-4.926l-.26.756c1.727.597 2.964 2.238 2.973 4.173l.8-.003zm-6.795-6.794c0-.871.709-1.58 1.58-1.58v-.8c-1.313 0-2.38 1.067-2.38 2.38h.8zm1.58-1.58c.871 0 1.58.709 1.58 1.58h.8c0-1.313-1.067-2.38-2.38-2.38v.8zm1.58 1.58c0 .859-.693 1.561-1.551 1.58l.018.8c1.288-.028 2.333-1.083 2.333-2.38h-.8zm-1.542 1.58h-.002-.002-.001-.001-.002-.003-.001-.001-.002-.001-.002-.001-.002-.001-.001-.004-.001-.002-.001-.001-.001-.002-.001-.002v.8H20.223v-.8zm-.038 0h-.002-.003-.002-.001-.001-.006-.001-.002-.001-.002-.001-.005-.001-.002-.001-.001-.001-.002-.003v.8H20.185v-.8zm-.031 0c-.86-.015-1.55-.715-1.55-1.58h-.8c0 1.3 1.04 2.357 2.336 2.38l.014-.8zm-9.499-2.568c0-1.275 1.037-2.311 2.312-2.311v-.8c-1.717 0-3.112 1.395-3.112 3.111h.8zm2.312-2.311c1.275 0 2.311 1.036 2.311 2.311h.8c0-1.716-1.394-3.111-3.111-3.111v.8zm2.311 2.311c0 1.23-.968 2.239-2.177 2.308l.045.798c1.63-.092 2.932-1.448 2.932-3.106h-.8zm-2.155 2.307h-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001H13h-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002v.8H13.124v-.8zm-.156 0h-.001-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001-.002-.001-.003-.001-.002-.001-.001-.002-.001-.001v.8H12.967v-.8zm-.134 0c-1.21-.068-2.178-1.077-2.178-2.307h-.8c0 1.658 1.302 3.014 2.932 3.106l.046-.798zM4.216 5.46c0-.871.709-1.58 1.58-1.58v-.8c-1.313 0-2.38 1.067-2.38 2.38h.8zm1.58-1.58c.871 0 1.58.709 1.58 1.58h.8c0-1.313-1.067-2.38-2.38-2.38v.8zm1.58 1.58c0 .859-.693 1.561-1.55 1.58l.017.8c1.289-.028 2.333-1.083 2.333-2.38h-.8zm-1.542 1.58h-.002-.002-.003-.002-.001-.001-.001-.001-.001-.002-.001-.002-.001-.003-.001-.001-.001-.002-.001-.001-.001-.001H5.8h-.002-.001-.001v.8H5.835v-.8zm-.038 0h-.002-.005-.002-.001-.001-.001-.001-.001-.002-.001-.002-.003-.001-.001-.001-.001-.001-.002-.001-.001-.001-.001-.002-.001-.001v.8H5.797v-.8zm-.03 0c-.856-.015-1.55-.716-1.55-1.58h-.8c0 1.301 1.044 2.357 2.335 2.38l.014-.8zm1.194 4.383H1.77v.8h5.19v-.8zm-4.793.442C2.36 10.041 3.901 8.612 5.77 8.6l-.005-.8c-2.281.016-4.159 1.758-4.393 3.981l.795.084zm3.6-3.265H5.797v-.8h-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.002H5.774h-.001-.002-.002-.001-.001v.8zm.03 0H5.825v-.8h-.001-.001-.001-.002-.001-.002-.007-.002-.001-.002-.001-.001H5.8 5.8h-.001-.001-.001v.8zm.026 0c.888.004 1.7.333 2.33.869l.519-.61c-.766-.65-1.758-1.054-2.845-1.059l-.004.8zm2.296.293c-.728.788-1.268 1.758-1.547 2.83l.775.2c.244-.94.72-1.794 1.36-2.488l-.588-.542zm9.9 4.82c0 .753-.615 1.367-1.367 1.367v.8c1.194 0 2.166-.972 2.166-2.167h-.8zm-1.367 1.367h-7.36v.8h7.36v-.8zm-7.36 0c-.753 0-1.367-.614-1.367-1.367h-.8c0 1.195.972 2.167 2.166 2.167v-.8zm-1.367-1.367v-.323h-.8v.323h.8zm0-.323c0-2.732 2.183-4.967 4.897-5.047l-.024-.8c-3.145.093-5.673 2.682-5.673 5.847h.8zm4.849-5.048c.073.007.15.006.198.006v-.8c-.056 0-.095 0-.126-.003l-.072.797zm.198.006c.048 0 .124 0 .197-.006l-.072-.797c-.031.003-.07.003-.125.003v.8zm.15-.005c2.713.08 4.896 2.315 4.896 5.047h.8c0-3.165-2.527-5.754-5.673-5.846l-.024.8zm4.896 5.047v.323h.8v-.323h-.8zm1.352-1.668c-.277-1.066-.808-2.021-1.53-2.81l-.59.541c.636.694 1.102 1.534 1.346 2.471l.774-.202zm-1.564-2.236c.633-.548 1.454-.877 2.354-.886l-.008-.8c-1.094.01-2.097.412-2.87 1.08l.524.606zm2.35-.886H20.185v-.8h-.001-.001-.001-.001-.001-.001H20.165h-.001-.001-.001-.001-.001-.001-.001-.001-.001v.8zm.029 0H20.214v-.8h-.001-.001H20.198h-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001-.001v.8zm.026 0c1.869.013 3.41 1.442 3.603 3.265l.796-.084c-.235-2.223-2.113-3.965-4.394-3.98l-.005.799zm4 2.823h-5.228v.8h5.229v-.8z", "mask", "url(#v8f0hpt10a)"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 32 32"], ["d", "M24.507 0H2.86C1.284 0 0 1.284 0 2.861V29.14C0 30.716 1.284 32 2.861 32h21.646c.961 0 1.743-.782 1.743-1.743V1.743C26.25.782 25.468 0 24.507 0zM1.25 29.139c0-.889.723-1.612 1.611-1.612H22.5v3.223H2.86c-.888 0-1.611-.723-1.611-1.611zM25 30.257c0 .272-.221.493-.493.493h-.757v-3.223h.757c.171 0 .337-.024.493-.07v2.8zm0-4.473c0 .272-.221.493-.493.493H3.75V11.125c0-.345-.28-.625-.625-.625s-.625.28-.625.625V26.3c-.46.058-.885.226-1.25.475V2.861c0-.764.535-1.405 1.25-1.57v9.66c0 .345.28.625.625.625s.625-.28.625-.625V1.25h20.757c.272 0 .493.221.493.493v24.041z"], ["d", "M18.807 6.74c-.473 0-.937.09-1.37.264-.68-1.005-1.822-1.627-3.062-1.627-1.24 0-2.382.622-3.061 1.627-.434-.173-.898-.263-1.37-.263-2.037 0-3.694 1.657-3.694 3.693 0 1.565.96 2.922 2.386 3.456v7.294c0 .533.434.966.966.966h9.546c.532 0 .966-.433.966-.966V13.89C21.54 13.356 22.5 12 22.5 10.434c0-2.036-1.657-3.693-3.693-3.693zm-8.92 14.16v-1.25h8.977v1.25H9.886zm9.463-8.083c-.284.064-.486.317-.486.61V18.4H9.886v-4.974c0-.292-.201-.545-.486-.61-1.119-.253-1.9-1.233-1.9-2.382 0-1.347 1.096-2.443 2.443-2.443.46 0 .906.128 1.293.37.154.096.342.12.515.068.173-.054.315-.18.388-.345.392-.885 1.27-1.457 2.236-1.457.967 0 1.845.572 2.236 1.457.073.166.215.291.388.345.173.053.361.028.515-.068.387-.242.834-.37 1.293-.37 1.347 0 2.443 1.096 2.443 2.443 0 1.15-.781 2.129-1.9 2.383zM3.125 13.138c-.345 0-.625.28-.625.626 0 .345.28.625.625.625s.625-.28.625-.625c0-.346-.28-.626-.625-.626z"], ["xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 64 65"], ["clip-path", "url(#clipHelp)"], ["d", "M32 .6C14.3.6 0 14.9 0 32.6s14.3 32 32 32 32-14.3 32-32S49.7.6 32 .6zm1.7 47.8c-.6.6-1.5.8-2.4.8-.8 0-1.7-.2-2.3-.8-.6-.6-.9-1.3-.9-2.3 0-.9.4-1.7 1.1-2.3.7-.6 1.5-.9 2.4-.9.8 0 1.7.2 2.3.9.6.7.9 1.3.9 2.3-.2 1-.5 1.9-1.1 2.3zM39 27.7c-.4 1.1-.8 1.7-1.5 2.3l-1.9 1.9-1.3 1.3c-.2.4-.6.9-.8 1.5-.2.6-.4 1.3-.4 1.9 0 .6.2 1.5.4 2.6-.9.4-1.7.8-2.4.8-1.9 0-2.8-1.1-2.8-3 0-.8.2-1.7.6-2.3.4-.9.8-1.5 1.1-1.9.4-.4.9-1.1 1.7-1.9l1.7-1.7c.4-.4.6-1.1 1.1-1.9.4-.8.6-1.5.6-2.3 0-1.1-.2-1.7-.9-2.1-.6-.4-1.3-.6-2.1-.6-1.1 0-1.9.2-2.8.8-.7.5-1.3 1.4-1.6 2.5-2.3-.4-3.4-1.1-3.4-2.3 0-1.3.6-2.4 2.1-3 1.5-.9 3.2-1.1 5.1-1.1 2.3 0 4.5.4 6 1.5s2.3 2.6 2.3 4.5c.1.4-.1 1.4-.8 2.5z"], ["id", "clipHelp"], ["fill", "#fff", "d", "M0 0H64V64H0z", "transform", "translate(0 .6)"], ["viewBox", "0 0 128 128", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["clip-path", "url(#clipRecipeHelp)"], ["d", "M126.689 65.5088C126.689 85.8154 116.964 103.879 101.935 115.293C100.072 116.707 97.3936 115.369 97.3936 113.03C97.3936 108.62 93.8184 105.044 89.4072 105.044H21.3613C17.5742 105.044 14.0088 103.182 11.9111 100.028C5.33301 90.1377 1.5 78.2705 1.5 65.5088C1.5 30.9961 29.5244 3.01758 64.0947 3.01758C98.6651 3.01758 126.689 30.9961 126.689 65.5088Z", "fill", "#1177BC"], ["d", "M121.324 31.0752H99.3525V14.8584C99.3525 8.31934 104.653 3.01758 111.192 3.01758H112.894C118.961 3.01758 123.879 7.93652 123.879 14.0039V28.5205C123.879 29.9316 122.735 31.0752 121.324 31.0752Z", "fill", "#D2D1CD"], ["d", "M112.894 3.01855C106.826 3.01855 101.907 7.92871 101.907 13.9863V115.313C96.3711 119.511 90.1152 122.807 83.3564 124.985C77.2881 126.941 70.8154 127.23 64.0947 127.23C52.9336 127.227 42.4561 124.186 33.3828 119C26.749 115.209 22.7061 108.105 22.7061 100.464V13.9854C22.7061 7.92871 27.624 3.01758 33.6914 3.01758H112.894V3.01855Z", "fill", "#EFEFEF"], ["d", "M65.1172 32.6074V33.8788C65.1172 34.5839 64.5449 35.1562 63.8389 35.1562H45.9551C45.25 35.1562 44.6777 34.5839 44.6777 33.8788V32.6074C44.6777 31.9023 45.25 31.33 45.9551 31.33H63.8389C64.5449 31.33 65.1172 31.9023 65.1172 32.6074Z", "fill", "#797979"], ["d", "M75.3359 45.999V47.2695C75.3359 47.9755 74.7646 48.5468 74.0586 48.5468H45.9551C45.25 48.5468 44.6777 47.9755 44.6777 47.2695V45.999C44.6777 45.2929 45.25 44.7216 45.9551 44.7216H74.0586C74.7646 44.7216 75.3359 45.2929 75.3359 45.999ZM45.9551 56.1992H71.5039C72.209 56.1992 72.7812 55.6269 72.7812 54.9218V53.6503C72.7812 52.9453 72.209 52.373 71.5039 52.373H45.9551C45.25 52.373 44.6777 52.9453 44.6777 53.6503V54.9218C44.6777 55.6269 45.25 56.1992 45.9551 56.1992ZM74.0586 60.0253H45.9551C45.25 60.0253 44.6777 60.5966 44.6777 61.3027V62.5732C44.6777 63.2792 45.25 63.8505 45.9551 63.8505H74.0586C74.7646 63.8505 75.3359 63.2792 75.3359 62.5732V61.3027C75.3359 60.5966 74.7646 60.0253 74.0586 60.0253ZM70.8223 75.7118H45.9551C45.25 75.7118 44.6777 76.2831 44.6777 76.9892V78.2597C44.6777 78.9658 45.25 79.537 45.9551 79.537H70.8223C71.5283 79.537 72.0996 78.9658 72.0996 78.2597V76.9892C72.0996 76.2831 71.5283 75.7118 70.8223 75.7118ZM45.9551 71.6308H63.8389C64.5449 71.6308 65.1172 71.0585 65.1172 70.3525V69.082C65.1172 68.3769 64.5449 67.8046 63.8389 67.8046H45.9551C45.25 67.8046 44.6777 68.3769 44.6777 69.082V70.3525C44.6777 71.0585 45.25 71.6308 45.9551 71.6308Z", "fill", "#DCDCDC"], ["d", "M48.5098 90.1191V90.1269C48.5098 91.1806 47.6553 92.0361 46.6006 92.0361H46.5869C45.5322 92.0361 44.6777 91.1806 44.6777 90.1269V90.1191C44.6777 89.0644 45.5322 88.2099 46.5869 88.2099H46.6006C47.6553 88.2099 48.5098 89.0644 48.5098 90.1191ZM52.5996 88.2099H52.585C51.5312 88.2099 50.6758 89.0644 50.6758 90.1191V90.1269C50.6758 91.1816 51.5312 92.0361 52.585 92.0361H52.5996C53.6533 92.0361 54.5088 91.1816 54.5088 90.1269V90.1191C54.5088 89.0644 53.6533 88.2099 52.5996 88.2099ZM58.5977 88.2099H58.584C57.5293 88.2099 56.6748 89.0644 56.6748 90.1191V90.1269C56.6748 91.1816 57.5293 92.0361 58.584 92.0361H58.5977C59.6523 92.0361 60.5068 91.1816 60.5068 90.1269V90.1191C60.5068 89.0644 59.6523 88.2099 58.5977 88.2099Z", "fill", "#D7D7D7"], ["d", "M29.3486 13.9854V105.044H22.7061V13.9854C22.7061 7.92871 27.624 3.01758 33.6914 3.01758H40.334C34.2666 3.01855 29.3486 7.92871 29.3486 13.9854Z", "fill", "#FAFAFA"], ["d", "M49.3008 3.24899C52.793 6.73532 53.6016 11.58 51.1074 14.0703C48.6123 16.5605 43.7598 15.7529 40.2676 12.2666C36.7754 8.78122 35.9668 3.93552 38.4609 1.44528C40.9551 -1.04495 45.8086 -0.237334 49.3008 3.24899Z", "fill", "#ECB700"], ["d", "M49.3007 3.249C49.872 3.81931 50.371 4.42673 50.7958 5.05368C51.0898 5.48728 51.1289 6.05368 50.8847 6.51658C50.8828 6.51853 50.8818 6.52146 50.8808 6.52439C49.2294 9.63669 44.3535 10.29 39.9892 7.9824C39.5644 7.75876 39.1611 7.51462 38.7792 7.25388C37.3564 6.28122 36.79 4.41697 37.498 2.84665C37.5019 2.83786 37.5058 2.82907 37.5097 2.82029C37.2832 3.37693 37.2802 3.874 37.5576 4.15036C38.0566 4.64841 39.2695 4.24509 40.2675 3.249C41.2656 2.2529 41.6699 1.04099 41.1708 0.542942C40.8945 0.267551 40.3974 0.269504 39.8398 0.49509C42.4882 -0.712918 46.373 0.326144 49.3007 3.249Z", "fill", "#F1CA50"], ["d", "M111.876 36.5156L110.241 44.2109C109.275 48.7558 105.257 52.0068 100.603 52.0068C97.9366 52.0068 95.7754 49.8496 95.7754 47.1875C95.7754 42.542 99.0323 38.5293 103.585 37.5654L111.292 35.9326C111.641 35.8584 111.95 36.168 111.876 36.5156ZM11.4746 72.2246L13.1104 79.9199C14.0762 84.4648 18.0948 87.7158 22.7491 87.7158C25.4141 87.7158 27.5752 85.5586 27.5752 82.8965C27.5752 78.251 24.3194 74.2383 19.7666 73.2744L12.0596 71.6416C11.711 71.5674 11.4014 71.8769 11.4746 72.2246Z", "fill", "#059B7E"], ["d", "M103.885 51.4434C103.035 51.7432 102.074 51.4717 101.539 50.7471C101.519 50.7187 101.498 50.6904 101.478 50.6621C100.905 49.8506 100.986 48.7539 101.665 48.0293C102.594 47.04 103.46 46.0254 104.194 45.0498L107.562 40.5771C107.636 40.4805 107.626 40.3457 107.54 40.2607C107.455 40.1758 107.32 40.166 107.224 40.2383L102.744 43.6016C102.332 43.9111 101.912 44.2432 101.491 44.5937C101.196 44.8398 100.755 44.5586 100.859 44.1885C101.634 41.4404 103.593 39.0781 106.351 37.8584L110.161 36.1719L111.292 35.9326C111.641 35.8594 111.949 36.168 111.876 36.5156L110.241 44.2109C109.513 47.6377 107.048 50.3271 103.885 51.4434ZM19.7666 73.2734L12.0596 71.6416C11.7109 71.5674 11.4014 71.877 11.4756 72.2246L11.7148 73.3535L13.4033 77.1572C14.626 79.9111 16.9912 81.8662 19.7451 82.6406C20.1152 82.7441 20.3975 82.3037 20.1504 82.0088C19.7998 81.5879 19.4658 81.1699 19.1562 80.7588L15.7881 76.2861C15.7158 76.1895 15.7256 76.0547 15.8105 75.9697C15.8955 75.8848 16.0303 75.875 16.1269 75.9473L20.6064 79.3105C21.584 80.0439 22.6006 80.9082 23.5918 81.835C24.3174 82.5127 25.416 82.5938 26.2285 82.0234C26.2578 82.0029 26.2861 81.9824 26.3144 81.9609C27.04 81.4277 27.3125 80.4678 27.0117 79.6201C25.8945 76.4619 23.2002 74.001 19.7666 73.2734Z", "fill", "#0AB59E"], ["d", "M95.7754 61.4277C87.3096 61.4277 80.4463 68.2792 80.4463 76.7314C80.4463 85.1835 87.3096 92.0351 95.7754 92.0351C104.241 92.0351 111.104 85.1835 111.104 76.7314C111.104 68.2792 104.241 61.4277 95.7754 61.4277ZM95.7754 84.3837C91.542 84.3837 88.1104 80.9579 88.1104 76.7324C88.1104 72.5058 91.542 69.08 95.7754 69.08C100.009 69.08 103.44 72.5058 103.44 76.7324C103.44 80.9579 100.009 84.3837 95.7754 84.3837Z", "fill", "#FAFAFA"], ["d", "M95.7754 66.5292C90.1318 66.5292 85.5557 71.0976 85.5557 76.7324C85.5557 82.3671 90.1318 86.9345 95.7754 86.9345C101.42 86.9345 105.995 82.3671 105.995 76.7324C105.995 71.0976 101.42 66.5292 95.7754 66.5292ZM95.7754 81.8329C92.9531 81.8329 90.666 79.5497 90.666 76.7314C90.666 73.914 92.9531 71.6308 95.7754 71.6308C98.5977 71.6308 100.885 73.914 100.885 76.7314C100.885 79.5497 98.5977 81.8329 95.7754 81.8329Z", "fill", "#FDDFA6"], ["d", "M31.3379 39.249C36.3271 44.2294 31.9043 49.5038 25.9179 55.4814C19.9316 61.4579 14.6484 65.872 9.65916 60.8915C4.66991 55.9111 5.47948 47.0292 11.4658 41.0527C17.4521 35.0751 26.3496 34.2685 31.3379 39.249Z", "fill", "#CC7556"], ["d", "M36.4648 61.1181C35.9121 62.1025 35.206 63.042 34.3486 63.8974C33.4922 64.7529 32.5508 65.458 31.5654 66.0097C30.0342 66.8672 28.0957 66.6562 26.8457 65.4248C26.8379 65.417 26.8291 65.4091 26.8213 65.4004L21.2617 59.8506C18.9209 61.3379 16.5273 61.4365 14.4013 59.3134C10.8672 55.7851 11.4404 49.4941 15.6806 45.2607C19.9209 41.0273 26.2236 40.455 29.7568 43.9834C31.8828 46.1064 31.7842 48.4951 30.2939 50.832L35.8545 56.3828C35.8623 56.3906 35.8701 56.3994 35.8789 56.4072C37.1123 57.6552 37.3242 59.5908 36.4648 61.1181Z", "fill", "#994122"], ["d", "M26.7969 47.3408C26.8047 47.3486 26.8135 47.3564 26.8223 47.3652L35.8545 56.3828L35.8789 56.4072C37.0694 57.6093 37.3643 59.4472 36.5655 60.9365C36.5557 60.955 36.5459 60.9736 36.5362 60.9912C36.1524 61.6963 35.5762 62.2714 34.8701 62.6543C34.8526 62.664 34.834 62.6738 34.8155 62.6836C33.3233 63.4814 31.4824 63.1875 30.2793 61.999C30.2705 61.9902 30.2627 61.9824 30.2539 61.9746L21.2217 52.956C21.2129 52.9482 21.2051 52.9394 21.1963 52.9316C20.0069 51.7304 19.711 49.8925 20.5098 48.4033C20.5196 48.3847 20.5303 48.3671 20.5401 48.3486C20.9229 47.6435 21.5 47.0673 22.2071 46.6845C22.2246 46.6738 22.2432 46.665 22.2617 46.6552C23.753 45.8574 25.5938 46.1523 26.7969 47.3408Z", "fill", "#CC7556"], ["d", "M31.9033 99.6874C31.9033 101.097 30.7598 102.238 29.3486 102.238C27.9375 102.238 26.793 101.097 26.793 99.6874C26.793 98.2792 27.9375 97.1367 29.3486 97.1367C30.7598 97.1367 31.9033 98.2792 31.9033 99.6874ZM34.458 18.0673C33.0469 18.0673 31.9033 19.2089 31.9033 20.6171C31.9033 22.0263 33.0469 23.1679 34.458 23.1679C35.8691 23.1679 37.0127 22.0263 37.0127 20.6171C37.0127 19.2089 35.8691 18.0673 34.458 18.0673ZM90.666 97.1367C89.2549 97.1367 88.1104 98.2792 88.1104 99.6874C88.1104 101.097 89.2549 102.238 90.666 102.238C92.0771 102.238 93.2207 101.097 93.2207 99.6874C93.2207 98.2792 92.0771 97.1367 90.666 97.1367Z", "fill", "#E43950"], ["d", "M98.3301 30.8203C98.3301 32.2285 97.1865 33.3711 95.7754 33.3711C94.3643 33.3711 93.2207 32.2285 93.2207 30.8203C93.2207 29.4111 94.3643 28.2695 95.7754 28.2695C97.1865 28.2695 98.3301 29.4111 98.3301 30.8203ZM116.215 63.9785C114.804 63.9785 113.66 65.1201 113.66 66.5293C113.66 67.9375 114.804 69.0801 116.215 69.0801C117.626 69.0801 118.77 67.9375 118.77 66.5293C118.77 65.1201 117.626 63.9785 116.215 63.9785ZM103.44 56.3262C102.029 56.3262 100.885 57.4687 100.885 58.8769C100.885 60.2861 102.029 61.4277 103.44 61.4277C104.852 61.4277 105.995 60.2861 105.995 58.8769C105.995 57.4687 104.852 56.3262 103.44 56.3262Z", "fill", "#86523E"], ["d", "M82.9404 0.532186C83.6348 -0.16215 84.7705 -0.184611 85.4668 0.508748C85.4717 0.512654 85.4756 0.517537 85.4795 0.521444C90.4688 5.50191 90.4688 13.5771 85.4795 18.5566C80.4912 23.5371 72.4024 23.5371 67.4141 18.5566C67.4092 18.5527 67.4053 18.5478 67.4014 18.5439C66.7071 17.8496 66.7295 16.7158 67.4248 16.0214L82.9404 0.532186Z", "fill", "#EF7280"], ["d", "M80.915 2.55273C81.4121 2.87012 81.8838 3.24414 82.3184 3.67773C85.5605 6.91504 85.5605 12.1641 82.3184 15.4014C79.0752 18.6387 73.8184 18.6387 70.5752 15.4014C70.1406 14.9678 69.7666 14.4971 69.4492 14.001L80.915 2.55273Z", "fill", "#E43950"], ["d", "M82.8633 11.2558C82.7217 11.7832 81.751 11.9814 80.6943 11.6982C79.6387 11.416 78.8965 10.7597 79.0381 10.2324C79.1797 9.70504 80.1504 9.5068 81.207 9.78903C82.2627 10.0722 83.0049 10.7285 82.8633 11.2558ZM77.1406 12.1259C76.6133 12.2675 76.4141 13.2373 76.6973 14.292C76.9805 15.3457 77.6377 16.0859 78.166 15.9453C78.6943 15.8037 78.8926 14.8349 78.6103 13.7802C78.3271 12.7256 77.6689 11.9853 77.1406 12.1259ZM72.4502 12.1318C71.6768 12.9033 71.3633 13.8427 71.75 14.2285C72.1367 14.6142 73.0762 14.3017 73.8496 13.5293C74.623 12.7578 74.9365 11.8193 74.5498 11.4326C74.1631 11.0468 73.2236 11.3593 72.4502 12.1318ZM81.1436 4.84958C80.7568 4.46383 79.8164 4.77731 79.0439 5.54879C78.2705 6.32125 77.957 7.25973 78.3437 7.64547C78.7305 8.03122 79.6709 7.71872 80.4434 6.94625C81.2168 6.17477 81.5303 5.23629 81.1436 4.84958Z", "fill", "#FD7C66"], ["d", "M83.3564 124.985C77.2881 126.943 70.8105 128 64.0889 128C42.2656 128 23.0537 116.848 11.8516 99.9423H77.375C78.7861 99.9423 79.9297 101.085 79.9297 102.493V117.032C79.9297 120.161 81.251 122.987 83.3564 124.985Z", "fill", "#FCFCFC"], ["id", "clipRecipeHelp"], ["width", "128", "height", "128", "fill", "white"], ["d", "M14.7499 1.75002H14.9999V8.25002H12.9999V3.50002C13.0005 3.03606 13.185 2.59124 13.5131 2.26316C13.8412 1.93509 14.286 1.75055 14.7499 1.75002ZM13.9999 13.25C13.9999 13.3826 14.0526 13.5098 14.1464 13.6036C14.2402 13.6973 14.3673 13.75 14.4999 13.75C14.6326 13.75 14.7597 13.6973 14.8535 13.6036C14.9473 13.5098 14.9999 13.3826 14.9999 13.25V8.75002H13.9999V13.25ZM1.99995 6.25002V8.25002H2.49995V6.25002H1.99995ZM7.99995 4.50003C7.30771 4.50003 6.63102 4.7053 6.05545 5.08988C5.47988 5.47447 5.03128 6.02109 4.76637 6.66063C4.50146 7.30017 4.43215 8.00391 4.5672 8.68284C4.70225 9.36177 5.03559 9.98541 5.52507 10.4749C6.01456 10.9644 6.6382 11.2977 7.31713 11.4328C7.99607 11.5678 8.6998 11.4985 9.33934 11.2336C9.97888 10.9687 10.5255 10.5201 10.9101 9.94452C11.2947 9.36895 11.4999 8.69226 11.4999 8.00002C11.4989 7.07209 11.1298 6.18246 10.4737 5.52631C9.81751 4.87016 8.92788 4.50108 7.99995 4.50003ZM1.74995 13.25C1.74995 13.3826 1.80263 13.5098 1.8964 13.6036C1.99016 13.6973 2.11734 13.75 2.24995 13.75C2.38256 13.75 2.50973 13.6973 2.6035 13.6036C2.69727 13.5098 2.74995 13.3826 2.74995 13.25V8.75002H1.74995V13.25ZM2.49995 4.50003V2.48421C2.49995 2.41791 2.47361 2.35432 2.42673 2.30744C2.37984 2.26055 2.31625 2.23421 2.24995 2.23421C2.18364 2.23421 2.12006 2.26055 2.07317 2.30744C2.02629 2.35432 1.99995 2.41791 1.99995 2.48421V4.50003C1.99995 4.56633 2.02629 4.62992 2.07317 4.6768C2.12006 4.72369 2.18364 4.75003 2.24995 4.75003C2.31625 4.75003 2.37984 4.72369 2.42673 4.6768C2.47361 4.62992 2.49995 4.56633 2.49995 4.50003ZM13.449 8.75002C13.2929 9.88353 12.7872 10.9401 12.0023 11.7727C11.2174 12.6053 10.1925 13.1723 9.07013 13.3949C7.94779 13.6175 6.78397 13.4846 5.74075 13.0146C4.69753 12.5446 3.82684 11.761 3.24995 10.7729V8.50002C3.24995 8.43372 3.22361 8.37013 3.17673 8.32325C3.12984 8.27636 3.06625 8.25002 2.99995 8.25002V5.7384C2.94546 5.74608 2.89051 5.74996 2.83548 5.75002H1.66436C1.50568 5.75004 1.34868 5.71763 1.20298 5.65477C1.05729 5.59192 0.925976 5.49995 0.817112 5.38451C0.708248 5.26907 0.624127 5.13259 0.569914 4.98347C0.515702 4.83434 0.492541 4.67571 0.501855 4.51731L0.695011 1.98421C0.696814 1.95124 0.705131 1.91896 0.71948 1.88922C0.73383 1.85948 0.753928 1.83288 0.778615 1.81095C0.803302 1.78902 0.832088 1.7722 0.863312 1.76146C0.894535 1.75072 0.927577 1.74627 0.960529 1.74837C0.993482 1.75047 1.02569 1.75907 1.0553 1.77369C1.08491 1.78831 1.11133 1.80864 1.13303 1.83353C1.15474 1.85841 1.1713 1.88734 1.18176 1.91866C1.19222 1.94998 1.19637 1.98306 1.19398 2.01599L1.00092 4.54787C0.995779 4.63816 1.00913 4.72855 1.04015 4.81351C1.07117 4.89846 1.11921 4.97618 1.18132 5.04192C1.24343 5.10766 1.31831 5.16002 1.40137 5.19581C1.48443 5.23159 1.57392 5.25004 1.66436 5.25003H2.83554C2.92607 5.25002 3.01565 5.23152 3.09877 5.19565C3.18189 5.15978 3.2568 5.1073 3.31891 5.04143C3.38102 4.97557 3.42901 4.8977 3.45994 4.81262C3.49086 4.72753 3.50408 4.63702 3.49876 4.54665L3.30579 2.01599C3.30219 1.95018 3.32473 1.8856 3.36851 1.83632C3.41228 1.78704 3.47375 1.75704 3.53953 1.75285C3.60531 1.74866 3.67009 1.77062 3.71976 1.81395C3.76943 1.85728 3.79998 1.91847 3.80476 1.98421L3.9806 4.24606C4.53903 3.64803 5.22386 3.18215 5.98518 2.88238C6.7465 2.58262 7.56512 2.45651 8.38136 2.51327C9.1976 2.57003 9.99089 2.80821 10.7034 3.21046C11.4159 3.6127 12.0297 4.16888 12.4999 4.83843V8.50002C12.4999 8.56633 12.5263 8.62992 12.5732 8.6768C12.6201 8.72369 12.6836 8.75002 12.7499 8.75002H13.449ZM11.9999 8.00002C11.9999 7.2089 11.7654 6.43554 11.3258 5.77774C10.8863 5.11995 10.2616 4.60726 9.53068 4.30451C8.79978 4.00176 7.99551 3.92254 7.21959 4.07688C6.44366 4.23123 5.73093 4.61219 5.17152 5.1716C4.61211 5.73101 4.23115 6.44374 4.07681 7.21966C3.92247 7.99559 4.00168 8.79985 4.30443 9.53076C4.60718 10.2617 5.11987 10.8864 5.77767 11.3259C6.43546 11.7654 7.20882 12 7.99995 12C9.06044 11.9988 10.0772 11.577 10.827 10.8271C11.5769 10.0772 11.9987 9.06052 11.9999 8.00002Z"], ["viewBox", "0 0 32 32", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M29.7425 8.06222H26.1582V2.21007C26.1582 1.67561 25.725 1.24255 25.1907 1.24255H6.80935C6.27502 1.24255 5.84184 1.67561 5.84184 2.21007V8.06222H2.25753C1.01279 8.06222 0 9.07488 0 10.3197V22.7329C0 23.9777 1.01279 24.9905 2.25753 24.9905H5.84184V29.7897C5.84184 30.3242 6.27502 30.7572 6.80935 30.7572H25.1905C25.7248 30.7572 26.158 30.3242 26.158 29.7897V24.9905H29.7423C30.9871 24.9905 31.9999 23.9777 31.9999 22.7329V10.3197C32 9.07501 30.9872 8.06222 29.7425 8.06222ZM7.77686 3.17758H24.223V8.06222H7.77686V3.17758ZM24.223 28.8222H7.77686V19.224H24.223V28.8222ZM30.065 22.7329C30.065 22.9077 29.9173 23.0554 29.7425 23.0554H26.1582V18.2564C26.1582 17.722 25.725 17.2889 25.1907 17.2889H6.80935C6.27502 17.2889 5.84184 17.722 5.84184 18.2564V23.0554H2.25753C2.08273 23.0554 1.93502 22.9077 1.93502 22.7329V10.3197C1.93502 10.1448 2.08273 9.99725 2.25753 9.99725H6.80935H25.1905H29.7423C29.9171 9.99725 30.0648 10.1448 30.0648 10.3197V22.7329H30.065Z"], ["d", "M25.1904 15.0192C25.9505 15.0192 26.5666 14.4031 26.5666 13.643C26.5666 12.883 25.9505 12.2668 25.1904 12.2668C24.4304 12.2668 23.8142 12.883 23.8142 13.643C23.8142 14.4031 24.4304 15.0192 25.1904 15.0192Z"], ["d", "M20.4018 21.1333H11.5982C11.0639 21.1333 10.6307 21.5664 10.6307 22.1008C10.6307 22.6353 11.0639 23.0683 11.5982 23.0683H20.4018C20.9361 23.0683 21.3693 22.6353 21.3693 22.1008C21.3693 21.5665 20.9362 21.1333 20.4018 21.1333Z"], ["d", "M20.4018 24.9775H11.5982C11.0639 24.9775 10.6307 25.4106 10.6307 25.9451C10.6307 26.4795 11.0639 26.9126 11.5982 26.9126H20.4018C20.9361 26.9126 21.3693 26.4795 21.3693 25.9451C21.3693 25.4106 20.9362 24.9775 20.4018 24.9775Z"], ["viewBox", "0 -192 512 512", "xmlns", "http://www.w3.org/2000/svg"], ["d", "m320 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["d", "m128 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["d", "m512 64c0 35.347656-28.652344 64-64 64s-64-28.652344-64-64 28.652344-64 64-64 64 28.652344 64 64zm0 0"], ["width", "279", "height", "243", "viewBox", "0 0 279 243", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["cx", "199", "cy", "80", "r", "80", "fill", "#E9F6FF"], ["cx", "47", "cy", "184", "r", "40", "fill", "#5AA9DF"], ["cx", "80.5", "cy", "68.5", "r", "40", "stroke", "#5AA9DF", "stroke-dasharray", "2 10"], ["cx", "216", "cy", "114", "r", "22.5", "stroke", "#5AA9DF", "stroke-dasharray", "2 10"], ["filter", "url(#filter0_bi)"], ["d", "M221.916 198H36.0845C38.1794 148.493 78.9777 109 129 109C179.022 109 219.821 148.493 221.916 198Z", "fill", "white", "fill-opacity", "0.6"], ["filter", "url(#filter1_bi)"], ["d", "M11 219.5C11 213.149 16.1487 208 22.5 208H236.5C242.851 208 248 213.149 248 219.5C248 225.851 242.851 231 236.5 231H22.5C16.1487 231 11 225.851 11 219.5Z", "fill", "white", "fill-opacity", "0.6"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M147.85 95C149.151 91.9557 149.876 88.5688 149.876 85C149.876 71.7452 139.874 61 127.534 61C115.195 61 105.193 71.7452 105.193 85C105.193 88.6387 105.946 92.0882 107.295 95.1783C61.3702 104.98 26.1653 146.756 22.6335 198H37.5764C41.5855 148.132 80.5385 109 128 109C175.461 109 214.414 148.132 218.423 198H233.366C229.813 146.439 194.193 104.463 147.85 95ZM134.051 85C134.051 88.866 131.133 92 127.534 92C123.936 92 121.018 88.866 121.018 85C121.018 81.134 123.936 78 127.534 78C131.133 78 134.051 81.134 134.051 85Z", "fill", "#1177BC"], ["x", "6.5", "y", "204.5", "width", "243", "height", "32", "rx", "16", "stroke", "#1177BC", "stroke-width", "13", "stroke-linecap", "round", "stroke-linejoin", "round"], ["d", "M137.476 176.545C138.462 176.545 139.443 176.098 140.133 175.229C141.385 173.654 141.21 171.287 139.744 169.942C136.898 167.332 133.118 165.888 129.101 165.875C129.083 165.875 129.065 165.875 129.046 165.875C125.05 165.875 121.284 167.294 118.436 169.874C116.962 171.209 116.775 173.575 118.018 175.158C119.26 176.741 121.463 176.943 122.937 175.608C124.504 174.188 126.73 173.375 129.048 173.375H129.08C131.41 173.383 133.645 174.211 135.212 175.647C135.869 176.25 136.675 176.545 137.476 176.545Z", "fill", "#1177BC"], ["d", "M110.566 152H110.525C108.596 152 107.054 153.679 107.054 155.75C107.054 157.821 108.637 159.5 110.566 159.5C112.494 159.5 114.057 157.821 114.057 155.75C114.057 153.679 112.494 152 110.566 152Z", "fill", "#1177BC"], ["d", "M148.142 159.472C148.155 159.474 148.169 159.477 148.182 159.478C148.256 159.487 148.331 159.488 148.406 159.492C148.449 159.494 148.493 159.499 148.537 159.5H148.556C150.475 159.5 152.037 157.835 152.047 155.771C152.056 153.951 150.857 152.427 149.257 152.076C149.245 152.074 149.233 152.073 149.221 152.07C149.121 152.049 149.019 152.032 148.916 152.021C148.874 152.016 148.831 152.016 148.789 152.013C148.718 152.008 148.648 152.001 148.576 152H148.534C148.528 152 148.522 152 148.515 152C148.395 152 148.276 152.006 148.159 152.019C146.398 152.209 145.041 153.807 145.041 155.75C145.04 157.672 146.404 159.254 148.142 159.472Z", "fill", "#1177BC"], ["d", "M45.0983 102.566C45.8308 103.298 46.7908 103.664 47.7503 103.664C48.7098 103.664 49.6698 103.298 50.4023 102.566L53.3828 99.585L56.3632 102.566C57.0957 103.298 58.0558 103.664 59.0153 103.664C59.9748 103.664 60.9347 103.298 61.6672 102.566C63.1318 101.101 63.1318 98.7265 61.6672 97.2625L58.6862 94.2816L61.6672 91.3005C63.1318 89.836 63.1318 87.4615 61.6672 85.9975C60.2022 84.533 57.8282 84.533 56.3637 85.9975L53.3833 88.978L50.4028 85.9975C48.9378 84.533 46.5637 84.533 45.0992 85.9975C43.6347 87.462 43.6347 89.8365 45.0992 91.3005L48.0803 94.2816L45.0992 97.2625C43.6337 98.7265 43.6338 101.101 45.0983 102.566Z", "fill", "#1177BC"], ["d", "M194.142 96.9331L197.123 99.9141L194.142 102.895C192.677 104.36 192.677 106.734 194.142 108.198C194.874 108.93 195.834 109.297 196.794 109.297C197.753 109.297 198.713 108.931 199.446 108.198L202.426 105.218L205.407 108.198C206.139 108.93 207.099 109.297 208.059 109.297C209.018 109.297 209.978 108.931 210.711 108.198C212.175 106.734 212.175 104.359 210.711 102.895L207.73 99.9141L210.711 96.9331C212.175 95.4686 212.175 93.0941 210.711 91.6301C209.246 90.1656 206.872 90.1656 205.407 91.6301L202.427 94.6106L199.446 91.6301C197.981 90.1656 195.607 90.1656 194.143 91.6301C192.677 93.0941 192.677 95.4686 194.142 96.9331Z", "fill", "#1177BC"], ["d", "M75.5998 75.242C84.4888 75.242 91.7203 68.0105 91.7203 59.121C91.7203 50.2315 84.4888 43 75.5998 43C66.7108 43 59.4788 50.232 59.4788 59.121C59.4788 68.01 66.7108 75.242 75.5998 75.242ZM75.5998 50.5C80.3533 50.5 84.2203 54.367 84.2203 59.121C84.2203 63.875 80.3533 67.742 75.5998 67.742C70.8458 67.742 66.9788 63.875 66.9788 59.121C66.9788 54.367 70.8458 50.5 75.5998 50.5Z", "fill", "#1177BC"], ["d", "M179.73 85.1125C187.929 85.1125 194.599 78.442 194.599 70.243C194.599 62.044 187.929 55.3735 179.73 55.3735C171.531 55.3735 164.86 62.044 164.86 70.243C164.86 78.4425 171.53 85.1125 179.73 85.1125ZM179.73 62.8735C183.793 62.8735 187.099 66.1795 187.099 70.243C187.099 74.3065 183.793 77.6125 179.73 77.6125C175.666 77.6125 172.36 74.3065 172.36 70.243C172.36 66.1795 175.666 62.8735 179.73 62.8735Z", "fill", "#1177BC"], ["id", "filter0_bi", "x", "28.0845", "y", "101", "width", "201.831", "height", "105", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["flood-opacity", "0", "result", "BackgroundImageFix"], ["in", "BackgroundImage", "stdDeviation", "4"], ["in2", "SourceAlpha", "operator", "in", "result", "effect1_backgroundBlur"], ["mode", "normal", "in", "SourceGraphic", "in2", "effect1_backgroundBlur", "result", "shape"], ["in", "SourceAlpha", "type", "matrix", "values", "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", "result", "hardAlpha"], ["dy", "4"], ["stdDeviation", "2"], ["in2", "hardAlpha", "operator", "arithmetic", "k2", "-1", "k3", "1"], ["type", "matrix", "values", "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0"], ["mode", "normal", "in2", "shape", "result", "effect2_innerShadow"], ["id", "filter1_bi", "x", "3", "y", "200", "width", "253", "height", "39", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["dy", "3"], ["d", "M15.0661 1.80645H13.0835C12.9121 0.772355 12.0038 -0.0160968 10.9185 0.000258065C9.73275 0.0180968 8.79029 1.00616 8.79029 2.19203V10.2383C8.79029 10.3707 8.73991 10.4986 8.64797 10.5939C8.06733 11.1957 7.74639 11.9984 7.75836 12.8526C7.78297 14.6074 9.24191 16.0241 10.9967 15.9997C13.7939 15.9608 15.1739 12.5853 13.2567 10.5954C13.1643 10.4995 13.1129 10.3715 13.1129 10.2383V9.29032H13.7758C14.0538 9.29032 14.2929 9.07658 14.3058 8.7989C14.3196 8.50248 14.0836 8.25806 13.7903 8.25806H13.1129V6.06452H14.421C14.699 6.06452 14.9381 5.85077 14.951 5.5731C14.9648 5.27668 14.7288 5.03226 14.4355 5.03226H13.1129V2.83871H15.0806C15.374 2.83871 15.61 2.59429 15.5962 2.29787C15.5832 2.02019 15.3441 1.80645 15.0661 1.80645ZM10.8655 13.997C9.78113 13.9205 9.35033 12.5256 10.2305 11.856C10.3592 11.758 10.4355 11.6063 10.4355 11.4445V5.27255C10.4355 4.99455 10.6492 4.75542 10.9269 4.74252C11.2233 4.72871 11.4677 4.96474 11.4677 5.25806V11.438C11.4677 11.6001 11.5402 11.7558 11.6695 11.8536C12.6164 12.569 12.0469 14.0803 10.8655 13.997ZM1.82255 2.83871C1.03991 2.83871 0.403198 2.202 0.403198 1.41935C0.403198 0.63671 1.03991 0 1.82255 0C2.6052 0 3.24191 0.63671 3.24191 1.41935C3.24191 2.202 2.6052 2.83871 1.82255 2.83871ZM1.82255 1.03226C1.6091 1.03226 1.43546 1.2059 1.43546 1.41935C1.43546 1.63281 1.6091 1.80645 1.82255 1.80645C2.036 1.80645 2.20965 1.63281 2.20965 1.41935C2.20965 1.2059 2.036 1.03226 1.82255 1.03226ZM5.41933 7.16129C4.20091 7.16129 3.20965 6.17003 3.20965 4.95161V3.43548C3.20965 2.21706 4.20088 1.22581 5.41933 1.22581C6.08117 1.22581 6.70255 1.51881 7.12423 2.02971C7.30568 2.24955 7.27455 2.57484 7.05471 2.75629C6.83491 2.93774 6.50959 2.90661 6.32813 2.68677C5.62807 1.83855 4.24191 2.33361 4.24191 3.43548V4.95161C4.24191 6.05432 5.62884 6.54794 6.32813 5.70026C6.50959 5.48039 6.83488 5.44919 7.05471 5.63061C7.27459 5.81203 7.30578 6.13732 7.12436 6.35719C6.70278 6.86819 6.0813 7.16129 5.41933 7.16129Z"], ["width", "16", "height", "16", "fill", "none"], ["viewBox", "0 0 16 10", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M0.416079 2.75106L6.67781 8.98175C7.4096 9.70971 8.59205 9.70971 9.32349 8.98175L15.5856 2.75106C15.9902 2.34819 16.1119 1.80685 15.8939 1.27841C15.6763 0.751018 15.1618 0.472323 14.5911 0.472323L1.41122 0.472324C0.839875 0.472324 0.325738 0.751019 0.108084 1.27876C-0.110266 1.80685 0.0114654 2.34785 0.416079 2.75106Z"], ["width", "152", "height", "157", "viewBox", "0 0 152 157", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M59.9006 157C91.9469 157 117.926 152.409 117.926 146.747C117.926 141.084 91.9469 136.493 59.9006 136.493C27.8542 136.493 1.87549 141.084 1.87549 146.747C1.87549 152.409 27.8542 157 59.9006 157Z", "fill", "#3F3D56"], ["d", "M95.167 113.446C126.486 113.446 151.876 88.0505 151.876 56.7232C151.876 25.3958 126.486 0 95.167 0C63.8478 0 38.4586 25.3958 38.4586 56.7232C38.4586 88.0505 63.8478 113.446 95.167 113.446Z", "fill", "#3F3D56"], ["opacity", "0.05", "d", "M95.167 103.55C121.022 103.55 141.982 82.5849 141.982 56.7232C141.982 30.8615 121.022 9.89639 95.167 9.89639C69.312 9.89639 48.3524 30.8615 48.3524 56.7232C48.3524 82.5849 69.312 103.55 95.167 103.55Z", "fill", "black"], ["opacity", "0.05", "d", "M95.167 95.1019C116.357 95.1019 133.536 77.9191 133.536 56.7232C133.536 35.5272 116.357 18.3445 95.167 18.3445C73.9766 18.3445 56.7983 35.5272 56.7983 56.7232C56.7983 77.9191 73.9766 95.1019 95.167 95.1019Z", "fill", "black"], ["opacity", "0.05", "d", "M95.167 84.24C110.36 84.24 122.677 71.9203 122.677 56.7232C122.677 41.5261 110.36 29.2064 95.167 29.2064C79.9738 29.2064 67.6573 41.5261 67.6573 56.7232C67.6573 71.9203 79.9738 84.24 95.167 84.24Z", "fill", "black"], ["d", "M38.9608 61.7996C38.9608 61.7996 34.5023 74.3525 36.4839 78.812C38.4654 83.2716 41.6028 87.566 41.6028 87.566C41.6028 87.566 40.4469 62.6254 38.9608 61.7996Z", "fill", "#D0CDE1"], ["opacity", "0.1", "d", "M38.9608 61.7996C38.9608 61.7996 34.5023 74.3525 36.4839 78.812C38.4654 83.2716 41.6028 87.566 41.6028 87.566C41.6028 87.566 40.4469 62.6254 38.9608 61.7996Z", "fill", "black"], ["d", "M42.0982 90.8694C42.0982 90.8694 41.7679 94.0076 41.6028 94.1728C41.4377 94.338 41.7679 94.6683 41.6028 95.1638C41.4377 95.6593 41.2726 96.32 41.6028 96.4851C41.9331 96.6503 39.7864 111.185 39.7864 111.185C39.7864 111.185 34.5024 118.122 36.649 129.024L37.3095 140.09C37.3095 140.09 42.4285 140.42 42.4285 138.603C42.4285 138.603 42.0982 136.456 42.0982 135.465C42.0982 134.474 42.9238 134.474 42.4285 133.979C41.9331 133.483 41.9331 133.153 41.9331 133.153C41.9331 133.153 42.7587 132.492 42.5936 132.327C42.4285 132.162 44.0797 120.435 44.0797 120.435C44.0797 120.435 45.8961 118.618 45.8961 117.627V116.636C45.8961 116.636 46.7217 114.489 46.7217 114.323C46.7217 114.158 51.1802 104.083 51.1802 104.083L52.9966 111.35L54.9781 121.756C54.9781 121.756 55.9688 131.171 57.9504 134.804C57.9504 134.804 61.418 146.697 61.418 146.366C61.418 146.036 67.1974 145.21 67.0323 143.724C66.8672 142.237 63.5647 121.426 63.5647 121.426L64.3903 90.5391L42.0982 90.8694Z", "fill", "#2F2E41"], ["d", "M37.6398 139.264C37.6398 139.264 33.1813 148.018 36.1536 148.348C39.1259 148.679 40.2818 148.679 41.6028 147.357C42.325 146.635 43.7875 145.666 44.965 144.936C45.6627 144.51 46.2263 143.896 46.5912 143.165C46.9561 142.433 47.1075 141.614 47.0281 140.8C46.941 139.992 46.6392 139.326 45.8961 139.264C43.9146 139.099 41.6028 137.282 41.6028 137.282L37.6398 139.264Z", "fill", "#2F2E41"], ["d", "M62.2437 145.706C62.2437 145.706 57.7853 154.46 60.7575 154.79C63.7298 155.12 64.8857 155.12 66.2067 153.799C66.9289 153.077 68.3914 152.107 69.5689 151.377C70.2666 150.951 70.8302 150.338 71.1951 149.606C71.56 148.875 71.7115 148.055 71.632 147.242C71.5449 146.433 71.2431 145.768 70.5 145.706C68.5185 145.541 66.2067 143.724 66.2067 143.724L62.2437 145.706Z", "fill", "#2F2E41"], ["d", "M57.5316 47.4739C61.3652 47.4739 64.4729 44.3653 64.4729 40.5308C64.4729 36.6962 61.3652 33.5876 57.5316 33.5876C53.6981 33.5876 50.5903 36.6962 50.5903 40.5308C50.5903 44.3653 53.6981 47.4739 57.5316 47.4739Z", "fill", "#FFB8B8"], ["d", "M53.0693 42.8121C53.0693 42.8121 48.1112 51.9373 47.7146 51.9373C47.3179 51.9373 56.6391 54.9129 56.6391 54.9129C56.6391 54.9129 59.2173 46.1844 59.614 45.3909L53.0693 42.8121Z", "fill", "#FFB8B8"], ["d", "M60.6749 52.7978C60.6749 52.7978 50.7673 47.3472 49.7766 47.5123C48.7858 47.6775 38.2177 56.927 38.3828 60.7259C38.548 64.5248 39.869 70.8013 39.869 70.8013C39.869 70.8013 40.3644 88.3092 41.3551 88.4744C42.3459 88.6396 41.19 91.6126 41.5202 91.6126C41.8505 91.6126 64.638 91.6126 64.8031 91.1171C64.9682 90.6216 60.6749 52.7978 60.6749 52.7978Z", "fill", "#D0CDE1"], ["d", "M66.2067 92.0256C66.2067 92.0256 69.3442 101.605 66.7021 101.275C64.0601 100.945 62.9042 93.0166 62.9042 93.0166L66.2067 92.0256Z", "fill", "#FFB8B8"], ["d", "M57.7852 52.2197C57.7852 52.2197 51.6755 53.5411 52.6663 61.7995C53.6571 70.058 55.4734 78.3165 55.4734 78.3165L61.5831 91.6952L62.2436 94.1728L66.7021 93.0166L63.3995 73.8569C63.3995 73.8569 62.2436 53.3759 60.7575 52.7152C59.8203 52.3156 58.8013 52.1457 57.7852 52.2197Z", "fill", "#D0CDE1"], ["opacity", "0.1", "d", "M54.0698 78.0688L61.6657 91.6125L55.2661 77.3411L54.0698 78.0688Z", "fill", "black"], ["d", "M64.4422 38.4863L64.4651 37.9558L65.5203 38.2185C65.509 38.0481 65.4609 37.8823 65.3792 37.7324C65.2976 37.5825 65.1844 37.4521 65.0475 37.3502L66.1714 37.2873C65.2283 35.9467 64.0233 34.8112 62.6292 33.9494C61.2351 33.0877 59.6808 32.5174 58.0603 32.2732C55.6291 31.9208 52.922 32.4308 51.2549 34.2356C50.4462 35.111 49.9381 36.2242 49.5767 37.3599C48.911 39.4517 48.7754 41.9452 50.1635 43.6455C51.5742 45.3735 54.0384 45.712 56.2586 45.9259C57.0398 46.0012 57.8585 46.0712 58.5824 45.768C58.6629 44.9374 58.5566 44.0994 58.2713 43.3153C58.1525 43.0726 58.0957 42.8041 58.106 42.5341C58.2047 41.8734 59.0857 41.7069 59.7475 41.7962C60.4094 41.8855 61.2052 42.022 61.6401 41.5151C61.9396 41.1659 61.922 40.6574 61.9617 40.1989C62.0697 38.9509 64.4308 38.748 64.4422 38.4863Z", "fill", "#2F2E41"], ["d", "M12.0322 145.336C16.499 145.336 20.12 141.714 20.12 137.246C20.12 132.778 16.499 129.156 12.0322 129.156C7.56548 129.156 3.94446 132.778 3.94446 137.246C3.94446 141.714 7.56548 145.336 12.0322 145.336Z", "fill", "#F9A826"], ["d", "M103.31 128.34C103.073 127.739 102.591 127.264 101.987 127.037C100.807 126.594 100.208 125.274 100.651 124.095C101.094 122.915 102.414 122.316 103.593 122.759C104.166 122.974 104.62 123.398 104.871 123.954C105.044 124.337 104.874 124.789 104.491 124.962C104.107 125.134 103.656 124.966 103.483 124.582C103.228 124.018 102.296 124.047 102.077 124.63C101.929 125.024 102.129 125.463 102.522 125.611C103.53 125.989 104.333 126.781 104.727 127.782C104.881 128.174 104.689 128.615 104.297 128.77C103.905 128.924 103.463 128.731 103.31 128.34Z", "fill", "#9DCC3D"], ["d", "M110.008 131.677C109.248 131.392 108.138 131.333 106.917 132.403C106.169 131.441 105.201 130.685 104.036 130.248C102.872 129.811 101.648 129.742 100.453 129.973C100.312 128.896 99.8398 127.858 98.5985 127.392C95.7093 126.307 90.5089 129.29 88.6341 134.282C86.7594 139.275 88.7113 144.943 91.6006 146.028C92.6663 146.428 93.7017 146.176 94.6912 145.301C95.4393 146.263 96.4079 147.02 97.5732 147.457C98.736 147.894 99.9603 147.962 101.155 147.732C101.322 149.046 101.943 149.912 103.01 150.312C105.899 151.397 111.1 148.415 112.975 143.422C114.849 138.43 112.897 132.762 110.008 131.677Z", "fill", "#FF9F40"], ["d", "M103.01 150.312C105.899 151.397 111.1 148.415 112.975 143.423C114.849 138.43 112.897 132.762 110.008 131.677C109.248 131.392 108.138 131.333 106.917 132.403C106.169 131.441 105.201 130.685 104.036 130.248L97.5732 147.457C98.736 147.894 99.9603 147.963 101.155 147.732C101.322 149.046 101.943 149.912 103.01 150.312Z", "fill", "#FF7F40"], ["d", "M108.72 128.441C108.71 128.133 108.515 127.862 108.227 127.753L105.374 126.682C105.185 126.611 104.976 126.618 104.792 126.702C103.098 127.471 101.844 129.014 101.437 130.831C101.354 131.204 101.56 131.578 101.912 131.71C101.93 131.717 101.947 131.722 101.965 131.727L104.868 132.587C105.065 132.646 105.277 132.623 105.456 132.522C105.636 132.422 105.767 132.254 105.82 132.055C106.166 130.766 107.06 129.711 108.274 129.16C108.555 129.032 108.731 128.749 108.72 128.441Z", "fill", "#CBE645"], ["d", "M105.456 132.522C105.636 132.422 105.767 132.253 105.82 132.055C106.166 130.766 107.06 129.711 108.274 129.16C108.555 129.033 108.731 128.749 108.72 128.441C108.71 128.133 108.515 127.862 108.227 127.753L105.374 126.682L103.328 132.131L104.868 132.587C105.065 132.646 105.277 132.623 105.456 132.522Z", "fill", "#9DCC3D"], ["d", "M105.73 130.07C105.199 129.871 104.668 129.834 104.144 129.958C103.832 129.52 103.408 129.198 102.877 128.999C100.049 127.937 94.909 130.832 92.9752 135.912C90.5817 142.2 94.173 148.533 97.4644 147.747C97.7765 148.185 98.2009 148.507 98.7316 148.706C101.39 149.704 106.651 147.077 108.617 141.837C110.536 136.721 108.574 131.138 105.73 130.07Z", "fill", "#FFBE40"], ["d", "M108.617 141.837C110.536 136.721 108.574 131.138 105.73 130.07C105.199 129.871 104.668 129.834 104.144 129.958L97.4644 147.747C97.7766 148.185 98.201 148.507 98.7316 148.706C101.39 149.704 106.651 147.077 108.617 141.837Z", "fill", "#FF9F40"], ["d", "M10.9205 132.11C10.5133 131.992 10.0798 132.001 9.67786 132.136C9.44175 132.215 9.18741 132.22 8.94832 132.151C8.70923 132.082 8.49658 131.943 8.33837 131.751C8.11886 131.483 7.83658 131.275 7.51675 131.143C7.19693 131.012 6.8495 130.962 6.50552 130.997C6.16154 131.033 5.83172 131.153 5.54552 131.347C5.25931 131.541 5.02564 131.803 4.86537 132.109L4.86343 132.113C4.80308 132.235 4.69814 132.33 4.57023 132.377C4.44232 132.424 4.30117 132.421 4.17583 132.367C3.90325 132.246 3.60798 132.185 3.3098 132.187C3.01161 132.19 2.71739 132.256 2.44684 132.381C2.17629 132.507 1.93565 132.688 1.74104 132.914C1.54643 133.14 1.40234 133.405 1.31842 133.691C1.2345 133.977 1.21268 134.278 1.25444 134.574C1.29619 134.869 1.40054 135.152 1.56051 135.403C1.72048 135.655 1.93237 135.87 2.182 136.033C2.43163 136.196 2.71322 136.304 3.00793 136.349C3.14556 136.369 3.27063 136.44 3.35768 136.548C3.44474 136.656 3.48723 136.794 3.47652 136.932L3.4761 136.937C3.4489 137.282 3.50752 137.628 3.64672 137.945C3.78592 138.261 4.00136 138.539 4.27381 138.752C4.54626 138.965 4.86723 139.107 5.20805 139.166C5.54888 139.224 5.89894 139.198 6.22698 139.088C6.46308 139.01 6.71742 139.005 6.95651 139.073C7.1956 139.142 7.40825 139.282 7.56647 139.474C7.85869 139.83 8.26016 140.079 8.70865 140.184C9.15714 140.289 9.6276 140.242 10.0471 140.052C10.2805 139.945 10.541 139.91 10.7945 139.953C11.0479 139.996 11.2825 140.114 11.4675 140.293C11.7131 140.53 12.0132 140.703 12.3415 140.797C13.951 141.261 18.2112 138.566 18.2112 138.566C18.2112 138.566 16.0347 134.019 14.4255 133.555C14.0974 133.46 13.7509 133.447 13.4167 133.518C13.1651 133.57 12.9034 133.546 12.666 133.448C12.4286 133.349 12.2264 133.181 12.086 132.966C11.8121 132.551 11.3986 132.247 10.9205 132.11Z", "fill", "#58853F"], ["d", "M10.61 127.617C10.2404 127.409 9.81622 127.319 9.39413 127.359C9.14635 127.382 8.89753 127.329 8.68041 127.207C8.46329 127.086 8.28806 126.901 8.17776 126.678C8.0249 126.368 7.79758 126.101 7.51611 125.9C7.23463 125.699 6.90777 125.571 6.56471 125.527C6.22166 125.483 5.87311 125.525 5.55019 125.649C5.22727 125.773 4.94004 125.974 4.71417 126.236L4.71145 126.239C4.62483 126.345 4.50116 126.413 4.36588 126.43C4.2306 126.446 4.09401 126.411 3.98421 126.33C3.74635 126.15 3.47281 126.023 3.1819 125.958C2.891 125.892 2.58944 125.89 2.29744 125.95C2.00543 126.01 1.72972 126.133 1.48875 126.308C1.24778 126.484 1.04712 126.709 0.900219 126.969C0.753313 127.228 0.663548 127.516 0.636935 127.813C0.610321 128.11 0.647474 128.409 0.745904 128.691C0.844335 128.972 1.00177 129.229 1.20767 129.445C1.41357 129.661 1.66318 129.83 1.93979 129.941C2.06938 129.992 2.17497 130.089 2.23506 130.215C2.29515 130.34 2.30523 130.484 2.26324 130.616L2.2617 130.621C2.15665 130.95 2.13486 131.301 2.19826 131.641C2.26166 131.981 2.40828 132.3 2.62503 132.569C2.84177 132.839 3.12189 133.05 3.44037 133.185C3.75885 133.32 4.10576 133.374 4.45013 133.342C4.69792 133.319 4.94675 133.372 5.16387 133.494C5.381 133.615 5.55625 133.8 5.66656 134.023C5.87004 134.436 6.2041 134.77 6.61696 134.974C7.02982 135.178 7.49844 135.24 7.95019 135.151C8.20198 135.099 8.46352 135.125 8.70054 135.224C8.93755 135.324 9.139 135.492 9.27849 135.708C9.46351 135.995 9.71625 136.233 10.0145 136.399C11.4758 137.217 16.238 135.564 16.238 135.564C16.238 135.564 15.1549 130.64 13.6935 129.822C13.3957 129.655 13.0613 129.564 12.7198 129.556C12.4628 129.55 12.2136 129.466 12.0049 129.316C11.7961 129.166 11.6375 128.957 11.5499 128.715C11.3777 128.249 11.0444 127.859 10.61 127.617Z", "fill", "#649441"], ["d", "M16.473 135.141L13.3669 133.418L12.4506 130.173L11.5183 130.437L12.1733 132.756L10.0845 131.597L9.16256 128.333L8.23032 128.596L8.89094 130.935L7.16673 129.979L6.40086 127.267L5.46863 127.531L5.97314 129.317L2.79727 127.556L2.32736 128.403L5.41949 130.118L3.75923 130.587L4.02249 131.519L6.62202 130.785L8.35969 131.748L6.11215 132.383L6.37541 133.315L9.56223 132.415L11.6674 133.583L9.40009 134.223L9.66341 135.156L12.8699 134.25L16.0031 135.988L16.473 135.141Z", "fill", "#72A64E"], ["d", "M18.4746 121.538L17.3467 125.471L15.4235 125.236L17.0323 121.362L18.4746 121.538Z", "fill", "#6A9C46"], ["d", "M15.5898 121.185L15.4235 125.236L17.3466 125.471L17.0322 121.362L15.5898 121.185Z", "fill", "#79AD54"], ["d", "M18.3976 126.871C18.4197 127.094 18.408 127.32 18.3628 127.54L16.705 135.646C16.6257 136.033 16.4033 136.377 16.0821 136.608C15.7609 136.839 15.3644 136.94 14.9717 136.892C14.579 136.844 14.2188 136.65 13.9628 136.348C13.7069 136.047 13.5739 135.66 13.5905 135.264L13.6921 132.846L13.733 131.875L13.7945 130.417L13.8354 129.447L13.8963 127.989L13.9373 127.019L13.9383 126.998C13.9622 126.433 14.1995 125.898 14.6023 125.5C15.005 125.103 15.5434 124.873 16.1088 124.857C16.6743 124.841 17.2248 125.04 17.6495 125.414C18.0742 125.787 18.3416 126.308 18.3976 126.871Z", "fill", "#F07800"], ["d", "M16.1471 127.277L16.0347 128.239L13.8964 127.989L13.9373 127.019L16.1471 127.277Z", "fill", "#E66B00"], ["d", "M13.8355 129.447L15.8518 129.681L15.7406 130.642L13.7945 130.417L13.8355 129.447Z", "fill", "#E66B00"], ["d", "M15.5571 132.084L15.4466 133.047L13.6921 132.846L13.733 131.875L15.5571 132.084Z", "fill", "#E66B00"], ["d", "M5.31001 135.982C5.28847 135.823 5.26892 135.662 5.25295 135.501C4.62123 129.112 8.64111 123.484 14.2316 122.931C19.8222 122.379 24.8663 127.11 25.498 133.499C25.514 133.661 25.5262 133.822 25.5362 133.982L27.9475 133.744C27.9366 133.583 27.9241 133.422 27.9081 133.261C27.1448 125.541 20.9149 119.837 13.9933 120.521C7.07176 121.206 2.0795 128.019 2.84283 135.739C2.85879 135.901 2.87803 136.061 2.89868 136.22L5.31001 135.982Z", "fill", "#8C5237"], ["d", "M14.5522 128.346C14.4293 127.941 14.1856 127.582 13.8535 127.318C13.6591 127.163 13.5162 126.953 13.4438 126.715C13.3713 126.477 13.3725 126.222 13.4474 125.985C13.5519 125.655 13.5732 125.305 13.5093 124.965C13.4454 124.625 13.2983 124.306 13.0811 124.037C12.864 123.768 12.5835 123.557 12.2649 123.423C11.9462 123.288 11.5992 123.235 11.2549 123.268L11.2508 123.268C11.1154 123.284 10.979 123.248 10.8697 123.166C10.7604 123.084 10.6866 122.964 10.6633 122.83C10.6162 122.535 10.5068 122.254 10.3423 122.006C10.1778 121.757 9.96209 121.546 9.70958 121.388C9.45707 121.229 9.17359 121.126 8.87813 121.086C8.58267 121.046 8.28205 121.07 7.99639 121.155C7.71073 121.24 7.44662 121.386 7.22175 121.582C6.99689 121.778 6.81645 122.019 6.69252 122.29C6.56859 122.562 6.50403 122.856 6.50316 123.154C6.50229 123.452 6.56514 123.747 6.68749 124.019C6.74622 124.145 6.75472 124.289 6.71125 124.421C6.66779 124.553 6.57563 124.663 6.45354 124.73L6.44921 124.732C6.14527 124.897 5.88692 125.135 5.69723 125.424C5.50755 125.713 5.39244 126.045 5.36217 126.39C5.33191 126.734 5.38745 127.081 5.52381 127.399C5.66018 127.716 5.87314 127.995 6.14366 128.211C6.33814 128.366 6.48105 128.577 6.5536 128.815C6.62614 129.053 6.62492 129.307 6.55008 129.544C6.41085 129.983 6.42025 130.456 6.57681 130.889C6.73337 131.322 7.02836 131.691 7.41608 131.939C7.63351 132.077 7.80447 132.276 7.90658 132.512C8.00869 132.748 8.03718 133.009 7.98832 133.262C7.923 133.597 7.94117 133.943 8.04122 134.27C8.52908 135.872 13.1091 137.977 13.1091 137.977C13.1091 137.977 15.7376 133.675 15.2497 132.073C15.1507 131.746 14.9728 131.448 14.7316 131.206C14.5504 131.024 14.4285 130.791 14.3818 130.538C14.3351 130.286 14.3658 130.025 14.4699 129.79C14.6687 129.334 14.6979 128.822 14.5522 128.346Z", "fill", "#79AD54"], ["d", "M24.4651 123.053L21.8666 127.169L20.1334 126.303L23.1652 122.403L24.4651 123.053Z", "fill", "#6A9C46"], ["d", "M21.8654 121.753L20.1335 126.303L21.8666 127.169L23.1653 122.403L21.8654 121.753Z", "fill", "#79AD54"], ["d", "M22.1312 129.458L17.8546 136.54C17.6497 136.878 17.3251 137.127 16.9454 137.236C16.5656 137.346 16.1585 137.309 15.8049 137.132C15.4512 136.956 15.177 136.653 15.0367 136.283C14.8963 135.914 14.9002 135.505 15.0474 135.138L15.9676 132.858L16.3316 131.955L16.876 130.606L17.2401 129.704L17.785 128.354L18.1437 127.466C18.1457 127.461 18.1471 127.457 18.1491 127.452C18.3181 127.041 18.6056 126.69 18.9751 126.443C19.3446 126.196 19.7792 126.065 20.2236 126.066C20.2541 126.066 20.2846 126.067 20.3152 126.069C20.6287 126.082 20.9358 126.162 21.2163 126.303L21.2169 126.303C21.4976 126.442 21.7457 126.64 21.9447 126.882C21.9647 126.906 21.9835 126.93 22.0017 126.955C22.271 127.311 22.4273 127.74 22.4504 128.186C22.4735 128.633 22.3623 129.076 22.1312 129.458Z", "fill", "#F98500"], ["d", "M20.1384 128.471L19.6967 129.333L17.785 128.354L18.1437 127.466C18.1457 127.461 18.1471 127.457 18.1491 127.452L20.1384 128.471Z", "fill", "#EB7206"], ["d", "M19.0561 130.638L18.6132 131.5L16.876 130.606L17.2401 129.704L19.0561 130.638Z", "fill", "#EB7206"], ["d", "M17.9743 132.805L17.5295 133.665L15.9675 132.858L16.3316 131.955L17.9743 132.805Z", "fill", "#EB7206"], ["d", "M22.1769 129.447L24.5871 129.209C24.8427 129.183 25.098 129.261 25.2967 129.424C25.4953 129.586 25.6212 129.822 25.6464 130.077L25.6941 130.559L21.3559 130.988L21.3082 130.506C21.2829 130.251 21.3603 129.995 21.5232 129.797C21.6861 129.598 21.9213 129.472 22.1769 129.447Z", "fill", "#79AD54"], ["d", "M25.488 127.389L25.3715 126.211C23.3672 126.409 22.0475 128.137 22.2405 130.09L22.4629 132.339L25.5141 132.037L25.3499 130.377L24.9242 129.722C24.0574 128.774 24.2369 127.513 25.488 127.389Z", "fill", "#79AD54"], ["d", "M21.517 137.3C21.233 137.332 20.9468 137.263 20.7088 137.104C20.4708 136.946 20.2962 136.709 20.2158 136.434L19.0762 132.309C18.808 131.338 19.5083 130.36 20.546 130.257C21.4733 130.166 22.2969 130.817 22.3854 131.713L22.7898 135.803C22.8639 136.553 22.2941 137.223 21.517 137.3Z", "fill", "#FCAC1F"], ["d", "M26.7721 136.78C25.9948 136.857 25.3049 136.311 25.2307 135.561L24.8263 131.471C24.7378 130.576 25.4179 129.776 26.3452 129.684C27.3829 129.581 28.2611 130.403 28.1882 131.408L27.8786 135.677C27.8535 135.962 27.7287 136.228 27.5263 136.43C27.3239 136.632 27.0569 136.756 26.7721 136.78Z", "fill", "#FCAC1F"], ["d", "M23.2648 129.988L23.6263 129.953C24.0639 129.909 24.5007 130.042 24.8407 130.32C25.1807 130.599 25.3961 131.002 25.4393 131.439L25.7974 135.061C25.8445 135.538 25.7002 136.014 25.3962 136.384C25.0922 136.755 24.6535 136.99 24.1765 137.037L24.1126 137.043C23.6355 137.09 23.1593 136.946 22.7886 136.642C22.4179 136.338 22.1831 135.899 22.136 135.422L21.7779 131.801C21.7347 131.364 21.8671 130.927 22.1459 130.587C22.4248 130.247 22.8272 130.032 23.2648 129.988Z", "fill", "#FFB531"], ["d", "M14.1097 131.465L13.2548 131.01L12.1339 133.113L11.4353 130.819L13.0119 127.861L12.1571 127.405L11.0362 129.508L10.4596 127.615L11.7578 125.18L10.9028 124.724L10.0604 126.304L9.18139 123.418L8.25475 123.701L9.13384 126.587L7.55342 125.745L7.09772 126.6L9.53288 127.897L10.1095 129.791L8.0067 128.67L7.55101 129.525L10.5086 131.101L11.2073 133.395L9.10445 132.275L8.64876 133.13L11.6064 134.706L12.6457 138.118L13.5723 137.836L12.5331 134.424L14.1097 131.465Z", "fill", "#89BA66"], ["d", "M28.1941 136.153L28.1635 137.13L28.1484 137.618L28.1178 138.594L28.0722 140.059L28.0422 141.035L27.9966 142.5L27.966 143.477L27.9503 143.982C27.921 144.922 27.5505 145.82 26.908 146.507C26.2655 147.195 25.3949 147.625 24.4585 147.717L9.05665 149.24C8.12021 149.334 7.18184 149.083 6.417 148.534C5.65217 147.986 5.11325 147.178 4.90104 146.261L4.78664 145.768L4.56539 144.817L4.23382 143.389L4.01318 142.438L3.6816 141.01L3.46036 140.059L3.35003 139.583L3.12878 138.631L28.1941 136.153Z", "fill", "#92563A"], ["d", "M28.1941 136.153L28.1635 137.13L28.1485 137.618L28.1179 138.594L28.0723 140.059L28.0423 141.035L27.9967 142.5L27.9661 143.477L27.9503 143.982C27.921 144.922 27.5506 145.82 26.9081 146.507C26.2656 147.195 25.3949 147.625 24.4586 147.717L9.0567 149.24C8.17159 149.328 7.28312 149.109 6.54138 148.618C12.9712 146.969 19.8991 143.305 24.5331 136.515L28.1941 136.153Z", "fill", "#8C5237"], ["d", "M29.521 134.805C29.5525 135.125 29.4558 135.444 29.2522 135.692C29.0486 135.94 28.7547 136.097 28.4351 136.129L2.88782 138.655C2.56822 138.687 2.24915 138.59 2.00081 138.386C1.75248 138.183 1.59521 137.889 1.56361 137.569C1.53201 137.25 1.62866 136.931 1.83231 136.682C2.03596 136.434 2.32992 136.277 2.64952 136.245L28.1968 133.719C28.3551 133.703 28.5149 133.719 28.6671 133.765C28.8193 133.811 28.9609 133.887 29.0839 133.988C29.2069 134.089 29.3088 134.213 29.3838 134.353C29.4588 134.493 29.5054 134.647 29.521 134.805Z", "fill", "#A8684A"], ["d", "M13.8763 139.029L17.7325 138.648L17.8279 139.612L13.9717 139.993L13.8763 139.029Z", "fill", "#78462F"], ["d", "M8.09204 139.601L11.9482 139.22L12.0436 140.184L8.18736 140.565L8.09204 139.601Z", "fill", "#78462F"], ["d", "M6.16394 139.791L6.25926 140.756L3.68164 141.01L3.46039 140.059L6.16394 139.791Z", "fill", "#78462F"], ["d", "M19.6606 138.457L23.5168 138.076L23.6122 139.04L19.756 139.421L19.6606 138.457Z", "fill", "#78462F"], ["d", "M28.1484 137.618L28.1178 138.594L25.5402 138.849L25.4449 137.885L28.1484 137.618Z", "fill", "#78462F"], ["d", "M14.1146 141.439L17.9708 141.058L18.0661 142.022L14.2099 142.403L14.1146 141.439Z", "fill", "#78462F"], ["d", "M8.33032 142.011L12.1865 141.63L12.2818 142.594L8.42564 142.975L8.33032 142.011Z", "fill", "#78462F"], ["d", "M6.40228 142.202L6.4976 143.166L4.23389 143.389L4.01324 142.438L6.40228 142.202Z", "fill", "#78462F"], ["d", "M19.8989 140.867L23.7551 140.486L23.8504 141.45L19.9942 141.831L19.8989 140.867Z", "fill", "#78462F"], ["d", "M28.0723 140.059L28.0423 141.035L25.7785 141.259L25.6832 140.295L28.0723 140.059Z", "fill", "#78462F"], ["d", "M14.3529 143.849L18.2091 143.468L18.3044 144.432L14.4482 144.813L14.3529 143.849Z", "fill", "#78462F"], ["d", "M8.5686 144.421L12.4248 144.04L12.5201 145.004L8.66392 145.385L8.5686 144.421Z", "fill", "#78462F"], ["d", "M6.64048 144.612L6.7358 145.576L4.78662 145.768L4.56537 144.817L6.64048 144.612Z", "fill", "#78462F"], ["d", "M20.1372 143.277L23.9934 142.896L24.0887 143.86L20.2325 144.241L20.1372 143.277Z", "fill", "#78462F"], ["d", "M27.9966 142.5L25.9215 142.705L26.0168 143.669L27.966 143.477L27.9966 142.5Z", "fill", "#78462F"], ["d", "M14.5912 146.259L18.4474 145.878L18.5427 146.842L14.6865 147.223L14.5912 146.259Z", "fill", "#78462F"], ["d", "M8.80695 146.831L12.6631 146.45L12.7585 147.414L8.90227 147.795L8.80695 146.831Z", "fill", "#78462F"], ["d", "M6.87885 147.022L6.97417 147.986L5.90347 148.092C5.64046 147.823 5.41797 147.517 5.24298 147.184L6.87885 147.022Z", "fill", "#78462F"], ["d", "M20.3755 145.687L24.2317 145.306L24.327 146.27L20.4708 146.651L20.3755 145.687Z", "fill", "#78462F"], ["d", "M27.7957 144.954C27.6893 145.315 27.531 145.658 27.3258 145.974L26.2551 146.079L26.1598 145.115L27.7957 144.954Z", "fill", "#78462F"], ["d", "M28.1941 136.153L28.1635 137.13L3.35003 139.583L3.12878 138.631L28.1941 136.153Z", "fill", "#8C5237"], ["width", "128", "height", "128", "viewBox", "0 0 128 128", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["cx", "64", "cy", "64", "r", "63.5"], ["width", "64", "height", "64", "transform", "translate(32 32)"], ["d", "M39.8797 55.457C41.8103 58.4437 43.9388 61.2977 46.2507 64H47.9797C47.7618 62.7512 47.452 61.5202 47.0527 60.317C45.5261 55.8537 42.8646 51.8644 39.3297 48.741L40.6717 47.259C44.4623 50.6117 47.3148 54.8935 48.9487 59.683C49.2127 60.47 49.4297 61.277 49.6227 62.092C49.7127 61.928 49.8057 61.766 49.8847 61.592C52.1357 56.592 51.0417 48.63 46.2577 45.868C45.1092 45.2752 43.8524 44.9214 42.5633 44.8281C41.2743 44.7348 39.9796 44.9038 38.7577 45.325C38.2002 45.4664 37.6777 45.7207 37.2225 46.0723C36.7674 46.4239 36.3893 46.8653 36.1117 47.369C35.5807 48.71 37.0387 51.064 39.8797 55.457Z"], ["d", "M62.9391 54.2789C62.8634 53.6755 62.7126 53.0839 62.4901 52.5179C60.9311 48.5619 56.3811 46.3569 53.6551 47.1689C52.7601 47.4707 51.9878 48.0559 51.4551 48.8359C53.2969 52.8481 53.5056 57.4195 52.0371 61.5829C52.0941 61.5129 52.1621 61.4509 52.2181 61.3829C54.3425 58.6357 55.6553 55.3487 56.0081 51.8939L57.9961 52.1119C57.6083 55.9415 56.1492 59.5844 53.7861 62.6229C53.4051 63.1049 52.9861 63.5579 52.5581 64.0029H57.1701L57.2531 63.9639C56.7286 61.9259 57.0326 59.7632 58.0985 57.9488C59.1645 56.1344 60.9056 54.8159 62.9411 54.2819L62.9391 54.2789Z"], ["d", "M81.2003 63.9998H91.2153C90.5783 63.077 89.6863 62.3597 88.6483 61.9358C87.9706 61.7072 87.2631 61.5792 86.5483 61.5558C85.6303 61.4878 84.5893 61.4098 84.1073 60.4468C83.6073 59.4368 84.2903 58.5858 84.8383 57.9008C85.3954 57.2956 85.8026 56.5681 86.0273 55.7768C86.5213 53.6218 86.5273 50.0048 84.5113 48.8708C84.0428 48.6317 83.5309 48.4893 83.0062 48.4522C82.4816 48.4151 81.9548 48.484 81.4573 48.6548C79.9565 49.1054 78.6821 50.1076 77.8903 51.4598C77.1113 52.9658 77.5663 54.6358 78.0063 56.2488C78.4463 57.8618 78.9063 59.5578 77.6943 60.7218C76.4633 61.9068 74.6653 61.4218 72.9243 60.9468C73.0715 61.9665 73.0082 63.0055 72.7383 63.9998H79.1673C79.4173 62.5838 79.6993 61.1658 80.0263 59.7708C80.5863 57.3868 81.2683 55.0008 82.0533 52.6798L83.9473 53.3198C83.1833 55.5808 82.5193 57.9058 81.9743 60.2288C81.6823 61.4728 81.4293 62.7368 81.2003 63.9998Z"], ["d", "M70.654 64.0002C70.8375 63.4828 70.9469 62.9421 70.979 62.3941L69.316 62.9482L68.684 61.0482L70.766 60.3541C70.4534 59.2669 69.8403 58.2899 68.9972 57.5356C68.1541 56.7813 67.1152 56.2803 66 56.0901V58.0001H64V56.0901C63.0433 56.2537 62.1405 56.6464 61.3687 57.2349C60.5968 57.8233 59.979 58.5899 59.568 59.4691L61.316 60.0521L60.684 61.9521L59.031 61.4001C59.0107 61.5995 59.0004 61.7998 59 62.0002C58.9987 62.6818 59.1157 63.3585 59.346 64.0002H70.654ZM64 60.0001H66V62.0002H64V60.0001Z"], ["d", "M43.6534 63.9998C42.5347 62.6371 41.4577 61.2318 40.4224 59.7838C39.5084 60.0881 38.6238 60.4743 37.7794 60.9378C37.0936 61.236 36.5356 61.7674 36.2044 62.4378C36.0004 62.9319 35.9461 63.4751 36.0484 63.9998H43.6534Z"], ["d", "M36.0186 66C36.2852 72.9803 39.2437 79.5864 44.2738 84.4335C49.304 89.2805 56.0151 91.9922 63.0006 92H65.0006C71.986 91.9922 78.6971 89.2805 83.7273 84.4335C88.7574 79.5864 91.7159 72.9803 91.9826 66H36.0186ZM52.5656 86.9C47.8351 84.6169 43.8682 81.0109 41.1456 76.519L42.8556 75.481C45.3782 79.6426 49.0532 82.9838 53.4356 85.1L52.5656 86.9ZM57.0006 88H55.0006V86H57.0006V88Z"], ["d", "M79 40V38H75C72.8783 38 70.8434 38.8429 69.3431 40.3431C67.8429 41.8434 67 43.8783 67 46V48H71C73.1217 48 75.1566 47.1571 76.6569 45.6569C78.1571 44.1566 79 42.1217 79 40Z"], ["d", "M60 42C61.1046 42 62 41.1046 62 40C62 38.8954 61.1046 38 60 38C58.8954 38 58 38.8954 58 40C58 41.1046 58.8954 42 60 42Z"], ["d", "M47 39C48.1046 39 49 38.1046 49 37C49 35.8954 48.1046 35 47 35C45.8954 35 45 35.8954 45 37C45 38.1046 45.8954 39 47 39Z"], ["d", "M82.5675 49.1194C80.7141 52.5068 77.1166 54.8096 72.9905 54.8096C68.4715 54.8096 64.5861 52.0474 62.9326 48.1233L30.8906 58.5846H91.3083L82.5675 49.1194Z"], ["d", "M28 84.3115C28 86.839 30.0487 88.8877 32.5762 88.8877H87.4238C89.9513 88.8877 92 86.839 92 84.3115V77.7011H28V84.3115Z"], ["d", "M92 62.221H28V72.8877H92V62.221Z"], ["d", "M72.9905 51.1733C77.007 51.1733 80.2632 47.9171 80.2632 43.9006C80.2632 40.9866 78.549 38.4744 76.0746 37.3139C76.4681 36.2426 76.9711 35.1045 77.6055 34.0189C79.2499 31.2055 81.7818 28.7491 85.6128 28.7491C86.6172 28.7491 87.431 27.9352 87.431 26.9309C87.431 25.9265 86.6172 25.1127 85.6128 25.1127C80.7025 25.1127 76.6933 27.8504 73.9815 33.0385C73.3706 34.2053 72.8666 35.4152 72.4438 36.6506C68.6826 36.9304 65.7178 40.0683 65.7178 43.9006C65.7178 47.9171 68.974 51.1733 72.9905 51.1733ZM68.6227 41.8346C69.1398 40.8029 69.9471 39.9612 70.9568 39.4014C71.8203 38.9217 72.9362 39.222 73.4286 40.1095C73.9156 40.9876 73.5985 42.0945 72.7204 42.5813C72.3755 42.7728 72.0889 43.0688 71.9025 43.416C71.8935 43.4322 71.8819 43.4472 71.8737 43.4637C71.5549 44.1001 70.9132 44.4679 70.2467 44.4679C68.9042 44.4681 68.0152 43.047 68.6227 41.8346Z"], ["cx", "64", "cy", "64", "r", "64"], ["d", "M72.9844 50.1088C73.0559 49.6716 73.0887 49.2561 73.0688 48.8719L75.8274 46.9943C76.8994 46.4646 77.9872 46.5364 78.5618 46.6344C78.6067 46.6427 80.2207 46.9779 81.1124 46.3707C82.2105 45.624 82.4989 44.1229 81.7484 43.0268C81.3209 42.3972 80.6524 42.0452 79.9509 41.9881C80.1553 41.3172 80.0738 40.5627 79.6483 39.9386C78.9018 38.8362 77.4007 38.5522 76.3024 39.3005C75.6888 39.7178 75.3229 40.8139 75.2081 41.8448C75.157 42.2372 74.8972 43.5828 73.8155 44.5585L71.169 46.3624C69.4272 45.8881 66.5898 46.2369 63.7456 47.0575C66.6574 47.6022 69.5608 48.5343 72.4076 49.8435L72.9844 50.1088Z"], ["d", "M37.3761 75.4477H59.3169C58.7081 74.8924 58.1594 74.2697 57.6875 73.5765C55.6223 70.5406 55.266 66.872 56.684 63.2453C57.9067 60.1192 60.3356 57.254 63.7074 54.9608C65.193 53.9497 66.9936 53.0233 68.9228 52.2383C66.3707 51.2458 63.6527 50.5316 60.8035 50.2228C58.8013 50.005 56.8367 49.8909 54.9367 49.8909C42.7396 49.8909 33.1877 54.6601 33.1877 66.948C33.1877 71.1366 35.2822 75.4477 37.3761 75.4477Z"], ["d", "M65.714 57.909C60.1777 61.6742 57.7195 67.284 60.636 71.5708C62.1463 73.7905 64.6402 74.8679 67.4623 74.8679C70.0902 74.8679 73.0029 73.9341 75.6722 72.1187C80.4168 68.8875 85.2271 61.0646 85.0041 56.5672L88.3378 54.3014C89.3639 53.7934 90.5628 53.6726 91.6409 53.8635C92.6059 54.0342 93.9177 54.0958 94.7269 53.5445C96.052 52.6404 96.3977 50.8305 95.4979 49.4992C94.9782 48.7423 94.1685 48.317 93.3219 48.2494C93.5673 47.4376 93.4734 46.5275 92.9558 45.7687C92.0496 44.4364 90.2369 44.096 88.9103 44.9996C88.17 45.5027 87.7281 46.8321 87.5873 48.0754C87.5279 48.5459 87.2129 50.1736 85.9061 51.358L82.7055 53.5361C82.0463 53.355 81.2556 53.2708 80.3752 53.2708C76.043 53.2711 69.5301 55.3118 65.714 57.909Z"], ["d", "M93.3869 71.058L88.1832 70.0173C88.181 69.9994 88.1794 69.9809 88.1772 69.9628C88.0439 68.7858 87.3846 67.0675 86.1201 65.1323C85.8139 65.7114 85.5163 66.229 85.2531 66.6638C83.1309 70.1715 80.3708 73.234 77.6787 75.0674C77.6067 75.1164 77.5334 75.162 77.4609 75.2103C82.8235 75.2103 87.411 75.2103 92.9759 75.2103C94.1336 75.2103 95.0722 74.2717 95.0722 73.114C95.0722 72.1143 94.3668 71.2539 93.3869 71.058Z"], ["d", "M93.7486 79.2515H34.0962C33.3752 79.2515 32.7048 79.6221 32.3209 80.2328C31.9374 80.8433 31.8946 81.6084 32.2075 82.2581L34.0813 86.1464C34.9568 87.9627 36.795 89.1174 38.8112 89.1174H89.0332C91.0494 89.1174 92.8877 87.9627 93.7633 86.1464L95.6371 82.2581C95.95 81.6086 95.9074 80.8436 95.5237 80.2328C95.1403 79.6219 94.4699 79.2515 93.7486 79.2515Z"], ["d", "M16.757 3L14.757 5H5V19H19V9.243L21 7.243V20C21 20.2652 20.8946 20.5196 20.7071 20.7071C20.5196 20.8946 20.2652 21 20 21H4C3.73478 21 3.48043 20.8946 3.29289 20.7071C3.10536 20.5196 3 20.2652 3 20V4C3 3.73478 3.10536 3.48043 3.29289 3.29289C3.48043 3.10536 3.73478 3 4 3H16.757ZM20.485 2.1L21.9 3.516L12.708 12.708L11.296 12.711L11.294 11.294L20.485 2.1Z"], ["viewBox", "0 0 64 64", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M34.6667 56V61.3333H29.3333V56H8.00001C7.29277 56 6.61449 55.7191 6.11439 55.219C5.61429 54.7189 5.33334 54.0406 5.33334 53.3333V10.6667C5.33334 9.95943 5.61429 9.28115 6.11439 8.78106C6.61449 8.28096 7.29277 8.00001 8.00001 8.00001H24C25.5136 7.99821 27.0101 8.31936 28.3897 8.942C29.7692 9.56464 31.0001 10.4745 32 11.6107C32.9999 10.4745 34.2308 9.56464 35.6104 8.942C36.9899 8.31936 38.4864 7.99821 40 8.00001H56C56.7073 8.00001 57.3855 8.28096 57.8856 8.78106C58.3857 9.28115 58.6667 9.95943 58.6667 10.6667V53.3333C58.6667 54.0406 58.3857 54.7189 57.8856 55.219C57.3855 55.7191 56.7073 56 56 56H34.6667ZM53.3333 50.6667V13.3333H40C38.5855 13.3333 37.229 13.8952 36.2288 14.8954C35.2286 15.8956 34.6667 17.2522 34.6667 18.6667V50.6667H53.3333ZM29.3333 50.6667V18.6667C29.3333 17.2522 28.7714 15.8956 27.7712 14.8954C26.7711 13.8952 25.4145 13.3333 24 13.3333H10.6667V50.6667H29.3333Z"], ["d", "M11 11V7H13V11H17V13H13V17H11V13H7V11H11ZM12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20Z"], ["d", "M15.6676 11.9985L10.0155 1.60859C9.10743 0.0798092 6.89378 0.077778 5.98446 1.60859L0.332715 11.9985C-0.595597 13.5606 0.528309 15.5388 2.34778 15.5388H13.652C15.47 15.5388 16.5959 13.5622 15.6676 11.9985ZM8 13.6638C7.48318 13.6638 7.0625 13.2431 7.0625 12.7263C7.0625 12.2095 7.48318 11.7888 8 11.7888C8.51681 11.7888 8.9375 12.2095 8.9375 12.7263C8.9375 13.2431 8.51681 13.6638 8 13.6638ZM8.9375 9.91381C8.9375 10.4306 8.51681 10.8513 8 10.8513C7.48318 10.8513 7.0625 10.4306 7.0625 9.91381V5.22631C7.0625 4.7095 7.48318 4.28881 8 4.28881C8.51681 4.28881 8.9375 4.7095 8.9375 5.22631V9.91381Z"], ["d", "M22.2349 0.0535024C21.9723 -0.0552476 21.6697 0.00484617 21.4686 0.20594L1.53749 20.137C1.26289 20.4115 1.26289 20.8567 1.53749 21.1313L4.20022 23.794C4.33752 23.9313 4.51747 24 4.69738 24C4.87729 24 5.05728 23.9313 5.19453 23.794L11.2548 17.7337L13.0548 18.5043C13.144 18.5425 13.238 18.561 13.3313 18.561C13.5141 18.561 13.6941 18.4897 13.8286 18.3551L16.438 15.7457C18.4235 13.7603 19.975 11.4382 21.0495 8.84416C22.124 6.25005 22.6688 3.5111 22.6688 0.703284C22.6689 0.418893 22.4976 0.162299 22.2349 0.0535024ZM4.69738 22.3025L3.02905 20.6342L6.29497 17.3682L7.9633 19.0366L4.69738 22.3025ZM8.95771 18.0422L7.28938 16.3738L8.42516 15.2381L10.0935 16.9064L8.95771 18.0422ZM19.7503 8.30608C18.7469 10.7287 17.2979 12.8972 15.4438 14.7514L13.1708 17.0243L11.4735 16.2977L9.41961 14.2437L21.1841 2.47914C21.006 4.48042 20.5259 6.43366 19.7503 8.30608Z"], ["width", "24", "height", "24", "fill", "white"], ["width", "24", "height", "24", "viewBox", "0 0 24 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M8.67143 2H3C2.73478 2 2.48043 2.10536 2.29289 2.29289C2.10536 2.48043 2 2.73478 2 3V19C2 19.7956 2.31607 20.5587 2.87868 21.1213C3.44129 21.6839 4.20435 22 5 22H19C19.7956 22 20.5587 21.6839 21.1213 21.1213C21.6839 20.5587 22 19.7956 22 19V15H18V13.5H16V20H5C4.73478 20 4.48043 19.8946 4.29289 19.7071C4.10536 19.5196 4 19.2652 4 19V4H8.5V2.83333C8.5 2.544 8.5594 2.26079 8.67143 2ZM18 19V17H20V19C20 19.2652 19.8946 19.5196 19.7071 19.7071C19.5196 19.8946 19.2652 20 19 20C18.7348 20 18.4804 19.8946 18.2929 19.7071C18.1054 19.5196 18 19.2652 18 19Z", "fill", "white"], ["d", "M8.5 7H6V9H8.5V7Z", "fill", "white"], ["d", "M8.5 11H6V13H9.24688C9.20258 12.9625 9.15968 12.923 9.11833 12.8817C8.72242 12.4858 8.5 11.9488 8.5 11.3889V11Z", "fill", "white"], ["d", "M11 17V15H6V17H11Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M17.8 1H14.2L13 2.22222H10.6C10.4409 2.22222 10.2883 2.28661 10.1757 2.40121C10.0632 2.51582 10 2.67126 10 2.83333V11.3889C10 11.551 10.0632 11.7064 10.1757 11.821C10.2883 11.9356 10.4409 12 10.6 12H21.4C21.5591 12 21.7117 11.9356 21.8243 11.821C21.9368 11.7064 22 11.551 22 11.3889V2.83333C22 2.67126 21.9368 2.51582 21.8243 2.40121C21.7117 2.28661 21.5591 2.22222 21.4 2.22222H19L17.8 1ZM17.3636 3L18.3455 4H19.8182V10H11.9636V4H13.4364L14.4182 3H17.3636Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M18.3455 7C18.3455 8.38071 17.2465 9.5 15.8909 9.5C14.5353 9.5 13.4364 8.38071 13.4364 7C13.4364 5.61929 14.5353 4.5 15.8909 4.5C17.2465 4.5 18.3455 5.61929 18.3455 7ZM15.8909 8C16.4332 8 16.8727 7.55228 16.8727 7C16.8727 6.44772 16.4332 6 15.8909 6C15.3487 6 14.9091 6.44772 14.9091 7C14.9091 7.55228 15.3487 8 15.8909 8Z", "fill", "white"], ["width", "25", "height", "24", "viewBox", "0 0 25 24", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M19.5 2H17.5V5L14.5 5V7H17.5V10H19.5V7H22.5V5L19.5 5V2Z", "fill", "white"], ["d", "M12.5 6.37125H6.85996L6.10996 3.74625C6.03496 3.44625 5.73496 3.22125 5.43496 3.22125H3.25996C2.88496 3.22125 2.58496 3.52125 2.58496 3.89625C2.58496 4.27125 2.88496 4.57125 3.25996 4.57125H4.90996L7.68496 14.4713C7.68496 14.5463 7.75996 14.6963 7.83496 14.7713C7.88737 14.9809 8.01303 15.1173 8.16076 15.1804C8.22443 15.2076 8.29219 15.2213 8.35996 15.2213H18.335C18.56 15.2213 18.785 15.0713 18.86 14.8463L19.6263 12H17.555L17.2262 13.2213H9.41167L8.0522 8.37125H12.5V6.37125Z", "fill", "white"], ["d", "M18.0935 10L18.532 8.37125H17.5V7H14.5V6.37125H20.36C20.585 6.37125 20.735 6.44625 20.81 6.59625C20.9445 6.73083 20.9584 6.86542 20.9598 7L19.5 7V10H18.0935Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M17.2099 17.0963C17.4363 17.0963 17.6546 17.1407 17.8564 17.2213C18.5236 17.4875 19.0099 18.1477 19.0099 18.8963C19.0099 19.8713 18.1849 20.6963 17.2099 20.6963C16.2349 20.6963 15.4099 19.8713 15.4099 18.8963C15.4099 18.1477 15.8963 17.4875 16.5634 17.2213C16.7652 17.1407 16.9835 17.0963 17.2099 17.0963ZM17.4099 18.8963C17.4099 18.9812 17.3746 19.0287 17.3585 19.0448C17.3424 19.061 17.2949 19.0963 17.2099 19.0963C17.1249 19.0963 17.0775 19.061 17.0613 19.0448C17.0452 19.0287 17.0099 18.9812 17.0099 18.8963C17.0099 18.8113 17.0452 18.7638 17.0613 18.7477C17.0775 18.7315 17.1249 18.6963 17.2099 18.6963C17.2949 18.6963 17.3424 18.7315 17.3585 18.7477C17.3746 18.7638 17.4099 18.8113 17.4099 18.8963Z", "fill", "white"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M8.95991 17.0963C9.19305 17.0963 9.41583 17.1406 9.6203 17.2213C10.2877 17.4846 10.7599 18.1353 10.7599 18.8963C10.7599 19.8904 9.95402 20.6963 8.95991 20.6963C7.9658 20.6963 7.15991 19.8904 7.15991 18.8963C7.15991 18.1346 7.63294 17.4835 8.30123 17.2206C8.32065 17.2129 8.34023 17.2056 8.35996 17.1987C8.54761 17.1323 8.74955 17.0963 8.95991 17.0963ZM8.75991 18.8963C8.75991 18.7858 8.84946 18.6963 8.95991 18.6963C9.07037 18.6963 9.15991 18.7858 9.15991 18.8963C9.15991 19.0067 9.07037 19.0963 8.95991 19.0963C8.84946 19.0963 8.75991 19.0067 8.75991 18.8963Z", "fill", "white"], ["width", "65", "height", "4", "viewBox", "0 0 65 4", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["x1", "2.5", "y1", "2", "x2", "62.5", "y2", "2", "stroke", "#CCCCCC", "stroke-width", "4", "stroke-linecap", "round"], ["width", "48", "height", "48", "viewBox", "0 0 48 48", "fill", "none", "xmlns", "http://www.w3.org/2000/svg"], ["filter", "url(#filter0_b_2567_109244)"], ["width", "48", "height", "48", "rx", "24", "fill-opacity", "0.65"], ["d", "M19.752 17.439L30.26 23.569C30.3353 23.6131 30.3978 23.6761 30.4412 23.7518C30.4846 23.8275 30.5074 23.9132 30.5074 24.0005C30.5074 24.0878 30.4846 24.1735 30.4412 24.2492C30.3978 24.3249 30.3353 24.3879 30.26 24.432L19.752 30.562C19.6759 30.6064 19.5893 30.6299 19.5012 30.6301C19.4131 30.6304 19.3264 30.6073 19.2501 30.5632C19.1737 30.5191 19.1104 30.4557 19.0665 30.3793C19.0226 30.3028 18.9996 30.2161 19 30.128V17.871C19 17.783 19.0232 17.6966 19.0672 17.6204C19.1113 17.5443 19.1747 17.4811 19.2509 17.4373C19.3272 17.3935 19.4137 17.3706 19.5017 17.3709C19.5897 17.3712 19.676 17.3947 19.752 17.439Z", "fill", "white"], ["id", "filter0_b_2567_109244", "x", "-8", "y", "-8", "width", "64", "height", "64", "filterUnits", "userSpaceOnUse", "color-interpolation-filters", "sRGB"], ["in2", "SourceAlpha", "operator", "in", "result", "effect1_backgroundBlur_2567_109244"], ["mode", "normal", "in", "SourceGraphic", "in2", "effect1_backgroundBlur_2567_109244", "result", "shape"], ["width", "32", "height", "32", "viewBox", "0 0 32 32", "xmlns", "http://www.w3.org/2000/svg"], ["d", "M13.2265 16L7.94672 10.7203L10.5866 8.08041L15.8663 13.3601L21.146 8.0804L23.7859 10.7203L18.5062 16L23.7859 21.2797L21.146 23.9196L15.8663 18.6399L10.5866 23.9196L7.94672 21.2797L13.2265 16Z", "fill", "#676767"], ["fill-rule", "evenodd", "clip-rule", "evenodd", "d", "M4 3.5C4 2.39543 4.89543 1.5 6 1.5H14.5C15.6046 1.5 16.5 2.39543 16.5 3.5V4.81867L17.8727 8.47909C17.9569 8.70364 18 8.94151 18 9.18133V20C18 21.1046 17.1046 22 16 22H4.5C3.39543 22 2.5 21.1046 2.5 20V9.18133C2.5 8.94151 2.54313 8.70364 2.62734 8.47909L4 4.81867V3.5ZM14.5 3.5H6V4.81867C6 4.964 5.98416 5.10863 5.95293 5.25H14.5471C14.5158 5.10863 14.5 4.964 14.5 4.81867V3.5ZM4.84925 8.25L5.41175 6.75H15.0882L15.6507 8.25L4.84925 8.25ZM4.5 9.75L16 9.75V18.093C15.5419 18.0057 15.0439 17.877 14.5439 17.6952C13.3931 17.2767 12.3041 16.604 11.6241 15.584C10.6424 14.1114 9.09795 13.8143 7.7959 13.5638L7.72944 13.551C6.54635 13.3231 5.45861 13.1084 4.5 12.3802V9.75ZM4.5 14.1428V20H16V19.6163C15.3897 19.5159 14.7123 19.3525 14.0312 19.1048C12.707 18.6233 11.296 17.796 10.376 16.416C9.77448 15.5137 8.85505 15.2955 7.44567 15.024L7.36096 15.0077C6.49286 14.8407 5.4852 14.647 4.5 14.1428Z", "fill", "black"], ["d", "M13.6324 22.8744C15.4922 22.8744 17 21.3369 17 19.4406C17 17.5442 15.4922 16.0068 13.6324 16.0068C11.8778 15.9273 10.1629 16.5444 8.86136 17.7237C8.5934 17.9225 8.37587 18.1814 8.22626 18.4796C8.07665 18.7778 7.99915 19.107 8.00001 19.4406C7.99915 19.7742 8.07665 20.1034 8.22626 20.4016C8.37587 20.6998 8.5934 20.9587 8.86136 21.1575C10.1629 22.3368 11.8778 22.9539 13.6324 22.8744", "fill", "white"], ["d", "M13.6324 22.8744C15.4922 22.8744 17 21.3369 17 19.4406C17 17.5442 15.4922 16.0068 13.6324 16.0068C11.8778 15.9273 10.1629 16.5444 8.86136 17.7237C8.5934 17.9225 8.37587 18.1814 8.22626 18.4796C8.07665 18.7778 7.99915 19.107 8.00001 19.4406C7.99915 19.7742 8.07665 20.1034 8.22626 20.4016C8.37587 20.6998 8.5934 20.9587 8.86136 21.1575C10.1629 22.3368 11.8778 22.9539 13.6324 22.8744", "stroke", "black", "stroke-width", "1.5", "stroke-linecap", "round", "stroke-linejoin", "round"], ["d", "M14.0068 19.6324C14.0068 21.4922 15.5442 23 17.4406 23C19.337 23 20.8744 21.4922 20.8744 19.6324C20.9539 17.8778 20.3368 16.1629 19.1575 14.8614C18.9587 14.5934 18.6998 14.3759 18.4016 14.2263C18.1034 14.0766 17.7742 13.9992 17.4406 14C17.107 13.9992 16.7778 14.0766 16.4796 14.2263C16.1814 14.3759 15.9225 14.5934 15.7237 14.8614C14.5444 16.1629 13.9273 17.8778 14.0068 19.6324", "fill", "white"], ["d", "M14.0068 19.6324C14.0068 21.4922 15.5442 23 17.4406 23C19.337 23 20.8744 21.4922 20.8744 19.6324C20.9539 17.8778 20.3368 16.1629 19.1575 14.8614C18.9587 14.5934 18.6998 14.3759 18.4016 14.2263C18.1034 14.0766 17.7742 13.9992 17.4406 14C17.107 13.9992 16.7778 14.0766 16.4796 14.2263C16.1814 14.3759 15.9225 14.5934 15.7237 14.8614C14.5444 16.1629 13.9273 17.8778 14.0068 19.6324", "stroke", "black", "stroke-width", "1.5", "stroke-linecap", "round", "stroke-linejoin", "round"]], template: function IconComponent_Template(rf, ctx) {
|
|
5080
5123
|
if (rf & 1) {
|
|
5081
5124
|
i0.ɵɵtemplate(0, IconComponent_div_0_Template, 2, 8, "div", 0);
|
|
5082
|
-
i0.ɵɵtemplate(1, IconComponent_ng_template_1_Template,
|
|
5125
|
+
i0.ɵɵtemplate(1, IconComponent_ng_template_1_Template, 60, 62, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
5083
5126
|
}
|
|
5084
5127
|
if (rf & 2) {
|
|
5085
5128
|
var _r1 = i0.ɵɵreference(2);
|
|
@@ -5291,12 +5334,12 @@
|
|
|
5291
5334
|
i0.ɵɵproperty("ngForOf", ctx_r4.list.controls)("ngForTrackBy", ctx_r4.trackByIndex);
|
|
5292
5335
|
}
|
|
5293
5336
|
}
|
|
5294
|
-
function
|
|
5337
|
+
function ListInputComponent_ul_4_ng_template_2_li_0_div_12_Template(rf, ctx) {
|
|
5295
5338
|
if (rf & 1) {
|
|
5296
5339
|
i0.ɵɵelement(0, "div", 23);
|
|
5297
5340
|
}
|
|
5298
5341
|
}
|
|
5299
|
-
function
|
|
5342
|
+
function ListInputComponent_ul_4_ng_template_2_li_0_div_13_Template(rf, ctx) {
|
|
5300
5343
|
if (rf & 1) {
|
|
5301
5344
|
i0.ɵɵelementStart(0, "div", 24);
|
|
5302
5345
|
i0.ɵɵelement(1, "ng-miam-icon", 33);
|
|
@@ -5337,23 +5380,21 @@
|
|
|
5337
5380
|
i0.ɵɵelement(3, "ng-miam-icon", 17);
|
|
5338
5381
|
i0.ɵɵelementEnd();
|
|
5339
5382
|
i0.ɵɵelementStart(4, "div", 29);
|
|
5340
|
-
i0.ɵɵ
|
|
5341
|
-
i0.ɵɵ
|
|
5342
|
-
i0.ɵɵpipe(
|
|
5343
|
-
i0.ɵɵ
|
|
5344
|
-
i0.ɵɵ
|
|
5345
|
-
i0.ɵɵlistener("ngModelChange", function ListInputComponent_ul_4_ng_template_2_li_0_Template_input_ngModelChange_7_listener($event) { i0.ɵɵrestoreView(_r24_1); var i_r19 = ctx.index; var ctx_r25 = i0.ɵɵnextContext(3); return ctx_r25.updateQuantityValue($event, i_r19); });
|
|
5346
|
-
i0.ɵɵelementEnd();
|
|
5347
|
-
i0.ɵɵelementStart(8, "input", 32);
|
|
5348
|
-
i0.ɵɵlistener("blur", function ListInputComponent_ul_4_ng_template_2_li_0_Template_input_blur_8_listener() { i0.ɵɵrestoreView(_r24_1); var row_r18 = ctx.$implicit; var i_r19 = ctx.index; var ctx_r26 = i0.ɵɵnextContext(3); return ctx_r26.checkUnit(row_r18["controls"]["attributes"]["controls"]["unit"].value, i_r19); });
|
|
5383
|
+
i0.ɵɵelement(5, "input", 30);
|
|
5384
|
+
i0.ɵɵpipe(6, "async");
|
|
5385
|
+
i0.ɵɵpipe(7, "capitalizeFirstLetter");
|
|
5386
|
+
i0.ɵɵelementStart(8, "input", 31);
|
|
5387
|
+
i0.ɵɵlistener("ngModelChange", function ListInputComponent_ul_4_ng_template_2_li_0_Template_input_ngModelChange_8_listener($event) { i0.ɵɵrestoreView(_r24_1); var i_r19 = ctx.index; var ctx_r23 = i0.ɵɵnextContext(3); return ctx_r23.updateQuantityValue($event, i_r19); });
|
|
5349
5388
|
i0.ɵɵelementEnd();
|
|
5389
|
+
i0.ɵɵelement(9, "input", 32);
|
|
5390
|
+
i0.ɵɵpipe(10, "async");
|
|
5350
5391
|
i0.ɵɵelementEnd();
|
|
5351
5392
|
i0.ɵɵelementEnd();
|
|
5352
|
-
i0.ɵɵelementStart(
|
|
5353
|
-
i0.ɵɵlistener("click", function
|
|
5393
|
+
i0.ɵɵelementStart(11, "ng-miam-icon", 20);
|
|
5394
|
+
i0.ɵɵlistener("click", function ListInputComponent_ul_4_ng_template_2_li_0_Template_ng_miam_icon_click_11_listener() { i0.ɵɵrestoreView(_r24_1); var i_r19 = ctx.index; var ctx_r25 = i0.ɵɵnextContext(3); return ctx_r25.delete(i_r19); });
|
|
5354
5395
|
i0.ɵɵelementEnd();
|
|
5355
|
-
i0.ɵɵtemplate(
|
|
5356
|
-
i0.ɵɵtemplate(
|
|
5396
|
+
i0.ɵɵtemplate(12, ListInputComponent_ul_4_ng_template_2_li_0_div_12_Template, 1, 0, "div", 21);
|
|
5397
|
+
i0.ɵɵtemplate(13, ListInputComponent_ul_4_ng_template_2_li_0_div_13_Template, 9, 6, "div", 22);
|
|
5357
5398
|
i0.ɵɵelementEnd();
|
|
5358
5399
|
}
|
|
5359
5400
|
if (rf & 2) {
|
|
@@ -5365,18 +5406,18 @@
|
|
|
5365
5406
|
i0.ɵɵadvance(2);
|
|
5366
5407
|
i0.ɵɵproperty("iconName", ctx_r17.icon.Grip);
|
|
5367
5408
|
i0.ɵɵadvance(2);
|
|
5368
|
-
i0.ɵɵproperty("ngClass", (
|
|
5369
|
-
i0.ɵɵadvance(
|
|
5409
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpipeBind1(6, 10, ctx_r17.isIngredientReviewed(row_r18["controls"]["attributes"]["controls"]["name"].value)) ? "alert-success" : "alert-danger")("ngModel", i0.ɵɵpipeBind1(7, 12, row_r18["controls"]["attributes"]["controls"]["name"].value))("formControl", row_r18["controls"]["attributes"]["controls"]["name"]);
|
|
5410
|
+
i0.ɵɵadvance(3);
|
|
5370
5411
|
i0.ɵɵproperty("ngModel", row_r18["controls"]["attributes"]["controls"]["quantity"].value)("formControl", row_r18["controls"]["attributes"]["controls"]["quantity"]);
|
|
5371
5412
|
i0.ɵɵadvance(1);
|
|
5372
|
-
i0.ɵɵproperty("ngClass", (
|
|
5373
|
-
i0.ɵɵadvance(
|
|
5413
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpipeBind1(10, 14, ctx_r17.isQuantityReviewed(row_r18["controls"]["attributes"]["controls"]["unit"].value)) ? "alert-success" : "alert-danger")("formControl", row_r18["controls"]["attributes"]["controls"]["unit"]);
|
|
5414
|
+
i0.ɵɵadvance(2);
|
|
5374
5415
|
i0.ɵɵproperty("iconName", ctx_r17.icon.Trash);
|
|
5375
5416
|
}
|
|
5376
5417
|
}
|
|
5377
5418
|
function ListInputComponent_ul_4_ng_template_2_Template(rf, ctx) {
|
|
5378
5419
|
if (rf & 1) {
|
|
5379
|
-
i0.ɵɵtemplate(0, ListInputComponent_ul_4_ng_template_2_li_0_Template,
|
|
5420
|
+
i0.ɵɵtemplate(0, ListInputComponent_ul_4_ng_template_2_li_0_Template, 14, 16, "li", 13);
|
|
5380
5421
|
}
|
|
5381
5422
|
if (rf & 2) {
|
|
5382
5423
|
var ctx_r6 = i0.ɵɵnextContext(2);
|
|
@@ -5385,9 +5426,9 @@
|
|
|
5385
5426
|
}
|
|
5386
5427
|
function ListInputComponent_ul_4_Template(rf, ctx) {
|
|
5387
5428
|
if (rf & 1) {
|
|
5388
|
-
var
|
|
5429
|
+
var _r27_1 = i0.ɵɵgetCurrentView();
|
|
5389
5430
|
i0.ɵɵelementStart(0, "ul", 10);
|
|
5390
|
-
i0.ɵɵlistener("cdkDropListDropped", function ListInputComponent_ul_4_Template_ul_cdkDropListDropped_0_listener($event) { i0.ɵɵrestoreView(
|
|
5431
|
+
i0.ɵɵlistener("cdkDropListDropped", function ListInputComponent_ul_4_Template_ul_cdkDropListDropped_0_listener($event) { i0.ɵɵrestoreView(_r27_1); var ctx_r26 = i0.ɵɵnextContext(); return ctx_r26.drop($event); });
|
|
5391
5432
|
i0.ɵɵtemplate(1, ListInputComponent_ul_4_ng_container_1_Template, 2, 2, "ng-container", 11);
|
|
5392
5433
|
i0.ɵɵtemplate(2, ListInputComponent_ul_4_ng_template_2_Template, 1, 2, "ng-template", null, 12, i0.ɵɵtemplateRefExtractor);
|
|
5393
5434
|
i0.ɵɵelementEnd();
|
|
@@ -5469,14 +5510,6 @@
|
|
|
5469
5510
|
}));
|
|
5470
5511
|
_this.previousQuantities.push(ing.attributes.quantity);
|
|
5471
5512
|
_this.list.markAsDirty();
|
|
5472
|
-
_this.list.controls.forEach(function (control, index) {
|
|
5473
|
-
var ingredientName = control.get('attributes')['controls']['name']['value'];
|
|
5474
|
-
var ingredientUnit = control.get('attributes')['controls']['unit']['value'];
|
|
5475
|
-
if ('' + ing.attributes.name === ingredientName) {
|
|
5476
|
-
_this.checkIngredientdef(ingredientName, index);
|
|
5477
|
-
_this.checkUnit(ingredientUnit, index);
|
|
5478
|
-
}
|
|
5479
|
-
});
|
|
5480
5513
|
});
|
|
5481
5514
|
});
|
|
5482
5515
|
}
|
|
@@ -5529,19 +5562,11 @@
|
|
|
5529
5562
|
this.hideErrors = false;
|
|
5530
5563
|
this.orderHasChanged.emit();
|
|
5531
5564
|
};
|
|
5532
|
-
ListInputComponent.prototype.
|
|
5533
|
-
|
|
5534
|
-
this.ingredientService.isReviewedName(value.toLowerCase()).pipe(operators.take(1)).subscribe(function (res) {
|
|
5535
|
-
Object.assign(_this.list.controls[index]["controls"]['attributes'], { isNotReviewedIngredientName: !res });
|
|
5536
|
-
_this.cdr.detectChanges();
|
|
5537
|
-
});
|
|
5565
|
+
ListInputComponent.prototype.isIngredientReviewed = function (ingredientName) {
|
|
5566
|
+
return this.ingredientService.isReviewedName(ingredientName.toLowerCase());
|
|
5538
5567
|
};
|
|
5539
|
-
ListInputComponent.prototype.
|
|
5540
|
-
|
|
5541
|
-
this.ingredientService.isReviewedUnit(value).pipe(operators.take(1)).subscribe(function (res) {
|
|
5542
|
-
Object.assign(_this.list.controls[index]["controls"]['attributes'], { isNotReviewedUnit: !res });
|
|
5543
|
-
_this.cdr.detectChanges();
|
|
5544
|
-
});
|
|
5568
|
+
ListInputComponent.prototype.isQuantityReviewed = function (unitName) {
|
|
5569
|
+
return this.ingredientService.isReviewedUnit(unitName.toLowerCase());
|
|
5545
5570
|
};
|
|
5546
5571
|
ListInputComponent.prototype.trackByIndex = function (index, el) {
|
|
5547
5572
|
return el;
|
|
@@ -5549,7 +5574,7 @@
|
|
|
5549
5574
|
return ListInputComponent;
|
|
5550
5575
|
}());
|
|
5551
5576
|
ListInputComponent.ɵfac = function ListInputComponent_Factory(t) { return new (t || ListInputComponent)(i0.ɵɵdirectiveInject(IngredientsService), i0.ɵɵdirectiveInject(i9.FormBuilder), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
|
|
5552
|
-
ListInputComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ListInputComponent, selectors: [["ng-miam-list-input"]], inputs: { hint: "hint", placeholder: "placeholder", label: "label", instructions: "instructions", ingredientMode: "ingredientMode", list: "list" }, outputs: { deleteId: "deleteId", orderHasChanged: "orderHasChanged" }, decls: 14, vars: 7, consts: [[1, "miam-list-input"], [1, "miam-list-input__list", 3, "formGroup"], [1, "miam-list-input__list__label"], ["class", "miam-list-input__container m-default-card", "cdkDropList", "", 3, "cdkDropListDropped", 4, "ngIf", "ngIfElse"], ["hintPlaceholder", ""], [1, "miam-list-input__actions"], ["matInput", "", "cdkTextareaAutosize", "", "cdkAutosizeMinRows", "4", "cdkAutosizeMaxRows", "4", 1, "m-input", 3, "formControl", "keydown.enter"], [1, "m-button-primary", 3, "mousedown", "mouseup"], [1, "miam-list-input__instructions__direction"], ["class", "miam-list-input__actions__instructions", 4, "ngIf"], ["cdkDropList", "", 1, "miam-list-input__container", "m-default-card", 3, "cdkDropListDropped"], [4, "ngIf", "ngIfElse"], ["ingredientRow", ""], ["cdkDrag", "", 4, "ngFor", "ngForOf", "ngForTrackBy"], ["cdkDrag", ""], [3, "formGroup"], [1, "miam-list-input__container__row", "m-default-card"], ["primaryColor", "var(--m-color-grey05)", "cdkDragHandle", "", 1, "miam-list-input__row__grip", 3, "iconName"], ["cdkTextareaAutosize", "true", "cdkAutosizeMinRows", "1", "cdkAutosizeMaxRows", "50", "formControlName", "description", 1, "m-input", 3, "blur"], ["autosize", "cdkTextareaAutosize"], ["primaryColor", "var(--m-color-grey05)", 1, "miam-list-input__row__trash", 3, "iconName", "click"], ["class", "miam-list-input__row__placeholder", 4, "cdkDragPlaceholder"], ["class", "miam-list-input__row__preview m-default-card", 4, "cdkDragPreview"], [1, "miam-list-input__row__placeholder"], [1, "miam-list-input__row__preview", "m-default-card"], ["primaryColor", "var(--m-color-grey05)", "cdkDragHandle", "", 3, "iconName"], [1, "miam-list-input__preview__text", "m-body-typo"], [1, "miam-list-input__container__row", "m-default-card", 3, "formGroupName"], [1, "miam-list-input__row__left"], [1, "miam-list-input__row__right"], [1, "m-input", 3, "ngClass", "ngModel", "formControl"
|
|
5577
|
+
ListInputComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ListInputComponent, selectors: [["ng-miam-list-input"]], inputs: { hint: "hint", placeholder: "placeholder", label: "label", instructions: "instructions", ingredientMode: "ingredientMode", list: "list" }, outputs: { deleteId: "deleteId", orderHasChanged: "orderHasChanged" }, decls: 14, vars: 7, consts: [[1, "miam-list-input"], [1, "miam-list-input__list", 3, "formGroup"], [1, "miam-list-input__list__label"], ["class", "miam-list-input__container m-default-card", "cdkDropList", "", 3, "cdkDropListDropped", 4, "ngIf", "ngIfElse"], ["hintPlaceholder", ""], [1, "miam-list-input__actions"], ["matInput", "", "cdkTextareaAutosize", "", "cdkAutosizeMinRows", "4", "cdkAutosizeMaxRows", "4", 1, "m-input", 3, "formControl", "keydown.enter"], [1, "m-button-primary", 3, "mousedown", "mouseup"], [1, "miam-list-input__instructions__direction"], ["class", "miam-list-input__actions__instructions", 4, "ngIf"], ["cdkDropList", "", 1, "miam-list-input__container", "m-default-card", 3, "cdkDropListDropped"], [4, "ngIf", "ngIfElse"], ["ingredientRow", ""], ["cdkDrag", "", 4, "ngFor", "ngForOf", "ngForTrackBy"], ["cdkDrag", ""], [3, "formGroup"], [1, "miam-list-input__container__row", "m-default-card"], ["primaryColor", "var(--m-color-grey05)", "cdkDragHandle", "", 1, "miam-list-input__row__grip", 3, "iconName"], ["cdkTextareaAutosize", "true", "cdkAutosizeMinRows", "1", "cdkAutosizeMaxRows", "50", "formControlName", "description", 1, "m-input", 3, "blur"], ["autosize", "cdkTextareaAutosize"], ["primaryColor", "var(--m-color-grey05)", 1, "miam-list-input__row__trash", 3, "iconName", "click"], ["class", "miam-list-input__row__placeholder", 4, "cdkDragPlaceholder"], ["class", "miam-list-input__row__preview m-default-card", 4, "cdkDragPreview"], [1, "miam-list-input__row__placeholder"], [1, "miam-list-input__row__preview", "m-default-card"], ["primaryColor", "var(--m-color-grey05)", "cdkDragHandle", "", 3, "iconName"], [1, "miam-list-input__preview__text", "m-body-typo"], [1, "miam-list-input__container__row", "m-default-card", 3, "formGroupName"], [1, "miam-list-input__row__left"], [1, "miam-list-input__row__right"], [1, "m-input", 3, "ngClass", "ngModel", "formControl"], ["maxSize", "4", "autoWidthInput", "", 1, "m-input", 3, "ngModel", "formControl", "ngModelChange"], ["maxSize", "8", "autoWidthInput", "", 1, "m-input", 3, "ngClass", "formControl"], ["primaryColor", "var(--m-color-grey-text-dark)", "cdkDragHandle", "", 3, "iconName"], [1, "m-body-typo"], [1, "miam-list-input__placeholder", "miam-list-input__container", "m-default-card"], ["primaryColor", "var(--m-color-grey-text-dark)", 3, "width", "height", "iconName"], [1, "miam-list-input__placeholder__hint", "m-body-typo"], [1, "miam-list-input__actions__instructions"]], template: function ListInputComponent_Template(rf, ctx) {
|
|
5553
5578
|
if (rf & 1) {
|
|
5554
5579
|
i0.ɵɵelementStart(0, "div", 0);
|
|
5555
5580
|
i0.ɵɵelementStart(1, "div", 1);
|
|
@@ -5588,7 +5613,7 @@
|
|
|
5588
5613
|
i0.ɵɵadvance(5);
|
|
5589
5614
|
i0.ɵɵproperty("ngIf", ctx.instructions);
|
|
5590
5615
|
}
|
|
5591
|
-
}, directives: [i9.NgControlStatusGroup, i9.FormGroupDirective, i8.NgIf, i4.CdkTextareaAutosize, i9.DefaultValueAccessor, i9.NgControlStatus, i9.FormControlDirective, i5.CdkDropList, i8.NgForOf, i5.CdkDrag, IconComponent, i5.CdkDragHandle, i9.FormControlName, i5.CdkDragPlaceholder, i5.CdkDragPreview, i9.FormGroupName, i8.NgClass, AutowidthInputDirective], pipes: [CapitalizeFirstLetterPipe], styles: [".miam-list-input[_ngcontent-%COMP%]{padding:8px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%]{margin-top:50px;position:relative}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__list__label[_ngcontent-%COMP%]{background-color:var(--m-color-secondary-light);border-radius:8px 8px 0 0;color:var(--m-color-secondary);font-weight:700;left:0;padding:8px 24px;position:absolute;top:-33px;width:200px;z-index:0}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:400px;margin-bottom:32px;overflow-x:hidden;overflow-y:auto;position:inherit;width:560px;z-index:1}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]{height:55vh;margin-bottom:16px;width:unset}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-button{height:20px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-track{background:var(--m-color-grey)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar{cursor:-webkit-grab;height:7px;width:5px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-thumb{background:var(--m-color-primary);border-radius:5px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{display:flex;justify-content:flex-start;row-gap:8px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{-moz-column-gap:8px;align-items:center;column-gap:8px;display:flex;list-style:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{-moz-column-gap:0;column-gap:0}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;align-items:center;display:flex;flex:1;flex-direction:row;gap:8px;justify-content:space-between;user-select:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%]{margin-right:4px}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{max-width:unset;padding:inherit}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin:unset;max-width:unset;min-width:unset}@media (max-width:359px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{max-width:60vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%]{align-items:center;display:flex;flex-direction:row}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .miam-list-input__row__grip[_ngcontent-%COMP%]{cursor:move}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .miam-list-input__row__grip[_ngcontent-%COMP%]{margin-left:4px}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin-left:8px;margin-right:8px;width:200px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{align-items:center;display:flex;flex-direction:row}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin-right:8px;text-align:right}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{flex-wrap:wrap}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{flex:1;margin-bottom:8px;margin-right:4px}}@media (max-width:359px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{max-width:60vw}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{max-width:58vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .alert-success[_ngcontent-%COMP%]{background:var(--m-color-white);border:1px solid var(--m-color-success);border-radius:8px;box-shadow:0 0 4px var(--m-color-success)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .alert-danger[_ngcontent-%COMP%]{background:var(--m-color-white);border:1px solid var(--m-color-danger);border-radius:8px;box-shadow:0 0 4px var(--m-color-danger)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__row__trash[_ngcontent-%COMP%]{-webkit-tap-highlight-color:transparent;cursor:pointer}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{border-radius:var(--m-border-radius);flex:1;margin:0;max-width:none;outline:none;padding:5px;resize:none}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea.warnning[_ngcontent-%COMP%]{background-color:var(--m-color-secondary-light);color:var(--m-color-secondary)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea.error[_ngcontent-%COMP%]{background-color:var(--m-color-danger);color:var(--m-color-danger-text)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea[cdktextareaautosize][_ngcontent-%COMP%]{overflow:hidden}.miam-list-input[_ngcontent-%COMP%] .hint[_ngcontent-%COMP%]{border-radius:var(--m-border-radius);flex:1;font-size:12px;font-weight:600;padding-bottom:10px}.miam-list-input[_ngcontent-%COMP%] .hint.warnning[_ngcontent-%COMP%]{color:var(--m-color-secondary)}.miam-list-input[_ngcontent-%COMP%] .hint.error[_ngcontent-%COMP%]{color:var(--m-color-danger)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__placeholder[_ngcontent-%COMP%]{align-items:center;justify-content:center}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__placeholder[_ngcontent-%COMP%] .miam-list-input__placeholder__hint[_ngcontent-%COMP%]{color:var(--m-color-secondary);margin-top:40px;opacity:.5;text-align:center}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%]{-moz-column-gap:32px;column-gap:32px;display:flex;justify-content:space-between}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%]{flex-direction:column}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{flex:1;margin-top:0;outline:none;resize:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{width:90vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__actions__instructions[_ngcontent-%COMP%]{background-color:var(--m-color-info);border-radius:8px;color:var(--m-color-info-text);max-width:calc(98vw - 776px);padding:8px;position:absolute;top:315px;white-space:pre-line;width:400px}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__actions__instructions[_ngcontent-%COMP%]{margin-top:16px;max-width:unset;position:unset;width:unset}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__instructions__direction[_ngcontent-%COMP%]{margin-left:4px}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__instructions__direction[_ngcontent-%COMP%]{display:none}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.miam-list-input__row__preview[_ngcontent-%COMP%]{align-items:center;display:flex;width:530px}@media (max-width:1023px){.miam-list-input__row__preview[_ngcontent-%COMP%]{flex-wrap:wrap;width:80vw}}.miam-list-input__row__preview[_ngcontent-%COMP%] .miam-list-input__preview__text[_ngcontent-%COMP%]{padding:5px}.miam-list-input__row__preview[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:first-of-type{flex:1;flex-shrink:1;margin-left:8px}.miam-list-input__row__preview[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-of-type(2n){margin-right:8px}.miam-list-input__row__placeholder[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;background:var(--m-color-grey07);border-radius:8px;margin-right:24px;min-height:60px;user-select:none}.cdk-drag-animating[_ngcontent-%COMP%], .miam-list-input__row__placeholder[_ngcontent-%COMP%], ul.cdk-drop-list-dragging[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}"] });
|
|
5616
|
+
}, directives: [i9.NgControlStatusGroup, i9.FormGroupDirective, i8.NgIf, i4.CdkTextareaAutosize, i9.DefaultValueAccessor, i9.NgControlStatus, i9.FormControlDirective, i5.CdkDropList, i8.NgForOf, i5.CdkDrag, IconComponent, i5.CdkDragHandle, i9.FormControlName, i5.CdkDragPlaceholder, i5.CdkDragPreview, i9.FormGroupName, i8.NgClass, AutowidthInputDirective], pipes: [i8.AsyncPipe, CapitalizeFirstLetterPipe], styles: [".miam-list-input[_ngcontent-%COMP%]{padding:8px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%]{margin-top:50px;position:relative}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__list__label[_ngcontent-%COMP%]{background-color:var(--m-color-secondary-light);border-radius:8px 8px 0 0;color:var(--m-color-secondary);font-weight:700;left:0;padding:8px 24px;position:absolute;top:-33px;width:200px;z-index:0}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]{display:flex;flex-direction:column;height:400px;margin-bottom:32px;overflow-x:hidden;overflow-y:auto;position:inherit;width:560px;z-index:1}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]{height:55vh;margin-bottom:16px;width:unset}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-button{height:20px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-track{background:var(--m-color-grey)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar{cursor:-webkit-grab;height:7px;width:5px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] .miam-list-input__container[_ngcontent-%COMP%]::-webkit-scrollbar-thumb{background:var(--m-color-primary);border-radius:5px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]{display:flex;justify-content:flex-start;row-gap:8px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{-moz-column-gap:8px;align-items:center;column-gap:8px;display:flex;list-style:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{-moz-column-gap:0;column-gap:0}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;align-items:center;display:flex;flex:1;flex-direction:row;gap:8px;justify-content:space-between;user-select:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%]{margin-right:4px}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{max-width:unset;padding:inherit}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin:unset;max-width:unset;min-width:unset}@media (max-width:359px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{max-width:60vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%]{align-items:center;display:flex;flex-direction:row}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .miam-list-input__row__grip[_ngcontent-%COMP%]{cursor:move}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .miam-list-input__row__grip[_ngcontent-%COMP%]{margin-left:4px}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__left[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin-left:8px;margin-right:8px;width:200px}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{align-items:center;display:flex;flex-direction:row}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{margin-right:8px;text-align:right}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{flex-wrap:wrap}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{flex:1;margin-bottom:8px;margin-right:4px}}@media (max-width:359px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%]{max-width:60vw}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .m-input[_ngcontent-%COMP%]{max-width:58vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .alert-success[_ngcontent-%COMP%]{background:var(--m-color-white);border:1px solid var(--m-color-success);border-radius:8px;box-shadow:0 0 4px var(--m-color-success)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__container__row[_ngcontent-%COMP%] .miam-list-input__row__right[_ngcontent-%COMP%] .alert-danger[_ngcontent-%COMP%]{background:var(--m-color-white);border:1px solid var(--m-color-danger);border-radius:8px;box-shadow:0 0 4px var(--m-color-danger)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] .miam-list-input__row__trash[_ngcontent-%COMP%]{-webkit-tap-highlight-color:transparent;cursor:pointer}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{border-radius:var(--m-border-radius);flex:1;margin:0;max-width:none;outline:none;padding:5px;resize:none}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea.warnning[_ngcontent-%COMP%]{background-color:var(--m-color-secondary-light);color:var(--m-color-secondary)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea.error[_ngcontent-%COMP%]{background-color:var(--m-color-danger);color:var(--m-color-danger-text)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__list[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] textarea[cdktextareaautosize][_ngcontent-%COMP%]{overflow:hidden}.miam-list-input[_ngcontent-%COMP%] .hint[_ngcontent-%COMP%]{border-radius:var(--m-border-radius);flex:1;font-size:12px;font-weight:600;padding-bottom:10px}.miam-list-input[_ngcontent-%COMP%] .hint.warnning[_ngcontent-%COMP%]{color:var(--m-color-secondary)}.miam-list-input[_ngcontent-%COMP%] .hint.error[_ngcontent-%COMP%]{color:var(--m-color-danger)}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__placeholder[_ngcontent-%COMP%]{align-items:center;justify-content:center}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__placeholder[_ngcontent-%COMP%] .miam-list-input__placeholder__hint[_ngcontent-%COMP%]{color:var(--m-color-secondary);margin-top:40px;opacity:.5;text-align:center}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%]{-moz-column-gap:32px;column-gap:32px;display:flex;justify-content:space-between}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%]{flex-direction:column}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{flex:1;margin-top:0;outline:none;resize:none}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] textarea[_ngcontent-%COMP%]{width:90vw}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__actions__instructions[_ngcontent-%COMP%]{background-color:var(--m-color-info);border-radius:8px;color:var(--m-color-info-text);max-width:calc(98vw - 776px);padding:8px;position:absolute;top:315px;white-space:pre-line;width:400px}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__actions__instructions[_ngcontent-%COMP%]{margin-top:16px;max-width:unset;position:unset;width:unset}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__instructions__direction[_ngcontent-%COMP%]{margin-left:4px}@media (max-width:1023px){.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] .miam-list-input__instructions__direction[_ngcontent-%COMP%]{display:none}}.miam-list-input[_ngcontent-%COMP%] .miam-list-input__actions[_ngcontent-%COMP%] button[_ngcontent-%COMP%]{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.miam-list-input__row__preview[_ngcontent-%COMP%]{align-items:center;display:flex;width:530px}@media (max-width:1023px){.miam-list-input__row__preview[_ngcontent-%COMP%]{flex-wrap:wrap;width:80vw}}.miam-list-input__row__preview[_ngcontent-%COMP%] .miam-list-input__preview__text[_ngcontent-%COMP%]{padding:5px}.miam-list-input__row__preview[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:first-of-type{flex:1;flex-shrink:1;margin-left:8px}.miam-list-input__row__preview[_ngcontent-%COMP%] span[_ngcontent-%COMP%]:nth-of-type(2n){margin-right:8px}.miam-list-input__row__placeholder[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none;background:var(--m-color-grey07);border-radius:8px;margin-right:24px;min-height:60px;user-select:none}.cdk-drag-animating[_ngcontent-%COMP%], .miam-list-input__row__placeholder[_ngcontent-%COMP%], ul.cdk-drop-list-dragging[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}"] });
|
|
5592
5617
|
/*@__PURE__*/ (function () {
|
|
5593
5618
|
i0.ɵsetClassMetadata(ListInputComponent, [{
|
|
5594
5619
|
type: i0.Component,
|
|
@@ -8469,7 +8494,7 @@
|
|
|
8469
8494
|
event.stopPropagation();
|
|
8470
8495
|
};
|
|
8471
8496
|
BasketPreviewLineComponent.prototype.addRecipeActionOK = function () {
|
|
8472
|
-
this.subscriptions.push(this.listsService.appendRecipeToList(this.line.id, this.line.count).subscribe());
|
|
8497
|
+
this.subscriptions.push(this.listsService.appendRecipeToList(this.line.id, this.line.count, 'recipe-history').subscribe());
|
|
8473
8498
|
this.recipesService.display(this.line.id, { guests: this.line.count, previewMode: true });
|
|
8474
8499
|
};
|
|
8475
8500
|
BasketPreviewLineComponent.prototype.removeLine = function (event) {
|
|
@@ -8978,7 +9003,7 @@
|
|
|
8978
9003
|
_this.cdr.detectChanges();
|
|
8979
9004
|
}),
|
|
8980
9005
|
this.blockStates.subscribe(function (newState) { return _this.handelblockState(newState); }),
|
|
8981
|
-
this.basketsService.basketPreview$.pipe(operators.
|
|
9006
|
+
this.basketsService.basketPreview$.pipe(operators.skipWhile(function (preview) { var _a; return !preview || preview.length === 0 || preview.length !== ((_a = _this.listsService.list$.value) === null || _a === void 0 ? void 0 : _a.recipeInfos.length); }), operators.map(function (preview) { return (preview && _this.recipeId) ? preview.filter(function (line) { return line.id === _this.recipeId; }) : preview; }), operators.tap(function (preview) { return _this.refreshPreview(preview); })).subscribe(function () {
|
|
8982
9007
|
_this.loading.next(false);
|
|
8983
9008
|
_this.cdr.detectChanges();
|
|
8984
9009
|
}),
|
|
@@ -9275,6 +9300,7 @@
|
|
|
9275
9300
|
this.skeleton = Skeleton;
|
|
9276
9301
|
this.isPriceDisplayed = true;
|
|
9277
9302
|
this.addButtonLoading = false;
|
|
9303
|
+
this.cardType = 'recipe-card'; // overridden in all children, but still has a default value;
|
|
9278
9304
|
this.analyticsEventSent = false;
|
|
9279
9305
|
this.subscriptions = [];
|
|
9280
9306
|
this.hide = new i0.EventEmitter();
|
|
@@ -9305,7 +9331,7 @@
|
|
|
9305
9331
|
if (!this.groceriesListsService.list$.value.hasRecipe(this.recipe.id)) {
|
|
9306
9332
|
this.recipeEventsService.sendEvent(this.recipe, this.recipeEventsService.ACTION_ADDED);
|
|
9307
9333
|
}
|
|
9308
|
-
this.subscriptions.push(this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests)
|
|
9334
|
+
this.subscriptions.push(this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests, this.cardType)
|
|
9309
9335
|
.subscribe(function (l) {
|
|
9310
9336
|
_this.toggleButtonLoader(false);
|
|
9311
9337
|
}));
|
|
@@ -9392,62 +9418,62 @@
|
|
|
9392
9418
|
|
|
9393
9419
|
function RecipeCardComponent_div_0_div_4_div_3_Template(rf, ctx) {
|
|
9394
9420
|
if (rf & 1) {
|
|
9395
|
-
i0.ɵɵelementStart(0, "div",
|
|
9421
|
+
i0.ɵɵelementStart(0, "div", 37);
|
|
9396
9422
|
i0.ɵɵtext(1, "D\u00E9j\u00E0 ajout\u00E9e");
|
|
9397
9423
|
i0.ɵɵelementEnd();
|
|
9398
9424
|
}
|
|
9399
9425
|
}
|
|
9400
9426
|
function RecipeCardComponent_div_0_div_4_div_5_Template(rf, ctx) {
|
|
9401
9427
|
if (rf & 1) {
|
|
9402
|
-
i0.ɵɵelementStart(0, "div",
|
|
9403
|
-
i0.ɵɵelement(1, "ng-miam-icon",
|
|
9428
|
+
i0.ɵɵelementStart(0, "div", 38);
|
|
9429
|
+
i0.ɵɵelement(1, "ng-miam-icon", 39);
|
|
9404
9430
|
i0.ɵɵelementEnd();
|
|
9405
9431
|
}
|
|
9406
9432
|
if (rf & 2) {
|
|
9407
|
-
var
|
|
9433
|
+
var ctx_r22 = i0.ɵɵnextContext(3);
|
|
9408
9434
|
i0.ɵɵadvance(1);
|
|
9409
|
-
i0.ɵɵproperty("iconName",
|
|
9435
|
+
i0.ɵɵproperty("iconName", ctx_r22.icon.Video)("width", 100)("height", 100);
|
|
9410
9436
|
}
|
|
9411
9437
|
}
|
|
9412
9438
|
function RecipeCardComponent_div_0_div_4_ng_miam_like_button_7_Template(rf, ctx) {
|
|
9413
9439
|
if (rf & 1) {
|
|
9414
|
-
i0.ɵɵelement(0, "ng-miam-like-button",
|
|
9440
|
+
i0.ɵɵelement(0, "ng-miam-like-button", 40);
|
|
9415
9441
|
}
|
|
9416
9442
|
if (rf & 2) {
|
|
9417
|
-
var
|
|
9418
|
-
i0.ɵɵproperty("recipe",
|
|
9443
|
+
var ctx_r23 = i0.ɵɵnextContext(3);
|
|
9444
|
+
i0.ɵɵproperty("recipe", ctx_r23.recipe);
|
|
9419
9445
|
}
|
|
9420
9446
|
}
|
|
9421
9447
|
function RecipeCardComponent_div_0_div_4_img_11_Template(rf, ctx) {
|
|
9422
9448
|
if (rf & 1) {
|
|
9423
|
-
i0.ɵɵelement(0, "img",
|
|
9449
|
+
i0.ɵɵelement(0, "img", 41);
|
|
9424
9450
|
}
|
|
9425
9451
|
if (rf & 2) {
|
|
9426
|
-
var
|
|
9427
|
-
i0.ɵɵproperty("src",
|
|
9452
|
+
var ctx_r24 = i0.ɵɵnextContext(3);
|
|
9453
|
+
i0.ɵɵproperty("src", ctx_r24.recipe.filigraneLogoUrl, i0.ɵɵsanitizeUrl);
|
|
9428
9454
|
}
|
|
9429
9455
|
}
|
|
9430
9456
|
function RecipeCardComponent_div_0_div_4_Template(rf, ctx) {
|
|
9431
9457
|
if (rf & 1) {
|
|
9432
|
-
var
|
|
9433
|
-
i0.ɵɵelementStart(0, "div",
|
|
9434
|
-
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_div_click_0_listener() { i0.ɵɵrestoreView(
|
|
9435
|
-
i0.ɵɵelement(1, "img",
|
|
9436
|
-
i0.ɵɵelement(2, "div",
|
|
9437
|
-
i0.ɵɵtemplate(3, RecipeCardComponent_div_0_div_4_div_3_Template, 2, 0, "div",
|
|
9458
|
+
var _r26_1 = i0.ɵɵgetCurrentView();
|
|
9459
|
+
i0.ɵɵelementStart(0, "div", 28);
|
|
9460
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r26_1); var ctx_r25 = i0.ɵɵnextContext(2); return ctx_r25.openRecipe(); });
|
|
9461
|
+
i0.ɵɵelement(1, "img", 29);
|
|
9462
|
+
i0.ɵɵelement(2, "div", 30);
|
|
9463
|
+
i0.ɵɵtemplate(3, RecipeCardComponent_div_0_div_4_div_3_Template, 2, 0, "div", 31);
|
|
9438
9464
|
i0.ɵɵpipe(4, "async");
|
|
9439
|
-
i0.ɵɵtemplate(5, RecipeCardComponent_div_0_div_4_div_5_Template, 2, 3, "div",
|
|
9440
|
-
i0.ɵɵelementStart(6, "div",
|
|
9441
|
-
i0.ɵɵtemplate(7, RecipeCardComponent_div_0_div_4_ng_miam_like_button_7_Template, 1, 1, "ng-miam-like-button",
|
|
9465
|
+
i0.ɵɵtemplate(5, RecipeCardComponent_div_0_div_4_div_5_Template, 2, 3, "div", 32);
|
|
9466
|
+
i0.ɵɵelementStart(6, "div", 33);
|
|
9467
|
+
i0.ɵɵtemplate(7, RecipeCardComponent_div_0_div_4_ng_miam_like_button_7_Template, 1, 1, "ng-miam-like-button", 34);
|
|
9442
9468
|
i0.ɵɵpipe(8, "async");
|
|
9443
|
-
i0.ɵɵelementStart(9, "ng-miam-icon",
|
|
9444
|
-
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_ng_miam_icon_click_9_listener($event) { i0.ɵɵrestoreView(
|
|
9469
|
+
i0.ɵɵelementStart(9, "ng-miam-icon", 35);
|
|
9470
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_ng_miam_icon_click_9_listener($event) { i0.ɵɵrestoreView(_r26_1); var ctx_r27 = i0.ɵɵnextContext(2); return ctx_r27.openCalendar($event); });
|
|
9445
9471
|
i0.ɵɵelementEnd();
|
|
9446
|
-
i0.ɵɵelementStart(10, "ng-miam-icon",
|
|
9447
|
-
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_ng_miam_icon_click_10_listener($event) { i0.ɵɵrestoreView(
|
|
9472
|
+
i0.ɵɵelementStart(10, "ng-miam-icon", 35);
|
|
9473
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_4_Template_ng_miam_icon_click_10_listener($event) { i0.ɵɵrestoreView(_r26_1); var ctx_r28 = i0.ɵɵnextContext(2); return ctx_r28.shareRecipe($event); });
|
|
9448
9474
|
i0.ɵɵelementEnd();
|
|
9449
9475
|
i0.ɵɵelementEnd();
|
|
9450
|
-
i0.ɵɵtemplate(11, RecipeCardComponent_div_0_div_4_img_11_Template, 1, 1, "img",
|
|
9476
|
+
i0.ɵɵtemplate(11, RecipeCardComponent_div_0_div_4_img_11_Template, 1, 1, "img", 36);
|
|
9451
9477
|
i0.ɵɵelementEnd();
|
|
9452
9478
|
}
|
|
9453
9479
|
if (rf & 2) {
|
|
@@ -9471,7 +9497,7 @@
|
|
|
9471
9497
|
}
|
|
9472
9498
|
function RecipeCardComponent_div_0_ng_template_5_Template(rf, ctx) {
|
|
9473
9499
|
if (rf & 1) {
|
|
9474
|
-
i0.ɵɵelement(0, "ng-miam-skeleton",
|
|
9500
|
+
i0.ɵɵelement(0, "ng-miam-skeleton", 42);
|
|
9475
9501
|
}
|
|
9476
9502
|
if (rf & 2) {
|
|
9477
9503
|
var ctx_r5 = i0.ɵɵnextContext(2);
|
|
@@ -9480,13 +9506,13 @@
|
|
|
9480
9506
|
}
|
|
9481
9507
|
function RecipeCardComponent_div_0_div_8_Template(rf, ctx) {
|
|
9482
9508
|
if (rf & 1) {
|
|
9483
|
-
var
|
|
9509
|
+
var _r30_1 = i0.ɵɵgetCurrentView();
|
|
9484
9510
|
i0.ɵɵelementStart(0, "div");
|
|
9485
|
-
i0.ɵɵelementStart(1, "div",
|
|
9486
|
-
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_8_Template_div_click_1_listener() { i0.ɵɵrestoreView(
|
|
9511
|
+
i0.ɵɵelementStart(1, "div", 43);
|
|
9512
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_div_8_Template_div_click_1_listener() { i0.ɵɵrestoreView(_r30_1); var ctx_r29 = i0.ɵɵnextContext(2); return ctx_r29.openRecipe(); });
|
|
9487
9513
|
i0.ɵɵtext(2);
|
|
9488
9514
|
i0.ɵɵelementEnd();
|
|
9489
|
-
i0.ɵɵelementStart(3, "div",
|
|
9515
|
+
i0.ɵɵelementStart(3, "div", 44);
|
|
9490
9516
|
i0.ɵɵtext(4);
|
|
9491
9517
|
i0.ɵɵpipe(5, "capitalizeFirstLetter");
|
|
9492
9518
|
i0.ɵɵelementEnd();
|
|
@@ -9502,7 +9528,7 @@
|
|
|
9502
9528
|
}
|
|
9503
9529
|
function RecipeCardComponent_div_0_ng_template_9_Template(rf, ctx) {
|
|
9504
9530
|
if (rf & 1) {
|
|
9505
|
-
i0.ɵɵelement(0, "ng-miam-skeleton",
|
|
9531
|
+
i0.ɵɵelement(0, "ng-miam-skeleton", 42);
|
|
9506
9532
|
}
|
|
9507
9533
|
if (rf & 2) {
|
|
9508
9534
|
var ctx_r8 = i0.ɵɵnextContext(2);
|
|
@@ -9511,9 +9537,9 @@
|
|
|
9511
9537
|
}
|
|
9512
9538
|
function RecipeCardComponent_div_0_div_12_Template(rf, ctx) {
|
|
9513
9539
|
if (rf & 1) {
|
|
9514
|
-
i0.ɵɵelementStart(0, "div",
|
|
9515
|
-
i0.ɵɵelement(1, "ng-miam-icon",
|
|
9516
|
-
i0.ɵɵelementStart(2, "span",
|
|
9540
|
+
i0.ɵɵelementStart(0, "div", 45);
|
|
9541
|
+
i0.ɵɵelement(1, "ng-miam-icon", 46);
|
|
9542
|
+
i0.ɵɵelementStart(2, "span", 47);
|
|
9517
9543
|
i0.ɵɵtext(3);
|
|
9518
9544
|
i0.ɵɵelementEnd();
|
|
9519
9545
|
i0.ɵɵelementEnd();
|
|
@@ -9521,70 +9547,89 @@
|
|
|
9521
9547
|
if (rf & 2) {
|
|
9522
9548
|
var ctx_r9 = i0.ɵɵnextContext(2);
|
|
9523
9549
|
i0.ɵɵadvance(1);
|
|
9524
|
-
i0.ɵɵproperty("iconName", ctx_r9.icon.
|
|
9550
|
+
i0.ɵɵproperty("iconName", ctx_r9.icon.Ingredients);
|
|
9525
9551
|
i0.ɵɵadvance(2);
|
|
9526
|
-
i0.ɵɵ
|
|
9552
|
+
i0.ɵɵtextInterpolate1("", ctx_r9.recipe == null ? null : ctx_r9.recipe.ingredients.length, " ingredients");
|
|
9527
9553
|
}
|
|
9528
9554
|
}
|
|
9529
|
-
function
|
|
9555
|
+
function RecipeCardComponent_div_0_div_13_Template(rf, ctx) {
|
|
9530
9556
|
if (rf & 1) {
|
|
9531
|
-
i0.ɵɵ
|
|
9532
|
-
i0.ɵɵelement(1, "ng-miam-icon",
|
|
9533
|
-
i0.ɵɵ
|
|
9557
|
+
i0.ɵɵelementStart(0, "div", 48);
|
|
9558
|
+
i0.ɵɵelement(1, "ng-miam-icon", 46);
|
|
9559
|
+
i0.ɵɵelementStart(2, "span", 47);
|
|
9560
|
+
i0.ɵɵtext(3);
|
|
9561
|
+
i0.ɵɵelementEnd();
|
|
9562
|
+
i0.ɵɵelementEnd();
|
|
9534
9563
|
}
|
|
9535
9564
|
if (rf & 2) {
|
|
9536
|
-
var
|
|
9565
|
+
var ctx_r10 = i0.ɵɵnextContext(2);
|
|
9537
9566
|
i0.ɵɵadvance(1);
|
|
9538
|
-
i0.ɵɵproperty("
|
|
9567
|
+
i0.ɵɵproperty("iconName", ctx_r10.icon.Time);
|
|
9568
|
+
i0.ɵɵadvance(2);
|
|
9569
|
+
i0.ɵɵtextInterpolate(ctx_r10.recipe == null ? null : ctx_r10.recipe.totalTime);
|
|
9539
9570
|
}
|
|
9540
9571
|
}
|
|
9541
|
-
function
|
|
9572
|
+
function RecipeCardComponent_div_0_div_14_ng_container_2_Template(rf, ctx) {
|
|
9542
9573
|
if (rf & 1) {
|
|
9543
9574
|
i0.ɵɵelementContainerStart(0);
|
|
9544
|
-
i0.ɵɵelement(1, "ng-miam-icon",
|
|
9575
|
+
i0.ɵɵelement(1, "ng-miam-icon", 53);
|
|
9545
9576
|
i0.ɵɵelementContainerEnd();
|
|
9546
9577
|
}
|
|
9547
9578
|
if (rf & 2) {
|
|
9548
9579
|
var ctx_r31 = i0.ɵɵnextContext(3);
|
|
9549
9580
|
i0.ɵɵadvance(1);
|
|
9550
|
-
i0.ɵɵproperty("width", 32)("height", 16)("iconName", ctx_r31.icon.
|
|
9581
|
+
i0.ɵɵproperty("width", 32)("height", 16)("iconName", ctx_r31.icon.DifficultyLow);
|
|
9551
9582
|
}
|
|
9552
9583
|
}
|
|
9553
|
-
function
|
|
9584
|
+
function RecipeCardComponent_div_0_div_14_ng_container_3_Template(rf, ctx) {
|
|
9554
9585
|
if (rf & 1) {
|
|
9555
9586
|
i0.ɵɵelementContainerStart(0);
|
|
9556
|
-
i0.ɵɵelement(1, "ng-miam-icon",
|
|
9587
|
+
i0.ɵɵelement(1, "ng-miam-icon", 53);
|
|
9557
9588
|
i0.ɵɵelementContainerEnd();
|
|
9558
9589
|
}
|
|
9559
9590
|
if (rf & 2) {
|
|
9560
9591
|
var ctx_r32 = i0.ɵɵnextContext(3);
|
|
9561
9592
|
i0.ɵɵadvance(1);
|
|
9562
|
-
i0.ɵɵproperty("width", 32)("height", 16)("iconName", ctx_r32.icon.
|
|
9593
|
+
i0.ɵɵproperty("width", 32)("height", 16)("iconName", ctx_r32.icon.DifficultyMedium);
|
|
9563
9594
|
}
|
|
9564
9595
|
}
|
|
9565
|
-
function
|
|
9596
|
+
function RecipeCardComponent_div_0_div_14_ng_container_4_Template(rf, ctx) {
|
|
9597
|
+
if (rf & 1) {
|
|
9598
|
+
i0.ɵɵelementContainerStart(0);
|
|
9599
|
+
i0.ɵɵelement(1, "ng-miam-icon", 53);
|
|
9600
|
+
i0.ɵɵelementContainerEnd();
|
|
9601
|
+
}
|
|
9602
|
+
if (rf & 2) {
|
|
9603
|
+
var ctx_r33 = i0.ɵɵnextContext(3);
|
|
9604
|
+
i0.ɵɵadvance(1);
|
|
9605
|
+
i0.ɵɵproperty("width", 32)("height", 16)("iconName", ctx_r33.icon.DifficultyHight);
|
|
9606
|
+
}
|
|
9607
|
+
}
|
|
9608
|
+
function RecipeCardComponent_div_0_div_14_ng_container_5_Template(rf, ctx) {
|
|
9566
9609
|
if (rf & 1) {
|
|
9567
9610
|
i0.ɵɵelementContainer(0);
|
|
9568
9611
|
}
|
|
9569
9612
|
}
|
|
9570
|
-
function
|
|
9613
|
+
var _c0$d = function (a0, a1, a2) { return { "easy": a0, "medium": a1, "hard": a2 }; };
|
|
9614
|
+
function RecipeCardComponent_div_0_div_14_Template(rf, ctx) {
|
|
9571
9615
|
if (rf & 1) {
|
|
9572
|
-
i0.ɵɵelementStart(0, "div",
|
|
9573
|
-
i0.ɵɵelementContainerStart(1,
|
|
9574
|
-
i0.ɵɵtemplate(2,
|
|
9575
|
-
i0.ɵɵtemplate(3,
|
|
9576
|
-
i0.ɵɵtemplate(4,
|
|
9577
|
-
i0.ɵɵtemplate(5,
|
|
9616
|
+
i0.ɵɵelementStart(0, "div", 49);
|
|
9617
|
+
i0.ɵɵelementContainerStart(1, 50);
|
|
9618
|
+
i0.ɵɵtemplate(2, RecipeCardComponent_div_0_div_14_ng_container_2_Template, 2, 3, "ng-container", 51);
|
|
9619
|
+
i0.ɵɵtemplate(3, RecipeCardComponent_div_0_div_14_ng_container_3_Template, 2, 3, "ng-container", 51);
|
|
9620
|
+
i0.ɵɵtemplate(4, RecipeCardComponent_div_0_div_14_ng_container_4_Template, 2, 3, "ng-container", 51);
|
|
9621
|
+
i0.ɵɵtemplate(5, RecipeCardComponent_div_0_div_14_ng_container_5_Template, 1, 0, "ng-container", 52);
|
|
9578
9622
|
i0.ɵɵelementContainerEnd();
|
|
9579
|
-
i0.ɵɵelementStart(6, "span",
|
|
9623
|
+
i0.ɵɵelementStart(6, "span", 47);
|
|
9580
9624
|
i0.ɵɵtext(7);
|
|
9581
9625
|
i0.ɵɵelementEnd();
|
|
9582
9626
|
i0.ɵɵelementEnd();
|
|
9583
9627
|
}
|
|
9584
9628
|
if (rf & 2) {
|
|
9585
|
-
var
|
|
9629
|
+
var ctx_r11 = i0.ɵɵnextContext(2);
|
|
9630
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction3(6, _c0$d, (ctx_r11.recipe == null ? null : ctx_r11.recipe.difficultyLabel) === "facile", (ctx_r11.recipe == null ? null : ctx_r11.recipe.difficultyLabel) === "moyen", (ctx_r11.recipe == null ? null : ctx_r11.recipe.difficultyLabel) === "difficile"));
|
|
9586
9631
|
i0.ɵɵadvance(1);
|
|
9587
|
-
i0.ɵɵproperty("ngSwitch",
|
|
9632
|
+
i0.ɵɵproperty("ngSwitch", ctx_r11.recipe == null ? null : ctx_r11.recipe.difficultyLabel);
|
|
9588
9633
|
i0.ɵɵadvance(1);
|
|
9589
9634
|
i0.ɵɵproperty("ngSwitchCase", "facile");
|
|
9590
9635
|
i0.ɵɵadvance(1);
|
|
@@ -9592,96 +9637,96 @@
|
|
|
9592
9637
|
i0.ɵɵadvance(1);
|
|
9593
9638
|
i0.ɵɵproperty("ngSwitchCase", "difficile");
|
|
9594
9639
|
i0.ɵɵadvance(3);
|
|
9595
|
-
i0.ɵɵ
|
|
9640
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r11.recipe == null ? null : ctx_r11.recipe.difficultyLabel, " ");
|
|
9596
9641
|
}
|
|
9597
9642
|
}
|
|
9598
|
-
function
|
|
9643
|
+
function RecipeCardComponent_div_0_ng_template_15_Template(rf, ctx) {
|
|
9599
9644
|
if (rf & 1) {
|
|
9600
|
-
i0.ɵɵelement(0, "ng-miam-skeleton",
|
|
9645
|
+
i0.ɵɵelement(0, "ng-miam-skeleton", 42);
|
|
9601
9646
|
}
|
|
9602
9647
|
if (rf & 2) {
|
|
9603
|
-
var
|
|
9604
|
-
i0.ɵɵproperty("type",
|
|
9648
|
+
var ctx_r13 = i0.ɵɵnextContext(2);
|
|
9649
|
+
i0.ɵɵproperty("type", ctx_r13.skeleton == null ? null : ctx_r13.skeleton.IconWithInfo);
|
|
9605
9650
|
}
|
|
9606
9651
|
}
|
|
9607
|
-
function
|
|
9652
|
+
function RecipeCardComponent_div_0_div_22_div_5_Template(rf, ctx) {
|
|
9608
9653
|
if (rf & 1) {
|
|
9609
|
-
i0.ɵɵelementStart(0, "div",
|
|
9654
|
+
i0.ɵɵelementStart(0, "div", 58);
|
|
9610
9655
|
i0.ɵɵtext(1);
|
|
9611
9656
|
i0.ɵɵelementEnd();
|
|
9612
9657
|
}
|
|
9613
9658
|
if (rf & 2) {
|
|
9614
|
-
var
|
|
9659
|
+
var ctx_r35 = i0.ɵɵnextContext(3);
|
|
9615
9660
|
i0.ɵɵadvance(1);
|
|
9616
|
-
i0.ɵɵtextInterpolate1(" + ",
|
|
9661
|
+
i0.ɵɵtextInterpolate1(" + ", ctx_r35.recipe.modifiedIngredients.length - 2, " ");
|
|
9617
9662
|
}
|
|
9618
9663
|
}
|
|
9619
|
-
function
|
|
9664
|
+
function RecipeCardComponent_div_0_div_22_Template(rf, ctx) {
|
|
9620
9665
|
if (rf & 1) {
|
|
9621
|
-
i0.ɵɵelementStart(0, "div",
|
|
9622
|
-
i0.ɵɵelementStart(1, "div",
|
|
9623
|
-
i0.ɵɵelement(2, "img",
|
|
9666
|
+
i0.ɵɵelementStart(0, "div", 54);
|
|
9667
|
+
i0.ɵɵelementStart(1, "div", 55);
|
|
9668
|
+
i0.ɵɵelement(2, "img", 56);
|
|
9624
9669
|
i0.ɵɵelementEnd();
|
|
9625
|
-
i0.ɵɵelementStart(3, "div",
|
|
9626
|
-
i0.ɵɵelement(4, "img",
|
|
9670
|
+
i0.ɵɵelementStart(3, "div", 55);
|
|
9671
|
+
i0.ɵɵelement(4, "img", 56);
|
|
9627
9672
|
i0.ɵɵelementEnd();
|
|
9628
|
-
i0.ɵɵtemplate(5,
|
|
9673
|
+
i0.ɵɵtemplate(5, RecipeCardComponent_div_0_div_22_div_5_Template, 2, 1, "div", 57);
|
|
9629
9674
|
i0.ɵɵelementEnd();
|
|
9630
9675
|
}
|
|
9631
9676
|
if (rf & 2) {
|
|
9632
|
-
var
|
|
9677
|
+
var ctx_r14 = i0.ɵɵnextContext(2);
|
|
9633
9678
|
i0.ɵɵadvance(2);
|
|
9634
|
-
i0.ɵɵproperty("src",
|
|
9679
|
+
i0.ɵɵproperty("src", ctx_r14.ingredientPicture(ctx_r14.recipe.modifiedIngredients[0]), i0.ɵɵsanitizeUrl);
|
|
9635
9680
|
i0.ɵɵadvance(2);
|
|
9636
|
-
i0.ɵɵproperty("src",
|
|
9681
|
+
i0.ɵɵproperty("src", ctx_r14.ingredientPicture(ctx_r14.recipe.modifiedIngredients[1]), i0.ɵɵsanitizeUrl);
|
|
9637
9682
|
i0.ɵɵadvance(1);
|
|
9638
|
-
i0.ɵɵproperty("ngIf",
|
|
9683
|
+
i0.ɵɵproperty("ngIf", ctx_r14.recipe.modifiedIngredients.length > 2);
|
|
9639
9684
|
}
|
|
9640
9685
|
}
|
|
9641
|
-
function
|
|
9686
|
+
function RecipeCardComponent_div_0_div_23_Template(rf, ctx) {
|
|
9642
9687
|
if (rf & 1) {
|
|
9643
|
-
var
|
|
9644
|
-
i0.ɵɵelementStart(0, "div",
|
|
9645
|
-
i0.ɵɵelementStart(1, "ng-miam-counter-input",
|
|
9646
|
-
i0.ɵɵlistener("counterChange", function
|
|
9688
|
+
var _r37_1 = i0.ɵɵgetCurrentView();
|
|
9689
|
+
i0.ɵɵelementStart(0, "div", 59);
|
|
9690
|
+
i0.ɵɵelementStart(1, "ng-miam-counter-input", 60);
|
|
9691
|
+
i0.ɵɵlistener("counterChange", function RecipeCardComponent_div_0_div_23_Template_ng_miam_counter_input_counterChange_1_listener($event) { i0.ɵɵrestoreView(_r37_1); var ctx_r36 = i0.ɵɵnextContext(2); return ctx_r36.updateGuests($event); });
|
|
9647
9692
|
i0.ɵɵelementEnd();
|
|
9648
9693
|
i0.ɵɵelementEnd();
|
|
9649
9694
|
}
|
|
9650
9695
|
if (rf & 2) {
|
|
9651
|
-
var
|
|
9696
|
+
var ctx_r15 = i0.ɵɵnextContext(2);
|
|
9652
9697
|
i0.ɵɵadvance(1);
|
|
9653
|
-
i0.ɵɵproperty("counter",
|
|
9698
|
+
i0.ɵɵproperty("counter", ctx_r15.recipe.modifiedGuests);
|
|
9654
9699
|
}
|
|
9655
9700
|
}
|
|
9656
|
-
function
|
|
9701
|
+
function RecipeCardComponent_div_0_ng_template_24_Template(rf, ctx) {
|
|
9657
9702
|
if (rf & 1) {
|
|
9658
|
-
i0.ɵɵelement(0, "ng-miam-skeleton",
|
|
9703
|
+
i0.ɵɵelement(0, "ng-miam-skeleton", 42);
|
|
9659
9704
|
}
|
|
9660
9705
|
if (rf & 2) {
|
|
9661
|
-
var
|
|
9662
|
-
i0.ɵɵproperty("type",
|
|
9706
|
+
var ctx_r17 = i0.ɵɵnextContext(2);
|
|
9707
|
+
i0.ɵɵproperty("type", ctx_r17.skeleton == null ? null : ctx_r17.skeleton.IconWithInfo);
|
|
9663
9708
|
}
|
|
9664
9709
|
}
|
|
9665
|
-
function
|
|
9710
|
+
function RecipeCardComponent_div_0_ng_miam_icon_32_Template(rf, ctx) {
|
|
9666
9711
|
if (rf & 1) {
|
|
9667
|
-
i0.ɵɵelement(0, "ng-miam-icon",
|
|
9712
|
+
i0.ɵɵelement(0, "ng-miam-icon", 61);
|
|
9668
9713
|
i0.ɵɵpipe(1, "async");
|
|
9669
9714
|
}
|
|
9670
9715
|
if (rf & 2) {
|
|
9671
|
-
var
|
|
9716
|
+
var ctx_r18 = i0.ɵɵnextContext(2);
|
|
9672
9717
|
var tmp_2_0 = null;
|
|
9673
|
-
i0.ɵɵproperty("width", 24)("height", 24)("iconName", ((tmp_2_0 = i0.ɵɵpipeBind1(1, 3,
|
|
9718
|
+
i0.ɵɵproperty("width", 24)("height", 24)("iconName", ((tmp_2_0 = i0.ɵɵpipeBind1(1, 3, ctx_r18.groceriesListsService.list$)) == null ? null : tmp_2_0.hasRecipe(ctx_r18.recipe == null ? null : ctx_r18.recipe.id)) ? ctx_r18.icon.CheckList : ctx_r18.icon.Cart);
|
|
9674
9719
|
}
|
|
9675
9720
|
}
|
|
9676
|
-
function
|
|
9721
|
+
function RecipeCardComponent_div_0_ng_template_33_Template(rf, ctx) {
|
|
9677
9722
|
if (rf & 1) {
|
|
9678
9723
|
i0.ɵɵelement(0, "ng-miam-loader");
|
|
9679
9724
|
}
|
|
9680
9725
|
}
|
|
9681
|
-
var
|
|
9726
|
+
var _c1$6 = function (a0, a1) { return { "in-basket": a0, "loading": a1 }; };
|
|
9682
9727
|
function RecipeCardComponent_div_0_Template(rf, ctx) {
|
|
9683
9728
|
if (rf & 1) {
|
|
9684
|
-
var
|
|
9729
|
+
var _r39_1 = i0.ɵɵgetCurrentView();
|
|
9685
9730
|
i0.ɵɵelementStart(0, "div", 2);
|
|
9686
9731
|
i0.ɵɵelementStart(1, "div", 3);
|
|
9687
9732
|
i0.ɵɵelementStart(2, "span");
|
|
@@ -9695,31 +9740,32 @@
|
|
|
9695
9740
|
i0.ɵɵtemplate(9, RecipeCardComponent_div_0_ng_template_9_Template, 1, 1, "ng-template", null, 8, i0.ɵɵtemplateRefExtractor);
|
|
9696
9741
|
i0.ɵɵelementStart(11, "div", 9);
|
|
9697
9742
|
i0.ɵɵtemplate(12, RecipeCardComponent_div_0_div_12_Template, 4, 2, "div", 10);
|
|
9698
|
-
i0.ɵɵtemplate(13, RecipeCardComponent_div_0_div_13_Template,
|
|
9699
|
-
i0.ɵɵtemplate(14,
|
|
9743
|
+
i0.ɵɵtemplate(13, RecipeCardComponent_div_0_div_13_Template, 4, 2, "div", 11);
|
|
9744
|
+
i0.ɵɵtemplate(14, RecipeCardComponent_div_0_div_14_Template, 8, 10, "div", 12);
|
|
9745
|
+
i0.ɵɵtemplate(15, RecipeCardComponent_div_0_ng_template_15_Template, 1, 1, "ng-template", null, 13, i0.ɵɵtemplateRefExtractor);
|
|
9700
9746
|
i0.ɵɵelementEnd();
|
|
9701
|
-
i0.ɵɵelementStart(16, "div", 13);
|
|
9702
9747
|
i0.ɵɵelementStart(17, "div", 14);
|
|
9703
9748
|
i0.ɵɵelementStart(18, "div", 15);
|
|
9704
9749
|
i0.ɵɵelementStart(19, "div", 16);
|
|
9705
|
-
i0.ɵɵ
|
|
9706
|
-
i0.ɵɵ
|
|
9750
|
+
i0.ɵɵelementStart(20, "div", 17);
|
|
9751
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_Template_div_click_20_listener() { i0.ɵɵrestoreView(_r39_1); var ctx_r38 = i0.ɵɵnextContext(); return ctx_r38.toggleHelper(); });
|
|
9752
|
+
i0.ɵɵelement(21, "ng-miam-icon", 18);
|
|
9707
9753
|
i0.ɵɵelementEnd();
|
|
9708
|
-
i0.ɵɵtemplate(
|
|
9754
|
+
i0.ɵɵtemplate(22, RecipeCardComponent_div_0_div_22_Template, 6, 3, "div", 19);
|
|
9709
9755
|
i0.ɵɵelementEnd();
|
|
9710
|
-
i0.ɵɵtemplate(
|
|
9711
|
-
i0.ɵɵtemplate(
|
|
9756
|
+
i0.ɵɵtemplate(23, RecipeCardComponent_div_0_div_23_Template, 2, 1, "div", 20);
|
|
9757
|
+
i0.ɵɵtemplate(24, RecipeCardComponent_div_0_ng_template_24_Template, 1, 1, "ng-template", null, 21, i0.ɵɵtemplateRefExtractor);
|
|
9712
9758
|
i0.ɵɵelementEnd();
|
|
9713
|
-
i0.ɵɵelementStart(25, "div", 21);
|
|
9714
9759
|
i0.ɵɵelementStart(26, "div", 22);
|
|
9715
|
-
i0.ɵɵ
|
|
9760
|
+
i0.ɵɵelementStart(27, "div", 23);
|
|
9761
|
+
i0.ɵɵelement(28, "ng-miam-recipe-pricing", 24);
|
|
9716
9762
|
i0.ɵɵelementEnd();
|
|
9717
|
-
i0.ɵɵelementStart(
|
|
9718
|
-
i0.ɵɵelementStart(
|
|
9719
|
-
i0.ɵɵlistener("click", function
|
|
9720
|
-
i0.ɵɵpipe(
|
|
9721
|
-
i0.ɵɵtemplate(
|
|
9722
|
-
i0.ɵɵtemplate(
|
|
9763
|
+
i0.ɵɵelementStart(29, "div");
|
|
9764
|
+
i0.ɵɵelementStart(30, "button", 25);
|
|
9765
|
+
i0.ɵɵlistener("click", function RecipeCardComponent_div_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(_r39_1); var ctx_r40 = i0.ɵɵnextContext(); return ctx_r40.clickPrimary(); });
|
|
9766
|
+
i0.ɵɵpipe(31, "async");
|
|
9767
|
+
i0.ɵɵtemplate(32, RecipeCardComponent_div_0_ng_miam_icon_32_Template, 2, 5, "ng-miam-icon", 26);
|
|
9768
|
+
i0.ɵɵtemplate(33, RecipeCardComponent_div_0_ng_template_33_Template, 1, 0, "ng-template", null, 27, i0.ɵɵtemplateRefExtractor);
|
|
9723
9769
|
i0.ɵɵelementEnd();
|
|
9724
9770
|
i0.ɵɵelementEnd();
|
|
9725
9771
|
i0.ɵɵelementEnd();
|
|
@@ -9730,11 +9776,11 @@
|
|
|
9730
9776
|
if (rf & 2) {
|
|
9731
9777
|
var _r4 = i0.ɵɵreference(6);
|
|
9732
9778
|
var _r7 = i0.ɵɵreference(10);
|
|
9733
|
-
var
|
|
9734
|
-
var
|
|
9735
|
-
var
|
|
9779
|
+
var _r12 = i0.ɵɵreference(16);
|
|
9780
|
+
var _r16 = i0.ɵɵreference(25);
|
|
9781
|
+
var _r19 = i0.ɵɵreference(34);
|
|
9736
9782
|
var ctx_r0 = i0.ɵɵnextContext();
|
|
9737
|
-
var
|
|
9783
|
+
var tmp_20_0 = null;
|
|
9738
9784
|
i0.ɵɵadvance(3);
|
|
9739
9785
|
i0.ɵɵtextInterpolate1(" ", ctx_r0.headerText, "");
|
|
9740
9786
|
i0.ɵɵadvance(1);
|
|
@@ -9742,21 +9788,23 @@
|
|
|
9742
9788
|
i0.ɵɵadvance(4);
|
|
9743
9789
|
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse", _r7);
|
|
9744
9790
|
i0.ɵɵadvance(4);
|
|
9745
|
-
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse",
|
|
9791
|
+
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse", _r12);
|
|
9746
9792
|
i0.ɵɵadvance(1);
|
|
9747
|
-
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse",
|
|
9793
|
+
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse", _r12);
|
|
9794
|
+
i0.ɵɵadvance(1);
|
|
9795
|
+
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse", _r12);
|
|
9748
9796
|
i0.ɵɵadvance(7);
|
|
9749
9797
|
i0.ɵɵproperty("width", 24)("height", 24)("iconName", ctx_r0.icon.Help);
|
|
9750
9798
|
i0.ɵɵadvance(1);
|
|
9751
9799
|
i0.ɵɵproperty("ngIf", ctx_r0.contextService.displayIngredientPicturesOnRecipeCards && (ctx_r0.recipe == null ? null : ctx_r0.recipe.modifiedIngredients == null ? null : ctx_r0.recipe.modifiedIngredients.length) > 1);
|
|
9752
9800
|
i0.ɵɵadvance(1);
|
|
9753
|
-
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse",
|
|
9801
|
+
i0.ɵɵproperty("ngIf", ctx_r0.recipe)("ngIfElse", _r16);
|
|
9754
9802
|
i0.ɵɵadvance(5);
|
|
9755
9803
|
i0.ɵɵproperty("recipe", ctx_r0.recipe)("serves", ctx_r0.recipe == null ? null : ctx_r0.recipe.modifiedGuests);
|
|
9756
9804
|
i0.ɵɵadvance(2);
|
|
9757
|
-
i0.ɵɵproperty("disabled", !ctx_r0.recipe)("ngClass", i0.ɵɵpureFunction2(
|
|
9805
|
+
i0.ɵɵproperty("disabled", !ctx_r0.recipe)("ngClass", i0.ɵɵpureFunction2(25, _c1$6, (tmp_20_0 = i0.ɵɵpipeBind1(31, 23, ctx_r0.groceriesListsService.list$)) == null ? null : tmp_20_0.hasRecipe(ctx_r0.recipe == null ? null : ctx_r0.recipe.id), ctx_r0.addButtonLoading));
|
|
9758
9806
|
i0.ɵɵadvance(2);
|
|
9759
|
-
i0.ɵɵproperty("ngIf", !ctx_r0.addButtonLoading)("ngIfElse",
|
|
9807
|
+
i0.ɵɵproperty("ngIf", !ctx_r0.addButtonLoading)("ngIfElse", _r19);
|
|
9760
9808
|
}
|
|
9761
9809
|
}
|
|
9762
9810
|
function RecipeCardComponent_ng_template_1_Template(rf, ctx) {
|
|
@@ -9830,7 +9878,20 @@
|
|
|
9830
9878
|
RecipeCardComponent.prototype.clickPrimary = function () {
|
|
9831
9879
|
if (!this.addButtonLoading) {
|
|
9832
9880
|
var wasAdded = !this.groceriesListsService.list$.value.hasRecipe(this.recipe.id);
|
|
9833
|
-
this.
|
|
9881
|
+
if (this.cardType !== 'suggestion-card') {
|
|
9882
|
+
this.addRecipe();
|
|
9883
|
+
}
|
|
9884
|
+
else { // customizable actions for suggestions
|
|
9885
|
+
if (this.recipeService.suggestionsPrimaryButtonActions.addToBasket) {
|
|
9886
|
+
// If recipe is added we still want to diplay details
|
|
9887
|
+
this.addRecipe(this.recipeService.suggestionsPrimaryButtonActions.display || !wasAdded);
|
|
9888
|
+
}
|
|
9889
|
+
else {
|
|
9890
|
+
if (this.recipeService.suggestionsPrimaryButtonActions.display) {
|
|
9891
|
+
this.openRecipe();
|
|
9892
|
+
}
|
|
9893
|
+
}
|
|
9894
|
+
}
|
|
9834
9895
|
this.primaryButtonClicked$.emit(wasAdded);
|
|
9835
9896
|
}
|
|
9836
9897
|
};
|
|
@@ -9850,15 +9911,15 @@
|
|
|
9850
9911
|
return RecipeCardComponent;
|
|
9851
9912
|
}(AbstractRecipeCardComponent));
|
|
9852
9913
|
RecipeCardComponent.ɵfac = function RecipeCardComponent_Factory(t) { return new (t || RecipeCardComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(RecipesService), i0.ɵɵdirectiveInject(RecipeEventsService), i0.ɵɵdirectiveInject(GroceriesListsService), i0.ɵɵdirectiveInject(UserService), i0.ɵɵdirectiveInject(PointOfSalesService), i0.ɵɵdirectiveInject(ContextService), i0.ɵɵdirectiveInject(AnalyticsService), i0.ɵɵdirectiveInject(i0.ElementRef)); };
|
|
9853
|
-
RecipeCardComponent.ɵcmp = i0.ɵɵdefineComponent({ type: RecipeCardComponent, selectors: [["ng-miam-recipe-card"]], inputs: { recipeId: "recipeId", recipe: "recipe" }, outputs: { removedFromFavorite: "removedFromFavorite", displayed: "displayed", guestsChanged: "guestsChanged" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 3, vars: 1, consts: [["class", "miam-recipe-card", 4, "ngIf"], ["cors", ""], [1, "miam-recipe-card"], [1, "miam-recipe-card__header"], ["class", "miam-recipe-card__picture", 3, "click", 4, "ngIf", "ngIfElse"], ["pictSkeleton", ""], [1, "miam-recipe-card__attributes"], [4, "ngIf", "ngIfElse"], ["textSkeleton", ""], [1, "miam-recipe-card__attributes__infos"], ["class", "miam-recipe-card__attributes__info ", 4, "ngIf", "ngIfElse"], ["class", "miam-recipe-card__attributes__info", 4, "ngIf", "ngIfElse"], ["skeletonInfo", ""], [1, "miam-recipe-card__attributes__control"], [1, "miam-recipe-card__control__left__col"], [1, "miam-recipe-card__left__col__custom"], [1, "miam-recipe-card__help", 3, "click"], ["primaryColor", "var(--m-color-primary)", 3, "width", "height", "iconName"], ["class", "miam-recipe-card__ingredients__pictures", 4, "ngIf"], ["class", "miam-recipe-card__left__col__counter", 4, "ngIf", "ngIfElse"], ["skeletoncounter", ""], [1, "miam-recipe-card__control__right__col"], [1, "miam-recipe-card__right__col__price"], [3, "recipe", "serves"], [1, "m-button-fab-primary", 3, "disabled", "ngClass", "click"], ["primaryColor", "#fff", 3, "width", "height", "iconName", 4, "ngIf", "ngIfElse"], ["addLoader", ""], [1, "miam-recipe-card__picture", 3, "click"], ["loading", "lazy", 3, "src"], [1, "miam-recipe-card__picture__gradient"], ["class", "miam-recipe-card__picture__tag", 4, "ngIf"], ["class", "miam-recipe-card__picture__video", 4, "ngIf"], [1, "miam-recipe-card__picture__actions"], ["class", "miam-recipe-card__actions__icon miam-noPadding", 3, "recipe", 4, "ngIf"], ["primaryColor", "var(--m-color-primary)", 1, "miam-recipe-card__actions__icon", 3, "iconName", "click"], ["class", "miam-recipe-card__picture__sponsor", 3, "src", 4, "ngIf"], [1, "miam-recipe-card__picture__tag"], [1, "miam-recipe-card__picture__video"], ["primaryColor", "black", 3, "iconName", "width", "height"], [1, "miam-recipe-card__actions__icon", "miam-noPadding", 3, "recipe"], [1, "miam-recipe-card__picture__sponsor", 3, "src"], [3, "type"], [1, "miam-recipe-card__attributes__title", 3, "click"], [1, "miam-recipe-card__attributes__ingredients"], [1, "miam-recipe-card__attributes__info"], [3, "iconName"], [1, "miam-recipe-card__info__label"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"], ["primaryColor", "var(--m-color-secondary)", 3, "width", "height", "iconName"], [1, "miam-recipe-card__ingredients__pictures"], [1, "miam-recipe-card__ingredients__picture"], [3, "src"], ["class", "miam-recipe-card__ingredients__more", 4, "ngIf"], [1, "miam-recipe-card__ingredients__more"], [1, "miam-recipe-card__left__col__counter"], [3, "counter", "counterChange"], ["primaryColor", "#fff", 3, "width", "height", "iconName"]], template: function RecipeCardComponent_Template(rf, ctx) {
|
|
9914
|
+
RecipeCardComponent.ɵcmp = i0.ɵɵdefineComponent({ type: RecipeCardComponent, selectors: [["ng-miam-recipe-card"]], inputs: { recipeId: "recipeId", recipe: "recipe" }, outputs: { removedFromFavorite: "removedFromFavorite", displayed: "displayed", guestsChanged: "guestsChanged" }, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵNgOnChangesFeature], decls: 3, vars: 1, consts: [["class", "miam-recipe-card", 4, "ngIf"], ["cors", ""], [1, "miam-recipe-card"], [1, "miam-recipe-card__header"], ["class", "miam-recipe-card__picture", 3, "click", 4, "ngIf", "ngIfElse"], ["pictSkeleton", ""], [1, "miam-recipe-card__attributes"], [4, "ngIf", "ngIfElse"], ["textSkeleton", ""], [1, "miam-recipe-card__attributes__infos"], ["class", "miam-recipe-card__attributes__info recipe__ingredients", 4, "ngIf", "ngIfElse"], ["class", "miam-recipe-card__attributes__info recipe__total__time", 4, "ngIf", "ngIfElse"], ["class", "miam-recipe-card__attributes__info recipe__difficulty", 3, "ngClass", 4, "ngIf", "ngIfElse"], ["skeletonInfo", ""], [1, "miam-recipe-card__attributes__control"], [1, "miam-recipe-card__control__left__col"], [1, "miam-recipe-card__left__col__custom"], [1, "miam-recipe-card__help", 3, "click"], ["primaryColor", "var(--m-color-primary)", 3, "width", "height", "iconName"], ["class", "miam-recipe-card__ingredients__pictures", 4, "ngIf"], ["class", "miam-recipe-card__left__col__counter", 4, "ngIf", "ngIfElse"], ["skeletoncounter", ""], [1, "miam-recipe-card__control__right__col"], [1, "miam-recipe-card__right__col__price"], [3, "recipe", "serves"], [1, "m-button-fab-primary", 3, "disabled", "ngClass", "click"], ["primaryColor", "#fff", 3, "width", "height", "iconName", 4, "ngIf", "ngIfElse"], ["addLoader", ""], [1, "miam-recipe-card__picture", 3, "click"], ["loading", "lazy", 3, "src"], [1, "miam-recipe-card__picture__gradient"], ["class", "miam-recipe-card__picture__tag", 4, "ngIf"], ["class", "miam-recipe-card__picture__video", 4, "ngIf"], [1, "miam-recipe-card__picture__actions"], ["class", "miam-recipe-card__actions__icon miam-noPadding", 3, "recipe", 4, "ngIf"], ["primaryColor", "var(--m-color-primary)", 1, "miam-recipe-card__actions__icon", 3, "iconName", "click"], ["class", "miam-recipe-card__picture__sponsor", 3, "src", 4, "ngIf"], [1, "miam-recipe-card__picture__tag"], [1, "miam-recipe-card__picture__video"], ["primaryColor", "black", 3, "iconName", "width", "height"], [1, "miam-recipe-card__actions__icon", "miam-noPadding", 3, "recipe"], [1, "miam-recipe-card__picture__sponsor", 3, "src"], [3, "type"], [1, "miam-recipe-card__attributes__title", 3, "click"], [1, "miam-recipe-card__attributes__ingredients"], [1, "miam-recipe-card__attributes__info", "recipe__ingredients"], [3, "iconName"], [1, "miam-recipe-card__info__label"], [1, "miam-recipe-card__attributes__info", "recipe__total__time"], [1, "miam-recipe-card__attributes__info", "recipe__difficulty", 3, "ngClass"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"], ["primaryColor", "var(--m-color-secondary)", 3, "width", "height", "iconName"], [1, "miam-recipe-card__ingredients__pictures"], [1, "miam-recipe-card__ingredients__picture"], [3, "src"], ["class", "miam-recipe-card__ingredients__more", 4, "ngIf"], [1, "miam-recipe-card__ingredients__more"], [1, "miam-recipe-card__left__col__counter"], [3, "counter", "counterChange"], ["primaryColor", "#fff", 3, "width", "height", "iconName"]], template: function RecipeCardComponent_Template(rf, ctx) {
|
|
9854
9915
|
if (rf & 1) {
|
|
9855
|
-
i0.ɵɵtemplate(0, RecipeCardComponent_div_0_Template,
|
|
9916
|
+
i0.ɵɵtemplate(0, RecipeCardComponent_div_0_Template, 35, 28, "div", 0);
|
|
9856
9917
|
i0.ɵɵtemplate(1, RecipeCardComponent_ng_template_1_Template, 1, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
|
9857
9918
|
}
|
|
9858
9919
|
if (rf & 2) {
|
|
9859
9920
|
i0.ɵɵproperty("ngIf", ctx.isloaded);
|
|
9860
9921
|
}
|
|
9861
|
-
}, directives: [i8.NgIf, IconComponent, RecipePricingComponent, i8.NgClass, LikeButtonComponent, SkeletonComponent, i8.NgSwitch, i8.NgSwitchCase, i8.NgSwitchDefault, CounterInputComponent, LoaderComponent, CORSOverlayComponent], pipes: [i8.AsyncPipe, CapitalizeFirstLetterPipe], styles: [".miam-flex-column,.miam-recipe-card .miam-recipe-card__attributes,.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions{display:flex;flex-direction:column;justify-content:space-around}.miam-flex-row{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin:auto}.miam-recipe-card{background-color:var(--m-color-white);border-radius:var(--m-border-radius);box-shadow:var(--m-shadow-small);display:flex;flex-direction:column;height:100%;min-height:470px;position:relative;width:320px}.miam-recipe-card .miam-recipe-card__header{display:none}.miam-recipe-card .miam-recipe-card__picture{-webkit-tap-highlight-color:transparent;cursor:pointer;height:240px;position:relative}.miam-recipe-card .miam-recipe-card__picture img{-o-object-fit:cover;object-fit:cover;transition:var(--m-default-transition);z-index:var(--m-z-index-position-absolute-low)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient,.miam-recipe-card .miam-recipe-card__picture img{border-top-left-radius:var(--m-border-radius);border-top-right-radius:var(--m-border-radius);height:100%;position:absolute;width:100%}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient{background:linear-gradient(180deg,transparent 57.92%,rgba(0,0,0,.75) 100%,rgba(0,0,0,.75) 0);content:\"\"}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__video{left:calc(50% - 50px);position:absolute;top:calc(50% - 50px)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__tag{background-color:var(--m-color-primary-light);border-radius:5px;bottom:16px;color:var(--m-color-primary);font-weight:500;left:16px;padding:8px;position:absolute;text-transform:uppercase}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions{position:absolute;right:16px;top:8px;z-index:var(--m-z-index-position-absolute-high)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon{-o-object-fit:contain;background-color:var(--m-color-white);border-radius:var(--m-border-radius-circle);box-shadow:var(--m-shadow-small);margin:0 0 16px;object-fit:contain;padding:8px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon .icon-container{margin:0}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon.miam-noPadding{padding:0}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__sponsor{-o-object-fit:contain;bottom:16px;height:auto;max-height:72px;max-width:96px;object-fit:contain;position:absolute;right:16px;width:auto}.miam-recipe-card .miam-recipe-card__attributes{flex:1 1;justify-content:space-between;padding:8px 16px 16px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title{-webkit-box-orient:vertical;-webkit-line-clamp:2;-webkit-tap-highlight-color:transparent;color:var(--m-color-slate);cursor:pointer;display:-webkit-box;font-size:20px;font-weight:700;font-weight:500;letter-spacing:normal;line-height:30;line-height:1.5;margin:0 8px 8px 0;overflow:hidden;text-align:left;text-overflow:ellipsis;transition:var(--m-default-transition)}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title:hover{color:var(--m-color-primary);text-decoration:underline}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__ingredients{-webkit-box-orient:vertical;-webkit-line-clamp:1;color:var(--m-color-grey-text);display:-webkit-box;font-size:14px;font-weight:300;overflow:hidden;text-overflow:ellipsis}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos{display:flex;flex-direction:row;padding:8px 0}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos .miam-recipe-card__attributes__info{display:flex;flex-direction:row;margin:0 16px 0 0}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos .miam-recipe-card__attributes__info .miam-recipe-card__info__label{font-size:14px;margin-left:8px;text-transform:capitalize}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control{align-items:center;display:flex;justify-content:space-between}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col{display:flex;flex-direction:column-reverse}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter{align-items:center;display:flex}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter ng-miam-counter-input .miam-counter-input__icon{margin-right:8px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__custom{align-items:flex-end;display:flex;height:48px;justify-content:flex-start}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__custom .icon-container{cursor:pointer}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col{align-items:center;display:flex;flex-direction:column;min-width:60px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col .miam-recipe-card__right__col__price{height:48px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col button .loader{border:var(--m-loader-thickness) solid transparent;border-top:var(--m-loader-thickness) solid var(--m-color-white);height:24px;width:24px}@media (max-width:1023px){.miam-recipe-card{min-height:unset}.miam-recipe-card .miam-recipe-card__picture{height:164px}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient{background:linear-gradient(0deg,rgba(0,0,0,.2),rgba(0,0,0,.2))}.miam-recipe-card .miam-recipe-card__attributes{padding:8px 16px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title{color:#fff;font-weight:700;height:72px;margin-left:calc(15% - 16px);position:absolute;text-align:center;top:52px;width:70%}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__ingredients{display:none}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col{flex-direction:row;justify-content:space-between;width:100%}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter{align-items:flex-end;padding-bottom:4px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col{margin-top:12px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col .miam-recipe-card__right__col__price{height:48px;position:absolute;top:172px}}"], encapsulation: 2, changeDetection: 0 });
|
|
9922
|
+
}, directives: [i8.NgIf, IconComponent, RecipePricingComponent, i8.NgClass, LikeButtonComponent, SkeletonComponent, i8.NgSwitch, i8.NgSwitchCase, i8.NgSwitchDefault, CounterInputComponent, LoaderComponent, CORSOverlayComponent], pipes: [i8.AsyncPipe, CapitalizeFirstLetterPipe], styles: [".miam-flex-column,.miam-recipe-card .miam-recipe-card__attributes,.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions{display:flex;flex-direction:column;justify-content:space-around}.miam-flex-row{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin:auto}.miam-recipe-card{background-color:var(--m-color-white);border-radius:var(--m-border-radius);box-shadow:var(--m-shadow-small);display:flex;flex-direction:column;height:100%;min-height:470px;position:relative;width:320px}.miam-recipe-card .miam-recipe-card__header{display:none}.miam-recipe-card .miam-recipe-card__picture{-webkit-tap-highlight-color:transparent;cursor:pointer;height:240px;position:relative}.miam-recipe-card .miam-recipe-card__picture img{-o-object-fit:cover;object-fit:cover;transition:var(--m-default-transition);z-index:var(--m-z-index-position-absolute-low)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient,.miam-recipe-card .miam-recipe-card__picture img{border-top-left-radius:var(--m-border-radius);border-top-right-radius:var(--m-border-radius);height:100%;position:absolute;width:100%}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient{background:linear-gradient(180deg,transparent 57.92%,rgba(0,0,0,.75) 100%,rgba(0,0,0,.75) 0);content:\"\"}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__video{left:calc(50% - 50px);position:absolute;top:calc(50% - 50px)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__tag{background-color:var(--m-color-primary-light);border-radius:5px;bottom:16px;color:var(--m-color-primary);font-weight:500;left:16px;padding:8px;position:absolute;text-transform:uppercase}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions{position:absolute;right:16px;top:8px;z-index:var(--m-z-index-position-absolute-high)}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon{-o-object-fit:contain;background-color:var(--m-color-white);border-radius:var(--m-border-radius-circle);box-shadow:var(--m-shadow-small);margin:0 0 16px;object-fit:contain;padding:8px;width:-webkit-max-content;width:-moz-max-content;width:max-content}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon .icon-container{margin:0}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__actions .miam-recipe-card__actions__icon.miam-noPadding{padding:0}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__sponsor{-o-object-fit:contain;bottom:16px;height:auto;max-height:72px;max-width:96px;object-fit:contain;position:absolute;right:16px;width:auto}.miam-recipe-card .miam-recipe-card__attributes{flex:1 1;justify-content:space-between;padding:8px 16px 16px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title{-webkit-box-orient:vertical;-webkit-line-clamp:2;-webkit-tap-highlight-color:transparent;color:var(--m-color-slate);cursor:pointer;display:-webkit-box;font-size:20px;font-weight:700;font-weight:500;letter-spacing:normal;line-height:30;line-height:1.5;margin:0 8px 8px 0;overflow:hidden;text-align:left;text-overflow:ellipsis;transition:var(--m-default-transition)}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title:hover{color:var(--m-color-primary);text-decoration:underline}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__ingredients{-webkit-box-orient:vertical;-webkit-line-clamp:1;color:var(--m-color-grey-text);display:-webkit-box;font-size:14px;font-weight:300;overflow:hidden;text-overflow:ellipsis}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos{display:flex;flex-direction:row;padding:8px 0}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos .miam-recipe-card__attributes__info{display:flex;flex-direction:row;margin:0 16px 0 0}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos .miam-recipe-card__attributes__info.recipe__ingredients{display:none}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__infos .miam-recipe-card__attributes__info .miam-recipe-card__info__label{font-size:14px;margin-left:8px;text-transform:capitalize}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control{align-items:center;display:flex;justify-content:space-between}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col{display:flex;flex-direction:column-reverse}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter{align-items:center;display:flex}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter ng-miam-counter-input .miam-counter-input__icon{margin-right:8px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__custom{align-items:flex-end;display:flex;height:48px;justify-content:flex-start}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__custom .icon-container{cursor:pointer}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col{align-items:center;display:flex;flex-direction:column;min-width:60px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col .miam-recipe-card__right__col__price{height:48px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col button .loader{border:var(--m-loader-thickness) solid transparent;border-top:var(--m-loader-thickness) solid var(--m-color-white);height:24px;width:24px}@media (max-width:1023px){.miam-recipe-card{min-height:unset}.miam-recipe-card .miam-recipe-card__picture{height:164px}.miam-recipe-card .miam-recipe-card__picture .miam-recipe-card__picture__gradient{background:linear-gradient(0deg,rgba(0,0,0,.2),rgba(0,0,0,.2))}.miam-recipe-card .miam-recipe-card__attributes{padding:8px 16px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__title{color:#fff;font-weight:700;height:72px;margin-left:calc(15% - 16px);position:absolute;text-align:center;top:52px;width:70%}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__ingredients{display:none}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col{flex-direction:row;justify-content:space-between;width:100%}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__left__col .miam-recipe-card__left__col__counter{align-items:flex-end;padding-bottom:4px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col{margin-top:12px}.miam-recipe-card .miam-recipe-card__attributes .miam-recipe-card__attributes__control .miam-recipe-card__control__right__col .miam-recipe-card__right__col__price{height:48px;position:absolute;top:172px}}"], encapsulation: 2, changeDetection: 0 });
|
|
9862
9923
|
/*@__PURE__*/ (function () {
|
|
9863
9924
|
i0.ɵsetClassMetadata(RecipeCardComponent, [{
|
|
9864
9925
|
type: i0.Component,
|
|
@@ -10148,7 +10209,7 @@
|
|
|
10148
10209
|
i0.ɵɵelement(0, "ng-miam-cors-overlay");
|
|
10149
10210
|
}
|
|
10150
10211
|
}
|
|
10151
|
-
var _c1$
|
|
10212
|
+
var _c1$7 = function (a0, a1) { return { "in-basket": a0, "loading": a1 }; };
|
|
10152
10213
|
/**
|
|
10153
10214
|
* This is an angular component design to be a web component
|
|
10154
10215
|
* that's why we use onPushStrategie with the changeDetetectorRef
|
|
@@ -10302,7 +10363,7 @@
|
|
|
10302
10363
|
i0.ɵɵadvance(5);
|
|
10303
10364
|
i0.ɵɵproperty("ngIf", ctx.isPriceDisplayed);
|
|
10304
10365
|
i0.ɵɵadvance(1);
|
|
10305
|
-
i0.ɵɵproperty("disabled", !ctx.recipe)("ngClass", i0.ɵɵpureFunction2(16, _c1$
|
|
10366
|
+
i0.ɵɵproperty("disabled", !ctx.recipe)("ngClass", i0.ɵɵpureFunction2(16, _c1$7, (tmp_8_0 = i0.ɵɵpipeBind1(18, 14, ctx.groceriesListsService.list$)) == null ? null : tmp_8_0.hasRecipe(ctx.recipe == null ? null : ctx.recipe.id), ctx.addButtonLoading));
|
|
10306
10367
|
i0.ɵɵadvance(2);
|
|
10307
10368
|
i0.ɵɵproperty("ngIf", !ctx.addButtonLoading)("ngIfElse", _r9);
|
|
10308
10369
|
i0.ɵɵadvance(4);
|
|
@@ -10359,7 +10420,7 @@
|
|
|
10359
10420
|
})();
|
|
10360
10421
|
|
|
10361
10422
|
var _c0$f = ["categoryContent"];
|
|
10362
|
-
var _c1$
|
|
10423
|
+
var _c1$8 = ["categoryCards"];
|
|
10363
10424
|
function CatalogCategoryComponent_div_0_div_11_Template(rf, ctx) {
|
|
10364
10425
|
if (rf & 1) {
|
|
10365
10426
|
i0.ɵɵelementStart(0, "div", 15);
|
|
@@ -10634,7 +10695,7 @@
|
|
|
10634
10695
|
CatalogCategoryComponent.ɵcmp = i0.ɵɵdefineComponent({ type: CatalogCategoryComponent, selectors: [["ng-miam-catalog-category"]], viewQuery: function CatalogCategoryComponent_Query(rf, ctx) {
|
|
10635
10696
|
if (rf & 1) {
|
|
10636
10697
|
i0.ɵɵviewQuery(_c0$f, true);
|
|
10637
|
-
i0.ɵɵviewQuery(_c1$
|
|
10698
|
+
i0.ɵɵviewQuery(_c1$8, true);
|
|
10638
10699
|
i0.ɵɵviewQuery(CatalogRecipeCardComponent, true);
|
|
10639
10700
|
}
|
|
10640
10701
|
if (rf & 2) {
|
|
@@ -11342,7 +11403,7 @@
|
|
|
11342
11403
|
i0.ɵɵelementEnd();
|
|
11343
11404
|
}
|
|
11344
11405
|
}
|
|
11345
|
-
var _c1$
|
|
11406
|
+
var _c1$9 = function (a0, a1) { return { "image-container-mode": a0, "dragover-mode": a1 }; };
|
|
11346
11407
|
var DragDropInputComponent = /** @class */ (function () {
|
|
11347
11408
|
function DragDropInputComponent(cdr) {
|
|
11348
11409
|
this.cdr = cdr;
|
|
@@ -11446,7 +11507,7 @@
|
|
|
11446
11507
|
}
|
|
11447
11508
|
if (rf & 2) {
|
|
11448
11509
|
var _r1 = i0.ɵɵreference(3);
|
|
11449
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(6, _c1$
|
|
11510
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(6, _c1$9, ctx.imageUrl, ctx.isDragover && !ctx.imageUrl));
|
|
11450
11511
|
i0.ɵɵadvance(1);
|
|
11451
11512
|
i0.ɵɵproperty("ngIf", !ctx.photoMode)("ngIfElse", _r1);
|
|
11452
11513
|
i0.ɵɵadvance(5);
|
|
@@ -11813,7 +11874,7 @@
|
|
|
11813
11874
|
i0.ɵɵproperty("ngIf", ctx_r3.replacing);
|
|
11814
11875
|
}
|
|
11815
11876
|
}
|
|
11816
|
-
var _c1$
|
|
11877
|
+
var _c1$a = function (a0) { return { "down": a0 }; };
|
|
11817
11878
|
function PosSelectionComponent_ng_container_0_Template(rf, ctx) {
|
|
11818
11879
|
if (rf & 1) {
|
|
11819
11880
|
var _r24_1 = i0.ɵɵgetCurrentView();
|
|
@@ -11836,7 +11897,7 @@
|
|
|
11836
11897
|
i0.ɵɵadvance(3);
|
|
11837
11898
|
i0.ɵɵtextInterpolate(ctx_r0.blockTitle);
|
|
11838
11899
|
i0.ɵɵadvance(1);
|
|
11839
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$
|
|
11900
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$a, !ctx_r0.expand));
|
|
11840
11901
|
i0.ɵɵadvance(1);
|
|
11841
11902
|
i0.ɵɵproperty("iconName", ctx_r0.icon.ChevronDown);
|
|
11842
11903
|
i0.ɵɵadvance(1);
|
|
@@ -12325,7 +12386,7 @@
|
|
|
12325
12386
|
i0.ɵɵproperty("iconName", ctx_r8.icon.ChevronDown);
|
|
12326
12387
|
}
|
|
12327
12388
|
}
|
|
12328
|
-
var _c1$
|
|
12389
|
+
var _c1$b = function (a0) { return { "filter-collapsed": a0 }; };
|
|
12329
12390
|
function RecipeCatalogComponent_div_2_Template(rf, ctx) {
|
|
12330
12391
|
if (rf & 1) {
|
|
12331
12392
|
var _r25_1 = i0.ɵɵgetCurrentView();
|
|
@@ -12351,7 +12412,7 @@
|
|
|
12351
12412
|
i0.ɵɵadvance(1);
|
|
12352
12413
|
i0.ɵɵproperty("filters", ctx_r1.filters)("mobileFixed", ctx_r1.returnTopButtonShouldBeDisplayed)("filterToRemove", ctx_r1.filterToRemove);
|
|
12353
12414
|
i0.ɵɵadvance(1);
|
|
12354
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(11, _c1$
|
|
12415
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(11, _c1$b, ctx_r1.isFilterCollapsed));
|
|
12355
12416
|
i0.ɵɵadvance(1);
|
|
12356
12417
|
i0.ɵɵproperty("displayReturnButton", !ctx_r1.displayHomePage)("forcedRecipe", ctx_r1.recipeInHeader)("title", ctx_r1.displayHomePage ? ctx_r1.homePageTitle : ctx_r1.filters.additionalFilters && ctx_r1.filters.additionalFilters.title !== "" ? ctx_r1.filters.additionalFilters.title : ctx_r1.titleInResearchMode);
|
|
12357
12418
|
i0.ɵɵadvance(1);
|
|
@@ -12916,7 +12977,7 @@
|
|
|
12916
12977
|
i0.ɵɵelement(0, "ng-miam-loader");
|
|
12917
12978
|
}
|
|
12918
12979
|
}
|
|
12919
|
-
var _c1$
|
|
12980
|
+
var _c1$c = function (a0) { return { overlay: a0 }; };
|
|
12920
12981
|
var ListScanOverlayButtonComponent = /** @class */ (function () {
|
|
12921
12982
|
function ListScanOverlayButtonComponent(cdr, listsService) {
|
|
12922
12983
|
this.cdr = cdr;
|
|
@@ -12972,7 +13033,7 @@
|
|
|
12972
13033
|
i0.ɵɵelementEnd();
|
|
12973
13034
|
}
|
|
12974
13035
|
if (rf & 2) {
|
|
12975
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c1$
|
|
13036
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c1$c, ctx.overlay));
|
|
12976
13037
|
i0.ɵɵadvance(1);
|
|
12977
13038
|
i0.ɵɵproperty("disabled", ctx.loading);
|
|
12978
13039
|
i0.ɵɵadvance(2);
|
|
@@ -13543,7 +13604,7 @@
|
|
|
13543
13604
|
i0.ɵɵproperty("ngIf", ctx_r0.confirmButtonText);
|
|
13544
13605
|
}
|
|
13545
13606
|
}
|
|
13546
|
-
var _c1$
|
|
13607
|
+
var _c1$d = ["*"];
|
|
13547
13608
|
var ModalComponent = /** @class */ (function () {
|
|
13548
13609
|
function ModalComponent(cdr, mediaMatcher) {
|
|
13549
13610
|
this.cdr = cdr;
|
|
@@ -13603,7 +13664,7 @@
|
|
|
13603
13664
|
return ModalComponent;
|
|
13604
13665
|
}());
|
|
13605
13666
|
ModalComponent.ɵfac = function ModalComponent_Factory(t) { return new (t || ModalComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$2.MediaMatcher)); };
|
|
13606
|
-
ModalComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ModalComponent, selectors: [["ng-miam-modal"]], inputs: { title: "title", expanded: "expanded", confirmButtonText: "confirmButtonText", cancelButtonText: "cancelButtonText", isAngularComponent: "isAngularComponent", noHeaderMode: "noHeaderMode" }, outputs: { expandedChange: "expandedChange", close: "close", cancel: "cancel", confirm: "confirm" }, features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c1$
|
|
13667
|
+
ModalComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ModalComponent, selectors: [["ng-miam-modal"]], inputs: { title: "title", expanded: "expanded", confirmButtonText: "confirmButtonText", cancelButtonText: "cancelButtonText", isAngularComponent: "isAngularComponent", noHeaderMode: "noHeaderMode" }, outputs: { expandedChange: "expandedChange", close: "close", cancel: "cancel", confirm: "confirm" }, features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c1$d, decls: 1, vars: 1, consts: [[4, "ngIf"], [1, "miam-shadow-overlay", 3, "click"], [1, "miam-modal", 3, "ngClass"], [1, "miam-modal__container"], [1, "miam-modal__header"], [1, "miam-modal__title"], ["primaryColor", "var(--m-color-grey-text-dark)", 1, "miam-modal__close__icon", 3, "width", "height", "iconName", "click"], [4, "ngIf", "ngIfElse"], ["isWebC", ""], [1, "miam-modal__actions"], ["class", "m-button-secondary", 3, "click", 4, "ngIf"], ["class", "m-button-primary", 3, "click", 4, "ngIf"], ["name", "modal-content"], [1, "m-button-secondary", 3, "click"], [1, "m-button-primary", 3, "click"]], template: function ModalComponent_Template(rf, ctx) {
|
|
13607
13668
|
if (rf & 1) {
|
|
13608
13669
|
i0.ɵɵprojectionDef();
|
|
13609
13670
|
i0.ɵɵtemplate(0, ModalComponent_ng_container_0_Template, 14, 12, "ng-container", 0);
|
|
@@ -13665,7 +13726,7 @@
|
|
|
13665
13726
|
obs = this.recipesService.getOrCreate(this.recipe, this.openOnSave);
|
|
13666
13727
|
}
|
|
13667
13728
|
else {
|
|
13668
|
-
obs = this.recipesService.createFromUrl(this.source, document.location.href).pipe(operators.switchMap(function (r) { return _this.listsService.appendRecipeToList(r.id, r.modifiedGuests); }));
|
|
13729
|
+
obs = this.recipesService.createFromUrl(this.source, document.location.href).pipe(operators.switchMap(function (r) { return _this.listsService.appendRecipeToList(r.id, r.modifiedGuests, 'order-button'); }));
|
|
13669
13730
|
}
|
|
13670
13731
|
obs.pipe(operators.catchError(function (e) {
|
|
13671
13732
|
_this.error.emit(e);
|
|
@@ -14257,7 +14318,7 @@
|
|
|
14257
14318
|
})();
|
|
14258
14319
|
|
|
14259
14320
|
var _c0$s = ["topContainerImg"];
|
|
14260
|
-
var _c1$
|
|
14321
|
+
var _c1$e = ["mainContainer"];
|
|
14261
14322
|
function RecipeDetailsComponent_div_0_img_6_Template(rf, ctx) {
|
|
14262
14323
|
if (rf & 1) {
|
|
14263
14324
|
i0.ɵɵelement(0, "img", 41);
|
|
@@ -15084,7 +15145,7 @@
|
|
|
15084
15145
|
if (!this.groceriesListsService.list$.value.hasRecipe(this.recipe.id)) {
|
|
15085
15146
|
this.recipeEventsService.sendEvent(this.recipe, this.recipeEventsService.ACTION_ADDED);
|
|
15086
15147
|
}
|
|
15087
|
-
this.subscriptions.push(this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests)
|
|
15148
|
+
this.subscriptions.push(this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests, 'details')
|
|
15088
15149
|
.subscribe(function (l) {
|
|
15089
15150
|
_this.toggleButtonLoader(false);
|
|
15090
15151
|
}));
|
|
@@ -15131,7 +15192,7 @@
|
|
|
15131
15192
|
RecipeDetailsComponent.ɵcmp = i0.ɵɵdefineComponent({ type: RecipeDetailsComponent, selectors: [["ng-miam-recipe-details"]], viewQuery: function RecipeDetailsComponent_Query(rf, ctx) {
|
|
15132
15193
|
if (rf & 1) {
|
|
15133
15194
|
i0.ɵɵviewQuery(_c0$s, true);
|
|
15134
|
-
i0.ɵɵviewQuery(_c1$
|
|
15195
|
+
i0.ɵɵviewQuery(_c1$e, true);
|
|
15135
15196
|
}
|
|
15136
15197
|
if (rf & 2) {
|
|
15137
15198
|
var _t;
|
|
@@ -15990,7 +16051,7 @@
|
|
|
15990
16051
|
})();
|
|
15991
16052
|
|
|
15992
16053
|
var _c0$v = ["topAnchor"];
|
|
15993
|
-
var _c1$
|
|
16054
|
+
var _c1$f = ["stepperLinks"];
|
|
15994
16055
|
var _c2$3 = ["step"];
|
|
15995
16056
|
function RecipeStepperComponent_ng_container_28_div_16_div_4_Template(rf, ctx) {
|
|
15996
16057
|
if (rf & 1) {
|
|
@@ -16371,7 +16432,7 @@
|
|
|
16371
16432
|
RecipeStepperComponent.ɵcmp = i0.ɵɵdefineComponent({ type: RecipeStepperComponent, selectors: [["ng-miam-recipe-stepper"]], viewQuery: function RecipeStepperComponent_Query(rf, ctx) {
|
|
16372
16433
|
if (rf & 1) {
|
|
16373
16434
|
i0.ɵɵviewQuery(_c0$v, true);
|
|
16374
|
-
i0.ɵɵviewQuery(_c1$
|
|
16435
|
+
i0.ɵɵviewQuery(_c1$f, true);
|
|
16375
16436
|
i0.ɵɵviewQuery(_c2$3, true);
|
|
16376
16437
|
}
|
|
16377
16438
|
if (rf & 2) {
|
|
@@ -16513,7 +16574,7 @@
|
|
|
16513
16574
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(5, 2, recipeLine_r2.title, 6));
|
|
16514
16575
|
}
|
|
16515
16576
|
}
|
|
16516
|
-
var _c1$
|
|
16577
|
+
var _c1$g = function (a0) { return { "height.px": a0 }; };
|
|
16517
16578
|
var _c2$4 = function (a0) { return { "miam-recipe-tags__container__toggle__hidden": a0 }; };
|
|
16518
16579
|
var _c3$3 = function (a0) { return { "opacity": a0 }; };
|
|
16519
16580
|
function RecipeTagsComponent_div_0_Template(rf, ctx) {
|
|
@@ -16538,7 +16599,7 @@
|
|
|
16538
16599
|
}
|
|
16539
16600
|
if (rf & 2) {
|
|
16540
16601
|
var ctx_r0 = i0.ɵɵnextContext();
|
|
16541
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(6, _c1$
|
|
16602
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(6, _c1$g, ctx_r0.isListOpen ? 32 * ctx_r0.rowCount : 24));
|
|
16542
16603
|
i0.ɵɵadvance(2);
|
|
16543
16604
|
i0.ɵɵproperty("ngForOf", ctx_r0.recipePreviewLines);
|
|
16544
16605
|
i0.ɵɵadvance(1);
|
|
@@ -16758,7 +16819,7 @@
|
|
|
16758
16819
|
}
|
|
16759
16820
|
}
|
|
16760
16821
|
var _c0$x = function (a0) { return { rotate: a0 }; };
|
|
16761
|
-
var _c1$
|
|
16822
|
+
var _c1$h = function (a0) { return { wrap: a0 }; };
|
|
16762
16823
|
function RecipesHistoryComponent_div_6_Template(rf, ctx) {
|
|
16763
16824
|
if (rf & 1) {
|
|
16764
16825
|
var _r12_1 = i0.ɵɵgetCurrentView();
|
|
@@ -16788,7 +16849,7 @@
|
|
|
16788
16849
|
i0.ɵɵadvance(1);
|
|
16789
16850
|
i0.ɵɵproperty("iconName", ctx_r2.icon.ChevronDown);
|
|
16790
16851
|
i0.ɵɵadvance(1);
|
|
16791
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c1$
|
|
16852
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(9, _c1$h, !group_r6.show));
|
|
16792
16853
|
i0.ɵɵadvance(1);
|
|
16793
16854
|
i0.ɵɵproperty("ngForOf", group_r6.lines);
|
|
16794
16855
|
}
|
|
@@ -16989,7 +17050,7 @@
|
|
|
16989
17050
|
i0.ɵɵproperty("recipeId", ctx_r1.recipe && ctx_r1.recipe.id);
|
|
16990
17051
|
}
|
|
16991
17052
|
}
|
|
16992
|
-
var _c1$
|
|
17053
|
+
var _c1$i = function (a0) { return { "hiddeCloseIcon": a0 }; };
|
|
16993
17054
|
var RecipeModalComponent = /** @class */ (function () {
|
|
16994
17055
|
function RecipeModalComponent(cdr, recipesService, printService, elRef, groceriesListsService) {
|
|
16995
17056
|
this.cdr = cdr;
|
|
@@ -17052,7 +17113,7 @@
|
|
|
17052
17113
|
// If the recipe is already in basket, update the number of guests (= append recipe to list again)
|
|
17053
17114
|
RecipeModalComponent.prototype.recipeChanged = function () {
|
|
17054
17115
|
if (this.groceriesListsService.list$.value.hasRecipe(this.recipe.id)) {
|
|
17055
|
-
this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests).subscribe();
|
|
17116
|
+
this.groceriesListsService.appendRecipeToList(this.recipe.id, this.recipe.modifiedGuests, 'recipe-modal').subscribe();
|
|
17056
17117
|
}
|
|
17057
17118
|
this.recipesService.displayedRecipeChanged.emit();
|
|
17058
17119
|
};
|
|
@@ -17076,7 +17137,7 @@
|
|
|
17076
17137
|
i0.ɵɵelementEnd();
|
|
17077
17138
|
}
|
|
17078
17139
|
if (rf & 2) {
|
|
17079
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c1$
|
|
17140
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(10, _c1$i, ctx.closeIconhidden))("isAngularComponent", true)("noHeaderMode", true)("expanded", ctx.show)("noHeaderMode", !ctx.previewMode)("title", ctx.previewMode ? "1 repas ajout\u00E9 \u00E0 votre panier :" : "")("cancelButtonText", ctx.previewMode ? "Retirer le repas" : "")("confirmButtonText", ctx.previewMode ? "Ok, continuer mes courses" : "");
|
|
17080
17141
|
i0.ɵɵadvance(1);
|
|
17081
17142
|
i0.ɵɵproperty("ngIf", ctx.recipe && !ctx.previewMode);
|
|
17082
17143
|
i0.ɵɵadvance(1);
|