@silexpert/core 2.0.7 → 2.0.9

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.
Files changed (46) hide show
  1. package/dist/types/Enum/AnalyticsUtm.d.ts +11 -1
  2. package/dist/types/Enum/AnalyticsUtm.d.ts.map +1 -1
  3. package/dist/types/Enum/AnalyticsUtm.js +10 -0
  4. package/dist/types/Enum/AnalyticsUtm.js.map +1 -1
  5. package/dist/types/Enum/BrandPourcentage.js +11 -11
  6. package/dist/types/Enum/BrandPourcentage.js.map +1 -1
  7. package/dist/types/Enum/Ged.d.ts +2 -1
  8. package/dist/types/Enum/Ged.d.ts.map +1 -1
  9. package/dist/types/Enum/Ged.js +25 -19
  10. package/dist/types/Enum/Ged.js.map +1 -1
  11. package/dist/types/Enum/MailAuto.d.ts +3 -1
  12. package/dist/types/Enum/MailAuto.d.ts.map +1 -1
  13. package/dist/types/Enum/MailAuto.js +2 -0
  14. package/dist/types/Enum/MailAuto.js.map +1 -1
  15. package/dist/types/Interface/api/DashboardLayout.d.ts +2 -0
  16. package/dist/types/Interface/api/DashboardLayout.d.ts.map +1 -1
  17. package/dist/types/Interface/api/DashboardLayout.js.map +1 -1
  18. package/dist/types/Interface/api/documentRequest/Create.d.ts +2 -0
  19. package/dist/types/Interface/api/documentRequest/Create.d.ts.map +1 -1
  20. package/dist/types/Interface/api/documentRequest/Create.js +15 -1
  21. package/dist/types/Interface/api/documentRequest/Create.js.map +1 -1
  22. package/dist/types/Interface/api/documentRequest/Query.d.ts +7 -4
  23. package/dist/types/Interface/api/documentRequest/Query.d.ts.map +1 -1
  24. package/dist/types/Interface/api/documentRequest/Query.js +28 -13
  25. package/dist/types/Interface/api/documentRequest/Query.js.map +1 -1
  26. package/dist/types/Interface/api/documentRequest/Update.d.ts +1 -0
  27. package/dist/types/Interface/api/documentRequest/Update.d.ts.map +1 -1
  28. package/dist/types/Interface/api/documentRequest/Update.js +8 -1
  29. package/dist/types/Interface/api/documentRequest/Update.js.map +1 -1
  30. package/dist/types/Interface/models/IDocumentRequest.d.ts +4 -0
  31. package/dist/types/Interface/models/IDocumentRequest.d.ts.map +1 -1
  32. package/dist/types/Interface/models/IDocumentRequest.js +3 -0
  33. package/dist/types/Interface/models/IDocumentRequest.js.map +1 -1
  34. package/dist/utils/commercialManagement/templates/common.js +1 -1
  35. package/dist/utils/commercialManagement/templates/common.js.map +1 -1
  36. package/package.json +1 -1
  37. package/ts/types/Enum/AnalyticsUtm.ts +10 -0
  38. package/ts/types/Enum/BrandPourcentage.ts +11 -11
  39. package/ts/types/Enum/Ged.ts +25 -19
  40. package/ts/types/Enum/MailAuto.ts +2 -0
  41. package/ts/types/Interface/api/DashboardLayout.ts +2 -0
  42. package/ts/types/Interface/api/documentRequest/Create.ts +11 -1
  43. package/ts/types/Interface/api/documentRequest/Query.ts +22 -11
  44. package/ts/types/Interface/api/documentRequest/Update.ts +6 -1
  45. package/ts/types/Interface/models/IDocumentRequest.ts +4 -0
  46. package/ts/utils/commercialManagement/templates/common.ts +1 -1
@@ -172,6 +172,7 @@ export enum TypeFile {
172
172
  MILEAGE_ALLOWANCES_SUMMARY = 110, // Un récapitulatif de vos indemnités kilométriques
173
173
  PURCHASE_DEED = 111, // Acte d'achat
174
174
  APPROVAL = 112, // Appro des comptes
175
+ BANK_STATEMENT = 113, // Relevé bancaire
175
176
  }
176
177
 
177
178
  /** @deprecated this is a legacy enum try to use TypeFile enum if you can or use both enum's */
@@ -285,7 +286,7 @@ export const GedFileTypeDetail = {
285
286
  },
286
287
  IDENTITY_CARD: {
287
288
  id: GedFileType.IDENTITY_CARD,
288
- name: "Carte d'identité",
289
+ name: 'Carte d\'identité',
289
290
  idGedFolder: GedFolder.KBIS,
290
291
  typeFile: TypeFile.IDENTITY_CARD_RECTO,
291
292
  },
@@ -421,7 +422,7 @@ export const GedFolderList: Array<{
421
422
  }> = [
422
423
  {
423
424
  id: GedFolder.KBIS,
424
- name: "K-bis & Carte d'identité & Mémento fiscal",
425
+ name: 'K-bis & Carte d\'identité & Mémento fiscal',
425
426
  isVisibleForClient: true,
426
427
  idGedCategory: GedCategory.COMPANY,
427
428
  },
@@ -447,7 +448,7 @@ export const GedFolderList: Array<{
447
448
  },
448
449
  {
449
450
  id: GedFolder.IS_DECLARATIONS,
450
- name: "Déclarations d'IS",
451
+ name: 'Déclarations d\'IS',
451
452
  isVisibleForClient: true,
452
453
  idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
453
454
  },
@@ -467,7 +468,7 @@ export const GedFolderList: Array<{
467
468
  idGedCategory: GedCategory.SOCIAL,
468
469
  },
469
470
  { id: GedFolder.TNS, name: 'TNS', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
470
- { id: GedFolder.AGM, name: "PV d'AG", isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
471
+ { id: GedFolder.AGM, name: 'PV d\'AG', isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
471
472
  {
472
473
  id: GedFolder.CONTRACTS_LEASES,
473
474
  name: 'Contrats & Baux',
@@ -655,7 +656,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
655
656
  },
656
657
  [TypeFile.IDENTITY_CARD_RECTO]: {
657
658
  typeFile: TypeFile.IDENTITY_CARD_RECTO,
658
- name: "Carte d'identité",
659
+ name: 'Carte d\'identité',
659
660
  idGedFolder: GedFolder.KBIS,
660
661
  idGedFileType: GedFileType.IDENTITY_CARD,
661
662
  },
@@ -769,7 +770,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
769
770
  },
770
771
  [TypeFile.INSURANCE_CONTRACT]: {
771
772
  typeFile: TypeFile.INSURANCE_CONTRACT,
772
- name: "Contrat d'assurance",
773
+ name: 'Contrat d\'assurance',
773
774
  idGedFolder: GedFolder.INSURANCES,
774
775
  },
775
776
  [TypeFile.COMPANY_CONTRIBUTION_PROOF]: {
@@ -777,7 +778,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
777
778
  name: 'Justificatif des apports faits à la société',
778
779
  idGedFolder: GedFolder.JURIDICAL,
779
780
  helpText:
780
- "Vos relevés bancaires personnels indiquant le montant d’épargne disponible, votre avis d'imposition personnel",
781
+ 'Vos relevés bancaires personnels indiquant le montant d’épargne disponible, votre avis d\'imposition personnel',
781
782
  },
782
783
  [TypeFile.NOTARY_STATEMENT]: {
783
784
  typeFile: TypeFile.NOTARY_STATEMENT,
@@ -787,12 +788,12 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
787
788
  },
788
789
  [TypeFile.PURCHASE_DEED]: {
789
790
  typeFile: TypeFile.PURCHASE_DEED,
790
- name: "Acte d'achat",
791
+ name: 'Acte d\'achat',
791
792
  idGedFolder: GedFolder.JURIDICAL,
792
793
  },
793
794
  [TypeFile.PV_RESULT_ALLOCATION]: {
794
795
  typeFile: TypeFile.PV_RESULT_ALLOCATION,
795
- name: "PV d'AG d'affectation du résultat",
796
+ name: 'PV d\'AG d\'affectation du résultat',
796
797
  idGedFolder: GedFolder.AGM,
797
798
  },
798
799
  [TypeFile.SUBSIDY_PROOF]: {
@@ -802,7 +803,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
802
803
  },
803
804
  [TypeFile.LOAN_AMORTIZATION_TABLE]: {
804
805
  typeFile: TypeFile.LOAN_AMORTIZATION_TABLE,
805
- name: "Tableau d'amortissement des emprunts",
806
+ name: 'Tableau d\'amortissement des emprunts',
806
807
  idGedFolder: GedFolder.BORROWING_TABLES,
807
808
  },
808
809
  [TypeFile.COMMERCIAL_OR_RENTAL_LEASE]: {
@@ -822,7 +823,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
822
823
  },
823
824
  [TypeFile.LIVESTOCK_REGISTER]: {
824
825
  typeFile: TypeFile.LIVESTOCK_REGISTER,
825
- name: "Registre d'élevage",
826
+ name: 'Registre d\'élevage',
826
827
  idGedFolder: GedFolder.OTHER,
827
828
  },
828
829
  [TypeFile.LIVESTOCK_INVENTORY]: {
@@ -852,7 +853,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
852
853
  },
853
854
  [TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF]: {
854
855
  typeFile: TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF,
855
- name: "Justificatifs de crédits d'impôt agricoles",
856
+ name: 'Justificatifs de crédits d\'impôt agricoles',
856
857
  idGedFolder: GedFolder.MISCELLANEOUS,
857
858
  },
858
859
  [TypeFile.LOAN_REPAYMENT_PROOF]: {
@@ -877,17 +878,17 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
877
878
  },
878
879
  [TypeFile.CONDOMINIUM_AGM_MINUTES]: {
879
880
  typeFile: TypeFile.CONDOMINIUM_AGM_MINUTES,
880
- name: "Procès-verbaux d'AG de copropriété",
881
+ name: 'Procès-verbaux d\'AG de copropriété',
881
882
  idGedFolder: GedFolder.AGM,
882
883
  },
883
884
  [TypeFile.TAX_NOTICE]: {
884
885
  typeFile: TypeFile.TAX_NOTICE,
885
- name: "Avis d'imposition (CFE, taxe foncière)",
886
+ name: 'Avis d\'imposition (CFE, taxe foncière)',
886
887
  idGedFolder: GedFolder.SLIPS_CFE,
887
888
  },
888
889
  [TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION]: {
889
890
  typeFile: TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION,
890
- name: "Notifications d'attribution de subventions publiques",
891
+ name: 'Notifications d\'attribution de subventions publiques',
891
892
  idGedFolder: GedFolder.SUBVENTION,
892
893
  },
893
894
  [TypeFile.FINANCING_CONTRACTS_OR_SUBSIDY_AGREEMENTS]: {
@@ -904,7 +905,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
904
905
  },
905
906
  [TypeFile.STOCK]: {
906
907
  typeFile: TypeFile.STOCK,
907
- name: "L'état de vos stocks à la date de clôture",
908
+ name: 'L\'état de vos stocks à la date de clôture',
908
909
  idGedFolder: GedFolder.STOCK,
909
910
  helpText:
910
911
  'L’état des stocks doit recenser l’ensemble des produits disponibles à la date de clôture. Chaque article doit être identifié précisément, classé par catégorie (matières premières, marchandises, produits finis, consommables...), et valorisé au prix d’achat hors taxes (HT). Ce document doit impérativement être daté et signé.',
@@ -914,7 +915,7 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
914
915
  name: 'Le grand livre de réciprocité des comptes',
915
916
  idGedFolder: GedFolder.BALANCE_GL,
916
917
  helpText:
917
- "Votre société détient ou a cédé des actions à une autre entité, ce qui établit un lien capitalistique entre les deux sociétés. En conséquence, des mouvements comptables peuvent exister entre elles. Afin d'assurer la cohérence des écritures comptables, nous vous demandons de nous transmettre les grands livres des opérations enregistrées dans la comptabilité de l’autre société. Cela nous permettra de rapprocher et cadrer les flux entre les deux entités.",
918
+ 'Votre société détient ou a cédé des actions à une autre entité, ce qui établit un lien capitalistique entre les deux sociétés. En conséquence, des mouvements comptables peuvent exister entre elles. Afin d\'assurer la cohérence des écritures comptables, nous vous demandons de nous transmettre les grands livres des opérations enregistrées dans la comptabilité de l’autre société. Cela nous permettra de rapprocher et cadrer les flux entre les deux entités.',
918
919
  },
919
920
  [TypeFile.SUPPLIER_DEBTS]: {
920
921
  typeFile: TypeFile.SUPPLIER_DEBTS,
@@ -961,12 +962,12 @@ export const TypeFileDetail: Record<number, TypeFileDetailType> = {
961
962
  name: ' Vos relevés stripe, amazon ect.',
962
963
  idGedFolder: GedFolder.SUMMARY,
963
964
  helpText: `Stripe : Dans le menu Rapports → Balance ou Relevés financiers, vous pouvez générer un rapport mensuel complet en PDF ou CSV incluant paiements, frais, remboursements, et soldes.
964
- Amazon : Connectez vous sur Amazon Seller Central, dans le menu Rapports → Paiements → Tous les relevés ou rapports de paiements → Type de rapport : activité du compte → Choisir la période → Générer le rapport ou télécharger en PDF
965
+ Amazon : Connectez vous sur Amazon Seller Central, dans le menu Rapports → Paiements → Tous les relevés ou rapports de paiements → Type de rapport : activité du compte → Choisir la période → Générer le rapport ou télécharger en PDF
965
966
  Paypal : relevés mensuels à télécharger sur le site → Activité → Icône Télécharger → Cliquer sur toutes les transactions → Icône télécharger à côté du mois que vous recherchez.`,
966
967
  },
967
968
  [TypeFile.INVOICING_SOFTWARE_SUMMARY]: {
968
969
  typeFile: TypeFile.INVOICING_SOFTWARE_SUMMARY,
969
- name: "Un récapitulatif de votre logiciel de facturation détaille par type d'encaissement et par taux de TVA",
970
+ name: 'Un récapitulatif de votre logiciel de facturation détaille par type d\'encaissement et par taux de TVA',
970
971
  idGedFolder: GedFolder.SUMMARY,
971
972
  helpText:
972
973
  'Il doit provenir de votre logiciel de facturation et détailler le total des ventes par mode de paiement (carte, virement, espèces, etc.) et par taux de TVA (20%, 10%, 5,5%).',
@@ -984,4 +985,9 @@ La puissance fiscale du véhicule (CV fiscaux)
984
985
  Le barème appliqué
985
986
  Le montant de l’indemnité calculée`,
986
987
  },
988
+ [TypeFile.BANK_STATEMENT]: {
989
+ typeFile: TypeFile.BANK_STATEMENT,
990
+ name: 'Relevé bancaire',
991
+ idGedFolder: GedFolder.BANK_STATEMENT,
992
+ },
987
993
  };
@@ -143,6 +143,8 @@ export enum MailAuto {
143
143
  RELAUNCH_DOCUMENTS_CUT_OFF = 171,
144
144
  ID_APPROBATION_UNPAID_JURIDICAL_GESTION = 172,
145
145
  ID_APPROBATION_UNPAID_ARCHIVES = 173,
146
+ ASK_DOCUMENTS_BANK_STATEMENT = 174,
147
+ RELAUNCH_DOCUMENTS_BANK_STATEMENT = 175,
146
148
  }
147
149
 
148
150
  export enum MailAutoType {
@@ -5,6 +5,8 @@ export interface ReadDashboardLayoutItem {
5
5
  y: number;
6
6
  w: number;
7
7
  h: number;
8
+ minH?: number;
9
+ minW?: number;
8
10
  i: DashboardBlock;
9
11
  metadata?: Record<string, any>;
10
12
  }
@@ -1,4 +1,4 @@
1
- import { IsBoolean, IsEnum, IsInt, IsOptional } from 'class-validator';
1
+ import { IsBoolean, IsEnum, IsInt, IsObject, IsOptional } from 'class-validator';
2
2
  import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
3
3
  import { IDocumentRequest } from '../../models/IDocumentRequest.js';
4
4
  import { TypeFile } from '../../../Enum/Ged.js';
@@ -23,6 +23,11 @@ export class CreateDocumentRequest implements Omit<IDocumentRequest, 'id' | 'idR
23
23
  @IsInt()
24
24
  idBalanceSheet?: number;
25
25
 
26
+ @ApiPropertyOptional()
27
+ @IsOptional()
28
+ @IsInt()
29
+ idBankAccount?: number;
30
+
26
31
  @ApiPropertyOptional()
27
32
  @IsOptional()
28
33
  comment?: string;
@@ -32,4 +37,9 @@ export class CreateDocumentRequest implements Omit<IDocumentRequest, 'id' | 'idR
32
37
  @IsBoolean()
33
38
  @ToBoolean()
34
39
  isMandatory?: boolean;
40
+
41
+ @ApiPropertyOptional()
42
+ @IsOptional()
43
+ @IsObject()
44
+ metadata?: Record<string, unknown>;
35
45
  }
@@ -1,6 +1,7 @@
1
- import { IsArray, IsBoolean, IsInt, IsOptional } from 'class-validator';
1
+ import { IsArray, IsBoolean, IsEnum, IsInt, IsOptional } from 'class-validator';
2
2
  import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
3
3
  import { TypeFile } from '../../../Enum/Ged.js';
4
+ import { MailAuto } from '../../../Enum/MailAuto.js';
4
5
  import { ToBoolean } from '../../../../utils/transforms/boolean.transform.js';
5
6
 
6
7
  export class QueryDocumentRequest {
@@ -26,9 +27,15 @@ export class QueryDocumentRequest {
26
27
  }
27
28
 
28
29
  export class SendRelaunchDocumentsMail {
29
- @ApiProperty()
30
+ @ApiPropertyOptional()
31
+ @IsOptional()
32
+ @IsInt()
33
+ idExercice?: number;
34
+
35
+ @ApiPropertyOptional()
36
+ @IsOptional()
30
37
  @IsInt()
31
- idExercice: number;
38
+ idSociety?: number;
32
39
 
33
40
  @ApiProperty()
34
41
  @IsBoolean()
@@ -36,15 +43,20 @@ export class SendRelaunchDocumentsMail {
36
43
  sendRefusedTemplate: boolean;
37
44
 
38
45
  @ApiProperty()
39
- @IsBoolean()
40
- @ToBoolean()
41
- isForChecklist: boolean;
46
+ @IsEnum(MailAuto)
47
+ idMailAuto: MailAuto;
42
48
  }
43
49
 
44
50
  export class SendAskDocumentsMail {
45
- @ApiProperty()
51
+ @ApiPropertyOptional()
52
+ @IsOptional()
53
+ @IsInt()
54
+ idExercice?: number;
55
+
56
+ @ApiPropertyOptional()
57
+ @IsOptional()
46
58
  @IsInt()
47
- idExercice: number;
59
+ idSociety?: number;
48
60
 
49
61
  @ApiPropertyOptional()
50
62
  @IsOptional()
@@ -53,7 +65,6 @@ export class SendAskDocumentsMail {
53
65
  addAdviceNote?: boolean;
54
66
 
55
67
  @ApiProperty()
56
- @IsBoolean()
57
- @ToBoolean()
58
- isForChecklist: boolean;
68
+ @IsEnum(MailAuto)
69
+ idMailAuto: MailAuto;
59
70
  }
@@ -1,4 +1,4 @@
1
- import { IsBoolean, IsEnum, IsInt, IsOptional } from 'class-validator';
1
+ import { IsBoolean, IsEnum, IsInt, IsObject, IsOptional } from 'class-validator';
2
2
  import { ApiPropertyOptional } from '@nestjs/swagger';
3
3
  import { IDocumentRequest } from '../../models/IDocumentRequest.js';
4
4
  import { TypeFile } from '../../../Enum/Ged.js';
@@ -42,4 +42,9 @@ export class UpdateDocumentRequest implements Partial<
42
42
  @IsBoolean()
43
43
  @ToBoolean()
44
44
  isMandatory?: boolean;
45
+
46
+ @ApiPropertyOptional()
47
+ @IsOptional()
48
+ @IsObject()
49
+ metadata?: Record<string, unknown>;
45
50
  }
@@ -5,6 +5,7 @@ import { IBalanceSheet } from './IBalanceSheet.js';
5
5
  import { IUser } from './IUser.js';
6
6
  import { IFile } from './IFile.js';
7
7
  import { IGedFile } from './IGedFile.js';
8
+ import { IBankAccount } from './IBankAccount.js';
8
9
 
9
10
  export class IDocumentRequest {
10
11
  id?: number;
@@ -12,8 +13,10 @@ export class IDocumentRequest {
12
13
  idExercice?: number | null;
13
14
  idBalanceSheet?: number | null;
14
15
  idRequestedBy: number; // IUser who requested the document
16
+ idBankAccount?: number | null;
15
17
  typeFile: TypeFile;
16
18
  comment?: string | null;
19
+ metadata?: Record<string, unknown> | null;
17
20
  isNotConcerned?: boolean; // This can't be null (default false in db)
18
21
  isMandatory?: boolean; // If true, client cannot mark this request as not concerned
19
22
  notConcernedAt?: Date | null;
@@ -28,4 +31,5 @@ export class IDocumentRequest {
28
31
  requestedBy?: IUser;
29
32
  gedFiles?: IGedFile[];
30
33
  files?: IFile[];
34
+ bankAccount?: IBankAccount;
31
35
  }
@@ -20,7 +20,7 @@ export class CommercialDocumentCommonHTML {
20
20
  <% } else if (brandName === "Pourcentage") {%>
21
21
  <svg width="87" height="12" viewBox="0 0 131 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.8818 2.93555H24.9912C25.5746 2.93555 26.1073 2.98562 26.6147 3.08575C27.122 3.18589 27.5786 3.36113 27.9591 3.61147C28.3396 3.86182 28.644 4.2123 28.8723 4.63788C29.1006 5.06346 29.2021 5.58918 29.2021 6.24007C29.2021 6.86592 29.1006 7.41668 28.8977 7.84226C28.6947 8.26784 28.3903 8.61832 28.0352 8.86866C27.6801 9.119 27.2488 9.31927 26.7415 9.41941C26.2342 9.51955 25.7015 9.56962 25.118 9.56962H23.3424V13.8254H20.8818V2.93555ZM23.317 7.54184H24.9405C25.1688 7.54184 25.3717 7.51681 25.5746 7.49178C25.7776 7.44171 25.9551 7.39164 26.1327 7.2915C26.2849 7.19136 26.4117 7.0662 26.5132 6.89096C26.6147 6.71572 26.6654 6.51544 26.6654 6.24007C26.6654 5.96469 26.5893 5.73938 26.4625 5.56414C26.3356 5.3889 26.1581 5.26373 25.9551 5.16359C25.7522 5.06345 25.5239 5.01339 25.2702 4.98836C25.0166 4.96332 24.7883 4.93829 24.56 4.93829H23.317V7.54184Z" fill="#386D5D"/><path d="M30.1426 10.097C30.1426 9.49618 30.244 8.97047 30.4723 8.46978C30.7006 7.99413 30.9797 7.56855 31.3602 7.21807C31.7407 6.86759 32.1973 6.61725 32.7046 6.41697C33.2119 6.24173 33.77 6.1416 34.3534 6.1416C34.9369 6.1416 35.4949 6.24173 36.0023 6.41697C36.5096 6.59221 36.9662 6.86759 37.3467 7.21807C37.7272 7.56855 38.0316 7.9691 38.2345 8.46978C38.4628 8.94543 38.5643 9.49618 38.5643 10.097C38.5643 10.6978 38.4628 11.2235 38.2345 11.7242C38.0062 12.2249 37.7272 12.6255 37.3467 12.9759C36.9662 13.3264 36.5096 13.5768 36.0023 13.777C35.4949 13.9523 34.9369 14.0524 34.3534 14.0524C33.77 14.0524 33.2119 13.9523 32.7046 13.777C32.1973 13.6018 31.7407 13.3264 31.3602 12.9759C30.9797 12.6255 30.6753 12.2249 30.4723 11.7242C30.2694 11.2235 30.1426 10.6978 30.1426 10.097ZM32.4763 10.097C32.4763 10.6728 32.6285 11.1234 32.9583 11.4739C33.288 11.8244 33.7446 11.9996 34.3534 11.9996C34.9369 11.9996 35.4188 11.8244 35.7486 11.4739C36.0784 11.1234 36.2305 10.6728 36.2305 10.097C36.2305 9.52122 36.0784 9.0706 35.7486 8.72012C35.4188 8.36964 34.9622 8.1944 34.3534 8.1944C33.77 8.1944 33.288 8.36964 32.9583 8.72012C32.6539 9.0706 32.4763 9.52122 32.4763 10.097Z" fill="#386D5D"/><path d="M47.2626 13.8498H45.005V12.8234H44.9796C44.9035 12.9736 44.802 13.0987 44.6498 13.2489C44.523 13.3991 44.3708 13.5243 44.1679 13.6244C43.9903 13.7496 43.762 13.8247 43.5337 13.8998C43.3054 13.9749 43.0264 14 42.7473 14C42.1639 14 41.6819 13.8998 41.3014 13.7246C40.9209 13.5493 40.6419 13.299 40.439 12.9736C40.236 12.6481 40.1092 12.2726 40.0331 11.847C39.957 11.4214 39.9316 10.9458 39.9316 10.4451V6.31445H42.2654V9.99449C42.2654 10.2198 42.2654 10.4451 42.2907 10.6704C42.3161 10.8957 42.3415 11.121 42.4429 11.3213C42.519 11.5216 42.6459 11.6718 42.7981 11.7969C42.9503 11.9221 43.1786 11.9722 43.483 11.9722C43.7874 11.9722 44.041 11.9221 44.2186 11.822C44.3962 11.7218 44.5484 11.5716 44.6498 11.3964C44.7513 11.2212 44.802 11.0209 44.8527 10.7956C44.8781 10.5703 44.9035 10.345 44.9035 10.0946V6.36452H47.2372V13.8498H47.2626Z" fill="#386D5D"/><path d="M48.9131 6.34187H51.2468V7.54351H51.2722C51.5258 7.0929 51.8302 6.74242 52.16 6.49208C52.4898 6.24174 52.9464 6.1416 53.4537 6.1416C53.5805 6.1416 53.7327 6.1416 53.8596 6.16663C53.9864 6.16663 54.1132 6.19167 54.2401 6.2167V8.31957C54.0625 8.26951 53.9103 8.21944 53.7581 8.1944C53.6059 8.16937 53.4283 8.14434 53.2508 8.14434C52.7942 8.14434 52.439 8.1944 52.1854 8.31957C51.9317 8.44474 51.7288 8.61999 51.5766 8.84529C51.4244 9.0706 51.3483 9.32095 51.2975 9.64639C51.2468 9.9468 51.2468 10.2973 51.2468 10.6728V13.8021H48.9131V6.34187Z" fill="#386D5D"/><path d="M60.1238 8.7702C59.997 8.59496 59.8448 8.46978 59.6418 8.36965C59.4389 8.26951 59.2106 8.21944 58.9823 8.21944C58.3989 8.21944 57.9169 8.39468 57.5872 8.74516C57.2574 9.09564 57.1052 9.54625 57.1052 10.122C57.1052 10.6978 57.2574 11.1484 57.5872 11.4989C57.9169 11.8494 58.3735 12.0246 58.9823 12.0246C59.236 12.0246 59.4643 11.9746 59.6418 11.8494C59.8194 11.7242 59.997 11.5991 60.1238 11.4489L61.6712 13.051C61.316 13.4266 60.8848 13.6769 60.3775 13.8271C59.8701 13.9773 59.4135 14.0524 58.9569 14.0524C58.3735 14.0524 57.8155 13.9523 57.3081 13.777C56.8008 13.6018 56.3442 13.3264 55.9637 12.9759C55.5832 12.6255 55.2788 12.2249 55.0759 11.7242C54.8729 11.2235 54.7461 10.6978 54.7461 10.097C54.7461 9.49618 54.8476 8.97047 55.0759 8.46978C55.3042 7.99413 55.5832 7.56855 55.9637 7.21807C56.3442 6.86759 56.8008 6.61725 57.3081 6.41697C57.8155 6.24173 58.3735 6.1416 58.9569 6.1416C59.4135 6.1416 59.8701 6.2167 60.3775 6.36691C60.8594 6.51711 61.2907 6.76746 61.6712 7.14297L60.1238 8.7702Z" fill="#386D5D"/><path d="M69.7137 12.551C69.3332 13.0266 68.8766 13.3771 68.2931 13.6525C67.7097 13.9028 67.1263 14.028 66.5175 14.028C65.9341 14.028 65.376 13.9279 64.8687 13.7526C64.3613 13.5774 63.9047 13.302 63.5242 12.9515C63.1437 12.601 62.8393 12.2005 62.6364 11.6998C62.4335 11.1991 62.3066 10.6734 62.3066 10.0726C62.3066 9.47177 62.4081 8.94605 62.6364 8.44537C62.8647 7.96972 63.1437 7.54414 63.5242 7.19366C63.9047 6.84318 64.3613 6.59284 64.8687 6.39257C65.376 6.21733 65.9341 6.11719 66.5175 6.11719C67.0502 6.11719 67.5575 6.21733 67.9888 6.39257C68.42 6.56781 68.8005 6.84318 69.1049 7.19366C69.4093 7.54414 69.6376 7.94468 69.8151 8.44537C69.9927 8.92102 70.0688 9.47177 70.0688 10.0726V10.7986H64.6404C64.7418 11.2492 64.9448 11.5997 65.2492 11.85C65.5536 12.1004 65.9594 12.2506 66.416 12.2506C66.7965 12.2506 67.1263 12.1755 67.38 12.0002C67.6336 11.825 67.8873 11.6247 68.0649 11.3493L69.7137 12.551ZM67.7351 9.24647C67.7351 8.84592 67.6083 8.52047 67.3546 8.2451C67.0756 7.96972 66.7458 7.81951 66.3146 7.81951C66.0609 7.81951 65.8326 7.86958 65.6297 7.94468C65.4267 8.01979 65.2745 8.11993 65.1223 8.27013C64.9701 8.3953 64.8687 8.54551 64.7926 8.72075C64.7165 8.89598 64.6657 9.07123 64.6657 9.24647H67.7351Z" fill="#386D5D"/><path d="M71.4883 6.33868H73.7459V7.36509H73.7713C73.8474 7.21488 73.9488 7.08971 74.0757 6.9395C74.2025 6.7893 74.3801 6.66413 74.5576 6.56399C74.7352 6.43882 74.9635 6.36371 75.1918 6.28861C75.4201 6.21351 75.6991 6.18848 75.9782 6.18848C76.5616 6.18848 77.0436 6.28861 77.4241 6.46385C77.7792 6.63909 78.0836 6.88944 78.2865 7.21488C78.4894 7.54033 78.6163 7.91584 78.6924 8.34142C78.7685 8.767 78.7938 9.24266 78.7938 9.74334V13.874H76.4601V10.194C76.4601 9.96864 76.4601 9.74334 76.4348 9.51803C76.4094 9.29273 76.384 9.06742 76.2826 8.86714C76.2065 8.66687 76.0796 8.51666 75.9274 8.39149C75.7752 8.26632 75.5469 8.21625 75.2425 8.21625C74.9381 8.21625 74.6845 8.26632 74.5069 8.36646C74.3293 8.46659 74.1771 8.61679 74.0757 8.79203C73.9742 8.96727 73.9235 9.16755 73.8727 9.39286C73.8474 9.61817 73.822 9.84347 73.822 10.0938V13.8239H71.4883V6.33868Z" fill="#386D5D"/><path d="M85.6428 8.19155H83.5881V10.695C83.5881 10.8952 83.5881 11.0955 83.6135 11.2457C83.6389 11.3959 83.6896 11.5712 83.7657 11.6963C83.8418 11.8215 83.9433 11.9217 84.0955 11.9717C84.2477 12.0468 84.4506 12.0719 84.7043 12.0719C84.8311 12.0719 84.9833 12.0468 85.1862 12.0218C85.3892 11.9968 85.5414 11.9467 85.6428 11.8465V13.7742C85.3892 13.8743 85.1101 13.9244 84.8311 13.9494C84.5521 13.9745 84.273 13.9995 83.994 13.9995C83.5881 13.9995 83.233 13.9494 82.9032 13.8743C82.5735 13.7992 82.2691 13.649 82.0408 13.4738C81.7871 13.2985 81.5842 13.0482 81.4573 12.7728C81.3051 12.4974 81.2544 12.147 81.2544 11.7214V8.16651H79.7324V6.31398H81.229V4.08594H83.5628V6.31398H85.6175V8.19155H85.6428Z" fill="#386D5D"/><path d="M91.5801 12.9001H91.5547C91.3011 13.3007 90.9459 13.6011 90.5147 13.7513C90.0835 13.9265 89.6269 14.0016 89.1449 14.0016C88.7898 14.0016 88.46 13.9516 88.1302 13.8514C87.8005 13.7513 87.5215 13.6011 87.2678 13.4008C87.0141 13.2005 86.8112 12.9752 86.6844 12.6748C86.5322 12.3994 86.4561 12.049 86.4561 11.6734C86.4561 11.2479 86.5322 10.8724 86.7097 10.5719C86.8619 10.2715 87.0902 10.0212 87.3693 9.82092C87.6483 9.62064 87.9527 9.47044 88.3078 9.37031C88.6629 9.27017 89.0181 9.19507 89.3986 9.11996C89.7791 9.06989 90.1596 9.04486 90.5401 9.01983C90.9206 9.01983 91.2757 8.99479 91.6055 8.99479C91.6055 8.59424 91.4533 8.2688 91.1489 8.01846C90.8445 7.76812 90.4893 7.66797 90.0835 7.66797C89.703 7.66797 89.3478 7.74308 89.0181 7.91832C88.6883 8.06852 88.4093 8.29383 88.1556 8.56921L86.9126 7.29246C87.3439 6.89191 87.8512 6.59151 88.4346 6.39123C89.0181 6.19096 89.6269 6.09082 90.2357 6.09082C90.9206 6.09082 91.4786 6.16592 91.9352 6.34116C92.3665 6.5164 92.7216 6.76674 93.0006 7.09219C93.2543 7.41763 93.4572 7.81818 93.5587 8.29383C93.6602 8.76948 93.7109 9.32023 93.7109 9.94609V13.7513H91.5547V12.9001H91.5801ZM90.9967 10.5719C90.8191 10.5719 90.5908 10.5719 90.3371 10.597C90.0835 10.622 89.8044 10.647 89.5761 10.7222C89.3225 10.7973 89.1195 10.8974 88.942 11.0476C88.7644 11.1978 88.6883 11.3981 88.6883 11.6484C88.6883 11.9238 88.8151 12.1241 89.0434 12.2743C89.2717 12.3994 89.5254 12.4745 89.8044 12.4745C90.0327 12.4745 90.261 12.4495 90.464 12.3744C90.6669 12.3243 90.8698 12.2242 91.022 12.1241C91.1996 11.9989 91.3264 11.8737 91.4279 11.6985C91.5294 11.5232 91.5801 11.323 91.5801 11.0726V10.5719H90.9967Z" fill="#386D5D"/><path d="M103.17 13.2019C103.17 14.6288 102.815 15.7053 102.079 16.4313C101.344 17.1573 100.253 17.5328 98.7815 17.5328C98.0966 17.5328 97.4371 17.4577 96.7775 17.3075C96.118 17.1573 95.5092 16.8569 94.9765 16.4313L96.2702 14.5287C96.6253 14.8291 97.0058 15.0544 97.4117 15.2296C97.8176 15.4049 98.2488 15.48 98.7308 15.48C99.441 15.48 99.9737 15.3047 100.329 14.9543C100.659 14.6038 100.836 14.1782 100.836 13.6275V12.9015H100.811C100.532 13.2519 100.202 13.5273 99.7962 13.6525C99.3903 13.8027 99.0098 13.8778 98.6547 13.8778C98.0966 13.8778 97.5893 13.7777 97.1327 13.6024C96.6761 13.4021 96.2702 13.1518 95.9404 12.8013C95.6107 12.4508 95.357 12.0503 95.1794 11.5746C95.0019 11.099 94.9258 10.5733 94.9258 10.0225C94.9258 9.52184 95.0019 9.04619 95.1794 8.57054C95.3316 8.09489 95.5599 7.66931 95.8643 7.31883C96.1687 6.96835 96.5239 6.66794 96.9551 6.44263C97.3863 6.21732 97.8683 6.11719 98.401 6.11719C98.7308 6.11719 99.0352 6.14222 99.3142 6.21732C99.5932 6.29243 99.8469 6.39256 100.05 6.4927C100.278 6.61787 100.456 6.74304 100.608 6.86821C100.76 6.99339 100.887 7.14359 100.988 7.26876H101.014V6.29242H103.17V13.2019ZM97.2595 10.0476C97.2595 10.2979 97.3102 10.5232 97.4117 10.7485C97.5132 10.9738 97.64 11.1741 97.8176 11.3243C97.9951 11.4995 98.1981 11.6247 98.401 11.7249C98.6293 11.825 98.883 11.8751 99.1366 11.8751C99.3903 11.8751 99.644 11.825 99.8723 11.7249C100.101 11.6247 100.303 11.4745 100.481 11.3243C100.659 11.1491 100.785 10.9488 100.887 10.7485C100.988 10.5232 101.039 10.2979 101.039 10.0476C101.039 9.79721 100.988 9.57191 100.887 9.3466C100.785 9.12129 100.659 8.92102 100.481 8.77082C100.303 8.59558 100.101 8.4704 99.8723 8.37027C99.644 8.27013 99.3903 8.22006 99.1366 8.22006C98.8576 8.22006 98.6293 8.27013 98.401 8.37027C98.1727 8.4704 97.9698 8.62061 97.8176 8.77082C97.64 8.94606 97.5132 9.14633 97.4117 9.3466C97.3102 9.57191 97.2595 9.79721 97.2595 10.0476Z" fill="#386D5D"/><path d="M112.226 12.551C111.846 13.0266 111.389 13.3771 110.806 13.6525C110.222 13.9028 109.639 14.028 109.03 14.028C108.447 14.028 107.889 13.9279 107.381 13.7526C106.874 13.5774 106.417 13.302 106.037 12.9515C105.656 12.601 105.352 12.2005 105.149 11.6998C104.946 11.1991 104.819 10.6734 104.819 10.0726C104.819 9.47177 104.921 8.94605 105.149 8.44537C105.377 7.96972 105.656 7.54414 106.037 7.19366C106.417 6.84318 106.874 6.59284 107.381 6.39257C107.889 6.21733 108.447 6.11719 109.03 6.11719C109.563 6.11719 110.07 6.21733 110.501 6.39257C110.933 6.56781 111.313 6.84318 111.618 7.19366C111.922 7.54414 112.15 7.94468 112.328 8.44537C112.505 8.92102 112.582 9.47177 112.582 10.0726V10.7986H107.153C107.255 11.2492 107.457 11.5997 107.762 11.85C108.066 12.1004 108.472 12.2506 108.929 12.2506C109.309 12.2506 109.639 12.1755 109.893 12.0002C110.146 11.825 110.4 11.6247 110.578 11.3493L112.226 12.551ZM110.248 9.24647C110.248 8.84592 110.121 8.52047 109.867 8.2451C109.588 7.96972 109.258 7.81951 108.827 7.81951C108.574 7.81951 108.345 7.86958 108.142 7.94468C107.939 8.01979 107.787 8.11993 107.635 8.27013C107.483 8.3953 107.381 8.54551 107.305 8.72075C107.229 8.89598 107.178 9.07123 107.178 9.24647H110.248Z" fill="#386D5D"/><path d="M10.6342 6.81641L13.526 9.26977C13.9319 9.62024 14.287 9.97072 14.566 10.3462C14.8704 10.7217 15.0734 11.1223 15.1748 11.5228C15.2763 11.9234 15.3017 12.349 15.2002 12.7746C15.0987 13.2001 14.8451 13.6508 14.4392 14.1014C14.0587 14.552 13.6528 14.8774 13.2216 15.0527C12.8157 15.2279 12.3845 15.303 11.9787 15.278C11.5728 15.2529 11.1416 15.1027 10.7357 14.8774C10.3045 14.6521 9.89859 14.3767 9.49273 14.0263L8.2244 12.9498L5.61165 15.9539L3.88672 14.5019L10.6342 6.81641ZM9.49273 11.5479L10.6342 12.5242C10.7864 12.6494 10.9386 12.7746 11.1162 12.8497C11.2938 12.9498 11.446 12.9999 11.6235 13.0249C11.8011 13.0499 11.9787 13.0249 12.1562 12.9748C12.3338 12.9248 12.486 12.7996 12.6635 12.6244C12.8411 12.4241 12.9172 12.2238 12.9426 12.0235C12.9426 11.8233 12.9172 11.623 12.8411 11.4477C12.765 11.2725 12.6382 11.0722 12.4606 10.922C12.3084 10.7468 12.1308 10.5966 11.9787 10.4714L11.0908 9.72038L9.49273 11.5479Z" fill="#386D5D"/><path d="M5.50948 9.6707L2.61769 7.21735C2.21183 6.86687 1.8567 6.51639 1.57766 6.14088C1.27326 5.76536 1.07033 5.36481 0.968866 4.96426C0.8674 4.56372 0.842034 4.13814 0.9435 3.71255C1.04497 3.28697 1.29863 2.83636 1.7045 2.38574C2.08499 1.93513 2.49086 1.60968 2.92209 1.43444C3.32796 1.2592 3.75919 1.1841 4.16505 1.20913C4.57092 1.23416 5.00215 1.38437 5.40801 1.60968C5.83924 1.83499 6.24511 2.11036 6.65098 2.46084L7.9193 3.53731L10.5321 0.533203L12.257 1.98519L5.50948 9.6707ZM6.65098 4.96426L5.50948 3.98793C5.35728 3.86276 5.20508 3.73758 5.02751 3.66248C4.84995 3.56235 4.69775 3.51228 4.52018 3.48725C4.34262 3.46221 4.16505 3.48724 3.98749 3.53731C3.80992 3.58738 3.65772 3.71256 3.48016 3.8878C3.30259 4.08807 3.22649 4.28834 3.20112 4.48862C3.20112 4.68889 3.22649 4.88916 3.30259 5.0644C3.37869 5.23964 3.50552 5.43992 3.68309 5.59012C3.83529 5.76536 4.01285 5.91556 4.16505 6.04073L5.05288 6.79176L6.65098 4.96426Z" fill="#386D5D"/><path d="M114.224 12.5773C114.224 13.3512 114.846 13.9734 115.62 13.9734C116.394 13.9734 117.016 13.3512 117.016 12.5773C117.016 11.8035 116.394 11.1813 115.62 11.1813C114.846 11.1813 114.224 11.8035 114.224 12.5773Z" fill="#386D5D"/><path d="M119.761 13.8823H122.037V8.32855H123.721V6.50765H122.037V5.33923C122.037 4.36808 122.401 4.14047 123.129 4.14047C123.402 4.14047 123.615 4.20116 123.873 4.29221L123.979 2.36508C123.554 2.25886 123.099 2.22852 122.644 2.22852C120.17 2.22852 119.761 3.5942 119.761 5.20266V6.50765H118.258V8.32855H119.761V13.8823Z" fill="#386D5D"/><path d="M124.891 13.8823H127.167V10.802C127.167 9.33005 127.38 8.32855 129.11 8.32855C129.444 8.32855 129.762 8.38925 130.081 8.4803V6.40143C129.868 6.34073 129.58 6.32556 129.322 6.32556C128.321 6.32556 127.683 6.79596 127.198 7.69124H127.167V6.50765H124.891V13.8823Z" fill="#386D5D"/></svg>
22
22
  <% } else if (brandName === "Teamsystem Facture") {%>
23
- <svg xmlns="http://www.w3.org/2000/svg" width="70" height="13" viewBox="0 0 1968 562" fill="none"><path d="M300.439 388.522C300.439 388.522 300.64 388.084 301.53 383.706C302.273 380.058 302.629 377.037 302.629 377.037L413.54 411.495C413.54 411.495 412.485 413.271 410.483 416.106C408.163 419.395 405.362 422.619 405.362 422.619L300.439 388.522Z" fill="url(#paint0_linear_125_22498)"/><path d="M62.3496 181.844L191.724 199.591V212.543L62.3496 198.152V181.844Z" fill="url(#paint1_linear_125_22498)"/><path d="M62.3496 303.201L191.724 291.916V281.855L62.3496 291.916V303.201Z" fill="url(#paint2_linear_125_22498)"/><path d="M77.2734 403.398L193.407 354.012C193.407 354.012 194.18 359.171 195.283 363.635C196.287 367.7 197.347 370.686 197.347 370.686L86.3073 417.029C86.3073 417.029 84.9622 415.38 82.6454 412.022C78.9303 406.637 77.2734 403.398 77.2734 403.398Z" fill="url(#paint3_linear_125_22498)"/><path d="M297.287 305.177C297.287 305.177 298.361 310.509 298.955 313.934C299.55 317.359 417.114 296.999 417.114 296.999C417.114 296.999 415.754 290.216 415.134 287.189C414.514 284.162 297.287 305.177 297.287 305.177Z" fill="url(#paint4_linear_125_22498)"/><path d="M281.295 200.934C281.295 200.934 282.154 196.237 284.013 191.073C285.946 185.702 287.663 182.445 287.663 182.445L408.227 224.549C408.227 224.549 407.752 225.937 407.432 227.288C406.513 231.161 406.408 234.533 406.408 234.533L281.295 200.934Z" fill="url(#paint5_linear_125_22498)"/><path d="M227.23 205.703V140.408H191.724V91.1367H166.961C97.8419 91.1367 62.3496 118.253 62.3496 177.073V189.095L195.88 205.703H227.23Z" fill="url(#paint6_linear_125_22498)"/><path d="M191.724 206.279V205.702H195.88L62.3496 189.094V296.66L191.724 287.381V206.279Z" fill="url(#paint7_linear_125_22498)"/><path d="M270.231 403.372C265.544 404.137 255.786 405.081 249.95 405.081C216.035 405.081 201.222 387.813 195.282 363.635L82.6445 412.021C102.609 441.011 135.765 459.247 175.023 465.992C175.023 465.992 247.326 449.001 270.231 403.372Z" fill="url(#paint8_linear_125_22498)"/><path d="M191.724 328.14V287.383L62.3496 296.662V342.845C62.3496 370.261 69.7856 393.36 82.6454 412.023L195.283 363.636C192.63 352.896 191.724 340.709 191.724 328.14Z" fill="url(#paint9_linear_125_22498)"/><path d="M446.941 205.703V140.408H363.93C323.64 140.408 294.582 160.839 284.014 191.074L407.433 227.289C411.449 210.695 425.982 205.426 446.941 205.703Z" fill="url(#paint10_linear_125_22498)"/><path d="M407.115 247.9C405.937 239.626 406.099 232.82 407.432 227.289L284.013 191.074C279.157 204.955 278.191 220.844 281.876 237.782C287.75 265.386 293.822 287.023 298.001 308.811L416.092 291.917C411.847 270.827 407.793 252.749 407.115 247.9Z" fill="url(#paint11_linear_125_22498)"/><path d="M301.531 383.707C294.478 419.158 267.756 447.518 218.977 465.581L220.089 470.288C224.216 470.49 236.052 470.865 261.212 470.865C317.486 470.865 381.27 457.104 410.484 416.107L301.531 383.707Z" fill="url(#paint12_linear_125_22498)"/><path d="M426.622 362.698C426.622 347.011 421.235 317.279 416.091 291.916L298 308.809C301.309 325.921 303.476 343.278 303.476 363.635C303.476 370.575 302.834 377.215 301.53 383.706L410.483 416.106C420.653 401.791 426.622 384.223 426.622 362.698Z" fill="url(#paint13_linear_125_22498)"/><path d="M620.14 170.441H795.172L787.395 217.129H664.869L652.81 290.269H760.942L753.165 335.788H645.034L625.973 450.558H573.463L620.14 170.441Z" fill="#0091D3"/><path d="M915.751 424.104C903.304 438.499 880.353 455.616 848.458 455.616C802.561 455.616 781.17 424.492 781.17 372.748C781.17 290.659 829.01 240.471 886.191 240.471C911.86 240.471 930.921 249.809 943.755 271.207L951.536 245.14H993.155L958.925 450.559H914.195L915.751 424.104ZM932.088 307.778C926.255 298.44 913.416 284.434 892.025 284.434C858.182 284.434 835.236 314.003 835.236 364.967C835.236 391.034 841.069 412.042 868.298 412.042C888.914 412.042 909.138 398.815 918.474 389.088L932.088 307.778Z" fill="#0091D3"/><path d="M1182.57 426.437C1158.46 444.724 1128.12 455.616 1097.39 455.616C1045.27 455.616 1015.71 420.602 1015.71 368.468C1015.71 289.491 1062.38 240.471 1131.62 240.471C1184.52 240.471 1209.8 269.261 1202.41 322.561H1160.4C1162.35 295.328 1149.51 282.489 1128.12 282.489C1093.5 282.489 1069.38 312.835 1069.38 362.633C1069.38 392.202 1082.22 412.432 1109.45 412.432C1130.84 412.432 1148.34 405.039 1169.35 393.758L1182.57 426.437Z" fill="#0091D3"/><path d="M1302.76 284.044L1283.31 399.204C1281.36 411.264 1284.48 415.933 1293.42 415.933C1299.65 415.933 1311.7 414.377 1317.54 412.432L1316.76 447.835C1302.37 452.504 1283.7 455.615 1268.53 455.615C1238.58 455.615 1226.91 438.886 1231.97 409.708L1252.97 284.044H1226.52L1231.58 254.088L1259.97 245.529L1275.14 186.393H1319.1L1308.98 245.139H1345.15L1338.93 284.044H1302.76Z" fill="#0091D3"/><path d="M1482.07 450.558L1482.45 423.713C1464.95 440.441 1444.34 455.615 1415.17 455.615C1368.49 455.615 1355.26 423.713 1362.27 380.917L1384.83 245.139H1435.39L1414.39 371.969C1409.72 399.203 1414 412.041 1436.56 412.041C1454.84 412.041 1471.17 401.537 1482.85 389.865L1506.96 245.139H1557.53L1523.3 450.558H1482.07Z" fill="#0091D3"/><path d="M1648.15 274.708C1660.99 255.644 1679.66 240.471 1697.94 240.471C1705.33 240.471 1712.33 242.416 1717.39 244.75L1705.33 291.827C1699.49 289.881 1694.05 289.103 1687.05 289.103C1671.88 289.103 1655.54 303.109 1647.37 314.391L1624.42 450.559H1573.86L1608.09 245.14H1648.54L1648.15 274.708Z" fill="#0091D3"/><path d="M1885.04 429.161C1858.97 447.057 1828.63 455.616 1798.29 455.616C1746.56 455.616 1717 423.714 1717 370.026C1717 292.605 1765.62 240.471 1834.47 240.471C1880.76 240.471 1905.65 266.538 1905.65 302.331C1905.65 369.246 1840.31 370.414 1769.51 375.083C1769.51 394.145 1780.79 412.82 1811.52 412.82C1831.75 412.82 1847.31 408.541 1871.42 396.481L1885.04 429.161ZM1857.03 303.109C1857.03 289.491 1848.08 279.377 1830.97 279.377C1796.35 279.377 1775.74 309.334 1770.68 338.512C1824.74 335.789 1857.03 331.897 1857.03 303.109Z" fill="#0091D3"/><defs><linearGradient id="paint0_linear_125_22498" x1="300.439" y1="399.828" x2="413.54" y2="399.828" gradientUnits="userSpaceOnUse"><stop offset="0.109827" stop-color="#E52E71"/><stop offset="0.861272" stop-color="#EB684A"/></linearGradient><linearGradient id="paint1_linear_125_22498" x1="62.3496" y1="197.193" x2="191.724" y2="197.193" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#71BEEA"/></linearGradient><linearGradient id="paint2_linear_125_22498" x1="62.3496" y1="292.528" x2="191.724" y2="292.528" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint3_linear_125_22498" x1="106.996" y1="420.953" x2="163.277" y2="358.021" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint4_linear_125_22498" x1="297.287" y1="300.607" x2="417.114" y2="300.607" gradientUnits="userSpaceOnUse"><stop offset="0.0520231" stop-color="#F7B033"/><stop offset="0.739884" stop-color="#EB684A"/></linearGradient><linearGradient id="paint5_linear_125_22498" x1="281.295" y1="208.489" x2="408.227" y2="208.489" gradientUnits="userSpaceOnUse"><stop offset="0.16185" stop-color="#F7B033"/><stop offset="0.849711" stop-color="#FFD431"/></linearGradient><linearGradient id="paint6_linear_125_22498" x1="-7.63561e-05" y1="148.42" x2="227.23" y2="148.42" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#71BEEA"/></linearGradient><linearGradient id="paint7_linear_125_22498" x1="52.1618" y1="242.877" x2="170.715" y2="242.877" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint8_linear_125_22498" x1="151.153" y1="392.01" x2="222.423" y2="446.163" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#164192"/></linearGradient><linearGradient id="paint9_linear_125_22498" x1="77.764" y1="387.259" x2="156.512" y2="299.205" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint10_linear_125_22498" x1="284.014" y1="183.848" x2="446.941" y2="183.848" gradientUnits="userSpaceOnUse"><stop offset="0.16185" stop-color="#F7B033"/><stop offset="0.849711" stop-color="#FFD431"/></linearGradient><linearGradient id="paint11_linear_125_22498" x1="279.637" y1="249.942" x2="416.092" y2="249.942" gradientUnits="userSpaceOnUse"><stop offset="0.0520231" stop-color="#F7B033"/><stop offset="0.739884" stop-color="#EB684A"/></linearGradient><linearGradient id="paint12_linear_125_22498" x1="294.646" y1="510.676" x2="325.355" y2="403.948" gradientUnits="userSpaceOnUse"><stop stop-color="#C1006B"/><stop offset="0.890173" stop-color="#E52E71"/></linearGradient><linearGradient id="paint13_linear_125_22498" x1="306.22" y1="372.926" x2="421.202" y2="347.871" gradientUnits="userSpaceOnUse"><stop offset="0.109827" stop-color="#E52E71"/><stop offset="0.861272" stop-color="#EB684A"/></linearGradient></defs></svg>
23
+ <svg xmlns="http://www.w3.org/2000/svg" width="55" height="13" viewBox="0 0 1968 562" fill="none"><path d="M300.439 388.522C300.439 388.522 300.64 388.084 301.53 383.706C302.273 380.058 302.629 377.037 302.629 377.037L413.54 411.495C413.54 411.495 412.485 413.271 410.483 416.106C408.163 419.395 405.362 422.619 405.362 422.619L300.439 388.522Z" fill="url(#paint0_linear_125_22498)"/><path d="M62.3496 181.844L191.724 199.591V212.543L62.3496 198.152V181.844Z" fill="url(#paint1_linear_125_22498)"/><path d="M62.3496 303.201L191.724 291.916V281.855L62.3496 291.916V303.201Z" fill="url(#paint2_linear_125_22498)"/><path d="M77.2734 403.398L193.407 354.012C193.407 354.012 194.18 359.171 195.283 363.635C196.287 367.7 197.347 370.686 197.347 370.686L86.3073 417.029C86.3073 417.029 84.9622 415.38 82.6454 412.022C78.9303 406.637 77.2734 403.398 77.2734 403.398Z" fill="url(#paint3_linear_125_22498)"/><path d="M297.287 305.177C297.287 305.177 298.361 310.509 298.955 313.934C299.55 317.359 417.114 296.999 417.114 296.999C417.114 296.999 415.754 290.216 415.134 287.189C414.514 284.162 297.287 305.177 297.287 305.177Z" fill="url(#paint4_linear_125_22498)"/><path d="M281.295 200.934C281.295 200.934 282.154 196.237 284.013 191.073C285.946 185.702 287.663 182.445 287.663 182.445L408.227 224.549C408.227 224.549 407.752 225.937 407.432 227.288C406.513 231.161 406.408 234.533 406.408 234.533L281.295 200.934Z" fill="url(#paint5_linear_125_22498)"/><path d="M227.23 205.703V140.408H191.724V91.1367H166.961C97.8419 91.1367 62.3496 118.253 62.3496 177.073V189.095L195.88 205.703H227.23Z" fill="url(#paint6_linear_125_22498)"/><path d="M191.724 206.279V205.702H195.88L62.3496 189.094V296.66L191.724 287.381V206.279Z" fill="url(#paint7_linear_125_22498)"/><path d="M270.231 403.372C265.544 404.137 255.786 405.081 249.95 405.081C216.035 405.081 201.222 387.813 195.282 363.635L82.6445 412.021C102.609 441.011 135.765 459.247 175.023 465.992C175.023 465.992 247.326 449.001 270.231 403.372Z" fill="url(#paint8_linear_125_22498)"/><path d="M191.724 328.14V287.383L62.3496 296.662V342.845C62.3496 370.261 69.7856 393.36 82.6454 412.023L195.283 363.636C192.63 352.896 191.724 340.709 191.724 328.14Z" fill="url(#paint9_linear_125_22498)"/><path d="M446.941 205.703V140.408H363.93C323.64 140.408 294.582 160.839 284.014 191.074L407.433 227.289C411.449 210.695 425.982 205.426 446.941 205.703Z" fill="url(#paint10_linear_125_22498)"/><path d="M407.115 247.9C405.937 239.626 406.099 232.82 407.432 227.289L284.013 191.074C279.157 204.955 278.191 220.844 281.876 237.782C287.75 265.386 293.822 287.023 298.001 308.811L416.092 291.917C411.847 270.827 407.793 252.749 407.115 247.9Z" fill="url(#paint11_linear_125_22498)"/><path d="M301.531 383.707C294.478 419.158 267.756 447.518 218.977 465.581L220.089 470.288C224.216 470.49 236.052 470.865 261.212 470.865C317.486 470.865 381.27 457.104 410.484 416.107L301.531 383.707Z" fill="url(#paint12_linear_125_22498)"/><path d="M426.622 362.698C426.622 347.011 421.235 317.279 416.091 291.916L298 308.809C301.309 325.921 303.476 343.278 303.476 363.635C303.476 370.575 302.834 377.215 301.53 383.706L410.483 416.106C420.653 401.791 426.622 384.223 426.622 362.698Z" fill="url(#paint13_linear_125_22498)"/><path d="M620.14 170.441H795.172L787.395 217.129H664.869L652.81 290.269H760.942L753.165 335.788H645.034L625.973 450.558H573.463L620.14 170.441Z" fill="#0091D3"/><path d="M915.751 424.104C903.304 438.499 880.353 455.616 848.458 455.616C802.561 455.616 781.17 424.492 781.17 372.748C781.17 290.659 829.01 240.471 886.191 240.471C911.86 240.471 930.921 249.809 943.755 271.207L951.536 245.14H993.155L958.925 450.559H914.195L915.751 424.104ZM932.088 307.778C926.255 298.44 913.416 284.434 892.025 284.434C858.182 284.434 835.236 314.003 835.236 364.967C835.236 391.034 841.069 412.042 868.298 412.042C888.914 412.042 909.138 398.815 918.474 389.088L932.088 307.778Z" fill="#0091D3"/><path d="M1182.57 426.437C1158.46 444.724 1128.12 455.616 1097.39 455.616C1045.27 455.616 1015.71 420.602 1015.71 368.468C1015.71 289.491 1062.38 240.471 1131.62 240.471C1184.52 240.471 1209.8 269.261 1202.41 322.561H1160.4C1162.35 295.328 1149.51 282.489 1128.12 282.489C1093.5 282.489 1069.38 312.835 1069.38 362.633C1069.38 392.202 1082.22 412.432 1109.45 412.432C1130.84 412.432 1148.34 405.039 1169.35 393.758L1182.57 426.437Z" fill="#0091D3"/><path d="M1302.76 284.044L1283.31 399.204C1281.36 411.264 1284.48 415.933 1293.42 415.933C1299.65 415.933 1311.7 414.377 1317.54 412.432L1316.76 447.835C1302.37 452.504 1283.7 455.615 1268.53 455.615C1238.58 455.615 1226.91 438.886 1231.97 409.708L1252.97 284.044H1226.52L1231.58 254.088L1259.97 245.529L1275.14 186.393H1319.1L1308.98 245.139H1345.15L1338.93 284.044H1302.76Z" fill="#0091D3"/><path d="M1482.07 450.558L1482.45 423.713C1464.95 440.441 1444.34 455.615 1415.17 455.615C1368.49 455.615 1355.26 423.713 1362.27 380.917L1384.83 245.139H1435.39L1414.39 371.969C1409.72 399.203 1414 412.041 1436.56 412.041C1454.84 412.041 1471.17 401.537 1482.85 389.865L1506.96 245.139H1557.53L1523.3 450.558H1482.07Z" fill="#0091D3"/><path d="M1648.15 274.708C1660.99 255.644 1679.66 240.471 1697.94 240.471C1705.33 240.471 1712.33 242.416 1717.39 244.75L1705.33 291.827C1699.49 289.881 1694.05 289.103 1687.05 289.103C1671.88 289.103 1655.54 303.109 1647.37 314.391L1624.42 450.559H1573.86L1608.09 245.14H1648.54L1648.15 274.708Z" fill="#0091D3"/><path d="M1885.04 429.161C1858.97 447.057 1828.63 455.616 1798.29 455.616C1746.56 455.616 1717 423.714 1717 370.026C1717 292.605 1765.62 240.471 1834.47 240.471C1880.76 240.471 1905.65 266.538 1905.65 302.331C1905.65 369.246 1840.31 370.414 1769.51 375.083C1769.51 394.145 1780.79 412.82 1811.52 412.82C1831.75 412.82 1847.31 408.541 1871.42 396.481L1885.04 429.161ZM1857.03 303.109C1857.03 289.491 1848.08 279.377 1830.97 279.377C1796.35 279.377 1775.74 309.334 1770.68 338.512C1824.74 335.789 1857.03 331.897 1857.03 303.109Z" fill="#0091D3"/><defs><linearGradient id="paint0_linear_125_22498" x1="300.439" y1="399.828" x2="413.54" y2="399.828" gradientUnits="userSpaceOnUse"><stop offset="0.109827" stop-color="#E52E71"/><stop offset="0.861272" stop-color="#EB684A"/></linearGradient><linearGradient id="paint1_linear_125_22498" x1="62.3496" y1="197.193" x2="191.724" y2="197.193" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#71BEEA"/></linearGradient><linearGradient id="paint2_linear_125_22498" x1="62.3496" y1="292.528" x2="191.724" y2="292.528" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint3_linear_125_22498" x1="106.996" y1="420.953" x2="163.277" y2="358.021" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint4_linear_125_22498" x1="297.287" y1="300.607" x2="417.114" y2="300.607" gradientUnits="userSpaceOnUse"><stop offset="0.0520231" stop-color="#F7B033"/><stop offset="0.739884" stop-color="#EB684A"/></linearGradient><linearGradient id="paint5_linear_125_22498" x1="281.295" y1="208.489" x2="408.227" y2="208.489" gradientUnits="userSpaceOnUse"><stop offset="0.16185" stop-color="#F7B033"/><stop offset="0.849711" stop-color="#FFD431"/></linearGradient><linearGradient id="paint6_linear_125_22498" x1="-7.63561e-05" y1="148.42" x2="227.23" y2="148.42" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#71BEEA"/></linearGradient><linearGradient id="paint7_linear_125_22498" x1="52.1618" y1="242.877" x2="170.715" y2="242.877" gradientUnits="userSpaceOnUse"><stop stop-color="#139CD8"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint8_linear_125_22498" x1="151.153" y1="392.01" x2="222.423" y2="446.163" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#164192"/></linearGradient><linearGradient id="paint9_linear_125_22498" x1="77.764" y1="387.259" x2="156.512" y2="299.205" gradientUnits="userSpaceOnUse"><stop stop-color="#1761AA"/><stop offset="1" stop-color="#007EC1"/></linearGradient><linearGradient id="paint10_linear_125_22498" x1="284.014" y1="183.848" x2="446.941" y2="183.848" gradientUnits="userSpaceOnUse"><stop offset="0.16185" stop-color="#F7B033"/><stop offset="0.849711" stop-color="#FFD431"/></linearGradient><linearGradient id="paint11_linear_125_22498" x1="279.637" y1="249.942" x2="416.092" y2="249.942" gradientUnits="userSpaceOnUse"><stop offset="0.0520231" stop-color="#F7B033"/><stop offset="0.739884" stop-color="#EB684A"/></linearGradient><linearGradient id="paint12_linear_125_22498" x1="294.646" y1="510.676" x2="325.355" y2="403.948" gradientUnits="userSpaceOnUse"><stop stop-color="#C1006B"/><stop offset="0.890173" stop-color="#E52E71"/></linearGradient><linearGradient id="paint13_linear_125_22498" x1="306.22" y1="372.926" x2="421.202" y2="347.871" gradientUnits="userSpaceOnUse"><stop offset="0.109827" stop-color="#E52E71"/><stop offset="0.861272" stop-color="#EB684A"/></linearGradient></defs></svg>
24
24
  <% } %>
25
25
  </div></div>
26
26
  <% } %>