@nmshd/content 2.0.0-beta.8 → 2.0.0

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 (437) hide show
  1. package/dist/attributes/AbstractAttribute.js.map +1 -1
  2. package/dist/attributes/AbstractAttributeQuery.d.ts +0 -3
  3. package/dist/attributes/AbstractAttributeQuery.js +0 -7
  4. package/dist/attributes/AbstractAttributeQuery.js.map +1 -1
  5. package/dist/attributes/AbstractAttributeValue.d.ts +1 -2
  6. package/dist/attributes/AbstractAttributeValue.js +0 -3
  7. package/dist/attributes/AbstractAttributeValue.js.map +1 -1
  8. package/dist/attributes/AttributeValueTypes.d.ts +46 -0
  9. package/dist/attributes/AttributeValueTypes.js +146 -0
  10. package/dist/attributes/AttributeValueTypes.js.map +1 -0
  11. package/dist/attributes/IdentityAttribute.d.ts +7 -6
  12. package/dist/attributes/IdentityAttribute.js +4 -4
  13. package/dist/attributes/IdentityAttribute.js.map +1 -1
  14. package/dist/attributes/IdentityAttributeQuery.d.ts +7 -2
  15. package/dist/attributes/IdentityAttributeQuery.js +12 -2
  16. package/dist/attributes/IdentityAttributeQuery.js.map +1 -1
  17. package/dist/attributes/RelationshipAttribute.d.ts +8 -36
  18. package/dist/attributes/RelationshipAttribute.js +8 -38
  19. package/dist/attributes/RelationshipAttribute.js.map +1 -1
  20. package/dist/attributes/RelationshipAttributeConfidentiality.d.ts +30 -0
  21. package/dist/attributes/RelationshipAttributeConfidentiality.js +35 -0
  22. package/dist/attributes/RelationshipAttributeConfidentiality.js.map +1 -0
  23. package/dist/attributes/RelationshipAttributeQuery.d.ts +35 -6
  24. package/dist/attributes/RelationshipAttributeQuery.js +59 -10
  25. package/dist/attributes/RelationshipAttributeQuery.js.map +1 -1
  26. package/dist/attributes/ThirdPartyRelationshipAttributeQuery.d.ts +20 -0
  27. package/dist/{forms/FormItem.js → attributes/ThirdPartyRelationshipAttributeQuery.js} +21 -31
  28. package/dist/attributes/ThirdPartyRelationshipAttributeQuery.js.map +1 -0
  29. package/dist/attributes/constants/AttributeValueTypeQueryMapping.d.ts +1 -0
  30. package/dist/attributes/constants/AttributeValueTypeQueryMapping.js +7 -0
  31. package/dist/attributes/constants/AttributeValueTypeQueryMapping.js.map +1 -0
  32. package/dist/attributes/constants/index.d.ts +1 -0
  33. package/dist/attributes/constants/index.js +1 -0
  34. package/dist/attributes/constants/index.js.map +1 -1
  35. package/dist/attributes/hints/RenderHints.d.ts +3 -2
  36. package/dist/attributes/hints/RenderHints.js.map +1 -1
  37. package/dist/attributes/hints/ValueHints.d.ts +3 -2
  38. package/dist/attributes/hints/ValueHints.js.map +1 -1
  39. package/dist/attributes/hints/ValueHintsValue.d.ts +1 -1
  40. package/dist/attributes/hints/ValueHintsValue.js.map +1 -1
  41. package/dist/attributes/hints/index.d.ts +0 -1
  42. package/dist/attributes/hints/index.js +0 -1
  43. package/dist/attributes/hints/index.js.map +1 -1
  44. package/dist/attributes/index.d.ts +3 -1
  45. package/dist/attributes/index.js +3 -1
  46. package/dist/attributes/index.js.map +1 -1
  47. package/dist/attributes/types/AbstractBoolean.d.ts +1 -2
  48. package/dist/attributes/types/AbstractBoolean.js.map +1 -1
  49. package/dist/attributes/types/AbstractFloat.d.ts +1 -2
  50. package/dist/attributes/types/AbstractFloat.js.map +1 -1
  51. package/dist/attributes/types/AbstractInteger.d.ts +1 -3
  52. package/dist/attributes/types/AbstractInteger.js +0 -3
  53. package/dist/attributes/types/AbstractInteger.js.map +1 -1
  54. package/dist/attributes/types/AbstractString.d.ts +1 -2
  55. package/dist/attributes/types/AbstractString.js +2 -2
  56. package/dist/attributes/types/AbstractString.js.map +1 -1
  57. package/dist/attributes/types/address/AbstractAddress.js.map +1 -1
  58. package/dist/attributes/types/address/City.d.ts +8 -2
  59. package/dist/attributes/types/address/City.js +3 -0
  60. package/dist/attributes/types/address/City.js.map +1 -1
  61. package/dist/attributes/types/address/Country.d.ts +9 -2
  62. package/dist/attributes/types/address/Country.js +5 -2
  63. package/dist/attributes/types/address/Country.js.map +1 -1
  64. package/dist/attributes/types/address/DeliveryBoxAddress.d.ts +40 -39
  65. package/dist/attributes/types/address/DeliveryBoxAddress.js +6 -3
  66. package/dist/attributes/types/address/DeliveryBoxAddress.js.map +1 -1
  67. package/dist/attributes/types/address/HouseNumber.d.ts +9 -2
  68. package/dist/attributes/types/address/HouseNumber.js +6 -0
  69. package/dist/attributes/types/address/HouseNumber.js.map +1 -1
  70. package/dist/attributes/types/address/PostOfficeBoxAddress.d.ts +30 -29
  71. package/dist/attributes/types/address/PostOfficeBoxAddress.js +3 -0
  72. package/dist/attributes/types/address/PostOfficeBoxAddress.js.map +1 -1
  73. package/dist/attributes/types/address/State.d.ts +8 -2
  74. package/dist/attributes/types/address/State.js +3 -0
  75. package/dist/attributes/types/address/State.js.map +1 -1
  76. package/dist/attributes/types/address/Street.d.ts +9 -2
  77. package/dist/attributes/types/address/Street.js +6 -0
  78. package/dist/attributes/types/address/Street.js.map +1 -1
  79. package/dist/attributes/types/address/StreetAddress.d.ts +49 -48
  80. package/dist/attributes/types/address/StreetAddress.js +3 -0
  81. package/dist/attributes/types/address/StreetAddress.js.map +1 -1
  82. package/dist/attributes/types/address/ZipCode.d.ts +9 -2
  83. package/dist/attributes/types/address/ZipCode.js +6 -0
  84. package/dist/attributes/types/address/ZipCode.js.map +1 -1
  85. package/dist/attributes/types/{name/LegalNameDE.d.ts → affiliation/Affiliation.d.ts} +43 -612
  86. package/dist/attributes/types/affiliation/Affiliation.js +80 -0
  87. package/dist/attributes/types/affiliation/Affiliation.js.map +1 -0
  88. package/dist/attributes/types/affiliation/AffiliationOrganization.d.ts +10 -0
  89. package/dist/attributes/types/affiliation/AffiliationOrganization.js +24 -0
  90. package/dist/attributes/types/affiliation/AffiliationOrganization.js.map +1 -0
  91. package/dist/attributes/types/affiliation/AffiliationRole.d.ts +10 -0
  92. package/dist/attributes/types/affiliation/AffiliationRole.js +24 -0
  93. package/dist/attributes/types/affiliation/AffiliationRole.js.map +1 -0
  94. package/dist/attributes/types/affiliation/AffiliationUnit.d.ts +10 -0
  95. package/dist/attributes/types/affiliation/AffiliationUnit.js +24 -0
  96. package/dist/attributes/types/affiliation/AffiliationUnit.js.map +1 -0
  97. package/dist/attributes/types/affiliation/index.d.ts +4 -0
  98. package/dist/{forms → attributes/types/affiliation}/index.js +4 -8
  99. package/dist/attributes/types/affiliation/index.js.map +1 -0
  100. package/dist/attributes/types/birth/BirthCity.d.ts +9 -2
  101. package/dist/attributes/types/birth/BirthCity.js +8 -2
  102. package/dist/attributes/types/birth/BirthCity.js.map +1 -1
  103. package/dist/attributes/types/birth/BirthCountry.d.ts +9 -2
  104. package/dist/attributes/types/birth/BirthCountry.js +8 -2
  105. package/dist/attributes/types/birth/BirthCountry.js.map +1 -1
  106. package/dist/attributes/types/birth/BirthDate.d.ts +40 -39
  107. package/dist/attributes/types/birth/BirthDate.js +3 -0
  108. package/dist/attributes/types/birth/BirthDate.js.map +1 -1
  109. package/dist/attributes/types/birth/BirthDay.d.ts +9 -2
  110. package/dist/attributes/types/birth/BirthDay.js +8 -2
  111. package/dist/attributes/types/birth/BirthDay.js.map +1 -1
  112. package/dist/attributes/types/birth/BirthMonth.d.ts +9 -2
  113. package/dist/attributes/types/birth/BirthMonth.js +6 -0
  114. package/dist/attributes/types/birth/BirthMonth.js.map +1 -1
  115. package/dist/attributes/types/birth/BirthPlace.d.ts +40 -39
  116. package/dist/attributes/types/birth/BirthPlace.js +3 -0
  117. package/dist/attributes/types/birth/BirthPlace.js.map +1 -1
  118. package/dist/attributes/types/birth/BirthState.d.ts +9 -2
  119. package/dist/attributes/types/birth/BirthState.js +8 -2
  120. package/dist/attributes/types/birth/BirthState.js.map +1 -1
  121. package/dist/attributes/types/birth/BirthYear.d.ts +9 -2
  122. package/dist/attributes/types/birth/BirthYear.js +8 -2
  123. package/dist/attributes/types/birth/BirthYear.js.map +1 -1
  124. package/dist/attributes/types/communication/CommunicationLanguage.d.ts +9 -1
  125. package/dist/attributes/types/communication/CommunicationLanguage.js +6 -0
  126. package/dist/attributes/types/communication/CommunicationLanguage.js.map +1 -1
  127. package/dist/attributes/types/communication/EMailAddress.d.ts +9 -1
  128. package/dist/attributes/types/communication/EMailAddress.js +6 -0
  129. package/dist/attributes/types/communication/EMailAddress.js.map +1 -1
  130. package/dist/attributes/types/communication/FaxNumber.d.ts +11 -0
  131. package/dist/attributes/types/communication/{Fax.js → FaxNumber.js} +14 -8
  132. package/dist/attributes/types/communication/FaxNumber.js.map +1 -0
  133. package/dist/attributes/types/communication/PhoneNumber.d.ts +11 -0
  134. package/dist/attributes/types/communication/{Phone.js → PhoneNumber.js} +14 -8
  135. package/dist/attributes/types/communication/PhoneNumber.js.map +1 -0
  136. package/dist/attributes/types/communication/Website.d.ts +9 -1
  137. package/dist/attributes/types/communication/Website.js +6 -0
  138. package/dist/attributes/types/communication/Website.js.map +1 -1
  139. package/dist/attributes/types/communication/index.d.ts +2 -2
  140. package/dist/attributes/types/communication/index.js +2 -2
  141. package/dist/attributes/types/communication/index.js.map +1 -1
  142. package/dist/attributes/types/dates/AbstractDateString.js.map +1 -1
  143. package/dist/attributes/types/dates/AbstractDay.d.ts +8 -2
  144. package/dist/attributes/types/dates/AbstractDay.js.map +1 -1
  145. package/dist/attributes/types/dates/AbstractMonth.d.ts +8 -2
  146. package/dist/attributes/types/dates/AbstractMonth.js.map +1 -1
  147. package/dist/attributes/types/dates/AbstractYear.d.ts +7 -1
  148. package/dist/attributes/types/dates/AbstractYear.js.map +1 -1
  149. package/dist/attributes/types/identity/DisplayName.d.ts +10 -0
  150. package/dist/attributes/types/{name → identity}/DisplayName.js +6 -0
  151. package/dist/attributes/types/identity/DisplayName.js.map +1 -0
  152. package/dist/attributes/types/identity/FileReference.d.ts +11 -0
  153. package/dist/attributes/types/{files → identity}/FileReference.js +6 -0
  154. package/dist/attributes/types/identity/FileReference.js.map +1 -0
  155. package/dist/attributes/types/{files → identity}/index.d.ts +1 -0
  156. package/dist/attributes/types/{files → identity}/index.js +1 -0
  157. package/dist/attributes/types/identity/index.js.map +1 -0
  158. package/dist/attributes/types/index.d.ts +3 -3
  159. package/dist/attributes/types/index.js +3 -3
  160. package/dist/attributes/types/index.js.map +1 -1
  161. package/dist/attributes/types/measurements/AbstractLengthMeasurement.js.map +1 -1
  162. package/dist/attributes/types/measurements/AbstractMeasurement.js.map +1 -1
  163. package/dist/attributes/types/name/BirthName.d.ts +9 -2
  164. package/dist/attributes/types/name/BirthName.js +6 -0
  165. package/dist/attributes/types/name/BirthName.js.map +1 -1
  166. package/dist/attributes/types/name/GivenName.d.ts +9 -2
  167. package/dist/attributes/types/name/GivenName.js +6 -0
  168. package/dist/attributes/types/name/GivenName.js.map +1 -1
  169. package/dist/attributes/types/name/HonorificPrefix.d.ts +9 -2
  170. package/dist/attributes/types/name/HonorificPrefix.js +6 -0
  171. package/dist/attributes/types/name/HonorificPrefix.js.map +1 -1
  172. package/dist/attributes/types/name/HonorificSuffix.d.ts +9 -2
  173. package/dist/attributes/types/name/HonorificSuffix.js +6 -0
  174. package/dist/attributes/types/name/HonorificSuffix.js.map +1 -1
  175. package/dist/attributes/types/name/MiddleName.d.ts +10 -0
  176. package/dist/attributes/types/name/MiddleName.js +24 -0
  177. package/dist/attributes/types/name/MiddleName.js.map +1 -0
  178. package/dist/attributes/types/name/{Salutation.d.ts → PersonName.d.ts} +68 -73
  179. package/dist/attributes/types/name/{Salutation.js → PersonName.js} +35 -23
  180. package/dist/attributes/types/name/PersonName.js.map +1 -0
  181. package/dist/attributes/types/name/Pseudonym.d.ts +9 -2
  182. package/dist/attributes/types/name/Pseudonym.js +6 -0
  183. package/dist/attributes/types/name/Pseudonym.js.map +1 -1
  184. package/dist/attributes/types/name/Surname.d.ts +9 -2
  185. package/dist/attributes/types/name/Surname.js +6 -0
  186. package/dist/attributes/types/name/Surname.js.map +1 -1
  187. package/dist/attributes/types/name/index.d.ts +2 -4
  188. package/dist/attributes/types/name/index.js +2 -4
  189. package/dist/attributes/types/name/index.js.map +1 -1
  190. package/dist/attributes/types/person/Citizenship.d.ts +10 -2
  191. package/dist/attributes/types/person/Citizenship.js +8 -2
  192. package/dist/attributes/types/person/Citizenship.js.map +1 -1
  193. package/dist/attributes/types/person/JobTitle.d.ts +10 -0
  194. package/dist/attributes/types/person/JobTitle.js +24 -0
  195. package/dist/attributes/types/person/JobTitle.js.map +1 -0
  196. package/dist/attributes/types/person/Nationality.d.ts +10 -2
  197. package/dist/attributes/types/person/Nationality.js +8 -2
  198. package/dist/attributes/types/person/Nationality.js.map +1 -1
  199. package/dist/attributes/types/person/Sex.d.ts +10 -3
  200. package/dist/attributes/types/person/Sex.js +8 -2
  201. package/dist/attributes/types/person/Sex.js.map +1 -1
  202. package/dist/attributes/types/person/index.d.ts +1 -2
  203. package/dist/attributes/types/person/index.js +1 -2
  204. package/dist/attributes/types/person/index.js.map +1 -1
  205. package/dist/attributes/types/proprietary/ProprietaryBoolean.d.ts +5 -2
  206. package/dist/attributes/types/proprietary/ProprietaryBoolean.js +6 -0
  207. package/dist/attributes/types/proprietary/ProprietaryBoolean.js.map +1 -1
  208. package/dist/attributes/types/proprietary/ProprietaryCountry.d.ts +5 -2
  209. package/dist/attributes/types/proprietary/ProprietaryCountry.js +6 -0
  210. package/dist/attributes/types/proprietary/ProprietaryCountry.js.map +1 -1
  211. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.d.ts +5 -2
  212. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js +6 -0
  213. package/dist/attributes/types/proprietary/ProprietaryEMailAddress.js.map +1 -1
  214. package/dist/attributes/types/proprietary/ProprietaryFileReference.d.ts +5 -2
  215. package/dist/attributes/types/proprietary/ProprietaryFileReference.js +6 -0
  216. package/dist/attributes/types/proprietary/ProprietaryFileReference.js.map +1 -1
  217. package/dist/attributes/types/proprietary/ProprietaryFloat.d.ts +5 -2
  218. package/dist/attributes/types/proprietary/ProprietaryFloat.js +6 -0
  219. package/dist/attributes/types/proprietary/ProprietaryFloat.js.map +1 -1
  220. package/dist/attributes/types/proprietary/ProprietaryHEXColor.d.ts +5 -2
  221. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js +6 -0
  222. package/dist/attributes/types/proprietary/ProprietaryHEXColor.js.map +1 -1
  223. package/dist/attributes/types/proprietary/ProprietaryInteger.d.ts +5 -4
  224. package/dist/attributes/types/proprietary/ProprietaryInteger.js +3 -0
  225. package/dist/attributes/types/proprietary/ProprietaryInteger.js.map +1 -1
  226. package/dist/attributes/types/proprietary/ProprietaryLanguage.d.ts +5 -2
  227. package/dist/attributes/types/proprietary/ProprietaryLanguage.js +6 -0
  228. package/dist/attributes/types/proprietary/ProprietaryLanguage.js.map +1 -1
  229. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.d.ts +5 -2
  230. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js +6 -0
  231. package/dist/attributes/types/proprietary/ProprietaryPhoneNumber.js.map +1 -1
  232. package/dist/attributes/types/proprietary/ProprietaryString.d.ts +5 -2
  233. package/dist/attributes/types/proprietary/ProprietaryString.js +6 -0
  234. package/dist/attributes/types/proprietary/ProprietaryString.js.map +1 -1
  235. package/dist/attributes/types/proprietary/ProprietaryURL.d.ts +5 -2
  236. package/dist/attributes/types/proprietary/ProprietaryURL.js +6 -0
  237. package/dist/attributes/types/proprietary/ProprietaryURL.js.map +1 -1
  238. package/dist/attributes/types/proprietary/index.d.ts +0 -1
  239. package/dist/attributes/types/proprietary/index.js +0 -1
  240. package/dist/attributes/types/proprietary/index.js.map +1 -1
  241. package/dist/attributes/types/relationship/Consent.d.ts +18 -0
  242. package/dist/attributes/types/relationship/Consent.js +73 -0
  243. package/dist/attributes/types/relationship/Consent.js.map +1 -0
  244. package/dist/attributes/types/relationship/index.d.ts +1 -0
  245. package/dist/attributes/types/relationship/index.js +18 -0
  246. package/dist/attributes/types/relationship/index.js.map +1 -0
  247. package/dist/attributes/types/strings/AbstractCountry.js.map +1 -1
  248. package/dist/attributes/types/strings/AbstractEMailAddress.js +2 -2
  249. package/dist/attributes/types/strings/AbstractEMailAddress.js.map +1 -1
  250. package/dist/attributes/types/strings/AbstractFileReference.js.map +1 -1
  251. package/dist/attributes/types/strings/AbstractHEXColor.js.map +1 -1
  252. package/dist/attributes/types/strings/AbstractLanguage.js.map +1 -1
  253. package/dist/attributes/types/strings/AbstractPhoneNumber.js.map +1 -1
  254. package/dist/attributes/types/strings/AbstractURL.js.map +1 -1
  255. package/dist/attributes/types/strings/index.d.ts +0 -1
  256. package/dist/attributes/types/strings/index.js +0 -1
  257. package/dist/attributes/types/strings/index.js.map +1 -1
  258. package/dist/buildInformation.js +5 -5
  259. package/dist/index.d.ts +0 -2
  260. package/dist/index.js +0 -2
  261. package/dist/index.js.map +1 -1
  262. package/dist/messages/Mail.d.ts +3 -2
  263. package/dist/messages/Mail.js +2 -8
  264. package/dist/messages/Mail.js.map +1 -1
  265. package/dist/relationships/RelationshipCreationChangeRequestContent.d.ts +15 -0
  266. package/dist/relationships/{RelationshipCreationChangeRequestBody.js → RelationshipCreationChangeRequestContent.js} +11 -13
  267. package/dist/relationships/RelationshipCreationChangeRequestContent.js.map +1 -0
  268. package/dist/relationships/RelationshipTemplateContent.d.ts +24 -0
  269. package/dist/relationships/{RelationshipTemplateBody.js → RelationshipTemplateContent.js} +14 -11
  270. package/dist/relationships/RelationshipTemplateContent.js.map +1 -0
  271. package/dist/relationships/index.d.ts +2 -2
  272. package/dist/relationships/index.js +2 -2
  273. package/dist/relationships/index.js.map +1 -1
  274. package/dist/requests/Request.d.ts +3 -2
  275. package/dist/requests/Request.js +2 -2
  276. package/dist/requests/Request.js.map +1 -1
  277. package/dist/requests/RequestItem.d.ts +17 -6
  278. package/dist/requests/RequestItem.js +7 -2
  279. package/dist/requests/RequestItem.js.map +1 -1
  280. package/dist/requests/RequestItemGroup.d.ts +5 -4
  281. package/dist/requests/RequestItemGroup.js +2 -2
  282. package/dist/requests/RequestItemGroup.js.map +1 -1
  283. package/dist/requests/index.d.ts +0 -3
  284. package/dist/requests/index.js +0 -3
  285. package/dist/requests/index.js.map +1 -1
  286. package/dist/requests/items/authentication/AuthenticationRequestItem.d.ts +10 -0
  287. package/dist/requests/items/authentication/AuthenticationRequestItem.js +24 -0
  288. package/dist/requests/items/authentication/AuthenticationRequestItem.js.map +1 -0
  289. package/dist/requests/items/consent/ConsentRequestItem.d.ts +3 -4
  290. package/dist/requests/items/consent/ConsentRequestItem.js +8 -7
  291. package/dist/requests/items/consent/ConsentRequestItem.js.map +1 -1
  292. package/dist/requests/items/createRelationshipAttribute/CreateAttributeAcceptResponseItem.d.ts +14 -0
  293. package/dist/requests/items/{createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js → createRelationshipAttribute/CreateAttributeAcceptResponseItem.js} +11 -8
  294. package/dist/requests/items/createRelationshipAttribute/CreateAttributeAcceptResponseItem.js.map +1 -0
  295. package/dist/requests/items/createRelationshipAttribute/CreateAttributeRequestItem.d.ts +15 -0
  296. package/dist/requests/items/{createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js → createRelationshipAttribute/CreateAttributeRequestItem.js} +13 -9
  297. package/dist/requests/items/createRelationshipAttribute/CreateAttributeRequestItem.js.map +1 -0
  298. package/dist/requests/items/index.d.ts +5 -2
  299. package/dist/requests/items/index.js +5 -2
  300. package/dist/requests/items/index.js.map +1 -1
  301. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.d.ts +2 -0
  302. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js +3 -0
  303. package/dist/requests/items/proposeAttribute/ProposeAttributeAcceptResponseItem.js.map +1 -1
  304. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.d.ts +3 -1
  305. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js +9 -4
  306. package/dist/requests/items/proposeAttribute/ProposeAttributeRequestItem.js.map +1 -1
  307. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.d.ts +2 -0
  308. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js +3 -0
  309. package/dist/requests/items/readAttribute/ReadAttributeAcceptResponseItem.js.map +1 -1
  310. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.d.ts +6 -5
  311. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js +5 -3
  312. package/dist/requests/items/readAttribute/ReadAttributeRequestItem.js.map +1 -1
  313. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.d.ts +13 -0
  314. package/dist/{forms/items/FormItemSelect.js → requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.js} +16 -16
  315. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerAcceptResponseItem.js.map +1 -0
  316. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.d.ts +14 -0
  317. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.js +35 -0
  318. package/dist/requests/items/registerAttributeListener/RegisterAttributeListenerRequestItem.js.map +1 -0
  319. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.d.ts +2 -0
  320. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.js +3 -0
  321. package/dist/requests/items/shareAttribute/ShareAttributeAcceptResponseItem.js.map +1 -1
  322. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.d.ts +3 -1
  323. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js +3 -0
  324. package/dist/requests/items/shareAttribute/ShareAttributeRequestItem.js.map +1 -1
  325. package/dist/requests/response/AcceptResponseItem.d.ts +6 -6
  326. package/dist/requests/response/AcceptResponseItem.js +2 -2
  327. package/dist/requests/response/AcceptResponseItem.js.map +1 -1
  328. package/dist/requests/response/ErrorResponseItem.d.ts +3 -2
  329. package/dist/requests/response/ErrorResponseItem.js +2 -2
  330. package/dist/requests/response/ErrorResponseItem.js.map +1 -1
  331. package/dist/requests/response/RejectResponseItem.d.ts +3 -2
  332. package/dist/requests/response/RejectResponseItem.js +2 -2
  333. package/dist/requests/response/RejectResponseItem.js.map +1 -1
  334. package/dist/requests/response/Response.d.ts +3 -2
  335. package/dist/requests/response/Response.js +2 -2
  336. package/dist/requests/response/Response.js.map +1 -1
  337. package/dist/requests/response/ResponseItem.d.ts +1 -1
  338. package/dist/requests/response/ResponseItem.js +2 -2
  339. package/dist/requests/response/ResponseItem.js.map +1 -1
  340. package/dist/requests/response/ResponseItemGroup.d.ts +3 -2
  341. package/dist/requests/response/ResponseItemGroup.js +2 -2
  342. package/dist/requests/response/ResponseItemGroup.js.map +1 -1
  343. package/lib-web/nmshd.content.js +4739 -5812
  344. package/lib-web/nmshd.content.min.js +1 -1
  345. package/package.json +18 -17
  346. package/dist/attributes/Attribute.d.ts +0 -24
  347. package/dist/attributes/Attribute.js +0 -66
  348. package/dist/attributes/Attribute.js.map +0 -1
  349. package/dist/attributes/hints/RelationshipAttributeCreationHints.d.ts +0 -31
  350. package/dist/attributes/hints/RelationshipAttributeCreationHints.js +0 -64
  351. package/dist/attributes/hints/RelationshipAttributeCreationHints.js.map +0 -1
  352. package/dist/attributes/types/AttributeList.d.ts +0 -1
  353. package/dist/attributes/types/AttributeList.js +0 -37
  354. package/dist/attributes/types/AttributeList.js.map +0 -1
  355. package/dist/attributes/types/AttributeTypeMapping.d.ts +0 -1
  356. package/dist/attributes/types/AttributeTypeMapping.js +0 -9
  357. package/dist/attributes/types/AttributeTypeMapping.js.map +0 -1
  358. package/dist/attributes/types/communication/Fax.d.ts +0 -3
  359. package/dist/attributes/types/communication/Fax.js.map +0 -1
  360. package/dist/attributes/types/communication/Phone.d.ts +0 -3
  361. package/dist/attributes/types/communication/Phone.js.map +0 -1
  362. package/dist/attributes/types/files/FileReference.d.ts +0 -3
  363. package/dist/attributes/types/files/FileReference.js.map +0 -1
  364. package/dist/attributes/types/files/index.js.map +0 -1
  365. package/dist/attributes/types/name/AbstractLegalName.d.ts +0 -3
  366. package/dist/attributes/types/name/AbstractLegalName.js +0 -8
  367. package/dist/attributes/types/name/AbstractLegalName.js.map +0 -1
  368. package/dist/attributes/types/name/DisplayName.d.ts +0 -3
  369. package/dist/attributes/types/name/DisplayName.js.map +0 -1
  370. package/dist/attributes/types/name/LegalNameDE.js +0 -92
  371. package/dist/attributes/types/name/LegalNameDE.js.map +0 -1
  372. package/dist/attributes/types/name/Salutation.js.map +0 -1
  373. package/dist/attributes/types/person/Age.d.ts +0 -6
  374. package/dist/attributes/types/person/Age.js +0 -34
  375. package/dist/attributes/types/person/Age.js.map +0 -1
  376. package/dist/attributes/types/person/Picture.d.ts +0 -3
  377. package/dist/attributes/types/person/Picture.js +0 -18
  378. package/dist/attributes/types/person/Picture.js.map +0 -1
  379. package/dist/attributes/types/proprietary/ProprietaryDataURL.d.ts +0 -14
  380. package/dist/attributes/types/proprietary/ProprietaryDataURL.js +0 -31
  381. package/dist/attributes/types/proprietary/ProprietaryDataURL.js.map +0 -1
  382. package/dist/attributes/types/strings/AbstractDataURL.d.ts +0 -7
  383. package/dist/attributes/types/strings/AbstractDataURL.js +0 -40
  384. package/dist/attributes/types/strings/AbstractDataURL.js.map +0 -1
  385. package/dist/forms/Form.d.ts +0 -18
  386. package/dist/forms/Form.js +0 -36
  387. package/dist/forms/Form.js.map +0 -1
  388. package/dist/forms/FormItem.d.ts +0 -35
  389. package/dist/forms/FormItem.js.map +0 -1
  390. package/dist/forms/index.d.ts +0 -8
  391. package/dist/forms/index.js.map +0 -1
  392. package/dist/forms/items/FormItemBoolean.d.ts +0 -7
  393. package/dist/forms/items/FormItemBoolean.js +0 -26
  394. package/dist/forms/items/FormItemBoolean.js.map +0 -1
  395. package/dist/forms/items/FormItemDate.d.ts +0 -15
  396. package/dist/forms/items/FormItemDate.js +0 -46
  397. package/dist/forms/items/FormItemDate.js.map +0 -1
  398. package/dist/forms/items/FormItemInvisible.d.ts +0 -7
  399. package/dist/forms/items/FormItemInvisible.js +0 -26
  400. package/dist/forms/items/FormItemInvisible.js.map +0 -1
  401. package/dist/forms/items/FormItemMultipleChoice.d.ts +0 -10
  402. package/dist/forms/items/FormItemMultipleChoice.js +0 -32
  403. package/dist/forms/items/FormItemMultipleChoice.js.map +0 -1
  404. package/dist/forms/items/FormItemMultipleChoiceItem.d.ts +0 -10
  405. package/dist/forms/items/FormItemMultipleChoiceItem.js +0 -30
  406. package/dist/forms/items/FormItemMultipleChoiceItem.js.map +0 -1
  407. package/dist/forms/items/FormItemSelect.d.ts +0 -10
  408. package/dist/forms/items/FormItemSelect.js.map +0 -1
  409. package/dist/forms/items/FormItemSelectItem.d.ts +0 -10
  410. package/dist/forms/items/FormItemSelectItem.js +0 -30
  411. package/dist/forms/items/FormItemSelectItem.js.map +0 -1
  412. package/dist/forms/items/FormItemString.d.ts +0 -15
  413. package/dist/forms/items/FormItemString.js +0 -46
  414. package/dist/forms/items/FormItemString.js.map +0 -1
  415. package/dist/forms/items/FormItemText.d.ts +0 -15
  416. package/dist/forms/items/FormItemText.js +0 -46
  417. package/dist/forms/items/FormItemText.js.map +0 -1
  418. package/dist/messages/RequestMail.d.ts +0 -14
  419. package/dist/messages/RequestMail.js +0 -51
  420. package/dist/messages/RequestMail.js.map +0 -1
  421. package/dist/relationships/RelationshipCreationChangeRequestBody.d.ts +0 -16
  422. package/dist/relationships/RelationshipCreationChangeRequestBody.js.map +0 -1
  423. package/dist/relationships/RelationshipTemplateBody.d.ts +0 -22
  424. package/dist/relationships/RelationshipTemplateBody.js.map +0 -1
  425. package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.d.ts +0 -12
  426. package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeAcceptResponseItem.js.map +0 -1
  427. package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.d.ts +0 -13
  428. package/dist/requests/items/createOwnRelationshipAttribute/CreateOwnRelationshipAttributeRequestItem.js.map +0 -1
  429. package/dist/requests/old/AttributesChangeRequest.d.ts +0 -54
  430. package/dist/requests/old/AttributesChangeRequest.js +0 -71
  431. package/dist/requests/old/AttributesChangeRequest.js.map +0 -1
  432. package/dist/requests/old/AttributesRequest.d.ts +0 -49
  433. package/dist/requests/old/AttributesRequest.js +0 -64
  434. package/dist/requests/old/AttributesRequest.js.map +0 -1
  435. package/dist/requests/old/AttributesShareRequest.d.ts +0 -52
  436. package/dist/requests/old/AttributesShareRequest.js +0 -59
  437. package/dist/requests/old/AttributesShareRequest.js.map +0 -1
@@ -1,2 +1,2 @@
1
- var NMSHDContent;(()=>{"use strict";var e={8564:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6021:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttribute=void 0;const a=r(194),o=r(9663);class AbstractAttribute extends o.CoreSerializable{}n([(0,a.validate)(),(0,a.serialize)(),i("design:type",o.CoreAddress)],AbstractAttribute.prototype,"owner",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttribute.prototype,"validFrom",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttribute.prototype,"validTo",void 0),t.AbstractAttribute=AbstractAttribute},5282:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttributeQuery=void 0;const a=r(194),o=r(9663);class AbstractAttributeQuery extends o.CoreSerializable{}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>""===e?"must not be an empty string":void 0}),i("design:type",String)],AbstractAttributeQuery.prototype,"valueType",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttributeQuery.prototype,"validFrom",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttributeQuery.prototype,"validTo",void 0),t.AbstractAttributeQuery=AbstractAttributeQuery},4183:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttributeValue=void 0;const n=r(194);class AbstractAttributeValue extends n.Serializable{static valueGenerator(e){return e.value}static valueArrayGenerator(e){return e.map((e=>e.value))}get valueHints(){return this.constructor.valueHints}get renderHints(){return this.constructor.renderHints}}t.AbstractAttributeValue=AbstractAttributeValue},2861:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractComplexValue=void 0;const n=r(4183),i=r(3711);class AbstractComplexValue extends n.AbstractAttributeValue{static get renderHints(){return i.RenderHints.from({technicalType:i.RenderHintsTechnicalType.Object,editType:i.RenderHintsEditType.Complex})}}t.AbstractComplexValue=AbstractComplexValue},6652:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Attribute=void 0;const a=r(194),o=r(9663);let s=class Attribute extends o.CoreSerializable{get namespace(){if(!this.name)return;const e=this.name.split(".");return e.length<=1?void 0:e[0]}get attribute(){if(!this.name)return;return this.name.split(".").pop()}static from(e){return this.fromAny(e)}static fromJSON(e){return this.from({name:e.name,value:e.value,validFrom:e.validFrom?o.CoreDate.from(e.validFrom):void 0,validTo:e.validTo?o.CoreDate.from(e.validTo):void 0})}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"name",void 0),n([(0,a.serialize)({any:!0}),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"validFrom",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"validTo",void 0),s=n([(0,a.type)("Attribute")],s),t.Attribute=s},7788:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.IdentityAttribute=void 0;const a=r(194),o=r(6021),s=r(4183);let c=class IdentityAttribute extends o.AbstractAttribute{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)({unionTypes:[s.AbstractAttributeValue]}),(0,a.validate)(),i("design:type",Object)],c.prototype,"value",void 0),n([(0,a.serialize)({type:String}),(0,a.validate)({nullable:!0}),i("design:type",Array)],c.prototype,"tags",void 0),c=n([(0,a.type)("IdentityAttribute")],c),t.IdentityAttribute=c},8092:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.IdentityAttributeQuery=void 0;const a=r(194),o=r(5282);let s=class IdentityAttributeQuery extends o.AbstractAttributeQuery{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)({type:String}),(0,a.validate)({nullable:!0}),i("design:type",Array)],s.prototype,"tags",void 0),s=n([(0,a.type)("IdentityAttributeQuery")],s),t.IdentityAttributeQuery=s},2226:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttribute=t.RelationshipAttributeConfidentiality=void 0;const a=r(194),o=r(6021),s=r(4183);var c;!function(e){e.Public="public",e.Private="private",e.Protected="protected"}(c=t.RelationshipAttributeConfidentiality||(t.RelationshipAttributeConfidentiality={}));let l=class RelationshipAttribute extends o.AbstractAttribute{static preFrom(e){return void 0===e.isTechnical&&(e.isTechnical=!1),e}static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)({unionTypes:[s.AbstractAttributeValue]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],l.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],l.prototype,"isTechnical",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c).includes(e)?void 0:`must be one of: ${Object.values(c)}`}),i("design:type",String)],l.prototype,"confidentiality",void 0),l=n([(0,a.type)("RelationshipAttribute")],l),t.RelationshipAttribute=l},7791:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttributeQuery=void 0;const a=r(194),o=r(9663),s=r(5282),c=r(2377);let l=class RelationshipAttributeQuery extends s.AbstractAttributeQuery{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],l.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreAddress)],l.prototype,"owner",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreAddress)],l.prototype,"thirdParty",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",c.RelationshipAttributeCreationHints)],l.prototype,"attributeCreationHints",void 0),l=n([(0,a.type)("RelationshipAttributeQuery")],l),t.RelationshipAttributeQuery=l},4871:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.COUNTRIES_ALPHA2_TO_ENGLISH_NAME=t.CountryAlpha2=void 0,function(e){e.AF="AF",e.AL="AL",e.AS="AS",e.AD="AD",e.AO="AO",e.AI="AI",e.AQ="AQ",e.AG="AG",e.AR="AR",e.AM="AM",e.AW="AW",e.AU="AU",e.AT="AT",e.AZ="AZ",e.AE="AE",e.AX="AX",e.BS="BS",e.BH="BH",e.BD="BD",e.BB="BB",e.BY="BY",e.BE="BE",e.BZ="BZ",e.BJ="BJ",e.BM="BM",e.BT="BT",e.BO="BO",e.BQ="BQ",e.BA="BA",e.BW="BW",e.BV="BV",e.BR="BR",e.BN="BN",e.BG="BG",e.BF="BF",e.BI="BI",e.BL="BL",e.CV="CV",e.CM="CM",e.CA="CA",e.CF="CF",e.CL="CL",e.CN="CN",e.CX="CX",e.CC="CC",e.CO="CO",e.CD="CD",e.CG="CG",e.CK="CK",e.CR="CR",e.CU="CU",e.CW="CW",e.CY="CY",e.CZ="CZ",e.CI="CI",e.CH="CH",e.DZ="DZ",e.DK="DK",e.DJ="DJ",e.DM="DM",e.DO="DO",e.DE="DE",e.EC="EC",e.EG="EG",e.ER="ER",e.EE="EE",e.ET="ET",e.ES="ES",e.EH="EH",e.FK="FK",e.FO="FO",e.FJ="FJ",e.FI="FI",e.FR="FR",e.FM="FM",e.GQ="GQ",e.GF="GF",e.GA="GA",e.GM="GM",e.GE="GE",e.GH="GH",e.GI="GI",e.GR="GR",e.GL="GL",e.GD="GD",e.GP="GP",e.GU="GU",e.GT="GT",e.GG="GG",e.GN="GN",e.GW="GW",e.GY="GY",e.GS="GS",e.GB="GB",e.HR="HR",e.HT="HT",e.HM="HM",e.HN="HN",e.HK="HK",e.HU="HU",e.IO="IO",e.IS="IS",e.IN="IN",e.ID="ID",e.IR="IR",e.IQ="IQ",e.IE="IE",e.IM="IM",e.IL="IL",e.IT="IT",e.JM="JM",e.JP="JP",e.JE="JE",e.JO="JO",e.KH="KH",e.KY="KY",e.KM="KM",e.KZ="KZ",e.KE="KE",e.KI="KI",e.KP="KP",e.KR="KR",e.KW="KW",e.KG="KG",e.KN="KN",e.LA="LA",e.LV="LV",e.LB="LB",e.LS="LS",e.LR="LR",e.LY="LY",e.LI="LI",e.LT="LT",e.LU="LU",e.LC="LC",e.LK="LK",e.MO="MO",e.MG="MG",e.MW="MW",e.MY="MY",e.MV="MV",e.ML="ML",e.MT="MT",e.MH="MH",e.MQ="MQ",e.MR="MR",e.MU="MU",e.MX="MX",e.MD="MD",e.MC="MC",e.MN="MN",e.ME="ME",e.MS="MS",e.MA="MA",e.MZ="MZ",e.MM="MM",e.MP="MP",e.MK="MK",e.MF="MF",e.NA="NA",e.NR="NR",e.NP="NP",e.NL="NL",e.NC="NC",e.NZ="NZ",e.NI="NI",e.NE="NE",e.NG="NG",e.NU="NU",e.NF="NF",e.NO="NO",e.OM="OM",e.PF="PF",e.PK="PK",e.PW="PW",e.PS="PS",e.PA="PA",e.PG="PG",e.PY="PY",e.PE="PE",e.PH="PH",e.PN="PN",e.PL="PL",e.PT="PT",e.PR="PR",e.PM="PM",e.QA="QA",e.RO="RO",e.RU="RU",e.RW="RW",e.RE="RE",e.RS="RS",e.SV="SV",e.SZ="SZ",e.SH="SH",e.SM="SM",e.ST="ST",e.SA="SA",e.SN="SN",e.SC="SC",e.SL="SL",e.SG="SG",e.SX="SX",e.SK="SK",e.SI="SI",e.SB="SB",e.SO="SO",e.SS="SS",e.SD="SD",e.SR="SR",e.SJ="SJ",e.SE="SE",e.SY="SY",e.TD="TD",e.TF="TF",e.TW="TW",e.TJ="TJ",e.TZ="TZ",e.TH="TH",e.TL="TL",e.TG="TG",e.TK="TK",e.TO="TO",e.TT="TT",e.TN="TN",e.TR="TR",e.TM="TM",e.TC="TC",e.TV="TV",e.UG="UG",e.UA="UA",e.UM="UM",e.US="US",e.UY="UY",e.UZ="UZ",e.VA="VA",e.VC="VC",e.VU="VU",e.VE="VE",e.VN="VN",e.VG="VG",e.VI="VI",e.WS="WS",e.WF="WF",e.YT="YT",e.YE="YE",e.ZA="ZA",e.ZM="ZM",e.ZW="ZW"}(r=t.CountryAlpha2||(t.CountryAlpha2={})),t.COUNTRIES_ALPHA2_TO_ENGLISH_NAME=new Map([[r.AD,"Andorra"],[r.AE,"United Arab Emirates (the)"],[r.AF,"Afghanistan"],[r.AG,"Antigua and Barbuda"],[r.AI,"Anguilla"],[r.AL,"Albania"],[r.AM,"Armenia"],[r.AO,"Angola"],[r.AQ,"Antarctica"],[r.AR,"Argentina"],[r.AS,"American Samoa"],[r.AT,"Austria"],[r.AU,"Australia"],[r.AW,"Aruba"],[r.AX,"Åland Islands"],[r.AZ,"Azerbaijan"],[r.BA,"Bosnia and Herzegovina"],[r.BB,"Barbados"],[r.BD,"Bangladesh"],[r.BE,"Belgium"],[r.BF,"Burkina Faso"],[r.BG,"Bulgaria"],[r.BH,"Bahrain"],[r.BI,"Burundi"],[r.BJ,"Benin"],[r.BL,"Saint Barthélemy"],[r.BM,"Bermuda"],[r.BN,"Brunei Darussalam"],[r.BO,"Bolivia (Plurinational State of)"],[r.BQ,"Bonaire, Sint Eustatius and Saba"],[r.BR,"Brazil"],[r.BS,"Bahamas (the)"],[r.BT,"Bhutan"],[r.BV,"Bouvet Island"],[r.BW,"Botswana"],[r.BY,"Belarus"],[r.BZ,"Belize"],[r.CA,"Canada"],[r.CC,"Cocos (Keeling) Islands (the)"],[r.CD,"Congo (the Democratic Republic of the)"],[r.CF,"Central African Republic (the)"],[r.CG,"Congo (the)"],[r.CH,"Switzerland"],[r.CI,"Côte d'Ivoire"],[r.CK,"Cook Islands (the)"],[r.CL,"Chile"],[r.CM,"Cameroon"],[r.CN,"China"],[r.CO,"Colombia"],[r.CR,"Costa Rica"],[r.CU,"Cuba"],[r.CV,"Cabo Verde"],[r.CW,"Curaçao"],[r.CX,"Christmas Island"],[r.CY,"Cyprus"],[r.CZ,"Czechia"],[r.DE,"Germany"],[r.DJ,"Djibouti"],[r.DK,"Denmark"],[r.DM,"Dominica"],[r.DO,"Dominican Republic (the)"],[r.DZ,"Algeria"],[r.EC,"Ecuador"],[r.EE,"Estonia"],[r.EG,"Egypt"],[r.EH,"Western Sahara"],[r.ER,"Eritrea"],[r.ES,"Spain"],[r.ET,"Ethiopia"],[r.FI,"Finland"],[r.FJ,"Fiji"],[r.FK,"Falkland Islands (the) [Malvinas]"],[r.FM,"Micronesia (Federated States of)"],[r.FO,"Faroe Islands (the)"],[r.FR,"France"],[r.GA,"Gabon"],[r.GB,"United Kingdom of Great Britain and Northern Ireland (the)"],[r.GD,"Grenada"],[r.GE,"Georgia"],[r.GF,"French Guiana"],[r.GG,"Guernsey"],[r.GH,"Ghana"],[r.GI,"Gibraltar"],[r.GL,"Greenland"],[r.GM,"Gambia (the)"],[r.GN,"Guinea"],[r.GP,"Guadeloupe"],[r.GQ,"Equatorial Guinea"],[r.GR,"Greece"],[r.GS,"South Georgia and the South Sandwich Islands"],[r.GT,"Guatemala"],[r.GU,"Guam"],[r.GW,"Guinea-Bissau"],[r.GY,"Guyana"],[r.HK,"Hong Kong"],[r.HM,"Heard Island and McDonald Islands"],[r.HN,"Honduras"],[r.HR,"Croatia"],[r.HT,"Haiti"],[r.HU,"Hungary"],[r.ID,"Indonesia"],[r.IE,"Ireland"],[r.IL,"Israel"],[r.IM,"Isle of Man"],[r.IN,"India"],[r.IO,"British Indian Ocean Territory (the)"],[r.IQ,"Iraq"],[r.IR,"Iran (Islamic Republic of)"],[r.IS,"Iceland"],[r.IT,"Italy"],[r.JE,"Jersey"],[r.JM,"Jamaica"],[r.JO,"Jordan"],[r.JP,"Japan"],[r.KE,"Kenya"],[r.KG,"Kyrgyzstan"],[r.KH,"Cambodia"],[r.KI,"Kiribati"],[r.KM,"Comoros (the)"],[r.KN,"Saint Kitts and Nevis"],[r.KP,"Korea (the Democratic People's Republic of)"],[r.KR,"Korea (the Republic of)"],[r.KW,"Kuwait"],[r.KY,"Cayman Islands (the)"],[r.KZ,"Kazakhstan"],[r.LA,"Lao People's Democratic Republic (the)"],[r.LB,"Lebanon"],[r.LC,"Saint Lucia"],[r.LI,"Liechtenstein"],[r.LK,"Sri Lanka"],[r.LR,"Liberia"],[r.LS,"Lesotho"],[r.LT,"Lithuania"],[r.LU,"Luxembourg"],[r.LV,"Latvia"],[r.LY,"Libya"],[r.MA,"Morocco"],[r.MC,"Monaco"],[r.MD,"Moldova (the Republic of)"],[r.ME,"Montenegro"],[r.MF,"Saint Martin (French part)"],[r.MG,"Madagascar"],[r.MH,"Marshall Islands (the)"],[r.MK,"Republic of North Macedonia"],[r.ML,"Mali"],[r.MM,"Myanmar"],[r.MN,"Mongolia"],[r.MO,"Macao"],[r.MP,"Northern Mariana Islands (the)"],[r.MQ,"Martinique"],[r.MR,"Mauritania"],[r.MS,"Montserrat"],[r.MT,"Malta"],[r.MU,"Mauritius"],[r.MV,"Maldives"],[r.MW,"Malawi"],[r.MX,"Mexico"],[r.MY,"Malaysia"],[r.MZ,"Mozambique"],[r.NA,"Namibia"],[r.NC,"New Caledonia"],[r.NE,"Niger (the)"],[r.NF,"Norfolk Island"],[r.NG,"Nigeria"],[r.NI,"Nicaragua"],[r.NL,"Netherlands (the)"],[r.NO,"Norway"],[r.NP,"Nepal"],[r.NR,"Nauru"],[r.NU,"Niue"],[r.NZ,"New Zealand"],[r.OM,"Oman"],[r.PA,"Panama"],[r.PE,"Peru"],[r.PF,"French Polynesia"],[r.PG,"Papua New Guinea"],[r.PH,"Philippines (the)"],[r.PK,"Pakistan"],[r.PL,"Poland"],[r.PM,"Saint Pierre and Miquelon"],[r.PN,"Pitcairn"],[r.PR,"Puerto Rico"],[r.PS,"Palestine, State of"],[r.PT,"Portugal"],[r.PW,"Palau"],[r.PY,"Paraguay"],[r.QA,"Qatar"],[r.RE,"Réunion"],[r.RO,"Romania"],[r.RS,"Serbia"],[r.RU,"Russian Federation (the)"],[r.RW,"Rwanda"],[r.SA,"Saudi Arabia"],[r.SB,"Solomon Islands"],[r.SC,"Seychelles"],[r.SD,"Sudan (the)"],[r.SE,"Sweden"],[r.SG,"Singapore"],[r.SH,"Saint Helena, Ascension and Tristan da Cunha"],[r.SI,"Slovenia"],[r.SJ,"Svalbard and Jan Mayen"],[r.SK,"Slovakia"],[r.SL,"Sierra Leone"],[r.SM,"San Marino"],[r.SN,"Senegal"],[r.SO,"Somalia"],[r.SR,"Suriname"],[r.SS,"South Sudan"],[r.ST,"Sao Tome and Principe"],[r.SV,"El Salvador"],[r.SX,"Sint Maarten (Dutch part)"],[r.SY,"Syrian Arab Republic"],[r.SZ,"Eswatini"],[r.TC,"Turks and Caicos Islands (the)"],[r.TD,"Chad"],[r.TF,"French Southern Territories (the)"],[r.TG,"Togo"],[r.TH,"Thailand"],[r.TJ,"Tajikistan"],[r.TK,"Tokelau"],[r.TL,"Timor-Leste"],[r.TM,"Turkmenistan"],[r.TN,"Tunisia"],[r.TO,"Tonga"],[r.TR,"Turkey"],[r.TT,"Trinidad and Tobago"],[r.TV,"Tuvalu"],[r.TW,"Taiwan"],[r.TZ,"Tanzania, United Republic of"],[r.UA,"Ukraine"],[r.UG,"Uganda"],[r.UM,"United States Minor Outlying Islands (the)"],[r.US,"United States of America (the)"],[r.UY,"Uruguay"],[r.UZ,"Uzbekistan"],[r.VA,"Holy See (the)"],[r.VC,"Saint Vincent and the Grenadines"],[r.VE,"Venezuela (Bolivarian Republic of)"],[r.VG,"Virgin Islands (British)"],[r.VI,"Virgin Islands (U.S.)"],[r.VN,"Viet Nam"],[r.VU,"Vanuatu"],[r.WF,"Wallis and Futuna"],[r.WS,"Samoa"],[r.YE,"Yemen"],[r.YT,"Mayotte"],[r.ZA,"South Africa"],[r.ZM,"Zambia"],[r.ZW,"Zimbabwe"]])},4473:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.LANGUAGES_ISO639_TO_DISPLAY_NAME=t.LanguageISO639=void 0,function(e){e.aa="aa",e.ab="ab",e.ae="ae",e.af="af",e.ak="ak",e.am="am",e.an="an",e.ar="ar",e.as="as",e.av="av",e.ay="ay",e.az="az",e.ba="ba",e.be="be",e.bg="bg",e.bi="bi",e.bm="bm",e.bn="bn",e.bo="bo",e.br="br",e.bs="bs",e.ca="ca",e.ce="ce",e.ch="ch",e.co="co",e.cr="cr",e.cs="cs",e.cu="cu",e.cv="cv",e.cy="cy",e.da="da",e.de="de",e.dv="dv",e.dz="dz",e.ee="ee",e.el="el",e.en="en",e.eo="eo",e.es="es",e.et="et",e.eu="eu",e.fa="fa",e.ff="ff",e.fi="fi",e.fj="fj",e.fo="fo",e.fr="fr",e.fy="fy",e.ga="ga",e.gd="gd",e.gl="gl",e.gn="gn",e.gu="gu",e.gv="gv",e.ha="ha",e.he="he",e.hi="hi",e.ho="ho",e.hr="hr",e.ht="ht",e.hu="hu",e.hy="hy",e.hz="hz",e.ia="ia",e.id="id",e.ie="ie",e.ig="ig",e.ii="ii",e.ik="ik",e.io="io",e.is="is",e.it="it",e.iu="iu",e.ja="ja",e.jv="jv",e.ka="ka",e.kg="kg",e.ki="ki",e.kj="kj",e.kk="kk",e.kl="kl",e.km="km",e.kn="kn",e.ko="ko",e.kr="kr",e.ks="ks",e.ku="ku",e.kv="kv",e.kw="kw",e.ky="ky",e.la="la",e.lb="lb",e.lg="lg",e.li="li",e.ln="ln",e.lo="lo",e.lt="lt",e.lu="lu",e.lv="lv",e.mg="mg",e.mh="mh",e.mi="mi",e.mk="mk",e.ml="ml",e.mn="mn",e.mr="mr",e.ms="ms",e.mt="mt",e.my="my",e.na="na",e.nb="nb",e.nd="nd",e.ne="ne",e.ng="ng",e.nl="nl",e.nn="nn",e.no="no",e.nr="nr",e.nv="nv",e.ny="ny",e.oc="oc",e.oj="oj",e.om="om",e.or="or",e.os="os",e.pa="pa",e.pi="pi",e.pl="pl",e.ps="ps",e.pt="pt",e.qu="qu",e.rm="rm",e.rn="rn",e.ro="ro",e.ru="ru",e.rw="rw",e.sa="sa",e.sc="sc",e.sd="sd",e.se="se",e.sg="sg",e.si="si",e.sk="sk",e.sl="sl",e.sm="sm",e.sn="sn",e.so="so",e.sq="sq",e.sr="sr",e.ss="ss",e.st="st",e.su="su",e.sv="sv",e.sw="sw",e.ta="ta",e.te="te",e.tg="tg",e.th="th",e.ti="ti",e.tk="tk",e.tl="tl",e.tn="tn",e.to="to",e.tr="tr",e.ts="ts",e.tt="tt",e.tw="tw",e.ty="ty",e.ug="ug",e.uk="uk",e.ur="ur",e.uz="uz",e.ve="ve",e.vi="vi",e.vo="vo",e.wa="wa",e.wo="wo",e.xh="xh",e.yi="yi",e.yo="yo",e.za="za",e.zh="zh",e.zu="zu"}(r=t.LanguageISO639||(t.LanguageISO639={})),t.LANGUAGES_ISO639_TO_DISPLAY_NAME=new Map([[r.aa,{code:r.aa,name:"Afar",nativeName:"Afaraf"}],[r.ab,{code:r.ab,name:"Abkhaz",nativeName:"аҧсуа бызшәа"}],[r.ae,{code:r.ae,name:"Avestan",nativeName:"avesta"}],[r.af,{code:r.af,name:"Afrikaans",nativeName:"Afrikaans"}],[r.ak,{code:r.ak,name:"Akan",nativeName:"Akan"}],[r.am,{code:r.am,name:"Amharic",nativeName:"አማርኛ"}],[r.an,{code:r.an,name:"Aragonese",nativeName:"aragonés"}],[r.ar,{code:r.ar,name:"Arabic",nativeName:"اَلْعَرَبِيَّةُ"}],[r.as,{code:r.as,name:"Assamese",nativeName:"অসমীয়া"}],[r.av,{code:r.av,name:"Avaric",nativeName:"авар мацӀ"}],[r.ay,{code:r.ay,name:"Aymara",nativeName:"aymar aru"}],[r.az,{code:r.az,name:"Azerbaijani",nativeName:"azərbaycan dili"}],[r.ba,{code:r.ba,name:"Bashkir",nativeName:"башҡорт теле"}],[r.be,{code:r.be,name:"Belarusian",nativeName:"беларуская мова"}],[r.bg,{code:r.bg,name:"Bulgarian",nativeName:"български език"}],[r.bi,{code:r.bi,name:"Bislama",nativeName:"Bislama"}],[r.bm,{code:r.bm,name:"Bambara",nativeName:"bamanankan"}],[r.bn,{code:r.bn,name:"Bengali",nativeName:"বাংলা"}],[r.bo,{code:r.bo,name:"Tibetan",nativeName:"བོད་ཡིག"}],[r.br,{code:r.br,name:"Breton",nativeName:"brezhoneg"}],[r.bs,{code:r.bs,name:"Bosnian",nativeName:"bosanski jezik"}],[r.ca,{code:r.ca,name:"Catalan",nativeName:"Català"}],[r.ce,{code:r.ce,name:"Chechen",nativeName:"нохчийн мотт"}],[r.ch,{code:r.ch,name:"Chamorro",nativeName:"Chamoru"}],[r.co,{code:r.co,name:"Corsican",nativeName:"corsu"}],[r.cr,{code:r.cr,name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"}],[r.cs,{code:r.cs,name:"Czech",nativeName:"čeština"}],[r.cu,{code:r.cu,name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"}],[r.cv,{code:r.cv,name:"Chuvash",nativeName:"чӑваш чӗлхи"}],[r.cy,{code:r.cy,name:"Welsh",nativeName:"Cymraeg"}],[r.da,{code:r.da,name:"Danish",nativeName:"dansk"}],[r.de,{code:r.de,name:"German",nativeName:"Deutsch"}],[r.dv,{code:r.dv,name:"Divehi",nativeName:"ދިވެހި"}],[r.dz,{code:r.dz,name:"Dzongkha",nativeName:"རྫོང་ཁ"}],[r.ee,{code:r.ee,name:"Ewe",nativeName:"Eʋegbe"}],[r.el,{code:r.el,name:"Greek",nativeName:"Ελληνικά"}],[r.en,{code:r.en,name:"English",nativeName:"English"}],[r.eo,{code:r.eo,name:"Esperanto",nativeName:"Esperanto"}],[r.es,{code:r.es,name:"Spanish",nativeName:"Español"}],[r.et,{code:r.et,name:"Estonian",nativeName:"eesti"}],[r.eu,{code:r.eu,name:"Basque",nativeName:"euskara"}],[r.fa,{code:r.fa,name:"Persian",nativeName:"فارسی"}],[r.ff,{code:r.ff,name:"Fula",nativeName:"Fulfulde"}],[r.fi,{code:r.fi,name:"Finnish",nativeName:"suomi"}],[r.fj,{code:r.fj,name:"Fijian",nativeName:"vosa Vakaviti"}],[r.fo,{code:r.fo,name:"Faroese",nativeName:"føroyskt"}],[r.fr,{code:r.fr,name:"French",nativeName:"Français"}],[r.fy,{code:r.fy,name:"Western Frisian",nativeName:"Frysk"}],[r.ga,{code:r.ga,name:"Irish",nativeName:"Gaeilge"}],[r.gd,{code:r.gd,name:"Scottish Gaelic",nativeName:"Gàidhlig"}],[r.gl,{code:r.gl,name:"Galician",nativeName:"galego"}],[r.gn,{code:r.gn,name:"Guaraní",nativeName:"Avañe'ẽ"}],[r.gu,{code:r.gu,name:"Gujarati",nativeName:"ગુજરાતી"}],[r.gv,{code:r.gv,name:"Manx",nativeName:"Gaelg"}],[r.ha,{code:r.ha,name:"Hausa",nativeName:"هَوُسَ"}],[r.he,{code:r.he,name:"Hebrew",nativeName:"עברית"}],[r.hi,{code:r.hi,name:"Hindi",nativeName:"हिन्दी"}],[r.ho,{code:r.ho,name:"Hiri Motu",nativeName:"Hiri Motu"}],[r.hr,{code:r.hr,name:"Croatian",nativeName:"Hrvatski"}],[r.ht,{code:r.ht,name:"Haitian",nativeName:"Kreyòl ayisyen"}],[r.hu,{code:r.hu,name:"Hungarian",nativeName:"magyar"}],[r.hy,{code:r.hy,name:"Armenian",nativeName:"Հայերեն"}],[r.hz,{code:r.hz,name:"Herero",nativeName:"Otjiherero"}],[r.ia,{code:r.ia,name:"Interlingua",nativeName:"Interlingua"}],[r.id,{code:r.id,name:"Indonesian",nativeName:"Bahasa Indonesia"}],[r.ie,{code:r.ie,name:"Interlingue",nativeName:"Interlingue"}],[r.ig,{code:r.ig,name:"Igbo",nativeName:"Asụsụ Igbo"}],[r.ii,{code:r.ii,name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"}],[r.ik,{code:r.ik,name:"Inupiaq",nativeName:"Iñupiaq"}],[r.io,{code:r.io,name:"Ido",nativeName:"Ido"}],[r.is,{code:r.is,name:"Icelandic",nativeName:"Íslenska"}],[r.it,{code:r.it,name:"Italian",nativeName:"Italiano"}],[r.iu,{code:r.iu,name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"}],[r.ja,{code:r.ja,name:"Japanese",nativeName:"日本語"}],[r.jv,{code:r.jv,name:"Javanese",nativeName:"basa Jawa"}],[r.ka,{code:r.ka,name:"Georgian",nativeName:"ქართული"}],[r.kg,{code:r.kg,name:"Kongo",nativeName:"Kikongo"}],[r.ki,{code:r.ki,name:"Kikuyu",nativeName:"Gĩkũyũ"}],[r.kj,{code:r.kj,name:"Kwanyama",nativeName:"Kuanyama"}],[r.kk,{code:r.kk,name:"Kazakh",nativeName:"қазақ тілі"}],[r.kl,{code:r.kl,name:"Kalaallisut",nativeName:"kalaallisut"}],[r.km,{code:r.km,name:"Khmer",nativeName:"ខេមរភាសា"}],[r.kn,{code:r.kn,name:"Kannada",nativeName:"ಕನ್ನಡ"}],[r.ko,{code:r.ko,name:"Korean",nativeName:"한국어"}],[r.kr,{code:r.kr,name:"Kanuri",nativeName:"Kanuri"}],[r.ks,{code:r.ks,name:"Kashmiri",nativeName:"कश्मीरी"}],[r.ku,{code:r.ku,name:"Kurdish",nativeName:"Kurdî"}],[r.kv,{code:r.kv,name:"Komi",nativeName:"коми кыв"}],[r.kw,{code:r.kw,name:"Cornish",nativeName:"Kernewek"}],[r.ky,{code:r.ky,name:"Kyrgyz",nativeName:"Кыргызча"}],[r.la,{code:r.la,name:"Latin",nativeName:"latine"}],[r.lb,{code:r.lb,name:"Luxembourgish",nativeName:"Lëtzebuergesch"}],[r.lg,{code:r.lg,name:"Ganda",nativeName:"Luganda"}],[r.li,{code:r.li,name:"Limburgish",nativeName:"Limburgs"}],[r.ln,{code:r.ln,name:"Lingala",nativeName:"Lingála"}],[r.lo,{code:r.lo,name:"Lao",nativeName:"ພາສາລາວ"}],[r.lt,{code:r.lt,name:"Lithuanian",nativeName:"lietuvių kalba"}],[r.lu,{code:r.lu,name:"Luba-Katanga",nativeName:"Kiluba"}],[r.lv,{code:r.lv,name:"Latvian",nativeName:"latviešu valoda"}],[r.mg,{code:r.mg,name:"Malagasy",nativeName:"fiteny malagasy"}],[r.mh,{code:r.mh,name:"Marshallese",nativeName:"Kajin M̧ajeļ"}],[r.mi,{code:r.mi,name:"Māori",nativeName:"te reo Māori"}],[r.mk,{code:r.mk,name:"Macedonian",nativeName:"македонски јазик"}],[r.ml,{code:r.ml,name:"Malayalam",nativeName:"മലയാളം"}],[r.mn,{code:r.mn,name:"Mongolian",nativeName:"Монгол хэл"}],[r.mr,{code:r.mr,name:"Marathi",nativeName:"मराठी"}],[r.ms,{code:r.ms,name:"Malay",nativeName:"Bahasa Melayu"}],[r.mt,{code:r.mt,name:"Maltese",nativeName:"Malti"}],[r.my,{code:r.my,name:"Burmese",nativeName:"ဗမာစာ"}],[r.na,{code:r.na,name:"Nauru",nativeName:"Dorerin Naoero"}],[r.nb,{code:r.nb,name:"Norwegian Bokmål",nativeName:"Norsk bokmål"}],[r.nd,{code:r.nd,name:"Northern Ndebele",nativeName:"isiNdebele"}],[r.ne,{code:r.ne,name:"Nepali",nativeName:"नेपाली"}],[r.ng,{code:r.ng,name:"Ndonga",nativeName:"Owambo"}],[r.nl,{code:r.nl,name:"Dutch",nativeName:"Nederlands"}],[r.nn,{code:r.nn,name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"}],[r.no,{code:r.no,name:"Norwegian",nativeName:"Norsk"}],[r.nr,{code:r.nr,name:"Southern Ndebele",nativeName:"isiNdebele"}],[r.nv,{code:r.nv,name:"Navajo",nativeName:"Diné bizaad"}],[r.ny,{code:r.ny,name:"Chichewa",nativeName:"chiCheŵa"}],[r.oc,{code:r.oc,name:"Occitan",nativeName:"occitan"}],[r.oj,{code:r.oj,name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"}],[r.om,{code:r.om,name:"Oromo",nativeName:"Afaan Oromoo"}],[r.or,{code:r.or,name:"Oriya",nativeName:"ଓଡ଼ିଆ"}],[r.os,{code:r.os,name:"Ossetian",nativeName:"ирон æвзаг"}],[r.pa,{code:r.pa,name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"}],[r.pi,{code:r.pi,name:"Pāli",nativeName:"पाऴि"}],[r.pl,{code:r.pl,name:"Polish",nativeName:"Polski"}],[r.ps,{code:r.ps,name:"Pashto",nativeName:"پښتو"}],[r.pt,{code:r.pt,name:"Portuguese",nativeName:"Português"}],[r.qu,{code:r.qu,name:"Quechua",nativeName:"Runa Simi"}],[r.rm,{code:r.rm,name:"Romansh",nativeName:"rumantsch grischun"}],[r.rn,{code:r.rn,name:"Kirundi",nativeName:"Ikirundi"}],[r.ro,{code:r.ro,name:"Romanian",nativeName:"Română"}],[r.ru,{code:r.ru,name:"Russian",nativeName:"Русский"}],[r.rw,{code:r.rw,name:"Kinyarwanda",nativeName:"Ikinyarwanda"}],[r.sa,{code:r.sa,name:"Sanskrit",nativeName:"संस्कृतम्"}],[r.sc,{code:r.sc,name:"Sardinian",nativeName:"sardu"}],[r.sd,{code:r.sd,name:"Sindhi",nativeName:"सिन्धी"}],[r.se,{code:r.se,name:"Northern Sami",nativeName:"Davvisámegiella"}],[r.sg,{code:r.sg,name:"Sango",nativeName:"yângâ tî sängö"}],[r.si,{code:r.si,name:"Sinhala",nativeName:"සිංහල"}],[r.sk,{code:r.sk,name:"Slovak",nativeName:"slovenčina"}],[r.sl,{code:r.sl,name:"Slovenian",nativeName:"slovenščina"}],[r.sm,{code:r.sm,name:"Samoan",nativeName:"gagana fa'a Samoa"}],[r.sn,{code:r.sn,name:"Shona",nativeName:"chiShona"}],[r.so,{code:r.so,name:"Somali",nativeName:"Soomaaliga"}],[r.sq,{code:r.sq,name:"Albanian",nativeName:"Shqip"}],[r.sr,{code:r.sr,name:"Serbian",nativeName:"српски језик"}],[r.ss,{code:r.ss,name:"Swati",nativeName:"SiSwati"}],[r.st,{code:r.st,name:"Southern Sotho",nativeName:"Sesotho"}],[r.su,{code:r.su,name:"Sundanese",nativeName:"Basa Sunda"}],[r.sv,{code:r.sv,name:"Swedish",nativeName:"Svenska"}],[r.sw,{code:r.sw,name:"Swahili",nativeName:"Kiswahili"}],[r.ta,{code:r.ta,name:"Tamil",nativeName:"தமிழ்"}],[r.te,{code:r.te,name:"Telugu",nativeName:"తెలుగు"}],[r.tg,{code:r.tg,name:"Tajik",nativeName:"тоҷикӣ"}],[r.th,{code:r.th,name:"Thai",nativeName:"ไทย"}],[r.ti,{code:r.ti,name:"Tigrinya",nativeName:"ትግርኛ"}],[r.tk,{code:r.tk,name:"Turkmen",nativeName:"Türkmençe"}],[r.tl,{code:r.tl,name:"Tagalog",nativeName:"Wikang Tagalog"}],[r.tn,{code:r.tn,name:"Tswana",nativeName:"Setswana"}],[r.to,{code:r.to,name:"Tonga",nativeName:"faka Tonga"}],[r.tr,{code:r.tr,name:"Turkish",nativeName:"Türkçe"}],[r.ts,{code:r.ts,name:"Tsonga",nativeName:"Xitsonga"}],[r.tt,{code:r.tt,name:"Tatar",nativeName:"татар теле"}],[r.tw,{code:r.tw,name:"Twi",nativeName:"Twi"}],[r.ty,{code:r.ty,name:"Tahitian",nativeName:"Reo Tahiti"}],[r.ug,{code:r.ug,name:"Uyghur",nativeName:"ئۇيغۇرچە‎"}],[r.uk,{code:r.uk,name:"Ukrainian",nativeName:"Українська"}],[r.ur,{code:r.ur,name:"Urdu",nativeName:"اردو"}],[r.uz,{code:r.uz,name:"Uzbek",nativeName:"Ўзбек"}],[r.ve,{code:r.ve,name:"Venda",nativeName:"Tshivenḓa"}],[r.vi,{code:r.vi,name:"Vietnamese",nativeName:"Tiếng Việt"}],[r.vo,{code:r.vo,name:"Volapük",nativeName:"Volapük"}],[r.wa,{code:r.wa,name:"Walloon",nativeName:"walon"}],[r.wo,{code:r.wo,name:"Wolof",nativeName:"Wollof"}],[r.xh,{code:r.xh,name:"Xhosa",nativeName:"isiXhosa"}],[r.yi,{code:r.yi,name:"Yiddish",nativeName:"ייִדיש"}],[r.yo,{code:r.yo,name:"Yoruba",nativeName:"Yorùbá"}],[r.za,{code:r.za,name:"Zhuang",nativeName:"Saɯ cueŋƅ"}],[r.zh,{code:r.zh,name:"Chinese",nativeName:"中文"}],[r.zu,{code:r.zu,name:"Zulu",nativeName:"isiZulu"}]])},341:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4871),t),i(r(4473),t)},2377:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttributeCreationHints=void 0;const a=r(194),o=r(2226),s=r(7274);let c=class RelationshipAttributeCreationHints extends a.Serializable{static preFrom(e){return void 0===e.isTechnical&&(e.isTechnical=!1),e}static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],c.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",s.ValueHints)],c.prototype,"valueHints",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],c.prototype,"isTechnical",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(o.RelationshipAttributeConfidentiality).includes(e)?void 0:`must be one of: ${Object.values(o.RelationshipAttributeConfidentiality)}`}),i("design:type",String)],c.prototype,"confidentiality",void 0),c=n([(0,a.type)("RelationshipAttributeCreationHints")],c),t.RelationshipAttributeCreationHints=c},9204:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsOverride=t.RenderHints=void 0;const o=r(194);r(6020),r(6221),r(6046);function deserializePropertyHints(e){void 0!==e.propertyHints&&(e.propertyHints=Object.entries(e.propertyHints).map((e=>({[e[0]]:s.fromAny(e[1])}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{}))}function serializePropertyHints(e,t){t.propertyHints=Object.entries(e.propertyHints??{}).map((e=>({[e[0]]:e[1].toJSON()}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{})}let s=n=class RenderHints extends o.Serializable{constructor(){super(...arguments),this.propertyHints={}}static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}copyWith(e){const t=e&&e instanceof c?e.toJSON():e,r={...this.toJSON().propertyHints,...t?.propertyHints};return n.from({...this.toJSON(),...t,propertyHints:r})}};i([(0,o.serialize)(),(0,o.validate)(),a("design:type",String)],s.prototype,"technicalType",void 0),i([(0,o.serialize)(),(0,o.validate)(),a("design:type",String)],s.prototype,"editType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],s.prototype,"dataType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],s.prototype,"propertyHints",void 0),s=n=i([(0,o.type)("RenderHints")],s),t.RenderHints=s;let c=class RenderHintsOverride extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"technicalType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"editType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"dataType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"propertyHints",void 0),c=i([(0,o.type)("RenderHintsOverride")],c),t.RenderHintsOverride=c},6020:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsDataType=void 0,function(e){e.Country="Country",e.DataURL="DataURL",e.EMailAddress="EMailAddress",e.HEXColor="HEXColor",e.Language="Language",e.PhoneNumber="PhoneNumber",e.URL="URL",e.FileReference="FileReference",e.Date="Date",e.DatePeriod="DatePeriod",e.DateTime="DateTime",e.DateTimePeriod="DateTimePeriod",e.Time="Time",e.TimePeriod="TimePeriod",e.Day="Day",e.Month="Month",e.Year="Year"}(t.RenderHintsDataType||(t.RenderHintsDataType={}))},6221:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsEditType=void 0,function(e){e.InputLike="InputLike",e.ButtonLike="ButtonLike",e.RadioButtonLike="RadioButtonLike",e.SelectLike="SelectLike",e.SliderLike="SliderLike",e.Complex="Complex",e.Secret="Secret",e.TextArea="TextArea",e.Upload="Upload"}(t.RenderHintsEditType||(t.RenderHintsEditType={}))},6046:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsTechnicalType=void 0,function(e){e.Boolean="Boolean",e.Float="Float",e.Integer="Integer",e.Object="Object",e.String="String"}(t.RenderHintsTechnicalType||(t.RenderHintsTechnicalType={}))},7274:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ValueHintsOverride=t.ValueHints=void 0;const o=r(194),s=r(2259);function deserializePropertyHints(e){void 0!==e.propertyHints&&(e.propertyHints=Object.entries(e.propertyHints).map((e=>({[e[0]]:c.fromAny(e[1])}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{}))}function serializePropertyHints(e,t){t.propertyHints=Object.entries(e.propertyHints??{}).map((e=>({[e[0]]:e[1].toJSON()}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{})}let c=n=class ValueHints extends o.Serializable{constructor(){super(...arguments),this.propertyHints={}}static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}copyWith(e){const t=e&&e instanceof l?e.toJSON():e,r={...this.toJSON().propertyHints,...t?.propertyHints};return n.from({...this.toJSON(),...t,propertyHints:r})}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"editHelp",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],c.prototype,"min",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],c.prototype,"max",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"pattern",void 0),i([(0,o.serialize)({type:s.ValueHintsValue}),(0,o.validate)({nullable:!0}),a("design:type",Array)],c.prototype,"values",void 0),i([(0,o.validate)({nullable:!0,allowedTypes:[o.PrimitiveType.Number,o.PrimitiveType.String,o.PrimitiveType.Boolean]}),(0,o.serialize)(),a("design:type",Object)],c.prototype,"defaultValue",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"propertyHints",void 0),c=n=i([(0,o.type)("ValueHints")],c),t.ValueHints=c;let l=class ValueHintsOverride extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],l.prototype,"editHelp",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],l.prototype,"min",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],l.prototype,"max",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],l.prototype,"pattern",void 0),i([(0,o.serialize)({type:s.ValueHintsValue}),(0,o.validate)({nullable:!0}),a("design:type",Array)],l.prototype,"values",void 0),i([(0,o.serialize)({unionTypes:[Boolean,Number,String]}),(0,o.validate)({nullable:!0}),a("design:type",Object)],l.prototype,"defaultValue",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],l.prototype,"propertyHints",void 0),l=i([(0,o.type)("ValueHintsOverride")],l),t.ValueHintsOverride=l},2259:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ValueHintsValue=void 0;const a=r(194);let o=class ValueHintsValue extends a.Serializable{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],o.prototype,"displayName",void 0),n([(0,a.validate)({allowedTypes:[a.PrimitiveType.String,a.PrimitiveType.Number,a.PrimitiveType.Boolean]}),(0,a.serialize)(),i("design:type",Object)],o.prototype,"key",void 0),o=n([(0,a.type)("ValueHintsValue")],o),t.ValueHintsValue=o},3711:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(2377),t),i(r(9204),t),i(r(6020),t),i(r(6221),t),i(r(6046),t),i(r(7274),t),i(r(2259),t)},3700:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6021),t),i(r(5282),t),i(r(4183),t),i(r(2861),t),i(r(6652),t),i(r(341),t),i(r(3711),t),i(r(7788),t),i(r(8092),t),i(r(2226),t),i(r(7791),t),i(r(3383),t)},4992:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractBoolean=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractBoolean extends o.AbstractAttributeValue{static preFrom(e){return"boolean"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.InputLike,technicalType:s.RenderHintsTechnicalType.Boolean})}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Boolean)],AbstractBoolean.prototype,"value",void 0),t.AbstractBoolean=AbstractBoolean},36:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractFloat=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractFloat extends o.AbstractAttributeValue{static preFrom(e){return"number"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.ButtonLike,technicalType:s.RenderHintsTechnicalType.Float})}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Number)],AbstractFloat.prototype,"value",void 0),t.AbstractFloat=AbstractFloat},6591:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractInteger=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractInteger extends o.AbstractAttributeValue{static preFrom(e){return"number"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.ButtonLike,technicalType:s.RenderHintsTechnicalType.Integer})}static from(e){return this.fromAny(e)}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Number.isInteger(e)?void 0:"must be an integer"}),i("design:type",Number)],AbstractInteger.prototype,"value",void 0),t.AbstractInteger=AbstractInteger},6550:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractString=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractString extends o.AbstractAttributeValue{static preFrom(e){return"string"==typeof e&&(e={value:e}),e}toString(){return this.value}static get valueHints(){return s.ValueHints.from({max:200})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.InputLike,technicalType:s.RenderHintsTechnicalType.String})}}n([(0,a.serialize)(),(0,a.validate)({max:200}),i("design:type",String)],AbstractString.prototype,"value",void 0),t.AbstractString=AbstractString},9418:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ATTRIBUTE_LIST=void 0,t.ATTRIBUTE_LIST=["City","Country","DeliveryBoxAddress","HouseNo","PostOfficeBoxAddess","State","Street","StreetAddress","ZipCode","BirthCity","BirthCountry","BirthDate","BirthDay","BirthMonth","BirthPlace","BirthState","BirthYear","IDCardDE","BirthName","DisplayName","GivenName","LegalNameDE","Pseudonym","Salutation","Surname","Title","Age","Gender","PersonEyeColor","PersonHeight","Sex"]},8402:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ATTRIBUTE_TYPE_MAPPING=void 0,t.ATTRIBUTE_TYPE_MAPPING=new Map([["Address",["StreetAddress","DeliveryBoxAddress","PostOfficeBoxAddress"]],["IDCard",["IDCardDE"]],["LegalName",["LegalNameDE"]]])},3149:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAddress=void 0;const o=r(194),s=a(r(9524)),c=r(2861),l=r(3711);class AbstractAddress extends c.AbstractComplexValue{static get valueHints(){return l.ValueHints.from({propertyHints:{[this.propertyNames.recipient.$path]:l.ValueHints.from({})}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.recipient.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.String})}})}}AbstractAddress.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],AbstractAddress.prototype,"recipient",void 0),t.AbstractAddress=AbstractAddress},4967:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.City=void 0;const i=r(194),a=r(6550);let o=class City extends a.AbstractString{};o=n([(0,i.type)("City")],o),t.City=o},9042:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Country=void 0;const i=r(194),a=r(6838);let o=class Country extends a.AbstractCountry{};o=n([(0,i.type)("Country")],o),t.Country=o},9498:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.DeliveryBoxAddress=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(341),u=r(3711),d=r(5305),f=r(3149),p=r(4967),y=r(9042),m=r(699),h=r(7474);let v=class DeliveryBoxAddress extends f.AbstractAddress{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.userId.$path]:u.ValueHints.from({}),[this.propertyNames.deliveryBoxId.$path]:u.ValueHints.from({}),[this.propertyNames.zipCode.$path]:h.ZipCode.valueHints,[this.propertyNames.city.$path]:p.City.valueHints,[this.propertyNames.country.$path]:y.Country.valueHints,[this.propertyNames.phoneNumber.$path]:d.Phone.valueHints,[this.propertyNames.state.$path]:m.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.userId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.deliveryBoxId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.zipCode.$path]:h.ZipCode.renderHints,[this.propertyNames.city.$path]:p.City.renderHints,[this.propertyNames.country.$path]:y.Country.renderHints,[this.propertyNames.phoneNumber.$path]:d.Phone.renderHints,[this.propertyNames.state.$path]:m.State.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.userId}`),this.phoneNumber&&e.push(this.phoneNumber.toString()),e.push(`${this.deliveryBoxId}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=l.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}};v.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],v.prototype,"userId",void 0),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],v.prototype,"deliveryBoxId",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",h.ZipCode)],v.prototype,"zipCode",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.City)],v.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",y.Country)],v.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",d.Phone)],v.prototype,"phoneNumber",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",m.State)],v.prototype,"state",void 0),v=n([(0,o.type)("DeliveryBoxAddress")],v),t.DeliveryBoxAddress=v},7036:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HouseNumber=void 0;const i=r(194),a=r(6550);let o=class HouseNumber extends a.AbstractString{};o=n([(0,i.type)("HouseNumber")],o),t.HouseNumber=o},8542:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.PostOfficeBoxAddress=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(341),u=r(3711),d=r(3149),f=r(4967),p=r(9042),y=r(699),m=r(7474);let h=class PostOfficeBoxAddress extends d.AbstractAddress{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.boxId.$path]:u.ValueHints.from({}),[this.propertyNames.zipCode.$path]:m.ZipCode.valueHints,[this.propertyNames.city.$path]:f.City.valueHints,[this.propertyNames.country.$path]:p.Country.valueHints,[this.propertyNames.state.$path]:y.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.boxId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.zipCode.$path]:m.ZipCode.renderHints,[this.propertyNames.city.$path]:f.City.renderHints,[this.propertyNames.country.$path]:p.Country.renderHints,[this.propertyNames.state.$path]:y.State.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.boxId}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=l.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}};h.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],h.prototype,"boxId",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",m.ZipCode)],h.prototype,"zipCode",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.City)],h.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.Country)],h.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",y.State)],h.prototype,"state",void 0),h=n([(0,o.type)("PostOfficeBoxAddress")],h),t.PostOfficeBoxAddress=h},699:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.State=void 0;const i=r(194),a=r(6550);let o=class State extends a.AbstractString{};o=n([(0,i.type)("State")],o),t.State=o},8098:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Street=void 0;const i=r(194),a=r(6550);let o=class Street extends a.AbstractString{};o=n([(0,i.type)("Street")],o),t.Street=o},7584:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.StreetAddress=void 0;const a=r(194),o=r(9524),s=r(4183),c=r(341),l=r(3149),u=r(4967),d=r(9042),f=r(7036),p=r(699),y=r(8098),m=r(7474);let h=class StreetAddress extends l.AbstractAddress{static from(e){return this.fromAny(e)}static get valueHints(){return super.valueHints.copyWith({propertyHints:{[this.propertyNames.street.$path]:y.Street.valueHints,[this.propertyNames.houseNo.$path]:f.HouseNumber.valueHints,[this.propertyNames.zipCode.$path]:m.ZipCode.valueHints,[this.propertyNames.city.$path]:u.City.valueHints,[this.propertyNames.country.$path]:d.Country.valueHints,[this.propertyNames.state.$path]:p.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.street.$path]:y.Street.renderHints,[this.propertyNames.houseNo.$path]:f.HouseNumber.renderHints,[this.propertyNames.zipCode.$path]:m.ZipCode.renderHints,[this.propertyNames.city.$path]:u.City.renderHints,[this.propertyNames.country.$path]:d.Country.renderHints,[this.propertyNames.state.$path]:p.State.renderHints}})}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.street} ${this.houseNo}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=c.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}};h.propertyNames=(0,o.nameOf)(),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",y.Street)],h.prototype,"street",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",f.HouseNumber)],h.prototype,"houseNo",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",m.ZipCode)],h.prototype,"zipCode",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",u.City)],h.prototype,"city",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",d.Country)],h.prototype,"country",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)({nullable:!0}),i("design:type",p.State)],h.prototype,"state",void 0),h=n([(0,a.type)("StreetAddress")],h),t.StreetAddress=h},7474:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.ZipCode=void 0;const i=r(194),a=r(6550);let o=class ZipCode extends a.AbstractString{};o=n([(0,i.type)("ZipCode")],o),t.ZipCode=o},1649:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(3149),t),i(r(4967),t),i(r(9042),t),i(r(9498),t),i(r(7036),t),i(r(8542),t),i(r(699),t),i(r(8098),t),i(r(7584),t),i(r(7474),t)},6185:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthCity=void 0;const i=r(194),a=r(4967);let o=class BirthCity extends a.City{};o=n([(0,i.type)("BirthCity")],o),t.BirthCity=o},4945:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthCountry=void 0;const i=r(194),a=r(9042);let o=class BirthCountry extends a.Country{};o=n([(0,i.type)("BirthCountry")],o),t.BirthCountry=o},4472:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthDate=void 0;const o=r(194),s=a(r(9524)),c=r(9490),l=r(4183),u=r(2861),d=r(3711),f=r(386),p=r(5772),y=r(7438);let m=class BirthDate extends u.AbstractComplexValue{static get valueHints(){return d.ValueHints.from({propertyHints:{[this.propertyNames.day.$path]:f.BirthDay.valueHints,[this.propertyNames.month.$path]:p.BirthMonth.valueHints,[this.propertyNames.year.$path]:y.BirthYear.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.day.$path]:f.BirthDay.renderHints,[this.propertyNames.month.$path]:p.BirthMonth.renderHints,[this.propertyNames.year.$path]:y.BirthYear.renderHints}})}static from(e){return this.fromAny(e)}toString(){return c.DateTime.fromObject({day:this.day.value,month:this.month.value,year:this.year.value}).toFormat("yyyy-MM-dd")}};m.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.BirthDay)],m.prototype,"day",void 0),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.BirthMonth)],m.prototype,"month",void 0),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",y.BirthYear)],m.prototype,"year",void 0),m=n([(0,o.type)("BirthDate")],m),t.BirthDate=m},386:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthDay=void 0;const i=r(194),a=r(4544);let o=class BirthDay extends a.AbstractDay{};o=n([(0,i.type)("BirthDay")],o),t.BirthDay=o},5772:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthMonth=void 0;const i=r(194),a=r(673);let o=class BirthMonth extends a.AbstractMonth{static get valueHints(){return super.valueHints.copyWith({editHelp:"i18n://yourBirthMonth"})}};o=n([(0,i.type)("BirthMonth")],o),t.BirthMonth=o},1538:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthPlace=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(2861),u=r(3711),d=r(6185),f=r(4945),p=r(6140);let y=class BirthPlace extends l.AbstractComplexValue{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.city.$path]:d.BirthCity.valueHints,[this.propertyNames.country.$path]:f.BirthCountry.valueHints,[this.propertyNames.state.$path]:p.BirthState.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.city.$path]:d.BirthCity.renderHints,[this.propertyNames.country.$path]:f.BirthCountry.renderHints,[this.propertyNames.state.$path]:p.BirthState.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[this.city.toString()];return this.state&&e.push(this.state.toString()),e.push(this.country.toString()),e.join(", ")}};y.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",d.BirthCity)],y.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.BirthCountry)],y.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.BirthState)],y.prototype,"state",void 0),y=n([(0,o.type)("BirthPlace")],y),t.BirthPlace=y},6140:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthState=void 0;const i=r(194),a=r(699);let o=class BirthState extends a.State{};o=n([(0,i.type)("BirthState")],o),t.BirthState=o},7438:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthYear=void 0;const i=r(194),a=r(3652);let o=class BirthYear extends a.AbstractYear{};o=n([(0,i.type)("BirthYear")],o),t.BirthYear=o},4947:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6185),t),i(r(4945),t),i(r(4472),t),i(r(386),t),i(r(5772),t),i(r(1538),t),i(r(6140),t),i(r(7438),t)},8798:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.CommunicationLanguage=void 0;const i=r(194),a=r(6485);let o=class CommunicationLanguage extends a.AbstractLanguage{};o=n([(0,i.type)("CommunicationLanguage")],o),t.CommunicationLanguage=o},1170:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.EMailAddress=void 0;const i=r(194),a=r(4832);let o=class EMailAddress extends a.AbstractEMailAddress{};o=n([(0,i.type)("EMailAddress")],o),t.EMailAddress=o},806:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Fax=void 0;const i=r(194),a=r(4118);let o=class Fax extends a.AbstractPhoneNumber{};o=n([(0,i.type)("Fax")],o),t.Fax=o},3944:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Phone=void 0;const i=r(194),a=r(4118);let o=class Phone extends a.AbstractPhoneNumber{};o=n([(0,i.type)("Phone")],o),t.Phone=o},3841:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Website=void 0;const i=r(194),a=r(9702);let o=class Website extends a.AbstractURL{};o=n([(0,i.type)("Website")],o),t.Website=o},5305:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8798),t),i(r(1170),t),i(r(806),t),i(r(3944),t),i(r(3841),t)},865:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractDateString=void 0;const a=r(194),o=r(9490),s=r(3711),c=r(6550);class AbstractDateString extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:10,max:10})}static get renderHints(){return super.renderHints.copyWith({editType:s.RenderHintsEditType.SelectLike,dataType:s.RenderHintsDataType.Date})}}AbstractDateString.format="yyyy-MM-dd",n([(0,a.serialize)(),(0,a.validate)({min:10,max:10,customValidator:e=>o.DateTime.fromFormat(e,AbstractDateString.format).isValid?void 0:`must match the following format: '${AbstractDateString.format}'`}),i("design:type",String)],AbstractDateString.prototype,"value",void 0),t.AbstractDateString=AbstractDateString},4544:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractDay=void 0;const a=r(194),o=r(3711),s=r(6591);class AbstractDay extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:31})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Day})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e<1||e>31||!Number.isInteger(e)?"must be an integer value between 1 and 31":void 0}),i("design:type",Number)],AbstractDay.prototype,"value",void 0),t.AbstractDay=AbstractDay},673:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractMonth=void 0;const a=r(194),o=r(3711),s=r(6591);var c;!function(e){e[e.January=1]="January",e[e.February=2]="February",e[e.March=3]="March",e[e.April=4]="April",e[e.May=5]="May",e[e.June=6]="June",e[e.July=7]="July",e[e.August=8]="August",e[e.September=9]="September",e[e.October=10]="October",e[e.November=11]="November",e[e.December=12]="December"}(c||(c={}));class AbstractMonth extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:12})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Month})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>c[e]&&Number.isInteger(e)?void 0:`must be an integer value between ${c.January} and ${c.December}`}),i("design:type",Number)],AbstractMonth.prototype,"value",void 0),t.AbstractMonth=AbstractMonth},3652:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractYear=void 0;const a=r(194),o=r(3711),s=r(6591);class AbstractYear extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:9999})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Year})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e<1||e>9999||!Number.isInteger(e)?"must be an integer value between 1 and 9999":void 0}),i("design:type",Number)],AbstractYear.prototype,"value",void 0),t.AbstractYear=AbstractYear},7465:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(865),t),i(r(4544),t),i(r(673),t),i(r(3652),t)},9668:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.FileReference=void 0;const i=r(194),a=r(9702);let o=class FileReference extends a.AbstractFileReference{};o=n([(0,i.type)("FileReference")],o),t.FileReference=o},9982:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(9668),t)},3383:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4992),t),i(r(36),t),i(r(6591),t),i(r(6550),t),i(r(1649),t),i(r(9418),t),i(r(8402),t),i(r(4947),t),i(r(5305),t),i(r(7465),t),i(r(9982),t),i(r(1348),t),i(r(8867),t),i(r(9438),t),i(r(8756),t),i(r(9702),t)},4704:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractLengthMeasurement=t.LengthUnit=void 0;const a=r(194),o=r(3711),s=r(5485);var c;!function(e){e.NM="nm",e.UM="um",e.MM="mm",e.CM="cm",e.DM="dm",e.M="m",e.KM="km",e.MI="mi",e.YD="yd",e.FT="ft",e.SM="sm",e.IN="in"}(c=t.LengthUnit||(t.LengthUnit={}));class AbstractLengthMeasurement extends s.AbstractMeasurement{static get valueHints(){return super.valueHints.copyWith({propertyHints:{[this.propertyNames.unit.$path]:o.ValueHints.from({values:Object.entries(c).map((e=>o.ValueHintsValue.from({displayName:e[1],key:e[0]})))})}})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c).includes(e)?void 0:`must be one of: ${Object.values(c)}`}),i("design:type",String)],AbstractLengthMeasurement.prototype,"unit",void 0),t.AbstractLengthMeasurement=AbstractLengthMeasurement},5485:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractMeasurement=void 0;const o=r(194),s=a(r(9524)),c=r(2861),l=r(3711);class AbstractMeasurement extends c.AbstractComplexValue{static get valueHints(){return l.ValueHints.from({propertyHints:{[this.propertyNames.unit.$path]:l.ValueHints.from({}),[this.propertyNames.value.$path]:l.ValueHints.from({})}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.unit.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.String}),[this.propertyNames.value.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.Integer})}})}toString(){return`${this.value} ${this.unit}`}}AbstractMeasurement.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],AbstractMeasurement.prototype,"unit",void 0),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",Number)],AbstractMeasurement.prototype,"value",void 0),t.AbstractMeasurement=AbstractMeasurement},1348:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4704),t),i(r(5485),t)},349:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.LegalName=void 0;const n=r(2861);class LegalName extends n.AbstractComplexValue{}t.LegalName=LegalName},90:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthName=void 0;const i=r(194),a=r(6550);let o=class BirthName extends a.AbstractString{};o=n([(0,i.type)("BirthName")],o),t.BirthName=o},9460:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.DisplayName=void 0;const i=r(194),a=r(6550);let o=class DisplayName extends a.AbstractString{};o=n([(0,i.type)("DisplayName")],o),t.DisplayName=o},5642:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.GivenName=void 0;const i=r(194),a=r(6550);let o=class GivenName extends a.AbstractString{};o=n([(0,i.type)("GivenName")],o),t.GivenName=o},394:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HonorificPrefix=void 0;const i=r(194),a=r(6550);let o=class HonorificPrefix extends a.AbstractString{};o=n([(0,i.type)("HonorificPrefix")],o),t.HonorificPrefix=o},3357:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HonorificSuffix=void 0;const i=r(194),a=r(6550);let o=class HonorificSuffix extends a.AbstractString{};o=n([(0,i.type)("HonorificSuffix")],o),t.HonorificSuffix=o},5553:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.LegalNameDE=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(3711),u=r(349),d=r(90),f=r(5642),p=r(394),y=r(2877),m=r(2234);let h=class LegalNameDE extends u.LegalName{static get valueHints(){return l.ValueHints.from({propertyHints:{[this.propertyNames.surname.$path]:m.Surname.valueHints,[this.propertyNames.givenNames.$path]:f.GivenName.valueHints,[this.propertyNames.birthName.$path]:d.BirthName.valueHints,[this.propertyNames.pseudonym.$path]:y.Pseudonym.valueHints,[this.propertyNames.honorificPrefix.$path]:p.HonorificPrefix.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.surname.$path]:m.Surname.renderHints,[this.propertyNames.givenNames.$path]:f.GivenName.renderHints,[this.propertyNames.birthName.$path]:d.BirthName.renderHints,[this.propertyNames.pseudonym.$path]:y.Pseudonym.renderHints,[this.propertyNames.honorificPrefix.$path]:p.HonorificPrefix.renderHints}})}toString(){const e=[];return this.honorificPrefix&&e.push(this.honorificPrefix.toString()),e.push(this.givenNames.join(" ")),e.push(this.surname.toString()),this.pseudonym&&e.push(`aka "${this.pseudonym}"`),e.join(" ")}};h.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",m.Surname)],h.prototype,"surname",void 0),n([(0,o.serialize)({type:f.GivenName,customGenerator:c.AbstractAttributeValue.valueArrayGenerator}),(0,o.validate)(),i("design:type",Array)],h.prototype,"givenNames",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",d.BirthName)],h.prototype,"birthName",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",y.Pseudonym)],h.prototype,"pseudonym",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.HonorificPrefix)],h.prototype,"honorificPrefix",void 0),h=n([(0,o.type)("LegalNameDE")],h),t.LegalNameDE=h},2877:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Pseudonym=void 0;const i=r(194),a=r(6550);let o=class Pseudonym extends a.AbstractString{};o=n([(0,i.type)("Pseudonym")],o),t.Pseudonym=o},5227:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Salutation=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(2861),u=r(3711),d=r(9460),f=r(5642),p=r(394),y=r(3357),m=r(2234);let h=class Salutation extends l.AbstractComplexValue{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.displayName.$path]:d.DisplayName.valueHints,[this.propertyNames.givenNames.$path]:f.GivenName.valueHints,[this.propertyNames.surname.$path]:m.Surname.valueHints,[this.propertyNames.honorificSuffix.$path]:y.HonorificSuffix.valueHints,[this.propertyNames.honorificPrefix.$path]:p.HonorificPrefix.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.displayName.$path]:d.DisplayName.renderHints,[this.propertyNames.givenNames.$path]:f.GivenName.renderHints,[this.propertyNames.surname.$path]:m.Surname.renderHints,[this.propertyNames.honorificSuffix.$path]:y.HonorificSuffix.renderHints,[this.propertyNames.honorificPrefix.$path]:p.HonorificPrefix.renderHints}})}static from(e){return this.fromAny(e)}toString(){return this.displayName.toString()}};h.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",d.DisplayName)],h.prototype,"displayName",void 0),n([(0,o.serialize)({type:f.GivenName,customGenerator:c.AbstractAttributeValue.valueArrayGenerator}),(0,o.validate)({nullable:!0}),i("design:type",Array)],h.prototype,"givenNames",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",m.Surname)],h.prototype,"surname",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",y.HonorificSuffix)],h.prototype,"honorificSuffix",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.HonorificPrefix)],h.prototype,"honorificPrefix",void 0),h=n([(0,o.type)("Salutation")],h),t.Salutation=h},2234:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Surname=void 0;const i=r(194),a=r(6550);let o=class Surname extends a.AbstractString{};o=n([(0,i.type)("Surname")],o),t.Surname=o},8867:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(349),t),i(r(90),t),i(r(9460),t),i(r(5642),t),i(r(394),t),i(r(3357),t),i(r(5553),t),i(r(2877),t),i(r(5227),t),i(r(2234),t)},6351:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Age=void 0;const a=r(194),o=r(6591);let s=class Age extends o.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:0,max:151})}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e<0||e>150||!Number.isInteger(e)?"must be an integer value between 0 and 150":void 0}),i("design:type",Number)],s.prototype,"value",void 0),s=n([(0,a.type)("Age")],s),t.Age=s},7806:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Citizenship=void 0;const i=r(194),a=r(6838);let o=class Citizenship extends a.AbstractCountry{};o=n([(0,i.type)("Citizenship")],o),t.Citizenship=o},9999:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Nationality=void 0;const i=r(194),a=r(6838);let o=class Nationality extends a.AbstractCountry{};o=n([(0,i.type)("Nationality")],o),t.Nationality=o},118:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Picture=void 0;const i=r(194),a=r(9957);let o=class Picture extends a.AbstractDataURL{};o=n([(0,i.type)("Picture")],o),t.Picture=o},6735:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Sex=t.BiologicalSex=void 0;const a=r(194),o=r(3711),s=r(6550);var c;!function(e){e.M="male",e.F="female",e.X="intersex"}(c=t.BiologicalSex||(t.BiologicalSex={}));let l=class Sex extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({values:Object.values(c).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.sex.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.ButtonLike})}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c).includes(e)?void 0:`must be one of: ${Object.values(c)}`}),i("design:type",String)],l.prototype,"value",void 0),l=n([(0,a.type)("Sex")],l),t.Sex=l},9438:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6351),t),i(r(7806),t),i(r(9999),t),i(r(118),t),i(r(6735),t)},6499:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryBoolean=void 0;const a=r(194),o=r(4992);let s=class ProprietaryBoolean extends o.AbstractBoolean{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryBoolean")],s),t.ProprietaryBoolean=s},3447:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryCountry=void 0;const a=r(194),o=r(6838);let s=class ProprietaryCountry extends o.AbstractCountry{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryCountry")],s),t.ProprietaryCountry=s},7556:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryDataURL=void 0;const a=r(194),o=r(9957);let s=class ProprietaryDataURL extends o.AbstractDataURL{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryDataURL")],s),t.ProprietaryDataURL=s},827:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryEMailAddress=void 0;const a=r(194),o=r(4832);let s=class ProprietaryEMailAddress extends o.AbstractEMailAddress{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryEMailAddress")],s),t.ProprietaryEMailAddress=s},6495:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryFileReference=void 0;const a=r(194),o=r(9702);let s=class ProprietaryFileReference extends o.AbstractFileReference{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryFileReference")],s),t.ProprietaryFileReference=s},2728:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryFloat=void 0;const a=r(194),o=r(36);let s=class ProprietaryFloat extends o.AbstractFloat{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryFloat")],s),t.ProprietaryFloat=s},2307:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryHEXColor=void 0;const a=r(194),o=r(3262);let s=class ProprietaryHEXColor extends o.AbstractHEXColor{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryHEXColor")],s),t.ProprietaryHEXColor=s},2804:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryInteger=void 0;const a=r(194),o=r(3711),s=r(6591);let c=class ProprietaryInteger extends s.AbstractInteger{static from(e){return this.fromAny(e)}get valueHints(){return super.valueHints.copyWith(this.valueHintsOverride?.toJSON())}get renderHints(){return super.renderHints.copyWith(this.renderHintsOverride?.toJSON())}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],c.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.ValueHintsOverride)],c.prototype,"valueHintsOverride",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.RenderHintsOverride)],c.prototype,"renderHintsOverride",void 0),c=n([(0,a.type)("ProprietaryInteger")],c),t.ProprietaryInteger=c},7503:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryLanguage=void 0;const a=r(194),o=r(6485);let s=class ProprietaryLanguage extends o.AbstractLanguage{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryLanguage")],s),t.ProprietaryLanguage=s},249:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryPhoneNumber=void 0;const a=r(194),o=r(4118);let s=class ProprietaryPhoneNumber extends o.AbstractPhoneNumber{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryPhoneNumber")],s),t.ProprietaryPhoneNumber=s},6813:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryString=void 0;const a=r(194),o=r(6550);let s=class ProprietaryString extends o.AbstractString{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryString")],s),t.ProprietaryString=s},587:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryURL=void 0;const a=r(194),o=r(7221);let s=class ProprietaryURL extends o.AbstractURL{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryURL")],s),t.ProprietaryURL=s},8756:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6499),t),i(r(3447),t),i(r(7556),t),i(r(827),t),i(r(6495),t),i(r(2728),t),i(r(2307),t),i(r(2804),t),i(r(7503),t),i(r(249),t),i(r(6813),t),i(r(587),t)},6838:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractCountry=void 0;const a=r(194),o=r(3711),s=r(4871),c=r(6550);class AbstractCountry extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:2,max:2,values:Object.values(s.CountryAlpha2).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.countries.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Country})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(s.CountryAlpha2).includes(e)?void 0:`must be one of: ${Object.values(s.CountryAlpha2)}`}),i("design:type",String)],AbstractCountry.prototype,"value",void 0),t.AbstractCountry=AbstractCountry},9957:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractDataURL=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractDataURL extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:7,max:4096})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.Upload,dataType:o.RenderHintsDataType.DataURL})}}n([(0,a.serialize)(),(0,a.validate)({min:7,max:4096,customValidator:e=>e.length>4096?"must be less than 4096 characters":void 0}),i("design:type",String)],AbstractDataURL.prototype,"value",void 0),t.AbstractDataURL=AbstractDataURL},4832:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractEMailAddress=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractEMailAddress extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:200,pattern:"/^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,}$/i"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.EMailAddress})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:200,regExp:new RegExp("^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,}$","i")}),i("design:type",String)],AbstractEMailAddress.prototype,"value",void 0),t.AbstractEMailAddress=AbstractEMailAddress},5902:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractFileReference=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractFileReference extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:30,max:100})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.FileReference})}}n([(0,a.serialize)(),(0,a.validate)({min:30,max:100}),i("design:type",String)],AbstractFileReference.prototype,"value",void 0),t.AbstractFileReference=AbstractFileReference},3262:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractHEXColor=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractHEXColor extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:4,max:9,pattern:"^#([0-9A-F]{3}){1,2}$/i"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.HEXColor})}}n([(0,a.serialize)(),(0,a.validate)({min:4,max:9,regExp:new RegExp("^#([0-9A-F]{3}){1,2}$","i")}),i("design:type",String)],AbstractHEXColor.prototype,"value",void 0),t.AbstractHEXColor=AbstractHEXColor},6485:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractLanguage=void 0;const a=r(194),o=r(3711),s=r(4473),c=r(6550);class AbstractLanguage extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:2,max:2,values:Object.values(s.LanguageISO639).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.languages.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Language})}}n([(0,a.serialize)(),(0,a.validate)({min:2,max:2,customValidator:e=>Object.values(s.LanguageISO639).includes(e)?void 0:`must be one of: ${Object.values(s.LanguageISO639)}`}),i("design:type",String)],AbstractLanguage.prototype,"value",void 0),t.AbstractLanguage=AbstractLanguage},4118:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractPhoneNumber=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractPhoneNumber extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:100,pattern:"/^[d+-x#*()/[] ]{3,100}$/"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.PhoneNumber})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:100,regExp:new RegExp(/^[\d+\-x#*()/[\] ]{3,100}$/)}),i("design:type",String)],AbstractPhoneNumber.prototype,"value",void 0),t.AbstractPhoneNumber=AbstractPhoneNumber},7221:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractURL=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractURL extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:1024})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.URL})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:1024,regExp:new RegExp(/^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-_]*)?\??(?:[\-\+=&;%@\.\w_]*)#?(?:[\.\!\/\\\w]*))?)$/i)}),i("design:type",String)],AbstractURL.prototype,"value",void 0),t.AbstractURL=AbstractURL},9702:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6838),t),i(r(9957),t),i(r(4832),t),i(r(5902),t),i(r(3262),t),i(r(6485),t),i(r(4118),t),i(r(7221),t)},2500:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.buildInformation=void 0;const n=r(194),i=r(2890),a=r(9663);t.buildInformation={version:"2.0.0-beta.8",build:"85",date:"2022-08-05T08:33:21+00:00",commit:"1b86a9190b9cd07be27b4213834b574164620960",dependencies:{"@js-soft/logging-abstractions":"^1.0.0","easy-tsnameof":"^3.0.6"},libraries:{serval:n.buildInformation,crypto:i.buildInformation,transport:a.buildInformation}}},4198:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Form=void 0;const a=r(194),o=r(3331);let s=class Form extends a.Serializable{};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),n([(0,a.serialize)({type:o.FormItem}),(0,a.validate)(),i("design:type",Array)],s.prototype,"items",void 0),s=n([(0,a.type)("Form")],s),t.Form=s},3331:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemVisible=t.FormItem=t.FormType=void 0;const a=r(194);!function(e){e.Invisible="invisible",e.String="string",e.Select="select",e.Date="date",e.Text="text"}(t.FormType||(t.FormType={}));class FormItem extends a.Serializable{}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],FormItem.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],FormItem.prototype,"type",void 0),t.FormItem=FormItem;class FormItemVisible extends FormItem{}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],FormItemVisible.prototype,"label",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],FormItemVisible.prototype,"readonly",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],FormItemVisible.prototype,"help",void 0),t.FormItemVisible=FormItemVisible},6985:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4198),t),i(r(3331),t),i(r(2644),t),i(r(1488),t),i(r(3717),t),i(r(4106),t),i(r(6440),t),i(r(897),t)},2644:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemDate=void 0;const a=r(194),o=r(3331);let s=class FormItemDate extends o.FormItemVisible{};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"placeholder",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"minDate",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"maxDate",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"duration",void 0),s=n([(0,a.type)("FormItemDate")],s),t.FormItemDate=s},1488:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemInvisible=void 0;const a=r(194),o=r(3331);let s=class FormItemInvisible extends o.FormItem{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"value",void 0),s=n([(0,a.type)("FormItemInvisible")],s),t.FormItemInvisible=s},3717:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemSelect=void 0;const a=r(194),o=r(3331),s=r(4106);let c=class FormItemSelect extends o.FormItemVisible{};n([(0,a.serialize)({type:s.FormItemSelectItem}),(0,a.validate)(),i("design:type",Array)],c.prototype,"items",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"selectedKey",void 0),c=n([(0,a.type)("FormItemSelect")],c),t.FormItemSelect=c},4106:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemSelectItem=void 0;const a=r(194);let o=class FormItemSelectItem extends a.Serializable{};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],o.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],o.prototype,"label",void 0),o=n([(0,a.type)("FormItemSelectItem")],o),t.FormItemSelectItem=o},6440:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemString=void 0;const a=r(194),o=r(3331);let s=class FormItemString extends o.FormItemVisible{};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"placeholder",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Number)],s.prototype,"minLength",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Number)],s.prototype,"maxLength",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"allowedRegex",void 0),s=n([(0,a.type)("FormItemString")],s),t.FormItemString=s},897:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.FormItemText=void 0;const a=r(194),o=r(3331);let s=class FormItemText extends o.FormItemVisible{};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"placeholder",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Number)],s.prototype,"minLength",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Number)],s.prototype,"maxLength",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"allowedRegex",void 0),s=n([(0,a.type)("FormItemText")],s),t.FormItemText=s},5590:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(3700),t),i(r(2500),t),i(r(8564),t),i(r(6985),t),i(r(7502),t),i(r(127),t),i(r(6795),t),i(r(3757),t)},7502:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Mail=void 0;const a=r(194),o=r(9663);let s=class Mail extends a.Serializable{static preFrom(e){return void 0===e.cc&&(e.cc=[]),void 0===e.body&&e.content&&(e.body=e.content,delete e.content),e}static from(e){return this.fromAny(e)}static fromJSON(e){return this.from({body:e.body,subject:e.subject,to:e.to?.map((e=>o.CoreAddress.from(e))),cc:e.cc?.map((e=>o.CoreAddress.from(e)))})}};n([(0,a.serialize)({type:o.CoreAddress}),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"to",void 0),n([(0,a.serialize)({type:o.CoreAddress}),(0,a.validate)({nullable:!0}),i("design:type",Array)],s.prototype,"cc",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"subject",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"body",void 0),s=n([(0,a.type)("Mail")],s),t.Mail=s},127:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RequestMail=void 0;const a=r(194),o=r(9906),s=r(7797),c=r(7502);let l=class RequestMail extends c.Mail{static from(e){return this.fromAny(e)}static fromJSON(e){const t=c.Mail.fromJSON(e),r=e.requests.map((e=>{switch(e["@type"]){case"AttributesChangeRequest":return o.AttributesChangeRequest.fromAny(e);case"AttributesShareRequest":return s.AttributesShareRequest.fromAny(e);default:throw new Error(`Unknown request type: ${e["@type"]}`)}}));return this.from({body:t.body,subject:t.subject,to:t.to,cc:t.cc,requests:r})}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Array)],l.prototype,"requests",void 0),l=n([(0,a.type)("RequestMail")],l),t.RequestMail=l},2260:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipCreationChangeRequestBody=void 0;const a=r(194),o=r(6460);let s=class RelationshipCreationChangeRequestBody extends a.Serializable{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"templateContentMetadata",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.Response)],s.prototype,"response",void 0),s=n([(0,a.type)("RelationshipCreationChangeRequestBody")],s),t.RelationshipCreationChangeRequestBody=s},7451:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipTemplateBody=void 0;const a=r(194),o=r(9016);let s=class RelationshipTemplateBody extends a.Serializable{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"metadata",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.Request)],s.prototype,"onNewRelationship",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.Request)],s.prototype,"onExistingRelationship",void 0),s=n([(0,a.type)("RelationshipTemplateBody")],s),t.RelationshipTemplateBody=s},6795:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(2260),t),i(r(7451),t)},9016:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Request=void 0;const a=r(194),o=r(9663);let s=class Request extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreId)],s.prototype,"id",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"expiresAt",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"items",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"metadata",void 0),s=n([(0,a.type)("Request")],s),t.Request=s},705:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RequestItem=void 0;const a=r(194);class RequestItem extends a.Serializable{toJSON(){return super.toJSON()}}n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],RequestItem.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],RequestItem.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Boolean)],RequestItem.prototype,"mustBeAccepted",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],RequestItem.prototype,"metadata",void 0),t.RequestItem=RequestItem},5135:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RequestItemGroup=void 0;const o=r(194),s=r(4714);let c=n=class RequestItemGroup extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");if(e.mustBeAccepted&&e.items.every((e=>!e.mustBeAccepted)))throw new o.ValidationError(n.name,(0,s.nameof)((e=>e.mustBeAccepted)),`${(0,s.nameof)((e=>e.mustBeAccepted))} can only be true if at least one item is flagged as ${(0,s.nameof)((e=>e.mustBeAccepted))}`);return e}toJSON(){return super.toJSON()}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"title",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"description",void 0),i([(0,o.serialize)(),(0,o.validate)(),a("design:type",Boolean)],c.prototype,"mustBeAccepted",void 0),i([(0,o.serialize)(),(0,o.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),a("design:type",Array)],c.prototype,"items",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"metadata",void 0),c=n=i([(0,o.type)("RequestItemGroup")],c),t.RequestItemGroup=c},3757:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8303),t),i(r(9906),t),i(r(4288),t),i(r(7797),t),i(r(9016),t),i(r(705),t),i(r(5135),t),i(r(1764),t)},5386:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ConsentRequestItem=void 0;const a=r(194),o=r(705);class ConsentRequestItem extends o.RequestItem{static from(e){return this.fromAny(e)}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],ConsentRequestItem.prototype,"consent",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],ConsentRequestItem.prototype,"link",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],ConsentRequestItem.prototype,"requireActiveConsent",void 0),t.ConsentRequestItem=ConsentRequestItem},9442:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.CreateOwnRelationshipAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(1764);let c=class CreateOwnRelationshipAttributeAcceptResponseItem extends s.AcceptResponseItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],c.prototype,"attributeId",void 0),c=n([(0,a.type)("CreateOwnRelationshipAttributeAcceptResponseItem")],c),t.CreateOwnRelationshipAttributeAcceptResponseItem=c},7536:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.CreateOwnRelationshipAttributeRequestItem=void 0;const a=r(194),o=r(3700),s=r(705);let c=class CreateOwnRelationshipAttributeRequestItem extends s.RequestItem{static from(e){return this.fromAny(e)}};n([(0,a.validate)(),i("design:type",o.RelationshipAttribute)],c.prototype,"attribute",void 0),c=n([(0,a.type)("CreateOwnRelationshipAttributeRequestItem")],c),t.CreateOwnRelationshipAttributeRequestItem=c},8303:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(5386),t),i(r(9442),t),i(r(7536),t),i(r(9065),t),i(r(1278),t),i(r(1977),t),i(r(9296),t),i(r(4639),t),i(r(5729),t)},9065:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProposeAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(1764);let l=class ProposeAttributeAcceptResponseItem extends c.AcceptResponseItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"attributeId",void 0),n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),l=n([(0,a.type)("ProposeAttributeAcceptResponseItem")],l),t.ProposeAttributeAcceptResponseItem=l},1278:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProposeAttributeRequestItem=void 0;const o=r(194),s=r(4714),c=r(3700),l=r(705);let u=n=class ProposeAttributeRequestItem extends l.RequestItem{static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");const t=e.attribute.value.toJSON()["@type"],r=e.query.valueType;if(t!==r)throw new o.ValidationError(n.name,`${(0,s.nameof)((e=>e.query))}.${(0,s.nameof)((e=>e.valueType))}`,`You cannot propose an Attribute whose type of the value ('${t}') is different from the value type of the query ('${r}').`);if(e.attribute instanceof c.RelationshipAttribute&&!(e.query instanceof c.RelationshipAttributeQuery))throw new o.ValidationError(n.name,"","When proposing a RelationshipAttribute, the corresponding query has to be a RelationshipAttributeQuery.");if(e.attribute instanceof c.IdentityAttribute&&!(e.query instanceof c.IdentityAttributeQuery))throw new o.ValidationError(n.name,"","When proposing an IdentityAttribute, the corresponding query has to be a IdentityAttributeQuery.");return e}};i([(0,o.serialize)({unionTypes:[c.IdentityAttributeQuery,c.RelationshipAttributeQuery]}),(0,o.validate)(),a("design:type",Object)],u.prototype,"query",void 0),i([(0,o.serialize)({unionTypes:[c.IdentityAttribute,c.RelationshipAttribute]}),(0,o.validate)(),a("design:type",Object)],u.prototype,"attribute",void 0),u=n=i([(0,o.type)("ProposeAttributeRequestItem")],u),t.ProposeAttributeRequestItem=u},1977:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ReadAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(1764);let l=class ReadAttributeAcceptResponseItem extends c.AcceptResponseItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"attributeId",void 0),n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),l=n([(0,a.type)("ReadAttributeAcceptResponseItem")],l),t.ReadAttributeAcceptResponseItem=l},9296:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ReadAttributeRequestItem=void 0;const a=r(194),o=r(5282),s=r(705);let c=class ReadAttributeRequestItem extends s.RequestItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.AbstractAttributeQuery)],c.prototype,"query",void 0),c=n([(0,a.type)("ReadAttributeRequestItem")],c),t.ReadAttributeRequestItem=c},4639:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(1764);let c=class ShareAttributeAcceptResponseItem extends s.AcceptResponseItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],c.prototype,"attributeId",void 0),c=n([(0,a.type)("ShareAttributeAcceptResponseItem")],c),t.ShareAttributeAcceptResponseItem=c},5729:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareAttributeRequestItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(705);let l=class ShareAttributeRequestItem extends c.RequestItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"sourceAttributeId",void 0),l=n([(0,a.type)("ShareAttributeRequestItem")],l),t.ShareAttributeRequestItem=l},9906:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AttributesChangeRequest=void 0;const a=r(194),o=r(9663),s=r(6652);let c=class AttributesChangeRequest extends a.Serializable{static from(e){return this.fromAny(e)}static fromJSON(e){const t=e.attributes.map((e=>s.Attribute.fromJSON(e)));return this.from({id:e.id?o.CoreId.from(e.id):void 0,attributes:t,applyTo:e.applyTo?o.CoreAddress.from(e.applyTo):void 0,expiresAt:e.expiresAt?o.CoreDate.from(e.expiresAt):void 0,key:e.key,reason:e.reason})}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreId)],c.prototype,"id",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"reason",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],c.prototype,"expiresAt",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"impact",void 0),n([(0,a.serialize)({type:s.Attribute}),(0,a.validate)(),i("design:type",Array)],c.prototype,"attributes",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreAddress)],c.prototype,"applyTo",void 0),c=n([(0,a.type)("AttributesChangeRequest")],c),t.AttributesChangeRequest=c},4288:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AttributesRequest=void 0;const a=r(194),o=r(9663);let s=class AttributesRequest extends a.Serializable{static from(e){return this.fromAny(e)}static fromJSON(e){return this.from({id:e.id?o.CoreId.from(e.id):void 0,expiresAt:e.expiresAt?o.CoreDate.from(e.expiresAt):void 0,key:e.key,reason:e.reason,names:e.names,required:e.required})}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreId)],s.prototype,"id",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"reason",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"expiresAt",void 0),n([(0,a.serialize)({type:String}),(0,a.validate)(),i("design:type",Array)],s.prototype,"names",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],s.prototype,"required",void 0),s=n([(0,a.type)("AttributesRequest")],s),t.AttributesRequest=s},7797:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AttributesShareRequest=void 0;const a=r(194),o=r(9663);let s=class AttributesShareRequest extends a.Serializable{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreId)],s.prototype,"id",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"reason",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"expiresAt",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"impact",void 0),n([(0,a.serialize)({type:String}),(0,a.validate)(),i("design:type",Array)],s.prototype,"attributes",void 0),n([(0,a.serialize)({type:o.CoreAddress}),(0,a.validate)(),i("design:type",Array)],s.prototype,"recipients",void 0),s=n([(0,a.type)("AttributesShareRequest")],s),t.AttributesShareRequest=s},9019:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AcceptResponseItem=void 0;const i=r(194),a=r(6990);let o=class AcceptResponseItem extends a.ResponseItem{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};o=n([(0,i.type)("AcceptResponseItem")],o),t.AcceptResponseItem=o},6187:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorResponseItem=void 0;const a=r(194),o=r(6990);let s=class ErrorResponseItem extends o.ResponseItem{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"code",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"message",void 0),s=n([(0,a.type)("ErrorResponseItem")],s),t.ErrorResponseItem=s},3985:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RejectResponseItem=void 0;const a=r(194),o=r(6990);let s=class RejectResponseItem extends o.ResponseItem{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"code",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"message",void 0),s=n([(0,a.type)("RejectResponseItem")],s),t.RejectResponseItem=s},6460:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Response=t.ResponseResult=void 0;const a=r(194),o=r(9663);!function(e){e.Accepted="Accepted",e.Rejected="Rejected"}(t.ResponseResult||(t.ResponseResult={}));let s=class Response extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"result",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],s.prototype,"requestId",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"items",void 0),s=n([(0,a.type)("Response")],s),t.Response=s},6990:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItem=void 0;const a=r(194);r(6167);class ResponseItem extends a.Serializable{toJSON(){return super.toJSON()}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],ResponseItem.prototype,"result",void 0),t.ResponseItem=ResponseItem},5509:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItemGroup=void 0;const a=r(194);let o=class ResponseItemGroup extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(){return super.toJSON()}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],o.prototype,"items",void 0),o=n([(0,a.type)("ResponseItemGroup")],o),t.ResponseItemGroup=o},6167:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItemResult=void 0,function(e){e.Accepted="Accepted",e.Rejected="Rejected",e.Failed="Error"}(t.ResponseItemResult||(t.ResponseItemResult={}))},1764:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(9019),t),i(r(6187),t),i(r(3985),t),i(r(6460),t),i(r(6990),t),i(r(5509),t),i(r(6167),t)},9524:(e,t,r)=>{var n;r.r(t),r.d(t,{default:()=>l,nameOf:()=>l});var i=function appendStringSymbolChunkToPath(e,t){return e+(""===e?t.toString():"."+t.toString())},a=function pathToString(e){return e.reduce((function(e,t){return function appendStringPathChunk(e,t){return"number"==typeof t?e+"["+t+"]":i(e,t)}(e,t)}),"")},o=((n={$path:function $path(e){return a(e)},$rawPath:function $rawPath(e){return e},toString:function toString(e){return function(){return a(e)}}})[Symbol.toStringTag]=function(e){return a(e)},n.valueOf=function valueOf(e){return function(){return a(e)}},n),s=function convertNumericKeyToNumber(e){if("string"==typeof e){var t=+e;if(t==t)return t}return e},c={},l=function nameOf(e,t){if(void 0===t&&(t=[]),"string"==typeof e)return e;var r=new Proxy(c,{get:function get(e,r){var n=function getHandlerByNameKey(e){if(o[e])return o[e]}(r);return n?n(t):nameOf(void 0,[].concat(t,[s(r)]))}});return"function"==typeof e?e(r).$path:r}},9490:(e,t)=>{function _defineProperties(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function _createClass(e,t,r){return t&&_defineProperties(e.prototype,t),r&&_defineProperties(e,r),e}function _extends(){return _extends=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},_extends.apply(this,arguments)}function _inheritsLoose(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,_setPrototypeOf(e,t)}function _getPrototypeOf(e){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(e){return e.__proto__||Object.getPrototypeOf(e)},_getPrototypeOf(e)}function _setPrototypeOf(e,t){return _setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(e,t){return e.__proto__=t,e},_setPrototypeOf(e,t)}function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function _construct(e,t,r){return _construct=_isNativeReflectConstruct()?Reflect.construct:function _construct(e,t,r){var n=[null];n.push.apply(n,t);var i=new(Function.bind.apply(e,n));return r&&_setPrototypeOf(i,r.prototype),i},_construct.apply(null,arguments)}function _wrapNativeSuper(e){var t="function"==typeof Map?new Map:void 0;return _wrapNativeSuper=function _wrapNativeSuper(e){if(null===e||!function _isNativeFunction(e){return-1!==Function.toString.call(e).indexOf("[native code]")}(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,Wrapper)}function Wrapper(){return _construct(e,arguments,_getPrototypeOf(this).constructor)}return Wrapper.prototype=Object.create(e.prototype,{constructor:{value:Wrapper,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(Wrapper,e)},_wrapNativeSuper(e)}function _objectWithoutPropertiesLoose(e,t){if(null==e)return{};var r,n,i={},a=Object.keys(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||(i[r]=e[r]);return i}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function _createForOfIteratorHelperLoose(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(r)return(r=r.call(e)).next.bind(r);if(Array.isArray(e)||(r=function _unsupportedIterableToArray(e,t){if(e){if("string"==typeof e)return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}Object.defineProperty(t,"__esModule",{value:!0});var r=function(e){function LuxonError(){return e.apply(this,arguments)||this}return _inheritsLoose(LuxonError,e),LuxonError}(_wrapNativeSuper(Error)),n=function(e){function InvalidDateTimeError(t){return e.call(this,"Invalid DateTime: "+t.toMessage())||this}return _inheritsLoose(InvalidDateTimeError,e),InvalidDateTimeError}(r),i=function(e){function InvalidIntervalError(t){return e.call(this,"Invalid Interval: "+t.toMessage())||this}return _inheritsLoose(InvalidIntervalError,e),InvalidIntervalError}(r),a=function(e){function InvalidDurationError(t){return e.call(this,"Invalid Duration: "+t.toMessage())||this}return _inheritsLoose(InvalidDurationError,e),InvalidDurationError}(r),o=function(e){function ConflictingSpecificationError(){return e.apply(this,arguments)||this}return _inheritsLoose(ConflictingSpecificationError,e),ConflictingSpecificationError}(r),s=function(e){function InvalidUnitError(t){return e.call(this,"Invalid unit "+t)||this}return _inheritsLoose(InvalidUnitError,e),InvalidUnitError}(r),c=function(e){function InvalidArgumentError(){return e.apply(this,arguments)||this}return _inheritsLoose(InvalidArgumentError,e),InvalidArgumentError}(r),l=function(e){function ZoneIsAbstractError(){return e.call(this,"Zone is an abstract class")||this}return _inheritsLoose(ZoneIsAbstractError,e),ZoneIsAbstractError}(r),u="numeric",d="short",f="long",p={year:u,month:u,day:u},y={year:u,month:d,day:u},m={year:u,month:d,day:u,weekday:d},h={year:u,month:f,day:u},v={year:u,month:f,day:u,weekday:f},g={hour:u,minute:u},b={hour:u,minute:u,second:u},O={hour:u,minute:u,second:u,timeZoneName:d},R={hour:u,minute:u,second:u,timeZoneName:f},_={hour:u,minute:u,hourCycle:"h23"},S={hour:u,minute:u,second:u,hourCycle:"h23"},A={hour:u,minute:u,second:u,hourCycle:"h23",timeZoneName:d},j={hour:u,minute:u,second:u,hourCycle:"h23",timeZoneName:f},N={year:u,month:u,day:u,hour:u,minute:u},P={year:u,month:u,day:u,hour:u,minute:u,second:u},T={year:u,month:d,day:u,hour:u,minute:u},I={year:u,month:d,day:u,hour:u,minute:u,second:u},w={year:u,month:d,day:u,weekday:d,hour:u,minute:u},M={year:u,month:f,day:u,hour:u,minute:u,timeZoneName:d},D={year:u,month:f,day:u,hour:u,minute:u,second:u,timeZoneName:d},k={year:u,month:f,day:u,weekday:f,hour:u,minute:u,timeZoneName:f},x={year:u,month:f,day:u,weekday:f,hour:u,minute:u,second:u,timeZoneName:f};function isUndefined(e){return void 0===e}function isNumber(e){return"number"==typeof e}function isInteger(e){return"number"==typeof e&&e%1==0}function hasRelative(){try{return"undefined"!=typeof Intl&&!!Intl.RelativeTimeFormat}catch(e){return!1}}function bestBy(e,t,r){if(0!==e.length)return e.reduce((function(e,n){var i=[t(n),n];return e&&r(e[0],i[0])===e[0]?e:i}),null)[1]}function hasOwnProperty(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function integerBetween(e,t,r){return isInteger(e)&&e>=t&&e<=r}function padStart(e,t){return void 0===t&&(t=2),e<0?"-"+(""+-e).padStart(t,"0"):(""+e).padStart(t,"0")}function parseInteger(e){return isUndefined(e)||null===e||""===e?void 0:parseInt(e,10)}function parseFloating(e){return isUndefined(e)||null===e||""===e?void 0:parseFloat(e)}function parseMillis(e){if(!isUndefined(e)&&null!==e&&""!==e){var t=1e3*parseFloat("0."+e);return Math.floor(t)}}function roundTo(e,t,r){void 0===r&&(r=!1);var n=Math.pow(10,t);return(r?Math.trunc:Math.round)(e*n)/n}function isLeapYear(e){return e%4==0&&(e%100!=0||e%400==0)}function daysInYear(e){return isLeapYear(e)?366:365}function daysInMonth(e,t){var r=function floorMod(e,t){return e-t*Math.floor(e/t)}(t-1,12)+1;return 2===r?isLeapYear(e+(t-r)/12)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][r-1]}function objToLocalTS(e){var t=Date.UTC(e.year,e.month-1,e.day,e.hour,e.minute,e.second,e.millisecond);return e.year<100&&e.year>=0&&(t=new Date(t)).setUTCFullYear(t.getUTCFullYear()-1900),+t}function weeksInWeekYear(e){var t=(e+Math.floor(e/4)-Math.floor(e/100)+Math.floor(e/400))%7,r=e-1,n=(r+Math.floor(r/4)-Math.floor(r/100)+Math.floor(r/400))%7;return 4===t||3===n?53:52}function untruncateYear(e){return e>99?e:e>60?1900+e:2e3+e}function parseZoneInfo(e,t,r,n){void 0===n&&(n=null);var i=new Date(e),a={hourCycle:"h23",year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};n&&(a.timeZone=n);var o=_extends({timeZoneName:t},a),s=new Intl.DateTimeFormat(r,o).formatToParts(i).find((function(e){return"timezonename"===e.type.toLowerCase()}));return s?s.value:null}function signedOffset(e,t){var r=parseInt(e,10);Number.isNaN(r)&&(r=0);var n=parseInt(t,10)||0;return 60*r+(r<0||Object.is(r,-0)?-n:n)}function asNumber(e){var t=Number(e);if("boolean"==typeof e||""===e||Number.isNaN(t))throw new c("Invalid unit value "+e);return t}function normalizeObject(e,t){var r={};for(var n in e)if(hasOwnProperty(e,n)){var i=e[n];if(null==i)continue;r[t(n)]=asNumber(i)}return r}function formatOffset(e,t){var r=Math.trunc(Math.abs(e/60)),n=Math.trunc(Math.abs(e%60)),i=e>=0?"+":"-";switch(t){case"short":return""+i+padStart(r,2)+":"+padStart(n,2);case"narrow":return""+i+r+(n>0?":"+n:"");case"techie":return""+i+padStart(r,2)+padStart(n,2);default:throw new RangeError("Value format "+t+" is out of range for property format")}}function timeObject(e){return function pick(e,t){return t.reduce((function(t,r){return t[r]=e[r],t}),{})}(e,["hour","minute","second","millisecond"])}var H=["January","February","March","April","May","June","July","August","September","October","November","December"],C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],z=["J","F","M","A","M","J","J","A","S","O","N","D"];function months(e){switch(e){case"narrow":return[].concat(z);case"short":return[].concat(C);case"long":return[].concat(H);case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}var F=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],E=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],L=["M","T","W","T","F","S","S"];function weekdays(e){switch(e){case"narrow":return[].concat(L);case"short":return[].concat(E);case"long":return[].concat(F);case"numeric":return["1","2","3","4","5","6","7"];default:return null}}var V=["AM","PM"],B=["Before Christ","Anno Domini"],G=["BC","AD"],Z=["B","A"];function eras(e){switch(e){case"narrow":return[].concat(Z);case"short":return[].concat(G);case"long":return[].concat(B);default:return null}}function stringifyTokens(e,t){for(var r,n="",i=_createForOfIteratorHelperLoose(e);!(r=i()).done;){var a=r.value;a.literal?n+=a.val:n+=t(a.val)}return n}var U={D:p,DD:y,DDD:h,DDDD:v,t:g,tt:b,ttt:O,tttt:R,T:_,TT:S,TTT:A,TTTT:j,f:N,ff:T,fff:M,ffff:k,F:P,FF:I,FFF:D,FFFF:x},q=function(){function Formatter(e,t){this.opts=t,this.loc=e,this.systemLoc=null}Formatter.create=function create(e,t){return void 0===t&&(t={}),new Formatter(e,t)},Formatter.parseFormat=function parseFormat(e){for(var t=null,r="",n=!1,i=[],a=0;a<e.length;a++){var o=e.charAt(a);"'"===o?(r.length>0&&i.push({literal:n,val:r}),t=null,r="",n=!n):n||o===t?r+=o:(r.length>0&&i.push({literal:!1,val:r}),r=o,t=o)}return r.length>0&&i.push({literal:n,val:r}),i},Formatter.macroTokenToFormatOpts=function macroTokenToFormatOpts(e){return U[e]};var e=Formatter.prototype;return e.formatWithSystemDefault=function formatWithSystemDefault(e,t){return null===this.systemLoc&&(this.systemLoc=this.loc.redefaultToSystem()),this.systemLoc.dtFormatter(e,_extends({},this.opts,t)).format()},e.formatDateTime=function formatDateTime(e,t){return void 0===t&&(t={}),this.loc.dtFormatter(e,_extends({},this.opts,t)).format()},e.formatDateTimeParts=function formatDateTimeParts(e,t){return void 0===t&&(t={}),this.loc.dtFormatter(e,_extends({},this.opts,t)).formatToParts()},e.resolvedOptions=function resolvedOptions(e,t){return void 0===t&&(t={}),this.loc.dtFormatter(e,_extends({},this.opts,t)).resolvedOptions()},e.num=function num(e,t){if(void 0===t&&(t=0),this.opts.forceSimple)return padStart(e,t);var r=_extends({},this.opts);return t>0&&(r.padTo=t),this.loc.numberFormatter(r).format(e)},e.formatDateTimeFromString=function formatDateTimeFromString(e,t){var r=this,n="en"===this.loc.listingMode(),i=this.loc.outputCalendar&&"gregory"!==this.loc.outputCalendar,a=function string(t,n){return r.loc.extract(e,t,n)},o=function formatOffset(t){return e.isOffsetFixed&&0===e.offset&&t.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,t.format):""},s=function meridiem(){return n?function meridiemForDateTime(e){return V[e.hour<12?0:1]}(e):a({hour:"numeric",hourCycle:"h12"},"dayperiod")},c=function month(t,r){return n?function monthForDateTime(e,t){return months(t)[e.month-1]}(e,t):a(r?{month:t}:{month:t,day:"numeric"},"month")},l=function weekday(t,r){return n?function weekdayForDateTime(e,t){return weekdays(t)[e.weekday-1]}(e,t):a(r?{weekday:t}:{weekday:t,month:"long",day:"numeric"},"weekday")},u=function era(t){return n?function eraForDateTime(e,t){return eras(t)[e.year<0?0:1]}(e,t):a({era:t},"era")};return stringifyTokens(Formatter.parseFormat(t),(function tokenToString(t){switch(t){case"S":return r.num(e.millisecond);case"u":case"SSS":return r.num(e.millisecond,3);case"s":return r.num(e.second);case"ss":return r.num(e.second,2);case"uu":return r.num(Math.floor(e.millisecond/10),2);case"uuu":return r.num(Math.floor(e.millisecond/100));case"m":return r.num(e.minute);case"mm":return r.num(e.minute,2);case"h":return r.num(e.hour%12==0?12:e.hour%12);case"hh":return r.num(e.hour%12==0?12:e.hour%12,2);case"H":return r.num(e.hour);case"HH":return r.num(e.hour,2);case"Z":return o({format:"narrow",allowZ:r.opts.allowZ});case"ZZ":return o({format:"short",allowZ:r.opts.allowZ});case"ZZZ":return o({format:"techie",allowZ:r.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:r.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:r.loc.locale});case"z":return e.zoneName;case"a":return s();case"d":return i?a({day:"numeric"},"day"):r.num(e.day);case"dd":return i?a({day:"2-digit"},"day"):r.num(e.day,2);case"c":case"E":return r.num(e.weekday);case"ccc":return l("short",!0);case"cccc":return l("long",!0);case"ccccc":return l("narrow",!0);case"EEE":return l("short",!1);case"EEEE":return l("long",!1);case"EEEEE":return l("narrow",!1);case"L":return i?a({month:"numeric",day:"numeric"},"month"):r.num(e.month);case"LL":return i?a({month:"2-digit",day:"numeric"},"month"):r.num(e.month,2);case"LLL":return c("short",!0);case"LLLL":return c("long",!0);case"LLLLL":return c("narrow",!0);case"M":return i?a({month:"numeric"},"month"):r.num(e.month);case"MM":return i?a({month:"2-digit"},"month"):r.num(e.month,2);case"MMM":return c("short",!1);case"MMMM":return c("long",!1);case"MMMMM":return c("narrow",!1);case"y":return i?a({year:"numeric"},"year"):r.num(e.year);case"yy":return i?a({year:"2-digit"},"year"):r.num(e.year.toString().slice(-2),2);case"yyyy":return i?a({year:"numeric"},"year"):r.num(e.year,4);case"yyyyyy":return i?a({year:"numeric"},"year"):r.num(e.year,6);case"G":return u("short");case"GG":return u("long");case"GGGGG":return u("narrow");case"kk":return r.num(e.weekYear.toString().slice(-2),2);case"kkkk":return r.num(e.weekYear,4);case"W":return r.num(e.weekNumber);case"WW":return r.num(e.weekNumber,2);case"o":return r.num(e.ordinal);case"ooo":return r.num(e.ordinal,3);case"q":return r.num(e.quarter);case"qq":return r.num(e.quarter,2);case"X":return r.num(Math.floor(e.ts/1e3));case"x":return r.num(e.ts);default:return function maybeMacro(t){var n=Formatter.macroTokenToFormatOpts(t);return n?r.formatWithSystemDefault(e,n):t}(t)}}))},e.formatDurationFromString=function formatDurationFromString(e,t){var r=this,n=function tokenToField(e){switch(e[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"w":return"week";case"M":return"month";case"y":return"year";default:return null}},i=Formatter.parseFormat(t),a=i.reduce((function(e,t){var r=t.literal,n=t.val;return r?e:e.concat(n)}),[]);return stringifyTokens(i,function tokenToString(e){return function(t){var i=n(t);return i?r.num(e.get(i),t.length):t}}(e.shiftTo.apply(e,a.map(n).filter((function(e){return e})))))},Formatter}(),W=function(){function Invalid(e,t){this.reason=e,this.explanation=t}return Invalid.prototype.toMessage=function toMessage(){return this.explanation?this.reason+": "+this.explanation:this.reason},Invalid}(),$=function(){function Zone(){}var e=Zone.prototype;return e.offsetName=function offsetName(e,t){throw new l},e.formatOffset=function formatOffset(e,t){throw new l},e.offset=function offset(e){throw new l},e.equals=function equals(e){throw new l},_createClass(Zone,[{key:"type",get:function get(){throw new l}},{key:"name",get:function get(){throw new l}},{key:"isUniversal",get:function get(){throw new l}},{key:"isValid",get:function get(){throw new l}}]),Zone}(),J=null,Y=function(e){function SystemZone(){return e.apply(this,arguments)||this}_inheritsLoose(SystemZone,e);var t=SystemZone.prototype;return t.offsetName=function offsetName(e,t){return parseZoneInfo(e,t.format,t.locale)},t.formatOffset=function formatOffset$1(e,t){return formatOffset(this.offset(e),t)},t.offset=function offset(e){return-new Date(e).getTimezoneOffset()},t.equals=function equals(e){return"system"===e.type},_createClass(SystemZone,[{key:"type",get:function get(){return"system"}},{key:"name",get:function get(){return(new Intl.DateTimeFormat).resolvedOptions().timeZone}},{key:"isUniversal",get:function get(){return!1}},{key:"isValid",get:function get(){return!0}}],[{key:"instance",get:function get(){return null===J&&(J=new SystemZone),J}}]),SystemZone}($),K={};var Q={year:0,month:1,day:2,era:3,hour:4,minute:5,second:6};var X={},ee=function(e){function IANAZone(t){var r;return(r=e.call(this)||this).zoneName=t,r.valid=IANAZone.isValidZone(t),r}_inheritsLoose(IANAZone,e),IANAZone.create=function create(e){return X[e]||(X[e]=new IANAZone(e)),X[e]},IANAZone.resetCache=function resetCache(){X={},K={}},IANAZone.isValidSpecifier=function isValidSpecifier(e){return this.isValidZone(e)},IANAZone.isValidZone=function isValidZone(e){if(!e)return!1;try{return new Intl.DateTimeFormat("en-US",{timeZone:e}).format(),!0}catch(e){return!1}};var t=IANAZone.prototype;return t.offsetName=function offsetName(e,t){return parseZoneInfo(e,t.format,t.locale,this.name)},t.formatOffset=function formatOffset$1(e,t){return formatOffset(this.offset(e),t)},t.offset=function offset(e){var t=new Date(e);if(isNaN(t))return NaN;var r=function makeDTF(e){return K[e]||(K[e]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:e,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",era:"short"})),K[e]}(this.name),n=r.formatToParts?function partsOffset(e,t){for(var r=e.formatToParts(t),n=[],i=0;i<r.length;i++){var a=r[i],o=a.type,s=a.value,c=Q[o];"era"===o?n[c]=s:isUndefined(c)||(n[c]=parseInt(s,10))}return n}(r,t):function hackyOffset(e,t){var r=e.format(t).replace(/\u200E/g,""),n=/(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(r),i=n[1],a=n[2];return[n[3],i,a,n[4],n[5],n[6],n[7]]}(r,t),i=n[0],a=n[1],o=n[2],s=n[3],c=n[4],l=n[5],u=n[6];"BC"===s&&(i=1-Math.abs(i));var d=+t,f=d%1e3;return(objToLocalTS({year:i,month:a,day:o,hour:24===c?0:c,minute:l,second:u,millisecond:0})-(d-=f>=0?f:1e3+f))/6e4},t.equals=function equals(e){return"iana"===e.type&&e.name===this.name},_createClass(IANAZone,[{key:"type",get:function get(){return"iana"}},{key:"name",get:function get(){return this.zoneName}},{key:"isUniversal",get:function get(){return!1}},{key:"isValid",get:function get(){return this.valid}}]),IANAZone}($),te=null,re=function(e){function FixedOffsetZone(t){var r;return(r=e.call(this)||this).fixed=t,r}_inheritsLoose(FixedOffsetZone,e),FixedOffsetZone.instance=function instance(e){return 0===e?FixedOffsetZone.utcInstance:new FixedOffsetZone(e)},FixedOffsetZone.parseSpecifier=function parseSpecifier(e){if(e){var t=e.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(t)return new FixedOffsetZone(signedOffset(t[1],t[2]))}return null};var t=FixedOffsetZone.prototype;return t.offsetName=function offsetName(){return this.name},t.formatOffset=function formatOffset$1(e,t){return formatOffset(this.fixed,t)},t.offset=function offset(){return this.fixed},t.equals=function equals(e){return"fixed"===e.type&&e.fixed===this.fixed},_createClass(FixedOffsetZone,[{key:"type",get:function get(){return"fixed"}},{key:"name",get:function get(){return 0===this.fixed?"UTC":"UTC"+formatOffset(this.fixed,"narrow")}},{key:"isUniversal",get:function get(){return!0}},{key:"isValid",get:function get(){return!0}}],[{key:"utcInstance",get:function get(){return null===te&&(te=new FixedOffsetZone(0)),te}}]),FixedOffsetZone}($),ne=function(e){function InvalidZone(t){var r;return(r=e.call(this)||this).zoneName=t,r}_inheritsLoose(InvalidZone,e);var t=InvalidZone.prototype;return t.offsetName=function offsetName(){return null},t.formatOffset=function formatOffset(){return""},t.offset=function offset(){return NaN},t.equals=function equals(){return!1},_createClass(InvalidZone,[{key:"type",get:function get(){return"invalid"}},{key:"name",get:function get(){return this.zoneName}},{key:"isUniversal",get:function get(){return!1}},{key:"isValid",get:function get(){return!1}}]),InvalidZone}($);function normalizeZone(e,t){if(isUndefined(e)||null===e)return t;if(e instanceof $)return e;if(function isString(e){return"string"==typeof e}(e)){var r=e.toLowerCase();return"local"===r||"system"===r?t:"utc"===r||"gmt"===r?re.utcInstance:re.parseSpecifier(r)||ee.create(e)}return isNumber(e)?re.instance(e):"object"==typeof e&&e.offset&&"number"==typeof e.offset?e:new ne(e)}var ie,ae=function now(){return Date.now()},oe="system",se=null,ce=null,le=null,ue=function(){function Settings(){}return Settings.resetCaches=function resetCaches(){Re.resetCache(),ee.resetCache()},_createClass(Settings,null,[{key:"now",get:function get(){return ae},set:function set(e){ae=e}},{key:"defaultZone",get:function get(){return normalizeZone(oe,Y.instance)},set:function set(e){oe=e}},{key:"defaultLocale",get:function get(){return se},set:function set(e){se=e}},{key:"defaultNumberingSystem",get:function get(){return ce},set:function set(e){ce=e}},{key:"defaultOutputCalendar",get:function get(){return le},set:function set(e){le=e}},{key:"throwOnInvalid",get:function get(){return ie},set:function set(e){ie=e}}]),Settings}(),de=["base"],fe=["padTo","floor"],pe={};var ye={};function getCachedDTF(e,t){void 0===t&&(t={});var r=JSON.stringify([e,t]),n=ye[r];return n||(n=new Intl.DateTimeFormat(e,t),ye[r]=n),n}var me={};var he={};var ve=null;function listStuff(e,t,r,n,i){var a=e.listingMode(r);return"error"===a?null:"en"===a?n(t):i(t)}var ge=function(){function PolyNumberFormatter(e,t,r){this.padTo=r.padTo||0,this.floor=r.floor||!1,r.padTo,r.floor;var n=_objectWithoutPropertiesLoose(r,fe);if(!t||Object.keys(n).length>0){var i=_extends({useGrouping:!1},r);r.padTo>0&&(i.minimumIntegerDigits=r.padTo),this.inf=function getCachedINF(e,t){void 0===t&&(t={});var r=JSON.stringify([e,t]),n=me[r];return n||(n=new Intl.NumberFormat(e,t),me[r]=n),n}(e,i)}}return PolyNumberFormatter.prototype.format=function format(e){if(this.inf){var t=this.floor?Math.floor(e):e;return this.inf.format(t)}return padStart(this.floor?Math.floor(e):roundTo(e,3),this.padTo)},PolyNumberFormatter}(),be=function(){function PolyDateFormatter(e,t,r){var n;if(this.opts=r,e.zone.isUniversal){var i=e.offset/60*-1,a=i>=0?"Etc/GMT+"+i:"Etc/GMT"+i;0!==e.offset&&ee.create(a).valid?(n=a,this.dt=e):(n="UTC",r.timeZoneName?this.dt=e:this.dt=0===e.offset?e:At.fromMillis(e.ts+60*e.offset*1e3))}else"system"===e.zone.type?this.dt=e:(this.dt=e,n=e.zone.name);var o=_extends({},this.opts);n&&(o.timeZone=n),this.dtf=getCachedDTF(t,o)}var e=PolyDateFormatter.prototype;return e.format=function format(){return this.dtf.format(this.dt.toJSDate())},e.formatToParts=function formatToParts(){return this.dtf.formatToParts(this.dt.toJSDate())},e.resolvedOptions=function resolvedOptions(){return this.dtf.resolvedOptions()},PolyDateFormatter}(),Oe=function(){function PolyRelFormatter(e,t,r){this.opts=_extends({style:"long"},r),!t&&hasRelative()&&(this.rtf=function getCachedRTF(e,t){void 0===t&&(t={});var r=t;r.base;var n=_objectWithoutPropertiesLoose(r,de),i=JSON.stringify([e,n]),a=he[i];return a||(a=new Intl.RelativeTimeFormat(e,t),he[i]=a),a}(e,r))}var e=PolyRelFormatter.prototype;return e.format=function format(e,t){return this.rtf?this.rtf.format(e,t):function formatRelativeTime(e,t,r,n){void 0===r&&(r="always"),void 0===n&&(n=!1);var i={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},a=-1===["hours","minutes","seconds"].indexOf(e);if("auto"===r&&a){var o="days"===e;switch(t){case 1:return o?"tomorrow":"next "+i[e][0];case-1:return o?"yesterday":"last "+i[e][0];case 0:return o?"today":"this "+i[e][0]}}var s=Object.is(t,-0)||t<0,c=Math.abs(t),l=1===c,u=i[e],d=n?l?u[1]:u[2]||u[1]:l?i[e][0]:e;return s?c+" "+d+" ago":"in "+c+" "+d}(t,e,this.opts.numeric,"long"!==this.opts.style)},e.formatToParts=function formatToParts(e,t){return this.rtf?this.rtf.formatToParts(e,t):[]},PolyRelFormatter}(),Re=function(){function Locale(e,t,r,n){var i=function parseLocaleString(e){var t=e.indexOf("-u-");if(-1===t)return[e];var r,n=e.substring(0,t);try{r=getCachedDTF(e).resolvedOptions()}catch(e){r=getCachedDTF(n).resolvedOptions()}var i=r;return[n,i.numberingSystem,i.calendar]}(e),a=i[0],o=i[1],s=i[2];this.locale=a,this.numberingSystem=t||o||null,this.outputCalendar=r||s||null,this.intl=function intlConfigString(e,t,r){return r||t?(e+="-u",r&&(e+="-ca-"+r),t&&(e+="-nu-"+t),e):e}(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=n,this.fastNumbersCached=null}Locale.fromOpts=function fromOpts(e){return Locale.create(e.locale,e.numberingSystem,e.outputCalendar,e.defaultToEN)},Locale.create=function create(e,t,r,n){void 0===n&&(n=!1);var i=e||ue.defaultLocale;return new Locale(i||(n?"en-US":function systemLocale(){return ve||(ve=(new Intl.DateTimeFormat).resolvedOptions().locale)}()),t||ue.defaultNumberingSystem,r||ue.defaultOutputCalendar,i)},Locale.resetCache=function resetCache(){ve=null,ye={},me={},he={}},Locale.fromObject=function fromObject(e){var t=void 0===e?{}:e,r=t.locale,n=t.numberingSystem,i=t.outputCalendar;return Locale.create(r,n,i)};var e=Locale.prototype;return e.listingMode=function listingMode(){var e=this.isEnglish(),t=!(null!==this.numberingSystem&&"latn"!==this.numberingSystem||null!==this.outputCalendar&&"gregory"!==this.outputCalendar);return e&&t?"en":"intl"},e.clone=function clone(e){return e&&0!==Object.getOwnPropertyNames(e).length?Locale.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,e.defaultToEN||!1):this},e.redefaultToEN=function redefaultToEN(e){return void 0===e&&(e={}),this.clone(_extends({},e,{defaultToEN:!0}))},e.redefaultToSystem=function redefaultToSystem(e){return void 0===e&&(e={}),this.clone(_extends({},e,{defaultToEN:!1}))},e.months=function months$1(e,t,r){var n=this;return void 0===t&&(t=!1),void 0===r&&(r=!0),listStuff(this,e,r,months,(function(){var r=t?{month:e,day:"numeric"}:{month:e},i=t?"format":"standalone";return n.monthsCache[i][e]||(n.monthsCache[i][e]=function mapMonths(e){for(var t=[],r=1;r<=12;r++){var n=At.utc(2016,r,1);t.push(e(n))}return t}((function(e){return n.extract(e,r,"month")}))),n.monthsCache[i][e]}))},e.weekdays=function weekdays$1(e,t,r){var n=this;return void 0===t&&(t=!1),void 0===r&&(r=!0),listStuff(this,e,r,weekdays,(function(){var r=t?{weekday:e,year:"numeric",month:"long",day:"numeric"}:{weekday:e},i=t?"format":"standalone";return n.weekdaysCache[i][e]||(n.weekdaysCache[i][e]=function mapWeekdays(e){for(var t=[],r=1;r<=7;r++){var n=At.utc(2016,11,13+r);t.push(e(n))}return t}((function(e){return n.extract(e,r,"weekday")}))),n.weekdaysCache[i][e]}))},e.meridiems=function meridiems$1(e){var t=this;return void 0===e&&(e=!0),listStuff(this,void 0,e,(function(){return V}),(function(){if(!t.meridiemCache){var e={hour:"numeric",hourCycle:"h12"};t.meridiemCache=[At.utc(2016,11,13,9),At.utc(2016,11,13,19)].map((function(r){return t.extract(r,e,"dayperiod")}))}return t.meridiemCache}))},e.eras=function eras$1(e,t){var r=this;return void 0===t&&(t=!0),listStuff(this,e,t,eras,(function(){var t={era:e};return r.eraCache[e]||(r.eraCache[e]=[At.utc(-40,1,1),At.utc(2017,1,1)].map((function(e){return r.extract(e,t,"era")}))),r.eraCache[e]}))},e.extract=function extract(e,t,r){var n=this.dtFormatter(e,t).formatToParts().find((function(e){return e.type.toLowerCase()===r}));return n?n.value:null},e.numberFormatter=function numberFormatter(e){return void 0===e&&(e={}),new ge(this.intl,e.forceSimple||this.fastNumbers,e)},e.dtFormatter=function dtFormatter(e,t){return void 0===t&&(t={}),new be(e,this.intl,t)},e.relFormatter=function relFormatter(e){return void 0===e&&(e={}),new Oe(this.intl,this.isEnglish(),e)},e.listFormatter=function listFormatter(e){return void 0===e&&(e={}),function getCachedLF(e,t){void 0===t&&(t={});var r=JSON.stringify([e,t]),n=pe[r];return n||(n=new Intl.ListFormat(e,t),pe[r]=n),n}(this.intl,e)},e.isEnglish=function isEnglish(){return"en"===this.locale||"en-us"===this.locale.toLowerCase()||new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")},e.equals=function equals(e){return this.locale===e.locale&&this.numberingSystem===e.numberingSystem&&this.outputCalendar===e.outputCalendar},_createClass(Locale,[{key:"fastNumbers",get:function get(){return null==this.fastNumbersCached&&(this.fastNumbersCached=function supportsFastNumbers(e){return(!e.numberingSystem||"latn"===e.numberingSystem)&&("latn"===e.numberingSystem||!e.locale||e.locale.startsWith("en")||"latn"===new Intl.DateTimeFormat(e.intl).resolvedOptions().numberingSystem)}(this)),this.fastNumbersCached}}]),Locale}();function combineRegexes(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=t.reduce((function(e,t){return e+t.source}),"");return RegExp("^"+n+"$")}function combineExtractors(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(e){return t.reduce((function(t,r){var n=t[0],i=t[1],a=t[2],o=r(e,a),s=o[0],c=o[1],l=o[2];return[_extends({},n,s),i||c,l]}),[{},null,1]).slice(0,2)}}function parse(e){if(null==e)return[null,null];for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];for(var i=0,a=r;i<a.length;i++){var o=a[i],s=o[0],c=o[1],l=s.exec(e);if(l)return c(l)}return[null,null]}function simpleParse(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(e,r){var n,i={};for(n=0;n<t.length;n++)i[t[n]]=parseInteger(e[r+n]);return[i,null,r+n]}}var _e=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,Se=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,Ae=RegExp(""+Se.source+_e.source+"?"),je=RegExp("(?:T"+Ae.source+")?"),Ne=simpleParse("weekYear","weekNumber","weekDay"),Pe=simpleParse("year","ordinal"),Te=RegExp(Se.source+" ?(?:"+_e.source+"|("+/[A-Za-z_+-]{1,256}(:?\/[A-Za-z0-9_+-]{1,256}(\/[A-Za-z0-9_+-]{1,256})?)?/.source+"))?"),Ie=RegExp("(?: "+Te.source+")?");function int(e,t,r){var n=e[t];return isUndefined(n)?r:parseInteger(n)}function extractISOYmd(e,t){return[{year:int(e,t),month:int(e,t+1,1),day:int(e,t+2,1)},null,t+3]}function extractISOTime(e,t){return[{hours:int(e,t,0),minutes:int(e,t+1,0),seconds:int(e,t+2,0),milliseconds:parseMillis(e[t+3])},null,t+4]}function extractISOOffset(e,t){var r=!e[t]&&!e[t+1],n=signedOffset(e[t+1],e[t+2]);return[{},r?null:re.instance(n),t+3]}function extractIANAZone(e,t){return[{},e[t]?ee.create(e[t]):null,t+1]}var we=RegExp("^T?"+Se.source+"$"),Me=/^-?P(?:(?:(-?\d{1,9}(?:\.\d{1,9})?)Y)?(?:(-?\d{1,9}(?:\.\d{1,9})?)M)?(?:(-?\d{1,9}(?:\.\d{1,9})?)W)?(?:(-?\d{1,9}(?:\.\d{1,9})?)D)?(?:T(?:(-?\d{1,9}(?:\.\d{1,9})?)H)?(?:(-?\d{1,9}(?:\.\d{1,9})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,9}))?S)?)?)$/;function extractISODuration(e){var t=e[0],r=e[1],n=e[2],i=e[3],a=e[4],o=e[5],s=e[6],c=e[7],l=e[8],u="-"===t[0],d=c&&"-"===c[0],f=function maybeNegate(e,t){return void 0===t&&(t=!1),void 0!==e&&(t||e&&u)?-e:e};return[{years:f(parseFloating(r)),months:f(parseFloating(n)),weeks:f(parseFloating(i)),days:f(parseFloating(a)),hours:f(parseFloating(o)),minutes:f(parseFloating(s)),seconds:f(parseFloating(c),"-0"===c),milliseconds:f(parseMillis(l),d)}]}var De={GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function fromStrings(e,t,r,n,i,a,o){var s={year:2===t.length?untruncateYear(parseInteger(t)):parseInteger(t),month:C.indexOf(r)+1,day:parseInteger(n),hour:parseInteger(i),minute:parseInteger(a)};return o&&(s.second=parseInteger(o)),e&&(s.weekday=e.length>3?F.indexOf(e)+1:E.indexOf(e)+1),s}var ke=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function extractRFC2822(e){var t,r=e[1],n=e[2],i=e[3],a=e[4],o=e[5],s=e[6],c=e[7],l=e[8],u=e[9],d=e[10],f=e[11],p=fromStrings(r,a,i,n,o,s,c);return t=l?De[l]:u?0:signedOffset(d,f),[p,new re(t)]}var xe=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,He=/^(Monday|Tuesday|Wedsday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,Ce=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function extractRFC1123Or850(e){var t=e[1],r=e[2],n=e[3];return[fromStrings(t,e[4],n,r,e[5],e[6],e[7]),re.utcInstance]}function extractASCII(e){var t=e[1],r=e[2],n=e[3],i=e[4],a=e[5],o=e[6];return[fromStrings(t,e[7],r,n,i,a,o),re.utcInstance]}var ze=combineRegexes(/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,je),Fe=combineRegexes(/(\d{4})-?W(\d\d)(?:-?(\d))?/,je),Ee=combineRegexes(/(\d{4})-?(\d{3})/,je),Le=combineRegexes(Ae),Ve=combineExtractors(extractISOYmd,extractISOTime,extractISOOffset),Be=combineExtractors(Ne,extractISOTime,extractISOOffset),Ge=combineExtractors(Pe,extractISOTime,extractISOOffset),Ze=combineExtractors(extractISOTime,extractISOOffset);var Ue=combineExtractors(extractISOTime);var qe=combineRegexes(/(\d{4})-(\d\d)-(\d\d)/,Ie),We=combineRegexes(Te),$e=combineExtractors(extractISOYmd,extractISOTime,extractISOOffset,extractIANAZone),Je=combineExtractors(extractISOTime,extractISOOffset,extractIANAZone);var Ye={weeks:{days:7,hours:168,minutes:10080,seconds:604800,milliseconds:6048e5},days:{hours:24,minutes:1440,seconds:86400,milliseconds:864e5},hours:{minutes:60,seconds:3600,milliseconds:36e5},minutes:{seconds:60,milliseconds:6e4},seconds:{milliseconds:1e3}},Ke=_extends({years:{quarters:4,months:12,weeks:52,days:365,hours:8760,minutes:525600,seconds:31536e3,milliseconds:31536e6},quarters:{months:3,weeks:13,days:91,hours:2184,minutes:131040,seconds:7862400,milliseconds:78624e5},months:{weeks:4,days:30,hours:720,minutes:43200,seconds:2592e3,milliseconds:2592e6}},Ye),Qe=365.2425,Xe=30.436875,et=_extends({years:{quarters:4,months:12,weeks:52.1775,days:Qe,hours:8765.82,minutes:525949.2,seconds:525949.2*60,milliseconds:525949.2*60*1e3},quarters:{months:3,weeks:13.044375,days:91.310625,hours:2191.455,minutes:131487.3,seconds:525949.2*60/4,milliseconds:7889237999.999999},months:{weeks:4.3481250000000005,days:Xe,hours:730.485,minutes:43829.1,seconds:2629746,milliseconds:2629746e3}},Ye),tt=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],rt=tt.slice(0).reverse();function clone$1(e,t,r){void 0===r&&(r=!1);var n={values:r?t.values:_extends({},e.values,t.values||{}),loc:e.loc.clone(t.loc),conversionAccuracy:t.conversionAccuracy||e.conversionAccuracy};return new nt(n)}function convert(e,t,r,n,i){var a=e[i][r],o=t[r]/a,s=!(Math.sign(o)===Math.sign(n[i]))&&0!==n[i]&&Math.abs(o)<=1?function antiTrunc(e){return e<0?Math.floor(e):Math.ceil(e)}(o):Math.trunc(o);n[i]+=s,t[r]-=s*a}var nt=function(){function Duration(e){var t="longterm"===e.conversionAccuracy||!1;this.values=e.values,this.loc=e.loc||Re.create(),this.conversionAccuracy=t?"longterm":"casual",this.invalid=e.invalid||null,this.matrix=t?et:Ke,this.isLuxonDuration=!0}Duration.fromMillis=function fromMillis(e,t){return Duration.fromObject({milliseconds:e},t)},Duration.fromObject=function fromObject(e,t){if(void 0===t&&(t={}),null==e||"object"!=typeof e)throw new c("Duration.fromObject: argument expected to be an object, got "+(null===e?"null":typeof e));return new Duration({values:normalizeObject(e,Duration.normalizeUnit),loc:Re.fromObject(t),conversionAccuracy:t.conversionAccuracy})},Duration.fromDurationLike=function fromDurationLike(e){if(isNumber(e))return Duration.fromMillis(e);if(Duration.isDuration(e))return e;if("object"==typeof e)return Duration.fromObject(e);throw new c("Unknown duration argument "+e+" of type "+typeof e)},Duration.fromISO=function fromISO(e,t){var r=function parseISODuration(e){return parse(e,[Me,extractISODuration])}(e),n=r[0];return n?Duration.fromObject(n,t):Duration.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},Duration.fromISOTime=function fromISOTime(e,t){var r=function parseISOTimeOnly(e){return parse(e,[we,Ue])}(e),n=r[0];return n?Duration.fromObject(n,t):Duration.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},Duration.invalid=function invalid(e,t){if(void 0===t&&(t=null),!e)throw new c("need to specify a reason the Duration is invalid");var invalid=e instanceof W?e:new W(e,t);if(ue.throwOnInvalid)throw new a(invalid);return new Duration({invalid})},Duration.normalizeUnit=function normalizeUnit(e){var t={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[e?e.toLowerCase():e];if(!t)throw new s(e);return t},Duration.isDuration=function isDuration(e){return e&&e.isLuxonDuration||!1};var e=Duration.prototype;return e.toFormat=function toFormat(e,t){void 0===t&&(t={});var r=_extends({},t,{floor:!1!==t.round&&!1!==t.floor});return this.isValid?q.create(this.loc,r).formatDurationFromString(this,e):"Invalid Duration"},e.toHuman=function toHuman(e){var t=this;void 0===e&&(e={});var r=tt.map((function(r){var n=t.values[r];return isUndefined(n)?null:t.loc.numberFormatter(_extends({style:"unit",unitDisplay:"long"},e,{unit:r.slice(0,-1)})).format(n)})).filter((function(e){return e}));return this.loc.listFormatter(_extends({type:"conjunction",style:e.listStyle||"narrow"},e)).format(r)},e.toObject=function toObject(){return this.isValid?_extends({},this.values):{}},e.toISO=function toISO(){if(!this.isValid)return null;var e="P";return 0!==this.years&&(e+=this.years+"Y"),0===this.months&&0===this.quarters||(e+=this.months+3*this.quarters+"M"),0!==this.weeks&&(e+=this.weeks+"W"),0!==this.days&&(e+=this.days+"D"),0===this.hours&&0===this.minutes&&0===this.seconds&&0===this.milliseconds||(e+="T"),0!==this.hours&&(e+=this.hours+"H"),0!==this.minutes&&(e+=this.minutes+"M"),0===this.seconds&&0===this.milliseconds||(e+=roundTo(this.seconds+this.milliseconds/1e3,3)+"S"),"P"===e&&(e+="T0S"),e},e.toISOTime=function toISOTime(e){if(void 0===e&&(e={}),!this.isValid)return null;var t=this.toMillis();if(t<0||t>=864e5)return null;e=_extends({suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended"},e);var r=this.shiftTo("hours","minutes","seconds","milliseconds"),n="basic"===e.format?"hhmm":"hh:mm";e.suppressSeconds&&0===r.seconds&&0===r.milliseconds||(n+="basic"===e.format?"ss":":ss",e.suppressMilliseconds&&0===r.milliseconds||(n+=".SSS"));var i=r.toFormat(n);return e.includePrefix&&(i="T"+i),i},e.toJSON=function toJSON(){return this.toISO()},e.toString=function toString(){return this.toISO()},e.toMillis=function toMillis(){return this.as("milliseconds")},e.valueOf=function valueOf(){return this.toMillis()},e.plus=function plus(e){if(!this.isValid)return this;for(var t,r=Duration.fromDurationLike(e),n={},i=_createForOfIteratorHelperLoose(tt);!(t=i()).done;){var a=t.value;(hasOwnProperty(r.values,a)||hasOwnProperty(this.values,a))&&(n[a]=r.get(a)+this.get(a))}return clone$1(this,{values:n},!0)},e.minus=function minus(e){if(!this.isValid)return this;var t=Duration.fromDurationLike(e);return this.plus(t.negate())},e.mapUnits=function mapUnits(e){if(!this.isValid)return this;for(var t={},r=0,n=Object.keys(this.values);r<n.length;r++){var i=n[r];t[i]=asNumber(e(this.values[i],i))}return clone$1(this,{values:t},!0)},e.get=function get(e){return this[Duration.normalizeUnit(e)]},e.set=function set(e){return this.isValid?clone$1(this,{values:_extends({},this.values,normalizeObject(e,Duration.normalizeUnit))}):this},e.reconfigure=function reconfigure(e){var t=void 0===e?{}:e,r=t.locale,n=t.numberingSystem,i=t.conversionAccuracy,a={loc:this.loc.clone({locale:r,numberingSystem:n})};return i&&(a.conversionAccuracy=i),clone$1(this,a)},e.as=function as(e){return this.isValid?this.shiftTo(e).get(e):NaN},e.normalize=function normalize(){if(!this.isValid)return this;var e=this.toObject();return function normalizeValues(e,t){rt.reduce((function(r,n){return isUndefined(t[n])?r:(r&&convert(e,t,r,t,n),n)}),null)}(this.matrix,e),clone$1(this,{values:e},!0)},e.shiftTo=function shiftTo(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];if(!this.isValid)return this;if(0===t.length)return this;t=t.map((function(e){return Duration.normalizeUnit(e)}));for(var n,i,a={},o={},s=this.toObject(),c=_createForOfIteratorHelperLoose(tt);!(i=c()).done;){var l=i.value;if(t.indexOf(l)>=0){n=l;var u=0;for(var d in o)u+=this.matrix[d][l]*o[d],o[d]=0;isNumber(s[l])&&(u+=s[l]);var f=Math.trunc(u);for(var p in a[l]=f,o[l]=(1e3*u-1e3*f)/1e3,s)tt.indexOf(p)>tt.indexOf(l)&&convert(this.matrix,s,p,a,l)}else isNumber(s[l])&&(o[l]=s[l])}for(var y in o)0!==o[y]&&(a[n]+=y===n?o[y]:o[y]/this.matrix[n][y]);return clone$1(this,{values:a},!0).normalize()},e.negate=function negate(){if(!this.isValid)return this;for(var e={},t=0,r=Object.keys(this.values);t<r.length;t++){var n=r[t];e[n]=0===this.values[n]?0:-this.values[n]}return clone$1(this,{values:e},!0)},e.equals=function equals(e){if(!this.isValid||!e.isValid)return!1;if(!this.loc.equals(e.loc))return!1;for(var t,r=_createForOfIteratorHelperLoose(tt);!(t=r()).done;){var n=t.value;if(i=this.values[n],a=e.values[n],!(void 0===i||0===i?void 0===a||0===a:i===a))return!1}var i,a;return!0},_createClass(Duration,[{key:"locale",get:function get(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function get(){return this.isValid?this.loc.numberingSystem:null}},{key:"years",get:function get(){return this.isValid?this.values.years||0:NaN}},{key:"quarters",get:function get(){return this.isValid?this.values.quarters||0:NaN}},{key:"months",get:function get(){return this.isValid?this.values.months||0:NaN}},{key:"weeks",get:function get(){return this.isValid?this.values.weeks||0:NaN}},{key:"days",get:function get(){return this.isValid?this.values.days||0:NaN}},{key:"hours",get:function get(){return this.isValid?this.values.hours||0:NaN}},{key:"minutes",get:function get(){return this.isValid?this.values.minutes||0:NaN}},{key:"seconds",get:function get(){return this.isValid?this.values.seconds||0:NaN}},{key:"milliseconds",get:function get(){return this.isValid?this.values.milliseconds||0:NaN}},{key:"isValid",get:function get(){return null===this.invalid}},{key:"invalidReason",get:function get(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function get(){return this.invalid?this.invalid.explanation:null}}]),Duration}(),it="Invalid Interval";function validateStartEnd(e,t){return e&&e.isValid?t&&t.isValid?t<e?at.invalid("end before start","The end of an interval must be after its start, but you had start="+e.toISO()+" and end="+t.toISO()):null:at.invalid("missing or invalid end"):at.invalid("missing or invalid start")}var at=function(){function Interval(e){this.s=e.start,this.e=e.end,this.invalid=e.invalid||null,this.isLuxonInterval=!0}Interval.invalid=function invalid(e,t){if(void 0===t&&(t=null),!e)throw new c("need to specify a reason the Interval is invalid");var invalid=e instanceof W?e:new W(e,t);if(ue.throwOnInvalid)throw new i(invalid);return new Interval({invalid})},Interval.fromDateTimes=function fromDateTimes(e,t){var r=friendlyDateTime(e),n=friendlyDateTime(t),i=validateStartEnd(r,n);return null==i?new Interval({start:r,end:n}):i},Interval.after=function after(e,t){var r=nt.fromDurationLike(t),n=friendlyDateTime(e);return Interval.fromDateTimes(n,n.plus(r))},Interval.before=function before(e,t){var r=nt.fromDurationLike(t),n=friendlyDateTime(e);return Interval.fromDateTimes(n.minus(r),n)},Interval.fromISO=function fromISO(e,t){var r=(e||"").split("/",2),n=r[0],i=r[1];if(n&&i){var a,o,s,c;try{o=(a=At.fromISO(n,t)).isValid}catch(i){o=!1}try{c=(s=At.fromISO(i,t)).isValid}catch(i){c=!1}if(o&&c)return Interval.fromDateTimes(a,s);if(o){var l=nt.fromISO(i,t);if(l.isValid)return Interval.after(a,l)}else if(c){var u=nt.fromISO(n,t);if(u.isValid)return Interval.before(s,u)}}return Interval.invalid("unparsable",'the input "'+e+"\" can't be parsed as ISO 8601")},Interval.isInterval=function isInterval(e){return e&&e.isLuxonInterval||!1};var e=Interval.prototype;return e.length=function length(e){return void 0===e&&(e="milliseconds"),this.isValid?this.toDuration.apply(this,[e]).get(e):NaN},e.count=function count(e){if(void 0===e&&(e="milliseconds"),!this.isValid)return NaN;var t=this.start.startOf(e),r=this.end.startOf(e);return Math.floor(r.diff(t,e).get(e))+1},e.hasSame=function hasSame(e){return!!this.isValid&&(this.isEmpty()||this.e.minus(1).hasSame(this.s,e))},e.isEmpty=function isEmpty(){return this.s.valueOf()===this.e.valueOf()},e.isAfter=function isAfter(e){return!!this.isValid&&this.s>e},e.isBefore=function isBefore(e){return!!this.isValid&&this.e<=e},e.contains=function contains(e){return!!this.isValid&&(this.s<=e&&this.e>e)},e.set=function set(e){var t=void 0===e?{}:e,r=t.start,n=t.end;return this.isValid?Interval.fromDateTimes(r||this.s,n||this.e):this},e.splitAt=function splitAt(){var e=this;if(!this.isValid)return[];for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];for(var i=r.map(friendlyDateTime).filter((function(t){return e.contains(t)})).sort(),a=[],o=this.s,s=0;o<this.e;){var c=i[s]||this.e,l=+c>+this.e?this.e:c;a.push(Interval.fromDateTimes(o,l)),o=l,s+=1}return a},e.splitBy=function splitBy(e){var t=nt.fromDurationLike(e);if(!this.isValid||!t.isValid||0===t.as("milliseconds"))return[];for(var r,n=this.s,i=1,a=[];n<this.e;){var o=this.start.plus(t.mapUnits((function(e){return e*i})));r=+o>+this.e?this.e:o,a.push(Interval.fromDateTimes(n,r)),n=r,i+=1}return a},e.divideEqually=function divideEqually(e){return this.isValid?this.splitBy(this.length()/e).slice(0,e):[]},e.overlaps=function overlaps(e){return this.e>e.s&&this.s<e.e},e.abutsStart=function abutsStart(e){return!!this.isValid&&+this.e==+e.s},e.abutsEnd=function abutsEnd(e){return!!this.isValid&&+e.e==+this.s},e.engulfs=function engulfs(e){return!!this.isValid&&(this.s<=e.s&&this.e>=e.e)},e.equals=function equals(e){return!(!this.isValid||!e.isValid)&&(this.s.equals(e.s)&&this.e.equals(e.e))},e.intersection=function intersection(e){if(!this.isValid)return this;var t=this.s>e.s?this.s:e.s,r=this.e<e.e?this.e:e.e;return t>=r?null:Interval.fromDateTimes(t,r)},e.union=function union(e){if(!this.isValid)return this;var t=this.s<e.s?this.s:e.s,r=this.e>e.e?this.e:e.e;return Interval.fromDateTimes(t,r)},Interval.merge=function merge(e){var t=e.sort((function(e,t){return e.s-t.s})).reduce((function(e,t){var r=e[0],n=e[1];return n?n.overlaps(t)||n.abutsStart(t)?[r,n.union(t)]:[r.concat([n]),t]:[r,t]}),[[],null]),r=t[0],n=t[1];return n&&r.push(n),r},Interval.xor=function xor(e){for(var t,r,n=null,i=0,a=[],o=e.map((function(e){return[{time:e.s,type:"s"},{time:e.e,type:"e"}]})),s=_createForOfIteratorHelperLoose((t=Array.prototype).concat.apply(t,o).sort((function(e,t){return e.time-t.time})));!(r=s()).done;){var c=r.value;1===(i+="s"===c.type?1:-1)?n=c.time:(n&&+n!=+c.time&&a.push(Interval.fromDateTimes(n,c.time)),n=null)}return Interval.merge(a)},e.difference=function difference(){for(var e=this,t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return Interval.xor([this].concat(r)).map((function(t){return e.intersection(t)})).filter((function(e){return e&&!e.isEmpty()}))},e.toString=function toString(){return this.isValid?"["+this.s.toISO()+" – "+this.e.toISO()+")":it},e.toISO=function toISO(e){return this.isValid?this.s.toISO(e)+"/"+this.e.toISO(e):it},e.toISODate=function toISODate(){return this.isValid?this.s.toISODate()+"/"+this.e.toISODate():it},e.toISOTime=function toISOTime(e){return this.isValid?this.s.toISOTime(e)+"/"+this.e.toISOTime(e):it},e.toFormat=function toFormat(e,t){var r=(void 0===t?{}:t).separator,n=void 0===r?" – ":r;return this.isValid?""+this.s.toFormat(e)+n+this.e.toFormat(e):it},e.toDuration=function toDuration(e,t){return this.isValid?this.e.diff(this.s,e,t):nt.invalid(this.invalidReason)},e.mapEndpoints=function mapEndpoints(e){return Interval.fromDateTimes(e(this.s),e(this.e))},_createClass(Interval,[{key:"start",get:function get(){return this.isValid?this.s:null}},{key:"end",get:function get(){return this.isValid?this.e:null}},{key:"isValid",get:function get(){return null===this.invalidReason}},{key:"invalidReason",get:function get(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function get(){return this.invalid?this.invalid.explanation:null}}]),Interval}(),ot=function(){function Info(){}return Info.hasDST=function hasDST(e){void 0===e&&(e=ue.defaultZone);var t=At.now().setZone(e).set({month:12});return!e.isUniversal&&t.offset!==t.set({month:6}).offset},Info.isValidIANAZone=function isValidIANAZone(e){return ee.isValidZone(e)},Info.normalizeZone=function normalizeZone$1(e){return normalizeZone(e,ue.defaultZone)},Info.months=function months(e,t){void 0===e&&(e="long");var r=void 0===t?{}:t,n=r.locale,i=void 0===n?null:n,a=r.numberingSystem,o=void 0===a?null:a,s=r.locObj,c=void 0===s?null:s,l=r.outputCalendar,u=void 0===l?"gregory":l;return(c||Re.create(i,o,u)).months(e)},Info.monthsFormat=function monthsFormat(e,t){void 0===e&&(e="long");var r=void 0===t?{}:t,n=r.locale,i=void 0===n?null:n,a=r.numberingSystem,o=void 0===a?null:a,s=r.locObj,c=void 0===s?null:s,l=r.outputCalendar,u=void 0===l?"gregory":l;return(c||Re.create(i,o,u)).months(e,!0)},Info.weekdays=function weekdays(e,t){void 0===e&&(e="long");var r=void 0===t?{}:t,n=r.locale,i=void 0===n?null:n,a=r.numberingSystem,o=void 0===a?null:a,s=r.locObj;return((void 0===s?null:s)||Re.create(i,o,null)).weekdays(e)},Info.weekdaysFormat=function weekdaysFormat(e,t){void 0===e&&(e="long");var r=void 0===t?{}:t,n=r.locale,i=void 0===n?null:n,a=r.numberingSystem,o=void 0===a?null:a,s=r.locObj;return((void 0===s?null:s)||Re.create(i,o,null)).weekdays(e,!0)},Info.meridiems=function meridiems(e){var t=(void 0===e?{}:e).locale,r=void 0===t?null:t;return Re.create(r).meridiems()},Info.eras=function eras(e,t){void 0===e&&(e="short");var r=(void 0===t?{}:t).locale,n=void 0===r?null:r;return Re.create(n,null,"gregory").eras(e)},Info.features=function features(){return{relative:hasRelative()}},Info}();function dayDiff(e,t){var r=function utcDayStart(e){return e.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf()},n=r(t)-r(e);return Math.floor(nt.fromMillis(n).as("days"))}function _diff(e,t,r,n){var i=function highOrderDiffs(e,t,r){for(var n,i,a={},o=0,s=[["years",function(e,t){return t.year-e.year}],["quarters",function(e,t){return t.quarter-e.quarter}],["months",function(e,t){return t.month-e.month+12*(t.year-e.year)}],["weeks",function(e,t){var r=dayDiff(e,t);return(r-r%7)/7}],["days",dayDiff]];o<s.length;o++){var c=s[o],l=c[0],u=c[1];if(r.indexOf(l)>=0){var d;n=l;var f,p=u(e,t);(i=e.plus(((d={})[l]=p,d)))>t?(e=e.plus(((f={})[l]=p-1,f)),p-=1):e=i,a[l]=p}}return[e,a,i,n]}(e,t,r),a=i[0],o=i[1],s=i[2],c=i[3],l=t-a,u=r.filter((function(e){return["hours","minutes","seconds","milliseconds"].indexOf(e)>=0}));if(0===u.length){var d;if(s<t)s=a.plus(((d={})[c]=1,d));s!==a&&(o[c]=(o[c]||0)+l/(s-a))}var f,p=nt.fromObject(o,n);return u.length>0?(f=nt.fromMillis(l,n)).shiftTo.apply(f,u).plus(p):p}var st={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},ct={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},lt=st.hanidec.replace(/[\[|\]]/g,"").split("");function digitRegex(e,t){var r=e.numberingSystem;return void 0===t&&(t=""),new RegExp(""+st[r||"latn"]+t)}function intUnit(e,t){return void 0===t&&(t=function post(e){return e}),{regex:e,deser:function deser(e){var r=e[0];return t(function parseDigits(e){var t=parseInt(e,10);if(isNaN(t)){t="";for(var r=0;r<e.length;r++){var n=e.charCodeAt(r);if(-1!==e[r].search(st.hanidec))t+=lt.indexOf(e[r]);else for(var i in ct){var a=ct[i],o=a[0],s=a[1];n>=o&&n<=s&&(t+=n-o)}}return parseInt(t,10)}return t}(r))}}}var ut="( |"+String.fromCharCode(160)+")",dt=new RegExp(ut,"g");function fixListRegex(e){return e.replace(/\./g,"\\.?").replace(dt,ut)}function stripInsensitivities(e){return e.replace(/\./g,"").replace(dt," ").toLowerCase()}function oneOf(e,t){return null===e?null:{regex:RegExp(e.map(fixListRegex).join("|")),deser:function deser(r){var n=r[0];return e.findIndex((function(e){return stripInsensitivities(n)===stripInsensitivities(e)}))+t}}}function offset(e,t){return{regex:e,deser:function deser(e){return signedOffset(e[1],e[2])},groups:t}}function simple(e){return{regex:e,deser:function deser(e){return e[0]}}}var ft={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour:{numeric:"h","2-digit":"hh"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"}};var pt=null;function maybeExpandMacroToken(e,t){if(e.literal)return e;var r=q.macroTokenToFormatOpts(e.val);if(!r)return e;var n=q.create(t,r).formatDateTimeParts(function getDummyDateTime(){return pt||(pt=At.fromMillis(1555555555555)),pt}()).map((function(e){return function tokenForPart(e,t,r){var n=e.type,i=e.value;if("literal"===n)return{literal:!0,val:i};var a=r[n],o=ft[n];return"object"==typeof o&&(o=o[a]),o?{literal:!1,val:o}:void 0}(e,0,r)}));return n.includes(void 0)?e:n}function explainFromTokens(e,t,r){var n=function expandMacroTokens(e,t){var r;return(r=Array.prototype).concat.apply(r,e.map((function(e){return maybeExpandMacroToken(e,t)})))}(q.parseFormat(r),e),i=n.map((function(t){return function unitForToken(e,t){var r=digitRegex(t),n=digitRegex(t,"{2}"),i=digitRegex(t,"{3}"),a=digitRegex(t,"{4}"),o=digitRegex(t,"{6}"),s=digitRegex(t,"{1,2}"),c=digitRegex(t,"{1,3}"),l=digitRegex(t,"{1,6}"),u=digitRegex(t,"{1,9}"),d=digitRegex(t,"{2,4}"),f=digitRegex(t,"{4,6}"),p=function literal(e){return{regex:RegExp((t=e.val,t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"))),deser:function deser(e){return e[0]},literal:!0};var t},y=function unitate(y){if(e.literal)return p(y);switch(y.val){case"G":return oneOf(t.eras("short",!1),0);case"GG":return oneOf(t.eras("long",!1),0);case"y":return intUnit(l);case"yy":case"kk":return intUnit(d,untruncateYear);case"yyyy":case"kkkk":return intUnit(a);case"yyyyy":return intUnit(f);case"yyyyyy":return intUnit(o);case"M":case"L":case"d":case"H":case"h":case"m":case"q":case"s":case"W":return intUnit(s);case"MM":case"LL":case"dd":case"HH":case"hh":case"mm":case"qq":case"ss":case"WW":return intUnit(n);case"MMM":return oneOf(t.months("short",!0,!1),1);case"MMMM":return oneOf(t.months("long",!0,!1),1);case"LLL":return oneOf(t.months("short",!1,!1),1);case"LLLL":return oneOf(t.months("long",!1,!1),1);case"o":case"S":return intUnit(c);case"ooo":case"SSS":return intUnit(i);case"u":return simple(u);case"uu":return simple(s);case"uuu":case"E":case"c":return intUnit(r);case"a":return oneOf(t.meridiems(),0);case"EEE":return oneOf(t.weekdays("short",!1,!1),1);case"EEEE":return oneOf(t.weekdays("long",!1,!1),1);case"ccc":return oneOf(t.weekdays("short",!0,!1),1);case"cccc":return oneOf(t.weekdays("long",!0,!1),1);case"Z":case"ZZ":return offset(new RegExp("([+-]"+s.source+")(?::("+n.source+"))?"),2);case"ZZZ":return offset(new RegExp("([+-]"+s.source+")("+n.source+")?"),2);case"z":return simple(/[a-z_+-/]{1,256}?/i);default:return p(y)}}(e)||{invalidReason:"missing Intl.DateTimeFormat.formatToParts support"};return y.token=e,y}(t,e)})),a=i.find((function(e){return e.invalidReason}));if(a)return{input:t,tokens:n,invalidReason:a.invalidReason};var s=function buildRegex(e){return["^"+e.map((function(e){return e.regex})).reduce((function(e,t){return e+"("+t.source+")"}),"")+"$",e]}(i),c=s[0],l=s[1],u=RegExp(c,"i"),d=function match(e,t,r){var n=e.match(t);if(n){var i={},a=1;for(var o in r)if(hasOwnProperty(r,o)){var s=r[o],c=s.groups?s.groups+1:1;!s.literal&&s.token&&(i[s.token.val[0]]=s.deser(n.slice(a,a+c))),a+=c}return[n,i]}return[n,{}]}(t,u,l),f=d[0],p=d[1],y=p?function dateTimeFromMatches(e){var t,r=null;return isUndefined(e.z)||(r=ee.create(e.z)),isUndefined(e.Z)||(r||(r=new re(e.Z)),t=e.Z),isUndefined(e.q)||(e.M=3*(e.q-1)+1),isUndefined(e.h)||(e.h<12&&1===e.a?e.h+=12:12===e.h&&0===e.a&&(e.h=0)),0===e.G&&e.y&&(e.y=-e.y),isUndefined(e.u)||(e.S=parseMillis(e.u)),[Object.keys(e).reduce((function(t,r){var n=function toField(e){switch(e){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}}(r);return n&&(t[n]=e[r]),t}),{}),r,t]}(p):[null,null,void 0],m=y[0],h=y[1],v=y[2];if(hasOwnProperty(p,"a")&&hasOwnProperty(p,"H"))throw new o("Can't include meridiem when specifying 24-hour format");return{input:t,tokens:n,regex:u,rawMatches:f,matches:p,result:m,zone:h,specificOffset:v}}var yt=[0,31,59,90,120,151,181,212,243,273,304,334],mt=[0,31,60,91,121,152,182,213,244,274,305,335];function unitOutOfRange(e,t){return new W("unit out of range","you specified "+t+" (of type "+typeof t+") as a "+e+", which is invalid")}function dayOfWeek(e,t,r){var n=new Date(Date.UTC(e,t-1,r));e<100&&e>=0&&n.setUTCFullYear(n.getUTCFullYear()-1900);var i=n.getUTCDay();return 0===i?7:i}function computeOrdinal(e,t,r){return r+(isLeapYear(e)?mt:yt)[t-1]}function uncomputeOrdinal(e,t){var r=isLeapYear(e)?mt:yt,n=r.findIndex((function(e){return e<t}));return{month:n+1,day:t-r[n]}}function gregorianToWeek(e){var t,r=e.year,n=e.month,i=e.day,a=computeOrdinal(r,n,i),o=dayOfWeek(r,n,i),s=Math.floor((a-o+10)/7);return s<1?s=weeksInWeekYear(t=r-1):s>weeksInWeekYear(r)?(t=r+1,s=1):t=r,_extends({weekYear:t,weekNumber:s,weekday:o},timeObject(e))}function weekToGregorian(e){var t,r=e.weekYear,n=e.weekNumber,i=e.weekday,a=dayOfWeek(r,1,4),o=daysInYear(r),s=7*n+i-a-3;s<1?s+=daysInYear(t=r-1):s>o?(t=r+1,s-=daysInYear(r)):t=r;var c=uncomputeOrdinal(t,s);return _extends({year:t,month:c.month,day:c.day},timeObject(e))}function gregorianToOrdinal(e){var t=e.year;return _extends({year:t,ordinal:computeOrdinal(t,e.month,e.day)},timeObject(e))}function ordinalToGregorian(e){var t=e.year,r=uncomputeOrdinal(t,e.ordinal);return _extends({year:t,month:r.month,day:r.day},timeObject(e))}function hasInvalidGregorianData(e){var t=isInteger(e.year),r=integerBetween(e.month,1,12),n=integerBetween(e.day,1,daysInMonth(e.year,e.month));return t?r?!n&&unitOutOfRange("day",e.day):unitOutOfRange("month",e.month):unitOutOfRange("year",e.year)}function hasInvalidTimeData(e){var t=e.hour,r=e.minute,n=e.second,i=e.millisecond,a=integerBetween(t,0,23)||24===t&&0===r&&0===n&&0===i,o=integerBetween(r,0,59),s=integerBetween(n,0,59),c=integerBetween(i,0,999);return a?o?s?!c&&unitOutOfRange("millisecond",i):unitOutOfRange("second",n):unitOutOfRange("minute",r):unitOutOfRange("hour",t)}var ht="Invalid DateTime",vt=864e13;function unsupportedZone(e){return new W("unsupported zone",'the zone "'+e.name+'" is not supported')}function possiblyCachedWeekData(e){return null===e.weekData&&(e.weekData=gregorianToWeek(e.c)),e.weekData}function clone(e,t){var r={ts:e.ts,zone:e.zone,c:e.c,o:e.o,loc:e.loc,invalid:e.invalid};return new At(_extends({},r,t,{old:r}))}function fixOffset(e,t,r){var n=e-60*t*1e3,i=r.offset(n);if(t===i)return[n,t];n-=60*(i-t)*1e3;var a=r.offset(n);return i===a?[n,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}function tsToObj(e,t){var r=new Date(e+=60*t*1e3);return{year:r.getUTCFullYear(),month:r.getUTCMonth()+1,day:r.getUTCDate(),hour:r.getUTCHours(),minute:r.getUTCMinutes(),second:r.getUTCSeconds(),millisecond:r.getUTCMilliseconds()}}function objToTS(e,t,r){return fixOffset(objToLocalTS(e),t,r)}function adjustTime(e,t){var r=e.o,n=e.c.year+Math.trunc(t.years),i=e.c.month+Math.trunc(t.months)+3*Math.trunc(t.quarters),a=_extends({},e.c,{year:n,month:i,day:Math.min(e.c.day,daysInMonth(n,i))+Math.trunc(t.days)+7*Math.trunc(t.weeks)}),o=nt.fromObject({years:t.years-Math.trunc(t.years),quarters:t.quarters-Math.trunc(t.quarters),months:t.months-Math.trunc(t.months),weeks:t.weeks-Math.trunc(t.weeks),days:t.days-Math.trunc(t.days),hours:t.hours,minutes:t.minutes,seconds:t.seconds,milliseconds:t.milliseconds}).as("milliseconds"),s=fixOffset(objToLocalTS(a),r,e.zone),c=s[0],l=s[1];return 0!==o&&(c+=o,l=e.zone.offset(c)),{ts:c,o:l}}function parseDataToDateTime(e,t,r,n,i,a){var o=r.setZone,s=r.zone;if(e&&0!==Object.keys(e).length){var c=t||s,l=At.fromObject(e,_extends({},r,{zone:c,specificOffset:a}));return o?l:l.setZone(s)}return At.invalid(new W("unparsable",'the input "'+i+"\" can't be parsed as "+n))}function toTechFormat(e,t,r){return void 0===r&&(r=!0),e.isValid?q.create(Re.create("en-US"),{allowZ:r,forceSimple:!0}).formatDateTimeFromString(e,t):null}function _toISODate(e,t){var r=e.c.year>9999||e.c.year<0,n="";return r&&e.c.year>=0&&(n+="+"),n+=padStart(e.c.year,r?6:4),t?(n+="-",n+=padStart(e.c.month),n+="-",n+=padStart(e.c.day)):(n+=padStart(e.c.month),n+=padStart(e.c.day)),n}function _toISOTime(e,t,r,n,i){var a=padStart(e.c.hour);return t?(a+=":",a+=padStart(e.c.minute),0===e.c.second&&r||(a+=":")):a+=padStart(e.c.minute),0===e.c.second&&r||(a+=padStart(e.c.second),0===e.c.millisecond&&n||(a+=".",a+=padStart(e.c.millisecond,3))),i&&(e.isOffsetFixed&&0===e.offset?a+="Z":e.o<0?(a+="-",a+=padStart(Math.trunc(-e.o/60)),a+=":",a+=padStart(Math.trunc(-e.o%60))):(a+="+",a+=padStart(Math.trunc(e.o/60)),a+=":",a+=padStart(Math.trunc(e.o%60)))),a}var gt={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},bt={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},Ot={ordinal:1,hour:0,minute:0,second:0,millisecond:0},Rt=["year","month","day","hour","minute","second","millisecond"],_t=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],St=["year","ordinal","hour","minute","second","millisecond"];function normalizeUnit(e){var t={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[e.toLowerCase()];if(!t)throw new s(e);return t}function quickDT(e,t){var r,n,i=normalizeZone(t.zone,ue.defaultZone),a=Re.fromObject(t),o=ue.now();if(isUndefined(e.year))r=o;else{for(var s,c=_createForOfIteratorHelperLoose(Rt);!(s=c()).done;){var l=s.value;isUndefined(e[l])&&(e[l]=gt[l])}var u=hasInvalidGregorianData(e)||hasInvalidTimeData(e);if(u)return At.invalid(u);var d=objToTS(e,i.offset(o),i);r=d[0],n=d[1]}return new At({ts:r,zone:i,loc:a,o:n})}function diffRelative(e,t,r){var n=!!isUndefined(r.round)||r.round,i=function format(e,i){return e=roundTo(e,n||r.calendary?0:2,!0),t.loc.clone(r).relFormatter(r).format(e,i)},a=function differ(n){return r.calendary?t.hasSame(e,n)?0:t.startOf(n).diff(e.startOf(n),n).get(n):t.diff(e,n).get(n)};if(r.unit)return i(a(r.unit),r.unit);for(var o,s=_createForOfIteratorHelperLoose(r.units);!(o=s()).done;){var c=o.value,l=a(c);if(Math.abs(l)>=1)return i(l,c)}return i(e>t?-0:0,r.units[r.units.length-1])}function lastOpts(e){var t,r={};return e.length>0&&"object"==typeof e[e.length-1]?(r=e[e.length-1],t=Array.from(e).slice(0,e.length-1)):t=Array.from(e),[r,t]}var At=function(){function DateTime(e){var t=e.zone||ue.defaultZone,r=e.invalid||(Number.isNaN(e.ts)?new W("invalid input"):null)||(t.isValid?null:unsupportedZone(t));this.ts=isUndefined(e.ts)?ue.now():e.ts;var n=null,i=null;if(!r)if(e.old&&e.old.ts===this.ts&&e.old.zone.equals(t)){var a=[e.old.c,e.old.o];n=a[0],i=a[1]}else{var o=t.offset(this.ts);n=tsToObj(this.ts,o),n=(r=Number.isNaN(n.year)?new W("invalid input"):null)?null:n,i=r?null:o}this._zone=t,this.loc=e.loc||Re.create(),this.invalid=r,this.weekData=null,this.c=n,this.o=i,this.isLuxonDateTime=!0}DateTime.now=function now(){return new DateTime({})},DateTime.local=function local(){var e=lastOpts(arguments),t=e[0],r=e[1],n=r[0],i=r[1],a=r[2],o=r[3],s=r[4],c=r[5],l=r[6];return quickDT({year:n,month:i,day:a,hour:o,minute:s,second:c,millisecond:l},t)},DateTime.utc=function utc(){var e=lastOpts(arguments),t=e[0],r=e[1],n=r[0],i=r[1],a=r[2],o=r[3],s=r[4],c=r[5],l=r[6];return t.zone=re.utcInstance,quickDT({year:n,month:i,day:a,hour:o,minute:s,second:c,millisecond:l},t)},DateTime.fromJSDate=function fromJSDate(e,t){void 0===t&&(t={});var r=function isDate(e){return"[object Date]"===Object.prototype.toString.call(e)}(e)?e.valueOf():NaN;if(Number.isNaN(r))return DateTime.invalid("invalid input");var n=normalizeZone(t.zone,ue.defaultZone);return n.isValid?new DateTime({ts:r,zone:n,loc:Re.fromObject(t)}):DateTime.invalid(unsupportedZone(n))},DateTime.fromMillis=function fromMillis(e,t){if(void 0===t&&(t={}),isNumber(e))return e<-vt||e>vt?DateTime.invalid("Timestamp out of range"):new DateTime({ts:e,zone:normalizeZone(t.zone,ue.defaultZone),loc:Re.fromObject(t)});throw new c("fromMillis requires a numerical input, but received a "+typeof e+" with value "+e)},DateTime.fromSeconds=function fromSeconds(e,t){if(void 0===t&&(t={}),isNumber(e))return new DateTime({ts:1e3*e,zone:normalizeZone(t.zone,ue.defaultZone),loc:Re.fromObject(t)});throw new c("fromSeconds requires a numerical input")},DateTime.fromObject=function fromObject(e,t){void 0===t&&(t={}),e=e||{};var r=normalizeZone(t.zone,ue.defaultZone);if(!r.isValid)return DateTime.invalid(unsupportedZone(r));var n=ue.now(),i=isUndefined(t.specificOffset)?r.offset(n):t.specificOffset,a=normalizeObject(e,normalizeUnit),s=!isUndefined(a.ordinal),c=!isUndefined(a.year),l=!isUndefined(a.month)||!isUndefined(a.day),u=c||l,d=a.weekYear||a.weekNumber,f=Re.fromObject(t);if((u||s)&&d)throw new o("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(l&&s)throw new o("Can't mix ordinal dates with month/day");var p,y,m=d||a.weekday&&!u,h=tsToObj(n,i);m?(p=_t,y=bt,h=gregorianToWeek(h)):s?(p=St,y=Ot,h=gregorianToOrdinal(h)):(p=Rt,y=gt);for(var v,g=!1,b=_createForOfIteratorHelperLoose(p);!(v=b()).done;){var O=v.value;isUndefined(a[O])?a[O]=g?y[O]:h[O]:g=!0}var R=m?function hasInvalidWeekData(e){var t=isInteger(e.weekYear),r=integerBetween(e.weekNumber,1,weeksInWeekYear(e.weekYear)),n=integerBetween(e.weekday,1,7);return t?r?!n&&unitOutOfRange("weekday",e.weekday):unitOutOfRange("week",e.week):unitOutOfRange("weekYear",e.weekYear)}(a):s?function hasInvalidOrdinalData(e){var t=isInteger(e.year),r=integerBetween(e.ordinal,1,daysInYear(e.year));return t?!r&&unitOutOfRange("ordinal",e.ordinal):unitOutOfRange("year",e.year)}(a):hasInvalidGregorianData(a),_=R||hasInvalidTimeData(a);if(_)return DateTime.invalid(_);var S=objToTS(m?weekToGregorian(a):s?ordinalToGregorian(a):a,i,r),A=new DateTime({ts:S[0],zone:r,o:S[1],loc:f});return a.weekday&&u&&e.weekday!==A.weekday?DateTime.invalid("mismatched weekday","you can't specify both a weekday of "+a.weekday+" and a date of "+A.toISO()):A},DateTime.fromISO=function fromISO(e,t){void 0===t&&(t={});var r=function parseISODate(e){return parse(e,[ze,Ve],[Fe,Be],[Ee,Ge],[Le,Ze])}(e);return parseDataToDateTime(r[0],r[1],t,"ISO 8601",e)},DateTime.fromRFC2822=function fromRFC2822(e,t){void 0===t&&(t={});var r=function parseRFC2822Date(e){return parse(function preprocessRFC2822(e){return e.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}(e),[ke,extractRFC2822])}(e);return parseDataToDateTime(r[0],r[1],t,"RFC 2822",e)},DateTime.fromHTTP=function fromHTTP(e,t){void 0===t&&(t={});var r=function parseHTTPDate(e){return parse(e,[xe,extractRFC1123Or850],[He,extractRFC1123Or850],[Ce,extractASCII])}(e);return parseDataToDateTime(r[0],r[1],t,"HTTP",t)},DateTime.fromFormat=function fromFormat(e,t,r){if(void 0===r&&(r={}),isUndefined(e)||isUndefined(t))throw new c("fromFormat requires an input string and a format");var n=r,i=n.locale,a=void 0===i?null:i,o=n.numberingSystem,s=void 0===o?null:o,l=function parseFromTokens(e,t,r){var n=explainFromTokens(e,t,r);return[n.result,n.zone,n.specificOffset,n.invalidReason]}(Re.fromOpts({locale:a,numberingSystem:s,defaultToEN:!0}),e,t),u=l[0],d=l[1],f=l[2],p=l[3];return p?DateTime.invalid(p):parseDataToDateTime(u,d,r,"format "+t,e,f)},DateTime.fromString=function fromString(e,t,r){return void 0===r&&(r={}),DateTime.fromFormat(e,t,r)},DateTime.fromSQL=function fromSQL(e,t){void 0===t&&(t={});var r=function parseSQL(e){return parse(e,[qe,$e],[We,Je])}(e);return parseDataToDateTime(r[0],r[1],t,"SQL",e)},DateTime.invalid=function invalid(e,t){if(void 0===t&&(t=null),!e)throw new c("need to specify a reason the DateTime is invalid");var invalid=e instanceof W?e:new W(e,t);if(ue.throwOnInvalid)throw new n(invalid);return new DateTime({invalid})},DateTime.isDateTime=function isDateTime(e){return e&&e.isLuxonDateTime||!1};var e=DateTime.prototype;return e.get=function get(e){return this[e]},e.resolvedLocaleOptions=function resolvedLocaleOptions(e){void 0===e&&(e={});var t=q.create(this.loc.clone(e),e).resolvedOptions(this);return{locale:t.locale,numberingSystem:t.numberingSystem,outputCalendar:t.calendar}},e.toUTC=function toUTC(e,t){return void 0===e&&(e=0),void 0===t&&(t={}),this.setZone(re.instance(e),t)},e.toLocal=function toLocal(){return this.setZone(ue.defaultZone)},e.setZone=function setZone(e,t){var r=void 0===t?{}:t,n=r.keepLocalTime,i=void 0!==n&&n,a=r.keepCalendarTime,o=void 0!==a&&a;if((e=normalizeZone(e,ue.defaultZone)).equals(this.zone))return this;if(e.isValid){var s=this.ts;if(i||o){var c=e.offset(this.ts);s=objToTS(this.toObject(),c,e)[0]}return clone(this,{ts:s,zone:e})}return DateTime.invalid(unsupportedZone(e))},e.reconfigure=function reconfigure(e){var t=void 0===e?{}:e,r=t.locale,n=t.numberingSystem,i=t.outputCalendar;return clone(this,{loc:this.loc.clone({locale:r,numberingSystem:n,outputCalendar:i})})},e.setLocale=function setLocale(e){return this.reconfigure({locale:e})},e.set=function set(e){if(!this.isValid)return this;var t,r=normalizeObject(e,normalizeUnit),n=!isUndefined(r.weekYear)||!isUndefined(r.weekNumber)||!isUndefined(r.weekday),i=!isUndefined(r.ordinal),a=!isUndefined(r.year),s=!isUndefined(r.month)||!isUndefined(r.day),c=a||s,l=r.weekYear||r.weekNumber;if((c||i)&&l)throw new o("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(s&&i)throw new o("Can't mix ordinal dates with month/day");n?t=weekToGregorian(_extends({},gregorianToWeek(this.c),r)):isUndefined(r.ordinal)?(t=_extends({},this.toObject(),r),isUndefined(r.day)&&(t.day=Math.min(daysInMonth(t.year,t.month),t.day))):t=ordinalToGregorian(_extends({},gregorianToOrdinal(this.c),r));var u=objToTS(t,this.o,this.zone);return clone(this,{ts:u[0],o:u[1]})},e.plus=function plus(e){return this.isValid?clone(this,adjustTime(this,nt.fromDurationLike(e))):this},e.minus=function minus(e){return this.isValid?clone(this,adjustTime(this,nt.fromDurationLike(e).negate())):this},e.startOf=function startOf(e){if(!this.isValid)return this;var t={},r=nt.normalizeUnit(e);switch(r){case"years":t.month=1;case"quarters":case"months":t.day=1;case"weeks":case"days":t.hour=0;case"hours":t.minute=0;case"minutes":t.second=0;case"seconds":t.millisecond=0}if("weeks"===r&&(t.weekday=1),"quarters"===r){var n=Math.ceil(this.month/3);t.month=3*(n-1)+1}return this.set(t)},e.endOf=function endOf(e){var t;return this.isValid?this.plus((t={},t[e]=1,t)).startOf(e).minus(1):this},e.toFormat=function toFormat(e,t){return void 0===t&&(t={}),this.isValid?q.create(this.loc.redefaultToEN(t)).formatDateTimeFromString(this,e):ht},e.toLocaleString=function toLocaleString(e,t){return void 0===e&&(e=p),void 0===t&&(t={}),this.isValid?q.create(this.loc.clone(t),e).formatDateTime(this):ht},e.toLocaleParts=function toLocaleParts(e){return void 0===e&&(e={}),this.isValid?q.create(this.loc.clone(e),e).formatDateTimeParts(this):[]},e.toISO=function toISO(e){var t=void 0===e?{}:e,r=t.format,n=void 0===r?"extended":r,i=t.suppressSeconds,a=void 0!==i&&i,o=t.suppressMilliseconds,s=void 0!==o&&o,c=t.includeOffset,l=void 0===c||c;if(!this.isValid)return null;var u="extended"===n,d=_toISODate(this,u);return d+="T",d+=_toISOTime(this,u,a,s,l)},e.toISODate=function toISODate(e){var t=(void 0===e?{}:e).format,r=void 0===t?"extended":t;return this.isValid?_toISODate(this,"extended"===r):null},e.toISOWeekDate=function toISOWeekDate(){return toTechFormat(this,"kkkk-'W'WW-c")},e.toISOTime=function toISOTime(e){var t=void 0===e?{}:e,r=t.suppressMilliseconds,n=void 0!==r&&r,i=t.suppressSeconds,a=void 0!==i&&i,o=t.includeOffset,s=void 0===o||o,c=t.includePrefix,l=void 0!==c&&c,u=t.format,d=void 0===u?"extended":u;return this.isValid?(l?"T":"")+_toISOTime(this,"extended"===d,a,n,s):null},e.toRFC2822=function toRFC2822(){return toTechFormat(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)},e.toHTTP=function toHTTP(){return toTechFormat(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")},e.toSQLDate=function toSQLDate(){return this.isValid?_toISODate(this,!0):null},e.toSQLTime=function toSQLTime(e){var t=void 0===e?{}:e,r=t.includeOffset,n=void 0===r||r,i=t.includeZone,a=void 0!==i&&i,o=t.includeOffsetSpace,s="HH:mm:ss.SSS";return(a||n)&&((void 0===o||o)&&(s+=" "),a?s+="z":n&&(s+="ZZ")),toTechFormat(this,s,!0)},e.toSQL=function toSQL(e){return void 0===e&&(e={}),this.isValid?this.toSQLDate()+" "+this.toSQLTime(e):null},e.toString=function toString(){return this.isValid?this.toISO():ht},e.valueOf=function valueOf(){return this.toMillis()},e.toMillis=function toMillis(){return this.isValid?this.ts:NaN},e.toSeconds=function toSeconds(){return this.isValid?this.ts/1e3:NaN},e.toUnixInteger=function toUnixInteger(){return this.isValid?Math.floor(this.ts/1e3):NaN},e.toJSON=function toJSON(){return this.toISO()},e.toBSON=function toBSON(){return this.toJSDate()},e.toObject=function toObject(e){if(void 0===e&&(e={}),!this.isValid)return{};var t=_extends({},this.c);return e.includeConfig&&(t.outputCalendar=this.outputCalendar,t.numberingSystem=this.loc.numberingSystem,t.locale=this.loc.locale),t},e.toJSDate=function toJSDate(){return new Date(this.isValid?this.ts:NaN)},e.diff=function diff(e,t,r){if(void 0===t&&(t="milliseconds"),void 0===r&&(r={}),!this.isValid||!e.isValid)return nt.invalid("created by diffing an invalid DateTime");var n=_extends({locale:this.locale,numberingSystem:this.numberingSystem},r),i=function maybeArray(e){return Array.isArray(e)?e:[e]}(t).map(nt.normalizeUnit),a=e.valueOf()>this.valueOf(),o=_diff(a?this:e,a?e:this,i,n);return a?o.negate():o},e.diffNow=function diffNow(e,t){return void 0===e&&(e="milliseconds"),void 0===t&&(t={}),this.diff(DateTime.now(),e,t)},e.until=function until(e){return this.isValid?at.fromDateTimes(this,e):this},e.hasSame=function hasSame(e,t){if(!this.isValid)return!1;var r=e.valueOf(),n=this.setZone(e.zone,{keepLocalTime:!0});return n.startOf(t)<=r&&r<=n.endOf(t)},e.equals=function equals(e){return this.isValid&&e.isValid&&this.valueOf()===e.valueOf()&&this.zone.equals(e.zone)&&this.loc.equals(e.loc)},e.toRelative=function toRelative(e){if(void 0===e&&(e={}),!this.isValid)return null;var t=e.base||DateTime.fromObject({},{zone:this.zone}),r=e.padding?this<t?-e.padding:e.padding:0,n=["years","months","days","hours","minutes","seconds"],i=e.unit;return Array.isArray(e.unit)&&(n=e.unit,i=void 0),diffRelative(t,this.plus(r),_extends({},e,{numeric:"always",units:n,unit:i}))},e.toRelativeCalendar=function toRelativeCalendar(e){return void 0===e&&(e={}),this.isValid?diffRelative(e.base||DateTime.fromObject({},{zone:this.zone}),this,_extends({},e,{numeric:"auto",units:["years","months","days"],calendary:!0})):null},DateTime.min=function min(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];if(!t.every(DateTime.isDateTime))throw new c("min requires all arguments be DateTimes");return bestBy(t,(function(e){return e.valueOf()}),Math.min)},DateTime.max=function max(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];if(!t.every(DateTime.isDateTime))throw new c("max requires all arguments be DateTimes");return bestBy(t,(function(e){return e.valueOf()}),Math.max)},DateTime.fromFormatExplain=function fromFormatExplain(e,t,r){void 0===r&&(r={});var n=r,i=n.locale,a=void 0===i?null:i,o=n.numberingSystem,s=void 0===o?null:o;return explainFromTokens(Re.fromOpts({locale:a,numberingSystem:s,defaultToEN:!0}),e,t)},DateTime.fromStringExplain=function fromStringExplain(e,t,r){return void 0===r&&(r={}),DateTime.fromFormatExplain(e,t,r)},_createClass(DateTime,[{key:"isValid",get:function get(){return null===this.invalid}},{key:"invalidReason",get:function get(){return this.invalid?this.invalid.reason:null}},{key:"invalidExplanation",get:function get(){return this.invalid?this.invalid.explanation:null}},{key:"locale",get:function get(){return this.isValid?this.loc.locale:null}},{key:"numberingSystem",get:function get(){return this.isValid?this.loc.numberingSystem:null}},{key:"outputCalendar",get:function get(){return this.isValid?this.loc.outputCalendar:null}},{key:"zone",get:function get(){return this._zone}},{key:"zoneName",get:function get(){return this.isValid?this.zone.name:null}},{key:"year",get:function get(){return this.isValid?this.c.year:NaN}},{key:"quarter",get:function get(){return this.isValid?Math.ceil(this.c.month/3):NaN}},{key:"month",get:function get(){return this.isValid?this.c.month:NaN}},{key:"day",get:function get(){return this.isValid?this.c.day:NaN}},{key:"hour",get:function get(){return this.isValid?this.c.hour:NaN}},{key:"minute",get:function get(){return this.isValid?this.c.minute:NaN}},{key:"second",get:function get(){return this.isValid?this.c.second:NaN}},{key:"millisecond",get:function get(){return this.isValid?this.c.millisecond:NaN}},{key:"weekYear",get:function get(){return this.isValid?possiblyCachedWeekData(this).weekYear:NaN}},{key:"weekNumber",get:function get(){return this.isValid?possiblyCachedWeekData(this).weekNumber:NaN}},{key:"weekday",get:function get(){return this.isValid?possiblyCachedWeekData(this).weekday:NaN}},{key:"ordinal",get:function get(){return this.isValid?gregorianToOrdinal(this.c).ordinal:NaN}},{key:"monthShort",get:function get(){return this.isValid?ot.months("short",{locObj:this.loc})[this.month-1]:null}},{key:"monthLong",get:function get(){return this.isValid?ot.months("long",{locObj:this.loc})[this.month-1]:null}},{key:"weekdayShort",get:function get(){return this.isValid?ot.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}},{key:"weekdayLong",get:function get(){return this.isValid?ot.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}},{key:"offset",get:function get(){return this.isValid?+this.o:NaN}},{key:"offsetNameShort",get:function get(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}},{key:"offsetNameLong",get:function get(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}},{key:"isOffsetFixed",get:function get(){return this.isValid?this.zone.isUniversal:null}},{key:"isInDST",get:function get(){return!this.isOffsetFixed&&(this.offset>this.set({month:1}).offset||this.offset>this.set({month:5}).offset)}},{key:"isInLeapYear",get:function get(){return isLeapYear(this.year)}},{key:"daysInMonth",get:function get(){return daysInMonth(this.year,this.month)}},{key:"daysInYear",get:function get(){return this.isValid?daysInYear(this.year):NaN}},{key:"weeksInWeekYear",get:function get(){return this.isValid?weeksInWeekYear(this.weekYear):NaN}}],[{key:"DATE_SHORT",get:function get(){return p}},{key:"DATE_MED",get:function get(){return y}},{key:"DATE_MED_WITH_WEEKDAY",get:function get(){return m}},{key:"DATE_FULL",get:function get(){return h}},{key:"DATE_HUGE",get:function get(){return v}},{key:"TIME_SIMPLE",get:function get(){return g}},{key:"TIME_WITH_SECONDS",get:function get(){return b}},{key:"TIME_WITH_SHORT_OFFSET",get:function get(){return O}},{key:"TIME_WITH_LONG_OFFSET",get:function get(){return R}},{key:"TIME_24_SIMPLE",get:function get(){return _}},{key:"TIME_24_WITH_SECONDS",get:function get(){return S}},{key:"TIME_24_WITH_SHORT_OFFSET",get:function get(){return A}},{key:"TIME_24_WITH_LONG_OFFSET",get:function get(){return j}},{key:"DATETIME_SHORT",get:function get(){return N}},{key:"DATETIME_SHORT_WITH_SECONDS",get:function get(){return P}},{key:"DATETIME_MED",get:function get(){return T}},{key:"DATETIME_MED_WITH_SECONDS",get:function get(){return I}},{key:"DATETIME_MED_WITH_WEEKDAY",get:function get(){return w}},{key:"DATETIME_FULL",get:function get(){return M}},{key:"DATETIME_FULL_WITH_SECONDS",get:function get(){return D}},{key:"DATETIME_HUGE",get:function get(){return k}},{key:"DATETIME_HUGE_WITH_SECONDS",get:function get(){return x}}]),DateTime}();function friendlyDateTime(e){if(At.isDateTime(e))return e;if(e&&e.valueOf&&isNumber(e.valueOf()))return At.fromJSDate(e);if(e&&"object"==typeof e)return At.fromObject(e);throw new c("Unknown datetime argument: "+e+", of type "+typeof e)}t.DateTime=At,t.Duration=nt,t.FixedOffsetZone=re,t.IANAZone=ee,t.Info=ot,t.Interval=at,t.InvalidZone=ne,t.Settings=ue,t.SystemZone=Y,t.VERSION="2.3.2",t.Zone=$},4714:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0;var n=r(6898);Object.defineProperty(t,"nameof",{enumerable:!0,get:function(){return n.nameof}})},6898:(e,t)=>{function cleanseAssertionOperators(e){return e.replace(/[?!]/g,"")}Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0,t.nameof=function nameof(e,t){var r=e.toString();if(r.startsWith("class ")&&!r.startsWith("class =>"))return cleanseAssertionOperators(r.substring("class ".length,r.indexOf(" {")));if(r.includes("=>"))return cleanseAssertionOperators(r.substring(r.indexOf(".")+1));var n=r.match(/function\s*\(\w+\)\s*\{[\r\n\s]*return\s+\w+\.((\w+\.)*(\w+))/i);if(n)return t&&t.lastProp?n[3]:n[1];if(r.startsWith("function "))return cleanseAssertionOperators(r.substring("function ".length,r.indexOf("(")));throw new Error("ts-simple-nameof: Invalid function.")}},2890:e=>{e.exports=NMSHDCrypto},9663:e=>{e.exports=NMSHDTransport},194:e=>{e.exports=TSServal}},t={};function __webpack_require__(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,__webpack_require__),i.exports}__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r=__webpack_require__(5590);NMSHDContent=r})();
1
+ var NMSHDContent;(()=>{"use strict";var e={8564:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6021:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttribute=void 0;const a=r(194),o=r(9663);class AbstractAttribute extends o.CoreSerializable{}n([(0,a.validate)(),(0,a.serialize)(),i("design:type",o.CoreAddress)],AbstractAttribute.prototype,"owner",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttribute.prototype,"validFrom",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttribute.prototype,"validTo",void 0),t.AbstractAttribute=AbstractAttribute},5282:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttributeQuery=void 0;const a=r(194),o=r(9663);class AbstractAttributeQuery extends o.CoreSerializable{}n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttributeQuery.prototype,"validFrom",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],AbstractAttributeQuery.prototype,"validTo",void 0),t.AbstractAttributeQuery=AbstractAttributeQuery},4183:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAttributeValue=void 0;const n=r(194);class AbstractAttributeValue extends n.Serializable{static valueGenerator(e){return e.value}get valueHints(){return this.constructor.valueHints}get renderHints(){return this.constructor.renderHints}}t.AbstractAttributeValue=AbstractAttributeValue},2861:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractComplexValue=void 0;const n=r(4183),i=r(3711);class AbstractComplexValue extends n.AbstractAttributeValue{static get renderHints(){return i.RenderHints.from({technicalType:i.RenderHintsTechnicalType.Object,editType:i.RenderHintsEditType.Complex})}}t.AbstractComplexValue=AbstractComplexValue},7098:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AttributeValues=void 0;const n=r(3383);!function(e){let t,r;!function(e){let t,r;!function(e){e.CLASSES=[n.Affiliation,n.BirthDate,n.BirthName,n.BirthPlace,n.Citizenship,n.CommunicationLanguage,n.DeliveryBoxAddress,n.DisplayName,n.EMailAddress,n.FaxNumber,n.FileReference,n.JobTitle,n.Nationality,n.PersonName,n.PhoneNumber,n.PostOfficeBoxAddress,n.Pseudonym,n.Sex,n.StreetAddress,n.Website],e.TYPE_NAMES=["Affiliation","BirthDate","BirthName","BirthPlace","Citizenship","CommunicationLanguage","DeliveryBoxAddress","DisplayName","EMailAddress","FaxNumber","FileReference","JobTitle","Nationality","PersonName","PhoneNumber","PostOfficeBoxAddress","Pseudonym","Sex","StreetAddress","Website"],e.TYPE_NAMES_STRINGIFIED=JSON.stringify(e.TYPE_NAMES)}(t=e.Editable||(e.Editable={})),function(e){e.CLASSES=[n.AffiliationOrganization,n.AffiliationRole,n.AffiliationUnit,n.BirthCity,n.BirthCountry,n.BirthDay,n.BirthMonth,n.BirthState,n.BirthYear,n.City,n.Country,n.GivenName,n.HonorificPrefix,n.HonorificSuffix,n.HouseNumber,n.MiddleName,n.State,n.Street,n.Surname,n.ZipCode],e.TYPE_NAMES=["AffiliationOrganization","AffiliationRole","AffiliationUnit","BirthCity","BirthCountry","BirthDay","BirthMonth","BirthState","BirthYear","City","Country","GivenName","HonorificPrefix","HonorificSuffix","HouseNumber","MiddleName","State","Street","Surname","ZipCode"],e.TYPE_NAMES_STRINGIFIED=JSON.stringify(e.TYPE_NAMES)}(r=e.Uneditable||(e.Uneditable={})),e.CLASSES=[...t.CLASSES,...r.CLASSES],e.TYPE_NAMES=[...t.TYPE_NAMES,...r.TYPE_NAMES],e.TYPE_NAMES_STRINGIFIED=JSON.stringify(e.TYPE_NAMES)}(t=e.Identity||(e.Identity={})),function(e){e.CLASSES=[n.ProprietaryBoolean,n.ProprietaryCountry,n.ProprietaryEMailAddress,n.ProprietaryFileReference,n.ProprietaryFloat,n.ProprietaryHEXColor,n.ProprietaryInteger,n.ProprietaryLanguage,n.ProprietaryPhoneNumber,n.ProprietaryString,n.ProprietaryURL,n.Consent],e.TYPE_NAMES=["ProprietaryBoolean","ProprietaryCountry","ProprietaryEMailAddress","ProprietaryFileReference","ProprietaryFloat","ProprietaryHEXColor","ProprietaryInteger","ProprietaryLanguage","ProprietaryPhoneNumber","ProprietaryString","ProprietaryURL","Consent"],e.TYPE_NAMES_STRINGIFIED=JSON.stringify(e.TYPE_NAMES)}(r=e.Relationship||(e.Relationship={})),e.CLASSES=[...t.CLASSES,...r.CLASSES],e.TYPE_NAMES=[...t.TYPE_NAMES,...r.TYPE_NAMES],e.TYPE_NAMES_STRINGIFIED=JSON.stringify(e.TYPE_NAMES)}(t.AttributeValues||(t.AttributeValues={}))},7788:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.IdentityAttribute=void 0;const a=r(194),o=r(6021),s=r(7098);let c=class IdentityAttribute extends o.AbstractAttribute{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)({unionTypes:s.AttributeValues.Identity.CLASSES}),(0,a.validate)(),i("design:type",Object)],c.prototype,"value",void 0),n([(0,a.serialize)({type:String}),(0,a.validate)({nullable:!0}),i("design:type",Array)],c.prototype,"tags",void 0),c=n([(0,a.type)("IdentityAttribute")],c),t.IdentityAttribute=c},8092:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.IdentityAttributeQuery=void 0;const a=r(194),o=r(5282),s=r(7098);let c=class IdentityAttributeQuery extends o.AbstractAttributeQuery{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>s.AttributeValues.Identity.TYPE_NAMES.includes(e)?void 0:`must be one of: ${s.AttributeValues.Identity.TYPE_NAMES_STRINGIFIED}`}),i("design:type",String)],c.prototype,"valueType",void 0),n([(0,a.serialize)({type:String}),(0,a.validate)({nullable:!0}),i("design:type",Array)],c.prototype,"tags",void 0),c=n([(0,a.type)("IdentityAttributeQuery")],c),t.IdentityAttributeQuery=c},2226:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttribute=void 0;const a=r(194),o=r(6021),s=r(7098),c=r(5022);let l=class RelationshipAttribute extends o.AbstractAttribute{static preFrom(e){return void 0===e.isTechnical&&(e.isTechnical=!1),e}static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)({unionTypes:s.AttributeValues.Relationship.CLASSES}),(0,a.validate)(),i("design:type",Object)],l.prototype,"value",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],l.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],l.prototype,"isTechnical",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c.RelationshipAttributeConfidentiality).includes(e)?void 0:`must be one of: ${Object.values(c.RelationshipAttributeConfidentiality)}`}),i("design:type",String)],l.prototype,"confidentiality",void 0),l=n([(0,a.type)("RelationshipAttribute")],l),t.RelationshipAttribute=l},5022:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttributeConfidentiality=void 0,function(e){e.Public="public",e.Private="private",e.Protected="protected"}(t.RelationshipAttributeConfidentiality||(t.RelationshipAttributeConfidentiality={}))},7791:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipAttributeQuery=t.RelationshipAttributeCreationHints=void 0;const a=r(194),o=r(9663),s=r(5282),c=r(7098),l=r(3711),u=r(5022);let d=class RelationshipAttributeCreationHints extends a.Serializable{static preFrom(e){return void 0===e.isTechnical&&(e.isTechnical=!1),e}static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],d.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>c.AttributeValues.Relationship.TYPE_NAMES.includes(e)?void 0:`must be one of: ${c.AttributeValues.Relationship.TYPE_NAMES_STRINGIFIED}`}),i("design:type",String)],d.prototype,"valueType",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],d.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",l.ValueHints)],d.prototype,"valueHints",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(u.RelationshipAttributeConfidentiality).includes(e)?void 0:`must be one of: ${Object.values(u.RelationshipAttributeConfidentiality)}`}),i("design:type",String)],d.prototype,"confidentiality",void 0),d=n([(0,a.type)("RelationshipAttributeCreationHints")],d),t.RelationshipAttributeCreationHints=d;let f=class RelationshipAttributeQuery extends s.AbstractAttributeQuery{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],f.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreAddress)],f.prototype,"owner",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",d)],f.prototype,"attributeCreationHints",void 0),f=n([(0,a.type)("RelationshipAttributeQuery")],f),t.RelationshipAttributeQuery=f},130:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ThirdPartyRelationshipAttributeQuery=void 0;const a=r(194),o=r(9663),s=r(5282);let c=class ThirdPartyRelationshipAttributeQuery extends s.AbstractAttributeQuery{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],c.prototype,"key",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreAddress)],c.prototype,"owner",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreAddress)],c.prototype,"thirdParty",void 0),c=n([(0,a.type)("ThirdPartyRelationshipAttributeQuery")],c),t.ThirdPartyRelationshipAttributeQuery=c},6461:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ATTRIBUTE_VALUE_TYPE_QUERY_MAPPING=void 0,t.ATTRIBUTE_VALUE_TYPE_QUERY_MAPPING=new Map([["Address",["StreetAddress","DeliveryBoxAddress","PostOfficeBoxAddress"]]])},4871:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.COUNTRIES_ALPHA2_TO_ENGLISH_NAME=t.CountryAlpha2=void 0,function(e){e.AF="AF",e.AL="AL",e.AS="AS",e.AD="AD",e.AO="AO",e.AI="AI",e.AQ="AQ",e.AG="AG",e.AR="AR",e.AM="AM",e.AW="AW",e.AU="AU",e.AT="AT",e.AZ="AZ",e.AE="AE",e.AX="AX",e.BS="BS",e.BH="BH",e.BD="BD",e.BB="BB",e.BY="BY",e.BE="BE",e.BZ="BZ",e.BJ="BJ",e.BM="BM",e.BT="BT",e.BO="BO",e.BQ="BQ",e.BA="BA",e.BW="BW",e.BV="BV",e.BR="BR",e.BN="BN",e.BG="BG",e.BF="BF",e.BI="BI",e.BL="BL",e.CV="CV",e.CM="CM",e.CA="CA",e.CF="CF",e.CL="CL",e.CN="CN",e.CX="CX",e.CC="CC",e.CO="CO",e.CD="CD",e.CG="CG",e.CK="CK",e.CR="CR",e.CU="CU",e.CW="CW",e.CY="CY",e.CZ="CZ",e.CI="CI",e.CH="CH",e.DZ="DZ",e.DK="DK",e.DJ="DJ",e.DM="DM",e.DO="DO",e.DE="DE",e.EC="EC",e.EG="EG",e.ER="ER",e.EE="EE",e.ET="ET",e.ES="ES",e.EH="EH",e.FK="FK",e.FO="FO",e.FJ="FJ",e.FI="FI",e.FR="FR",e.FM="FM",e.GQ="GQ",e.GF="GF",e.GA="GA",e.GM="GM",e.GE="GE",e.GH="GH",e.GI="GI",e.GR="GR",e.GL="GL",e.GD="GD",e.GP="GP",e.GU="GU",e.GT="GT",e.GG="GG",e.GN="GN",e.GW="GW",e.GY="GY",e.GS="GS",e.GB="GB",e.HR="HR",e.HT="HT",e.HM="HM",e.HN="HN",e.HK="HK",e.HU="HU",e.IO="IO",e.IS="IS",e.IN="IN",e.ID="ID",e.IR="IR",e.IQ="IQ",e.IE="IE",e.IM="IM",e.IL="IL",e.IT="IT",e.JM="JM",e.JP="JP",e.JE="JE",e.JO="JO",e.KH="KH",e.KY="KY",e.KM="KM",e.KZ="KZ",e.KE="KE",e.KI="KI",e.KP="KP",e.KR="KR",e.KW="KW",e.KG="KG",e.KN="KN",e.LA="LA",e.LV="LV",e.LB="LB",e.LS="LS",e.LR="LR",e.LY="LY",e.LI="LI",e.LT="LT",e.LU="LU",e.LC="LC",e.LK="LK",e.MO="MO",e.MG="MG",e.MW="MW",e.MY="MY",e.MV="MV",e.ML="ML",e.MT="MT",e.MH="MH",e.MQ="MQ",e.MR="MR",e.MU="MU",e.MX="MX",e.MD="MD",e.MC="MC",e.MN="MN",e.ME="ME",e.MS="MS",e.MA="MA",e.MZ="MZ",e.MM="MM",e.MP="MP",e.MK="MK",e.MF="MF",e.NA="NA",e.NR="NR",e.NP="NP",e.NL="NL",e.NC="NC",e.NZ="NZ",e.NI="NI",e.NE="NE",e.NG="NG",e.NU="NU",e.NF="NF",e.NO="NO",e.OM="OM",e.PF="PF",e.PK="PK",e.PW="PW",e.PS="PS",e.PA="PA",e.PG="PG",e.PY="PY",e.PE="PE",e.PH="PH",e.PN="PN",e.PL="PL",e.PT="PT",e.PR="PR",e.PM="PM",e.QA="QA",e.RO="RO",e.RU="RU",e.RW="RW",e.RE="RE",e.RS="RS",e.SV="SV",e.SZ="SZ",e.SH="SH",e.SM="SM",e.ST="ST",e.SA="SA",e.SN="SN",e.SC="SC",e.SL="SL",e.SG="SG",e.SX="SX",e.SK="SK",e.SI="SI",e.SB="SB",e.SO="SO",e.SS="SS",e.SD="SD",e.SR="SR",e.SJ="SJ",e.SE="SE",e.SY="SY",e.TD="TD",e.TF="TF",e.TW="TW",e.TJ="TJ",e.TZ="TZ",e.TH="TH",e.TL="TL",e.TG="TG",e.TK="TK",e.TO="TO",e.TT="TT",e.TN="TN",e.TR="TR",e.TM="TM",e.TC="TC",e.TV="TV",e.UG="UG",e.UA="UA",e.UM="UM",e.US="US",e.UY="UY",e.UZ="UZ",e.VA="VA",e.VC="VC",e.VU="VU",e.VE="VE",e.VN="VN",e.VG="VG",e.VI="VI",e.WS="WS",e.WF="WF",e.YT="YT",e.YE="YE",e.ZA="ZA",e.ZM="ZM",e.ZW="ZW"}(r=t.CountryAlpha2||(t.CountryAlpha2={})),t.COUNTRIES_ALPHA2_TO_ENGLISH_NAME=new Map([[r.AD,"Andorra"],[r.AE,"United Arab Emirates (the)"],[r.AF,"Afghanistan"],[r.AG,"Antigua and Barbuda"],[r.AI,"Anguilla"],[r.AL,"Albania"],[r.AM,"Armenia"],[r.AO,"Angola"],[r.AQ,"Antarctica"],[r.AR,"Argentina"],[r.AS,"American Samoa"],[r.AT,"Austria"],[r.AU,"Australia"],[r.AW,"Aruba"],[r.AX,"Åland Islands"],[r.AZ,"Azerbaijan"],[r.BA,"Bosnia and Herzegovina"],[r.BB,"Barbados"],[r.BD,"Bangladesh"],[r.BE,"Belgium"],[r.BF,"Burkina Faso"],[r.BG,"Bulgaria"],[r.BH,"Bahrain"],[r.BI,"Burundi"],[r.BJ,"Benin"],[r.BL,"Saint Barthélemy"],[r.BM,"Bermuda"],[r.BN,"Brunei Darussalam"],[r.BO,"Bolivia (Plurinational State of)"],[r.BQ,"Bonaire, Sint Eustatius and Saba"],[r.BR,"Brazil"],[r.BS,"Bahamas (the)"],[r.BT,"Bhutan"],[r.BV,"Bouvet Island"],[r.BW,"Botswana"],[r.BY,"Belarus"],[r.BZ,"Belize"],[r.CA,"Canada"],[r.CC,"Cocos (Keeling) Islands (the)"],[r.CD,"Congo (the Democratic Republic of the)"],[r.CF,"Central African Republic (the)"],[r.CG,"Congo (the)"],[r.CH,"Switzerland"],[r.CI,"Côte d'Ivoire"],[r.CK,"Cook Islands (the)"],[r.CL,"Chile"],[r.CM,"Cameroon"],[r.CN,"China"],[r.CO,"Colombia"],[r.CR,"Costa Rica"],[r.CU,"Cuba"],[r.CV,"Cabo Verde"],[r.CW,"Curaçao"],[r.CX,"Christmas Island"],[r.CY,"Cyprus"],[r.CZ,"Czechia"],[r.DE,"Germany"],[r.DJ,"Djibouti"],[r.DK,"Denmark"],[r.DM,"Dominica"],[r.DO,"Dominican Republic (the)"],[r.DZ,"Algeria"],[r.EC,"Ecuador"],[r.EE,"Estonia"],[r.EG,"Egypt"],[r.EH,"Western Sahara"],[r.ER,"Eritrea"],[r.ES,"Spain"],[r.ET,"Ethiopia"],[r.FI,"Finland"],[r.FJ,"Fiji"],[r.FK,"Falkland Islands (the) [Malvinas]"],[r.FM,"Micronesia (Federated States of)"],[r.FO,"Faroe Islands (the)"],[r.FR,"France"],[r.GA,"Gabon"],[r.GB,"United Kingdom of Great Britain and Northern Ireland (the)"],[r.GD,"Grenada"],[r.GE,"Georgia"],[r.GF,"French Guiana"],[r.GG,"Guernsey"],[r.GH,"Ghana"],[r.GI,"Gibraltar"],[r.GL,"Greenland"],[r.GM,"Gambia (the)"],[r.GN,"Guinea"],[r.GP,"Guadeloupe"],[r.GQ,"Equatorial Guinea"],[r.GR,"Greece"],[r.GS,"South Georgia and the South Sandwich Islands"],[r.GT,"Guatemala"],[r.GU,"Guam"],[r.GW,"Guinea-Bissau"],[r.GY,"Guyana"],[r.HK,"Hong Kong"],[r.HM,"Heard Island and McDonald Islands"],[r.HN,"Honduras"],[r.HR,"Croatia"],[r.HT,"Haiti"],[r.HU,"Hungary"],[r.ID,"Indonesia"],[r.IE,"Ireland"],[r.IL,"Israel"],[r.IM,"Isle of Man"],[r.IN,"India"],[r.IO,"British Indian Ocean Territory (the)"],[r.IQ,"Iraq"],[r.IR,"Iran (Islamic Republic of)"],[r.IS,"Iceland"],[r.IT,"Italy"],[r.JE,"Jersey"],[r.JM,"Jamaica"],[r.JO,"Jordan"],[r.JP,"Japan"],[r.KE,"Kenya"],[r.KG,"Kyrgyzstan"],[r.KH,"Cambodia"],[r.KI,"Kiribati"],[r.KM,"Comoros (the)"],[r.KN,"Saint Kitts and Nevis"],[r.KP,"Korea (the Democratic People's Republic of)"],[r.KR,"Korea (the Republic of)"],[r.KW,"Kuwait"],[r.KY,"Cayman Islands (the)"],[r.KZ,"Kazakhstan"],[r.LA,"Lao People's Democratic Republic (the)"],[r.LB,"Lebanon"],[r.LC,"Saint Lucia"],[r.LI,"Liechtenstein"],[r.LK,"Sri Lanka"],[r.LR,"Liberia"],[r.LS,"Lesotho"],[r.LT,"Lithuania"],[r.LU,"Luxembourg"],[r.LV,"Latvia"],[r.LY,"Libya"],[r.MA,"Morocco"],[r.MC,"Monaco"],[r.MD,"Moldova (the Republic of)"],[r.ME,"Montenegro"],[r.MF,"Saint Martin (French part)"],[r.MG,"Madagascar"],[r.MH,"Marshall Islands (the)"],[r.MK,"Republic of North Macedonia"],[r.ML,"Mali"],[r.MM,"Myanmar"],[r.MN,"Mongolia"],[r.MO,"Macao"],[r.MP,"Northern Mariana Islands (the)"],[r.MQ,"Martinique"],[r.MR,"Mauritania"],[r.MS,"Montserrat"],[r.MT,"Malta"],[r.MU,"Mauritius"],[r.MV,"Maldives"],[r.MW,"Malawi"],[r.MX,"Mexico"],[r.MY,"Malaysia"],[r.MZ,"Mozambique"],[r.NA,"Namibia"],[r.NC,"New Caledonia"],[r.NE,"Niger (the)"],[r.NF,"Norfolk Island"],[r.NG,"Nigeria"],[r.NI,"Nicaragua"],[r.NL,"Netherlands (the)"],[r.NO,"Norway"],[r.NP,"Nepal"],[r.NR,"Nauru"],[r.NU,"Niue"],[r.NZ,"New Zealand"],[r.OM,"Oman"],[r.PA,"Panama"],[r.PE,"Peru"],[r.PF,"French Polynesia"],[r.PG,"Papua New Guinea"],[r.PH,"Philippines (the)"],[r.PK,"Pakistan"],[r.PL,"Poland"],[r.PM,"Saint Pierre and Miquelon"],[r.PN,"Pitcairn"],[r.PR,"Puerto Rico"],[r.PS,"Palestine, State of"],[r.PT,"Portugal"],[r.PW,"Palau"],[r.PY,"Paraguay"],[r.QA,"Qatar"],[r.RE,"Réunion"],[r.RO,"Romania"],[r.RS,"Serbia"],[r.RU,"Russian Federation (the)"],[r.RW,"Rwanda"],[r.SA,"Saudi Arabia"],[r.SB,"Solomon Islands"],[r.SC,"Seychelles"],[r.SD,"Sudan (the)"],[r.SE,"Sweden"],[r.SG,"Singapore"],[r.SH,"Saint Helena, Ascension and Tristan da Cunha"],[r.SI,"Slovenia"],[r.SJ,"Svalbard and Jan Mayen"],[r.SK,"Slovakia"],[r.SL,"Sierra Leone"],[r.SM,"San Marino"],[r.SN,"Senegal"],[r.SO,"Somalia"],[r.SR,"Suriname"],[r.SS,"South Sudan"],[r.ST,"Sao Tome and Principe"],[r.SV,"El Salvador"],[r.SX,"Sint Maarten (Dutch part)"],[r.SY,"Syrian Arab Republic"],[r.SZ,"Eswatini"],[r.TC,"Turks and Caicos Islands (the)"],[r.TD,"Chad"],[r.TF,"French Southern Territories (the)"],[r.TG,"Togo"],[r.TH,"Thailand"],[r.TJ,"Tajikistan"],[r.TK,"Tokelau"],[r.TL,"Timor-Leste"],[r.TM,"Turkmenistan"],[r.TN,"Tunisia"],[r.TO,"Tonga"],[r.TR,"Turkey"],[r.TT,"Trinidad and Tobago"],[r.TV,"Tuvalu"],[r.TW,"Taiwan"],[r.TZ,"Tanzania, United Republic of"],[r.UA,"Ukraine"],[r.UG,"Uganda"],[r.UM,"United States Minor Outlying Islands (the)"],[r.US,"United States of America (the)"],[r.UY,"Uruguay"],[r.UZ,"Uzbekistan"],[r.VA,"Holy See (the)"],[r.VC,"Saint Vincent and the Grenadines"],[r.VE,"Venezuela (Bolivarian Republic of)"],[r.VG,"Virgin Islands (British)"],[r.VI,"Virgin Islands (U.S.)"],[r.VN,"Viet Nam"],[r.VU,"Vanuatu"],[r.WF,"Wallis and Futuna"],[r.WS,"Samoa"],[r.YE,"Yemen"],[r.YT,"Mayotte"],[r.ZA,"South Africa"],[r.ZM,"Zambia"],[r.ZW,"Zimbabwe"]])},4473:(e,t)=>{var r;Object.defineProperty(t,"__esModule",{value:!0}),t.LANGUAGES_ISO639_TO_DISPLAY_NAME=t.LanguageISO639=void 0,function(e){e.aa="aa",e.ab="ab",e.ae="ae",e.af="af",e.ak="ak",e.am="am",e.an="an",e.ar="ar",e.as="as",e.av="av",e.ay="ay",e.az="az",e.ba="ba",e.be="be",e.bg="bg",e.bi="bi",e.bm="bm",e.bn="bn",e.bo="bo",e.br="br",e.bs="bs",e.ca="ca",e.ce="ce",e.ch="ch",e.co="co",e.cr="cr",e.cs="cs",e.cu="cu",e.cv="cv",e.cy="cy",e.da="da",e.de="de",e.dv="dv",e.dz="dz",e.ee="ee",e.el="el",e.en="en",e.eo="eo",e.es="es",e.et="et",e.eu="eu",e.fa="fa",e.ff="ff",e.fi="fi",e.fj="fj",e.fo="fo",e.fr="fr",e.fy="fy",e.ga="ga",e.gd="gd",e.gl="gl",e.gn="gn",e.gu="gu",e.gv="gv",e.ha="ha",e.he="he",e.hi="hi",e.ho="ho",e.hr="hr",e.ht="ht",e.hu="hu",e.hy="hy",e.hz="hz",e.ia="ia",e.id="id",e.ie="ie",e.ig="ig",e.ii="ii",e.ik="ik",e.io="io",e.is="is",e.it="it",e.iu="iu",e.ja="ja",e.jv="jv",e.ka="ka",e.kg="kg",e.ki="ki",e.kj="kj",e.kk="kk",e.kl="kl",e.km="km",e.kn="kn",e.ko="ko",e.kr="kr",e.ks="ks",e.ku="ku",e.kv="kv",e.kw="kw",e.ky="ky",e.la="la",e.lb="lb",e.lg="lg",e.li="li",e.ln="ln",e.lo="lo",e.lt="lt",e.lu="lu",e.lv="lv",e.mg="mg",e.mh="mh",e.mi="mi",e.mk="mk",e.ml="ml",e.mn="mn",e.mr="mr",e.ms="ms",e.mt="mt",e.my="my",e.na="na",e.nb="nb",e.nd="nd",e.ne="ne",e.ng="ng",e.nl="nl",e.nn="nn",e.no="no",e.nr="nr",e.nv="nv",e.ny="ny",e.oc="oc",e.oj="oj",e.om="om",e.or="or",e.os="os",e.pa="pa",e.pi="pi",e.pl="pl",e.ps="ps",e.pt="pt",e.qu="qu",e.rm="rm",e.rn="rn",e.ro="ro",e.ru="ru",e.rw="rw",e.sa="sa",e.sc="sc",e.sd="sd",e.se="se",e.sg="sg",e.si="si",e.sk="sk",e.sl="sl",e.sm="sm",e.sn="sn",e.so="so",e.sq="sq",e.sr="sr",e.ss="ss",e.st="st",e.su="su",e.sv="sv",e.sw="sw",e.ta="ta",e.te="te",e.tg="tg",e.th="th",e.ti="ti",e.tk="tk",e.tl="tl",e.tn="tn",e.to="to",e.tr="tr",e.ts="ts",e.tt="tt",e.tw="tw",e.ty="ty",e.ug="ug",e.uk="uk",e.ur="ur",e.uz="uz",e.ve="ve",e.vi="vi",e.vo="vo",e.wa="wa",e.wo="wo",e.xh="xh",e.yi="yi",e.yo="yo",e.za="za",e.zh="zh",e.zu="zu"}(r=t.LanguageISO639||(t.LanguageISO639={})),t.LANGUAGES_ISO639_TO_DISPLAY_NAME=new Map([[r.aa,{code:r.aa,name:"Afar",nativeName:"Afaraf"}],[r.ab,{code:r.ab,name:"Abkhaz",nativeName:"аҧсуа бызшәа"}],[r.ae,{code:r.ae,name:"Avestan",nativeName:"avesta"}],[r.af,{code:r.af,name:"Afrikaans",nativeName:"Afrikaans"}],[r.ak,{code:r.ak,name:"Akan",nativeName:"Akan"}],[r.am,{code:r.am,name:"Amharic",nativeName:"አማርኛ"}],[r.an,{code:r.an,name:"Aragonese",nativeName:"aragonés"}],[r.ar,{code:r.ar,name:"Arabic",nativeName:"اَلْعَرَبِيَّةُ"}],[r.as,{code:r.as,name:"Assamese",nativeName:"অসমীয়া"}],[r.av,{code:r.av,name:"Avaric",nativeName:"авар мацӀ"}],[r.ay,{code:r.ay,name:"Aymara",nativeName:"aymar aru"}],[r.az,{code:r.az,name:"Azerbaijani",nativeName:"azərbaycan dili"}],[r.ba,{code:r.ba,name:"Bashkir",nativeName:"башҡорт теле"}],[r.be,{code:r.be,name:"Belarusian",nativeName:"беларуская мова"}],[r.bg,{code:r.bg,name:"Bulgarian",nativeName:"български език"}],[r.bi,{code:r.bi,name:"Bislama",nativeName:"Bislama"}],[r.bm,{code:r.bm,name:"Bambara",nativeName:"bamanankan"}],[r.bn,{code:r.bn,name:"Bengali",nativeName:"বাংলা"}],[r.bo,{code:r.bo,name:"Tibetan",nativeName:"བོད་ཡིག"}],[r.br,{code:r.br,name:"Breton",nativeName:"brezhoneg"}],[r.bs,{code:r.bs,name:"Bosnian",nativeName:"bosanski jezik"}],[r.ca,{code:r.ca,name:"Catalan",nativeName:"Català"}],[r.ce,{code:r.ce,name:"Chechen",nativeName:"нохчийн мотт"}],[r.ch,{code:r.ch,name:"Chamorro",nativeName:"Chamoru"}],[r.co,{code:r.co,name:"Corsican",nativeName:"corsu"}],[r.cr,{code:r.cr,name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"}],[r.cs,{code:r.cs,name:"Czech",nativeName:"čeština"}],[r.cu,{code:r.cu,name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"}],[r.cv,{code:r.cv,name:"Chuvash",nativeName:"чӑваш чӗлхи"}],[r.cy,{code:r.cy,name:"Welsh",nativeName:"Cymraeg"}],[r.da,{code:r.da,name:"Danish",nativeName:"dansk"}],[r.de,{code:r.de,name:"German",nativeName:"Deutsch"}],[r.dv,{code:r.dv,name:"Divehi",nativeName:"ދިވެހި"}],[r.dz,{code:r.dz,name:"Dzongkha",nativeName:"རྫོང་ཁ"}],[r.ee,{code:r.ee,name:"Ewe",nativeName:"Eʋegbe"}],[r.el,{code:r.el,name:"Greek",nativeName:"Ελληνικά"}],[r.en,{code:r.en,name:"English",nativeName:"English"}],[r.eo,{code:r.eo,name:"Esperanto",nativeName:"Esperanto"}],[r.es,{code:r.es,name:"Spanish",nativeName:"Español"}],[r.et,{code:r.et,name:"Estonian",nativeName:"eesti"}],[r.eu,{code:r.eu,name:"Basque",nativeName:"euskara"}],[r.fa,{code:r.fa,name:"Persian",nativeName:"فارسی"}],[r.ff,{code:r.ff,name:"Fula",nativeName:"Fulfulde"}],[r.fi,{code:r.fi,name:"Finnish",nativeName:"suomi"}],[r.fj,{code:r.fj,name:"Fijian",nativeName:"vosa Vakaviti"}],[r.fo,{code:r.fo,name:"Faroese",nativeName:"føroyskt"}],[r.fr,{code:r.fr,name:"French",nativeName:"Français"}],[r.fy,{code:r.fy,name:"Western Frisian",nativeName:"Frysk"}],[r.ga,{code:r.ga,name:"Irish",nativeName:"Gaeilge"}],[r.gd,{code:r.gd,name:"Scottish Gaelic",nativeName:"Gàidhlig"}],[r.gl,{code:r.gl,name:"Galician",nativeName:"galego"}],[r.gn,{code:r.gn,name:"Guaraní",nativeName:"Avañe'ẽ"}],[r.gu,{code:r.gu,name:"Gujarati",nativeName:"ગુજરાતી"}],[r.gv,{code:r.gv,name:"Manx",nativeName:"Gaelg"}],[r.ha,{code:r.ha,name:"Hausa",nativeName:"هَوُسَ"}],[r.he,{code:r.he,name:"Hebrew",nativeName:"עברית"}],[r.hi,{code:r.hi,name:"Hindi",nativeName:"हिन्दी"}],[r.ho,{code:r.ho,name:"Hiri Motu",nativeName:"Hiri Motu"}],[r.hr,{code:r.hr,name:"Croatian",nativeName:"Hrvatski"}],[r.ht,{code:r.ht,name:"Haitian",nativeName:"Kreyòl ayisyen"}],[r.hu,{code:r.hu,name:"Hungarian",nativeName:"magyar"}],[r.hy,{code:r.hy,name:"Armenian",nativeName:"Հայերեն"}],[r.hz,{code:r.hz,name:"Herero",nativeName:"Otjiherero"}],[r.ia,{code:r.ia,name:"Interlingua",nativeName:"Interlingua"}],[r.id,{code:r.id,name:"Indonesian",nativeName:"Bahasa Indonesia"}],[r.ie,{code:r.ie,name:"Interlingue",nativeName:"Interlingue"}],[r.ig,{code:r.ig,name:"Igbo",nativeName:"Asụsụ Igbo"}],[r.ii,{code:r.ii,name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"}],[r.ik,{code:r.ik,name:"Inupiaq",nativeName:"Iñupiaq"}],[r.io,{code:r.io,name:"Ido",nativeName:"Ido"}],[r.is,{code:r.is,name:"Icelandic",nativeName:"Íslenska"}],[r.it,{code:r.it,name:"Italian",nativeName:"Italiano"}],[r.iu,{code:r.iu,name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"}],[r.ja,{code:r.ja,name:"Japanese",nativeName:"日本語"}],[r.jv,{code:r.jv,name:"Javanese",nativeName:"basa Jawa"}],[r.ka,{code:r.ka,name:"Georgian",nativeName:"ქართული"}],[r.kg,{code:r.kg,name:"Kongo",nativeName:"Kikongo"}],[r.ki,{code:r.ki,name:"Kikuyu",nativeName:"Gĩkũyũ"}],[r.kj,{code:r.kj,name:"Kwanyama",nativeName:"Kuanyama"}],[r.kk,{code:r.kk,name:"Kazakh",nativeName:"қазақ тілі"}],[r.kl,{code:r.kl,name:"Kalaallisut",nativeName:"kalaallisut"}],[r.km,{code:r.km,name:"Khmer",nativeName:"ខេមរភាសា"}],[r.kn,{code:r.kn,name:"Kannada",nativeName:"ಕನ್ನಡ"}],[r.ko,{code:r.ko,name:"Korean",nativeName:"한국어"}],[r.kr,{code:r.kr,name:"Kanuri",nativeName:"Kanuri"}],[r.ks,{code:r.ks,name:"Kashmiri",nativeName:"कश्मीरी"}],[r.ku,{code:r.ku,name:"Kurdish",nativeName:"Kurdî"}],[r.kv,{code:r.kv,name:"Komi",nativeName:"коми кыв"}],[r.kw,{code:r.kw,name:"Cornish",nativeName:"Kernewek"}],[r.ky,{code:r.ky,name:"Kyrgyz",nativeName:"Кыргызча"}],[r.la,{code:r.la,name:"Latin",nativeName:"latine"}],[r.lb,{code:r.lb,name:"Luxembourgish",nativeName:"Lëtzebuergesch"}],[r.lg,{code:r.lg,name:"Ganda",nativeName:"Luganda"}],[r.li,{code:r.li,name:"Limburgish",nativeName:"Limburgs"}],[r.ln,{code:r.ln,name:"Lingala",nativeName:"Lingála"}],[r.lo,{code:r.lo,name:"Lao",nativeName:"ພາສາລາວ"}],[r.lt,{code:r.lt,name:"Lithuanian",nativeName:"lietuvių kalba"}],[r.lu,{code:r.lu,name:"Luba-Katanga",nativeName:"Kiluba"}],[r.lv,{code:r.lv,name:"Latvian",nativeName:"latviešu valoda"}],[r.mg,{code:r.mg,name:"Malagasy",nativeName:"fiteny malagasy"}],[r.mh,{code:r.mh,name:"Marshallese",nativeName:"Kajin M̧ajeļ"}],[r.mi,{code:r.mi,name:"Māori",nativeName:"te reo Māori"}],[r.mk,{code:r.mk,name:"Macedonian",nativeName:"македонски јазик"}],[r.ml,{code:r.ml,name:"Malayalam",nativeName:"മലയാളം"}],[r.mn,{code:r.mn,name:"Mongolian",nativeName:"Монгол хэл"}],[r.mr,{code:r.mr,name:"Marathi",nativeName:"मराठी"}],[r.ms,{code:r.ms,name:"Malay",nativeName:"Bahasa Melayu"}],[r.mt,{code:r.mt,name:"Maltese",nativeName:"Malti"}],[r.my,{code:r.my,name:"Burmese",nativeName:"ဗမာစာ"}],[r.na,{code:r.na,name:"Nauru",nativeName:"Dorerin Naoero"}],[r.nb,{code:r.nb,name:"Norwegian Bokmål",nativeName:"Norsk bokmål"}],[r.nd,{code:r.nd,name:"Northern Ndebele",nativeName:"isiNdebele"}],[r.ne,{code:r.ne,name:"Nepali",nativeName:"नेपाली"}],[r.ng,{code:r.ng,name:"Ndonga",nativeName:"Owambo"}],[r.nl,{code:r.nl,name:"Dutch",nativeName:"Nederlands"}],[r.nn,{code:r.nn,name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"}],[r.no,{code:r.no,name:"Norwegian",nativeName:"Norsk"}],[r.nr,{code:r.nr,name:"Southern Ndebele",nativeName:"isiNdebele"}],[r.nv,{code:r.nv,name:"Navajo",nativeName:"Diné bizaad"}],[r.ny,{code:r.ny,name:"Chichewa",nativeName:"chiCheŵa"}],[r.oc,{code:r.oc,name:"Occitan",nativeName:"occitan"}],[r.oj,{code:r.oj,name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"}],[r.om,{code:r.om,name:"Oromo",nativeName:"Afaan Oromoo"}],[r.or,{code:r.or,name:"Oriya",nativeName:"ଓଡ଼ିଆ"}],[r.os,{code:r.os,name:"Ossetian",nativeName:"ирон æвзаг"}],[r.pa,{code:r.pa,name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"}],[r.pi,{code:r.pi,name:"Pāli",nativeName:"पाऴि"}],[r.pl,{code:r.pl,name:"Polish",nativeName:"Polski"}],[r.ps,{code:r.ps,name:"Pashto",nativeName:"پښتو"}],[r.pt,{code:r.pt,name:"Portuguese",nativeName:"Português"}],[r.qu,{code:r.qu,name:"Quechua",nativeName:"Runa Simi"}],[r.rm,{code:r.rm,name:"Romansh",nativeName:"rumantsch grischun"}],[r.rn,{code:r.rn,name:"Kirundi",nativeName:"Ikirundi"}],[r.ro,{code:r.ro,name:"Romanian",nativeName:"Română"}],[r.ru,{code:r.ru,name:"Russian",nativeName:"Русский"}],[r.rw,{code:r.rw,name:"Kinyarwanda",nativeName:"Ikinyarwanda"}],[r.sa,{code:r.sa,name:"Sanskrit",nativeName:"संस्कृतम्"}],[r.sc,{code:r.sc,name:"Sardinian",nativeName:"sardu"}],[r.sd,{code:r.sd,name:"Sindhi",nativeName:"सिन्धी"}],[r.se,{code:r.se,name:"Northern Sami",nativeName:"Davvisámegiella"}],[r.sg,{code:r.sg,name:"Sango",nativeName:"yângâ tî sängö"}],[r.si,{code:r.si,name:"Sinhala",nativeName:"සිංහල"}],[r.sk,{code:r.sk,name:"Slovak",nativeName:"slovenčina"}],[r.sl,{code:r.sl,name:"Slovenian",nativeName:"slovenščina"}],[r.sm,{code:r.sm,name:"Samoan",nativeName:"gagana fa'a Samoa"}],[r.sn,{code:r.sn,name:"Shona",nativeName:"chiShona"}],[r.so,{code:r.so,name:"Somali",nativeName:"Soomaaliga"}],[r.sq,{code:r.sq,name:"Albanian",nativeName:"Shqip"}],[r.sr,{code:r.sr,name:"Serbian",nativeName:"српски језик"}],[r.ss,{code:r.ss,name:"Swati",nativeName:"SiSwati"}],[r.st,{code:r.st,name:"Southern Sotho",nativeName:"Sesotho"}],[r.su,{code:r.su,name:"Sundanese",nativeName:"Basa Sunda"}],[r.sv,{code:r.sv,name:"Swedish",nativeName:"Svenska"}],[r.sw,{code:r.sw,name:"Swahili",nativeName:"Kiswahili"}],[r.ta,{code:r.ta,name:"Tamil",nativeName:"தமிழ்"}],[r.te,{code:r.te,name:"Telugu",nativeName:"తెలుగు"}],[r.tg,{code:r.tg,name:"Tajik",nativeName:"тоҷикӣ"}],[r.th,{code:r.th,name:"Thai",nativeName:"ไทย"}],[r.ti,{code:r.ti,name:"Tigrinya",nativeName:"ትግርኛ"}],[r.tk,{code:r.tk,name:"Turkmen",nativeName:"Türkmençe"}],[r.tl,{code:r.tl,name:"Tagalog",nativeName:"Wikang Tagalog"}],[r.tn,{code:r.tn,name:"Tswana",nativeName:"Setswana"}],[r.to,{code:r.to,name:"Tonga",nativeName:"faka Tonga"}],[r.tr,{code:r.tr,name:"Turkish",nativeName:"Türkçe"}],[r.ts,{code:r.ts,name:"Tsonga",nativeName:"Xitsonga"}],[r.tt,{code:r.tt,name:"Tatar",nativeName:"татар теле"}],[r.tw,{code:r.tw,name:"Twi",nativeName:"Twi"}],[r.ty,{code:r.ty,name:"Tahitian",nativeName:"Reo Tahiti"}],[r.ug,{code:r.ug,name:"Uyghur",nativeName:"ئۇيغۇرچە‎"}],[r.uk,{code:r.uk,name:"Ukrainian",nativeName:"Українська"}],[r.ur,{code:r.ur,name:"Urdu",nativeName:"اردو"}],[r.uz,{code:r.uz,name:"Uzbek",nativeName:"Ўзбек"}],[r.ve,{code:r.ve,name:"Venda",nativeName:"Tshivenḓa"}],[r.vi,{code:r.vi,name:"Vietnamese",nativeName:"Tiếng Việt"}],[r.vo,{code:r.vo,name:"Volapük",nativeName:"Volapük"}],[r.wa,{code:r.wa,name:"Walloon",nativeName:"walon"}],[r.wo,{code:r.wo,name:"Wolof",nativeName:"Wollof"}],[r.xh,{code:r.xh,name:"Xhosa",nativeName:"isiXhosa"}],[r.yi,{code:r.yi,name:"Yiddish",nativeName:"ייִדיש"}],[r.yo,{code:r.yo,name:"Yoruba",nativeName:"Yorùbá"}],[r.za,{code:r.za,name:"Zhuang",nativeName:"Saɯ cueŋƅ"}],[r.zh,{code:r.zh,name:"Chinese",nativeName:"中文"}],[r.zu,{code:r.zu,name:"Zulu",nativeName:"isiZulu"}]])},341:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6461),t),i(r(4871),t),i(r(4473),t)},9204:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsOverride=t.RenderHints=void 0;const o=r(194);r(6020),r(6221),r(6046);function deserializePropertyHints(e){void 0!==e.propertyHints&&(e.propertyHints=Object.entries(e.propertyHints).map((e=>({[e[0]]:s.fromAny(e[1])}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{}))}function serializePropertyHints(e,t){t.propertyHints=Object.entries(e.propertyHints??{}).map((e=>({[e[0]]:e[1].toJSON()}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{})}let s=n=class RenderHints extends o.Serializable{constructor(){super(...arguments),this.propertyHints={}}static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}copyWith(e){const t=e&&e instanceof c?e.toJSON():e,r={...this.toJSON().propertyHints,...t?.propertyHints};return n.from({...this.toJSON(),...t,propertyHints:r})}};i([(0,o.serialize)(),(0,o.validate)(),a("design:type",String)],s.prototype,"technicalType",void 0),i([(0,o.serialize)(),(0,o.validate)(),a("design:type",String)],s.prototype,"editType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],s.prototype,"dataType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],s.prototype,"propertyHints",void 0),s=n=i([(0,o.type)("RenderHints")],s),t.RenderHints=s;let c=class RenderHintsOverride extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"technicalType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"editType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"dataType",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"propertyHints",void 0),c=i([(0,o.type)("RenderHintsOverride")],c),t.RenderHintsOverride=c},6020:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsDataType=void 0,function(e){e.Country="Country",e.DataURL="DataURL",e.EMailAddress="EMailAddress",e.HEXColor="HEXColor",e.Language="Language",e.PhoneNumber="PhoneNumber",e.URL="URL",e.FileReference="FileReference",e.Date="Date",e.DatePeriod="DatePeriod",e.DateTime="DateTime",e.DateTimePeriod="DateTimePeriod",e.Time="Time",e.TimePeriod="TimePeriod",e.Day="Day",e.Month="Month",e.Year="Year"}(t.RenderHintsDataType||(t.RenderHintsDataType={}))},6221:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsEditType=void 0,function(e){e.InputLike="InputLike",e.ButtonLike="ButtonLike",e.RadioButtonLike="RadioButtonLike",e.SelectLike="SelectLike",e.SliderLike="SliderLike",e.Complex="Complex",e.Secret="Secret",e.TextArea="TextArea",e.Upload="Upload"}(t.RenderHintsEditType||(t.RenderHintsEditType={}))},6046:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderHintsTechnicalType=void 0,function(e){e.Boolean="Boolean",e.Float="Float",e.Integer="Integer",e.Object="Object",e.String="String"}(t.RenderHintsTechnicalType||(t.RenderHintsTechnicalType={}))},7274:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ValueHintsOverride=t.ValueHints=void 0;const o=r(194),s=r(2259);function deserializePropertyHints(e){void 0!==e.propertyHints&&(e.propertyHints=Object.entries(e.propertyHints).map((e=>({[e[0]]:c.fromAny(e[1])}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{}))}function serializePropertyHints(e,t){t.propertyHints=Object.entries(e.propertyHints??{}).map((e=>({[e[0]]:e[1].toJSON()}))).reduce(((e,t)=>Object.assign(e,{[Object.keys(t)[0]]:Object.values(t)[0]})),{})}let c=n=class ValueHints extends o.Serializable{constructor(){super(...arguments),this.propertyHints={}}static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}copyWith(e){const t=e&&e instanceof l?e.toJSON():e,r={...this.toJSON().propertyHints,...t?.propertyHints};return n.from({...this.toJSON(),...t,propertyHints:r})}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"editHelp",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],c.prototype,"min",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],c.prototype,"max",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"pattern",void 0),i([(0,o.serialize)({type:s.ValueHintsValue}),(0,o.validate)({nullable:!0}),a("design:type",Array)],c.prototype,"values",void 0),i([(0,o.validate)({nullable:!0,allowedTypes:[o.PrimitiveType.Number,o.PrimitiveType.String,o.PrimitiveType.Boolean]}),(0,o.serialize)(),a("design:type",Object)],c.prototype,"defaultValue",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"propertyHints",void 0),c=n=i([(0,o.type)("ValueHints")],c),t.ValueHints=c;let l=class ValueHintsOverride extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){return deserializePropertyHints(e),e}toJSON(){const e=super.toJSON();return serializePropertyHints(this,e),e}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],l.prototype,"editHelp",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],l.prototype,"min",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Number)],l.prototype,"max",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],l.prototype,"pattern",void 0),i([(0,o.serialize)({type:s.ValueHintsValue}),(0,o.validate)({nullable:!0}),a("design:type",Array)],l.prototype,"values",void 0),i([(0,o.serialize)({unionTypes:[Boolean,Number,String]}),(0,o.validate)({nullable:!0}),a("design:type",Object)],l.prototype,"defaultValue",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],l.prototype,"propertyHints",void 0),l=i([(0,o.type)("ValueHintsOverride")],l),t.ValueHintsOverride=l},2259:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ValueHintsValue=void 0;const a=r(194);let o=class ValueHintsValue extends a.Serializable{static from(e){return this.fromAny(e)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],o.prototype,"displayName",void 0),n([(0,a.validate)({allowedTypes:[a.PrimitiveType.String,a.PrimitiveType.Number,a.PrimitiveType.Boolean]}),(0,a.serialize)(),i("design:type",Object)],o.prototype,"key",void 0),o=n([(0,a.type)("ValueHintsValue")],o),t.ValueHintsValue=o},3711:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(9204),t),i(r(6020),t),i(r(6221),t),i(r(6046),t),i(r(7274),t),i(r(2259),t)},3700:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6021),t),i(r(5282),t),i(r(4183),t),i(r(2861),t),i(r(7098),t),i(r(341),t),i(r(3711),t),i(r(7788),t),i(r(8092),t),i(r(2226),t),i(r(5022),t),i(r(7791),t),i(r(130),t),i(r(3383),t)},4992:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractBoolean=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractBoolean extends o.AbstractAttributeValue{static preFrom(e){return"boolean"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.InputLike,technicalType:s.RenderHintsTechnicalType.Boolean})}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Boolean)],AbstractBoolean.prototype,"value",void 0),t.AbstractBoolean=AbstractBoolean},36:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractFloat=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractFloat extends o.AbstractAttributeValue{static preFrom(e){return"number"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.ButtonLike,technicalType:s.RenderHintsTechnicalType.Float})}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Number)],AbstractFloat.prototype,"value",void 0),t.AbstractFloat=AbstractFloat},6591:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractInteger=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractInteger extends o.AbstractAttributeValue{static preFrom(e){return"number"==typeof e&&(e={value:e}),e}toString(){return`${this.value}`}static get valueHints(){return s.ValueHints.from({})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.ButtonLike,technicalType:s.RenderHintsTechnicalType.Integer})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Number.isInteger(e)?void 0:"must be an integer"}),i("design:type",Number)],AbstractInteger.prototype,"value",void 0),t.AbstractInteger=AbstractInteger},6550:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractString=void 0;const a=r(194),o=r(4183),s=r(3711);class AbstractString extends o.AbstractAttributeValue{static preFrom(e){return"string"==typeof e&&(e={value:e}),e}toString(){return this.value}static get valueHints(){return s.ValueHints.from({max:100})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.InputLike,technicalType:s.RenderHintsTechnicalType.String})}}n([(0,a.serialize)(),(0,a.validate)({max:100}),i("design:type",String)],AbstractString.prototype,"value",void 0),t.AbstractString=AbstractString},3149:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractAddress=void 0;const o=r(194),s=a(r(9524)),c=r(2861),l=r(3711);class AbstractAddress extends c.AbstractComplexValue{static get valueHints(){return l.ValueHints.from({propertyHints:{[this.propertyNames.recipient.$path]:l.ValueHints.from({})}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.recipient.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.String})}})}}AbstractAddress.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],AbstractAddress.prototype,"recipient",void 0),t.AbstractAddress=AbstractAddress},4967:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.City=void 0;const i=r(194),a=r(6550);let o=class City extends a.AbstractString{static from(e){return this.fromAny(e)}};o=n([(0,i.type)("City")],o),t.City=o},9042:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Country=void 0;const i=r(194),a=r(9702);let o=class Country extends a.AbstractCountry{static from(e){return this.fromAny(e)}};o=n([(0,i.type)("Country")],o),t.Country=o},9498:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.DeliveryBoxAddress=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(341),u=r(3711),d=r(5305),f=r(3149),p=r(4967),m=r(9042),y=r(699),h=r(7474);let v=class DeliveryBoxAddress extends f.AbstractAddress{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.userId.$path]:u.ValueHints.from({}),[this.propertyNames.deliveryBoxId.$path]:u.ValueHints.from({}),[this.propertyNames.zipCode.$path]:h.ZipCode.valueHints,[this.propertyNames.city.$path]:p.City.valueHints,[this.propertyNames.country.$path]:m.Country.valueHints,[this.propertyNames.phoneNumber.$path]:d.PhoneNumber.valueHints,[this.propertyNames.state.$path]:y.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.userId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.deliveryBoxId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.zipCode.$path]:h.ZipCode.renderHints,[this.propertyNames.city.$path]:p.City.renderHints,[this.propertyNames.country.$path]:m.Country.renderHints,[this.propertyNames.phoneNumber.$path]:d.PhoneNumber.renderHints,[this.propertyNames.state.$path]:y.State.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.userId}`),this.phoneNumber&&e.push(this.phoneNumber.toString()),e.push(`${this.deliveryBoxId}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=l.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}toJSON(e,t){return super.toJSON(e,t)}};v.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],v.prototype,"userId",void 0),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],v.prototype,"deliveryBoxId",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",h.ZipCode)],v.prototype,"zipCode",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.City)],v.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",m.Country)],v.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",d.PhoneNumber)],v.prototype,"phoneNumber",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",y.State)],v.prototype,"state",void 0),v=n([(0,o.type)("DeliveryBoxAddress")],v),t.DeliveryBoxAddress=v},7036:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HouseNumber=void 0;const i=r(194),a=r(6550);let o=class HouseNumber extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("HouseNumber")],o),t.HouseNumber=o},8542:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.PostOfficeBoxAddress=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(341),u=r(3711),d=r(3149),f=r(4967),p=r(9042),m=r(699),y=r(7474);let h=class PostOfficeBoxAddress extends d.AbstractAddress{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.boxId.$path]:u.ValueHints.from({}),[this.propertyNames.zipCode.$path]:y.ZipCode.valueHints,[this.propertyNames.city.$path]:f.City.valueHints,[this.propertyNames.country.$path]:p.Country.valueHints,[this.propertyNames.state.$path]:m.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.boxId.$path]:u.RenderHints.from({editType:u.RenderHintsEditType.InputLike,technicalType:u.RenderHintsTechnicalType.String}),[this.propertyNames.zipCode.$path]:y.ZipCode.renderHints,[this.propertyNames.city.$path]:f.City.renderHints,[this.propertyNames.country.$path]:p.Country.renderHints,[this.propertyNames.state.$path]:m.State.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.boxId}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=l.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}toJSON(e,t){return super.toJSON(e,t)}};h.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],h.prototype,"boxId",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",y.ZipCode)],h.prototype,"zipCode",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.City)],h.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.Country)],h.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",m.State)],h.prototype,"state",void 0),h=n([(0,o.type)("PostOfficeBoxAddress")],h),t.PostOfficeBoxAddress=h},699:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.State=void 0;const i=r(194),a=r(6550);let o=class State extends a.AbstractString{static from(e){return this.fromAny(e)}};o=n([(0,i.type)("State")],o),t.State=o},8098:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Street=void 0;const i=r(194),a=r(6550);let o=class Street extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Street")],o),t.Street=o},7584:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.StreetAddress=void 0;const a=r(194),o=r(9524),s=r(4183),c=r(341),l=r(3149),u=r(4967),d=r(9042),f=r(7036),p=r(699),m=r(8098),y=r(7474);let h=class StreetAddress extends l.AbstractAddress{static from(e){return this.fromAny(e)}static get valueHints(){return super.valueHints.copyWith({propertyHints:{[this.propertyNames.street.$path]:m.Street.valueHints,[this.propertyNames.houseNo.$path]:f.HouseNumber.valueHints,[this.propertyNames.zipCode.$path]:y.ZipCode.valueHints,[this.propertyNames.city.$path]:u.City.valueHints,[this.propertyNames.country.$path]:d.Country.valueHints,[this.propertyNames.state.$path]:p.State.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.street.$path]:m.Street.renderHints,[this.propertyNames.houseNo.$path]:f.HouseNumber.renderHints,[this.propertyNames.zipCode.$path]:y.ZipCode.renderHints,[this.propertyNames.city.$path]:u.City.renderHints,[this.propertyNames.country.$path]:d.Country.renderHints,[this.propertyNames.state.$path]:p.State.renderHints}})}toString(){const e=[];e.push(`${this.recipient}`),e.push(`${this.street} ${this.houseNo}`),e.push(`${this.zipCode} ${this.city}`),this.state&&e.push(this.state.toString());const t=c.COUNTRIES_ALPHA2_TO_ENGLISH_NAME.get(this.country.value);return e.push(t||this.country.toString()),e.join("\n")}toJSON(e,t){return super.toJSON(e,t)}};h.propertyNames=(0,o.nameOf)(),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",m.Street)],h.prototype,"street",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",f.HouseNumber)],h.prototype,"houseNo",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",y.ZipCode)],h.prototype,"zipCode",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",u.City)],h.prototype,"city",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)(),i("design:type",d.Country)],h.prototype,"country",void 0),n([(0,a.serialize)({customGenerator:s.AbstractAttributeValue.valueGenerator}),(0,a.validate)({nullable:!0}),i("design:type",p.State)],h.prototype,"state",void 0),h=n([(0,a.type)("StreetAddress")],h),t.StreetAddress=h},7474:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.ZipCode=void 0;const i=r(194),a=r(6550);let o=class ZipCode extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("ZipCode")],o),t.ZipCode=o},1649:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(3149),t),i(r(4967),t),i(r(9042),t),i(r(9498),t),i(r(7036),t),i(r(8542),t),i(r(699),t),i(r(8098),t),i(r(7584),t),i(r(7474),t)},860:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Affiliation=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(2861),u=r(3711),d=r(1679),f=r(4662),p=r(131);let m=class Affiliation extends l.AbstractComplexValue{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.role.$path]:f.AffiliationRole.valueHints,[this.propertyNames.organization.$path]:d.AffiliationOrganization.valueHints,[this.propertyNames.unit.$path]:p.AffiliationUnit.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.role.$path]:f.AffiliationRole.renderHints,[this.propertyNames.organization.$path]:d.AffiliationOrganization.renderHints,[this.propertyNames.unit.$path]:p.AffiliationUnit.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[this.organization.toString()];return this.unit&&e.push(this.unit.toString()),this.role&&e.push(this.role.toString()),e.join(", ")}toJSON(e,t){return super.toJSON(e,t)}};m.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",f.AffiliationRole)],m.prototype,"role",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",d.AffiliationOrganization)],m.prototype,"organization",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.AffiliationUnit)],m.prototype,"unit",void 0),m=n([(0,o.type)("Affiliation")],m),t.Affiliation=m},1679:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AffiliationOrganization=void 0;const i=r(194),a=r(6550);let o=class AffiliationOrganization extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("AffiliationOrganization")],o),t.AffiliationOrganization=o},4662:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AffiliationRole=void 0;const i=r(194),a=r(6550);let o=class AffiliationRole extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("AffiliationRole")],o),t.AffiliationRole=o},131:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AffiliationUnit=void 0;const i=r(194),a=r(6550);let o=class AffiliationUnit extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("AffiliationUnit")],o),t.AffiliationUnit=o},3680:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(860),t),i(r(1679),t),i(r(4662),t),i(r(131),t)},6185:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthCity=void 0;const i=r(194),a=r(1649);let o=class BirthCity extends a.City{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthCity")],o),t.BirthCity=o},4945:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthCountry=void 0;const i=r(194),a=r(1649);let o=class BirthCountry extends a.Country{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthCountry")],o),t.BirthCountry=o},4472:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthDate=void 0;const o=r(194),s=a(r(9524)),c=r(8565),l=r(4183),u=r(2861),d=r(3711),f=r(386),p=r(5772),m=r(7438);let y=class BirthDate extends u.AbstractComplexValue{static get valueHints(){return d.ValueHints.from({propertyHints:{[this.propertyNames.day.$path]:f.BirthDay.valueHints,[this.propertyNames.month.$path]:p.BirthMonth.valueHints,[this.propertyNames.year.$path]:m.BirthYear.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.day.$path]:f.BirthDay.renderHints,[this.propertyNames.month.$path]:p.BirthMonth.renderHints,[this.propertyNames.year.$path]:m.BirthYear.renderHints}})}static from(e){return this.fromAny(e)}toString(){return c.DateTime.fromObject({day:this.day.value,month:this.month.value,year:this.year.value}).toFormat("yyyy-MM-dd")}toJSON(e,t){return super.toJSON(e,t)}};y.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.BirthDay)],y.prototype,"day",void 0),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",p.BirthMonth)],y.prototype,"month",void 0),n([(0,o.serialize)({customGenerator:l.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",m.BirthYear)],y.prototype,"year",void 0),y=n([(0,o.type)("BirthDate")],y),t.BirthDate=y},386:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthDay=void 0;const i=r(194),a=r(7465);let o=class BirthDay extends a.AbstractDay{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthDay")],o),t.BirthDay=o},5772:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthMonth=void 0;const i=r(194),a=r(673);let o=class BirthMonth extends a.AbstractMonth{static get valueHints(){return super.valueHints.copyWith({editHelp:"i18n://yourBirthMonth"})}static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthMonth")],o),t.BirthMonth=o},1538:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthPlace=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(2861),u=r(3711),d=r(6185),f=r(4945),p=r(6140);let m=class BirthPlace extends l.AbstractComplexValue{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.city.$path]:d.BirthCity.valueHints,[this.propertyNames.country.$path]:f.BirthCountry.valueHints,[this.propertyNames.state.$path]:p.BirthState.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.city.$path]:d.BirthCity.renderHints,[this.propertyNames.country.$path]:f.BirthCountry.renderHints,[this.propertyNames.state.$path]:p.BirthState.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[this.city.toString()];return this.state&&e.push(this.state.toString()),e.push(this.country.toString()),e.join(", ")}toJSON(e,t){return super.toJSON(e,t)}};m.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",d.BirthCity)],m.prototype,"city",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",f.BirthCountry)],m.prototype,"country",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.BirthState)],m.prototype,"state",void 0),m=n([(0,o.type)("BirthPlace")],m),t.BirthPlace=m},6140:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthState=void 0;const i=r(194),a=r(1649);let o=class BirthState extends a.State{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthState")],o),t.BirthState=o},7438:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthYear=void 0;const i=r(194),a=r(7465);let o=class BirthYear extends a.AbstractYear{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthYear")],o),t.BirthYear=o},4947:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6185),t),i(r(4945),t),i(r(4472),t),i(r(386),t),i(r(5772),t),i(r(1538),t),i(r(6140),t),i(r(7438),t)},8798:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.CommunicationLanguage=void 0;const i=r(194),a=r(6485);let o=class CommunicationLanguage extends a.AbstractLanguage{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("CommunicationLanguage")],o),t.CommunicationLanguage=o},1170:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.EMailAddress=void 0;const i=r(194),a=r(4832);let o=class EMailAddress extends a.AbstractEMailAddress{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("EMailAddress")],o),t.EMailAddress=o},3161:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.FaxNumber=void 0;const i=r(194),a=r(9702);let o=class FaxNumber extends a.AbstractPhoneNumber{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("FaxNumber")],o),t.FaxNumber=o},871:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.PhoneNumber=void 0;const i=r(194),a=r(9702);let o=class PhoneNumber extends a.AbstractPhoneNumber{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("PhoneNumber")],o),t.PhoneNumber=o},3841:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Website=void 0;const i=r(194),a=r(9702);let o=class Website extends a.AbstractURL{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Website")],o),t.Website=o},5305:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8798),t),i(r(1170),t),i(r(3161),t),i(r(871),t),i(r(3841),t)},865:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractDateString=void 0;const a=r(194),o=r(8565),s=r(3711),c=r(6550);class AbstractDateString extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:10,max:10})}static get renderHints(){return super.renderHints.copyWith({editType:s.RenderHintsEditType.SelectLike,dataType:s.RenderHintsDataType.Date})}}AbstractDateString.format="yyyy-MM-dd",n([(0,a.serialize)(),(0,a.validate)({min:10,max:10,customValidator:e=>o.DateTime.fromFormat(e,AbstractDateString.format).isValid?void 0:`must match the following format: '${AbstractDateString.format}'`}),i("design:type",String)],AbstractDateString.prototype,"value",void 0),t.AbstractDateString=AbstractDateString},4544:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractDay=void 0;const a=r(194),o=r(3711),s=r(6591);class AbstractDay extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:31})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Day})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e<1||e>31||!Number.isInteger(e)?"must be an integer value between 1 and 31":void 0}),i("design:type",Number)],AbstractDay.prototype,"value",void 0),t.AbstractDay=AbstractDay},673:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractMonth=void 0;const a=r(194),o=r(3711),s=r(6591);var c;!function(e){e[e.January=1]="January",e[e.February=2]="February",e[e.March=3]="March",e[e.April=4]="April",e[e.May=5]="May",e[e.June=6]="June",e[e.July=7]="July",e[e.August=8]="August",e[e.September=9]="September",e[e.October=10]="October",e[e.November=11]="November",e[e.December=12]="December"}(c||(c={}));class AbstractMonth extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:12})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Month})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>c[e]&&Number.isInteger(e)?void 0:`must be an integer value between ${c.January} and ${c.December}`}),i("design:type",Number)],AbstractMonth.prototype,"value",void 0),t.AbstractMonth=AbstractMonth},3652:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractYear=void 0;const a=r(194),o=r(3711),s=r(6591);class AbstractYear extends s.AbstractInteger{static get valueHints(){return super.valueHints.copyWith({min:1,max:9999})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Year})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e<1||e>9999||!Number.isInteger(e)?"must be an integer value between 1 and 9999":void 0}),i("design:type",Number)],AbstractYear.prototype,"value",void 0),t.AbstractYear=AbstractYear},7465:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(865),t),i(r(4544),t),i(r(673),t),i(r(3652),t)},8982:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.DisplayName=void 0;const i=r(194),a=r(6550);let o=class DisplayName extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("DisplayName")],o),t.DisplayName=o},3051:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.FileReference=void 0;const i=r(194),a=r(9702);let o=class FileReference extends a.AbstractFileReference{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("FileReference")],o),t.FileReference=o},3460:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8982),t),i(r(3051),t)},3383:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4992),t),i(r(36),t),i(r(6591),t),i(r(6550),t),i(r(1649),t),i(r(3680),t),i(r(4947),t),i(r(5305),t),i(r(7465),t),i(r(3460),t),i(r(1348),t),i(r(8867),t),i(r(9438),t),i(r(8756),t),i(r(3509),t),i(r(9702),t)},4704:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractLengthMeasurement=t.LengthUnit=void 0;const a=r(194),o=r(3711),s=r(5485);var c;!function(e){e.NM="nm",e.UM="um",e.MM="mm",e.CM="cm",e.DM="dm",e.M="m",e.KM="km",e.MI="mi",e.YD="yd",e.FT="ft",e.SM="sm",e.IN="in"}(c=t.LengthUnit||(t.LengthUnit={}));class AbstractLengthMeasurement extends s.AbstractMeasurement{static get valueHints(){return super.valueHints.copyWith({propertyHints:{[this.propertyNames.unit.$path]:o.ValueHints.from({values:Object.entries(c).map((e=>o.ValueHintsValue.from({displayName:e[1],key:e[0]})))})}})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c).includes(e)?void 0:`must be one of: ${Object.values(c)}`}),i("design:type",String)],AbstractLengthMeasurement.prototype,"unit",void 0),t.AbstractLengthMeasurement=AbstractLengthMeasurement},5485:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractMeasurement=void 0;const o=r(194),s=a(r(9524)),c=r(2861),l=r(3711);class AbstractMeasurement extends c.AbstractComplexValue{static get valueHints(){return l.ValueHints.from({propertyHints:{[this.propertyNames.unit.$path]:l.ValueHints.from({}),[this.propertyNames.value.$path]:l.ValueHints.from({})}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.unit.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.String}),[this.propertyNames.value.$path]:l.RenderHints.from({editType:l.RenderHintsEditType.InputLike,technicalType:l.RenderHintsTechnicalType.Integer})}})}toString(){return`${this.value} ${this.unit}`}}AbstractMeasurement.propertyNames=(0,s.default)(),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",String)],AbstractMeasurement.prototype,"unit",void 0),n([(0,o.serialize)(),(0,o.validate)(),i("design:type",Number)],AbstractMeasurement.prototype,"value",void 0),t.AbstractMeasurement=AbstractMeasurement},1348:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(4704),t),i(r(5485),t)},90:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.BirthName=void 0;const i=r(194),a=r(6550);let o=class BirthName extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("BirthName")],o),t.BirthName=o},5642:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.GivenName=void 0;const i=r(194),a=r(6550);let o=class GivenName extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("GivenName")],o),t.GivenName=o},394:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HonorificPrefix=void 0;const i=r(194),a=r(6550);let o=class HonorificPrefix extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("HonorificPrefix")],o),t.HonorificPrefix=o},3357:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.HonorificSuffix=void 0;const i=r(194),a=r(6550);let o=class HonorificSuffix extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("HonorificSuffix")],o),t.HonorificSuffix=o},3698:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.MiddleName=void 0;const i=r(194),a=r(6550);let o=class MiddleName extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("MiddleName")],o),t.MiddleName=o},454:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.PersonName=void 0;const o=r(194),s=a(r(9524)),c=r(4183),l=r(2861),u=r(3711),d=r(5642),f=r(394),p=r(3357),m=r(3698),y=r(2234);let h=class PersonName extends l.AbstractComplexValue{static get valueHints(){return u.ValueHints.from({propertyHints:{[this.propertyNames.givenName.$path]:d.GivenName.valueHints,[this.propertyNames.middleName.$path]:m.MiddleName.valueHints,[this.propertyNames.surname.$path]:y.Surname.valueHints,[this.propertyNames.honorificSuffix.$path]:p.HonorificSuffix.valueHints,[this.propertyNames.honorificPrefix.$path]:f.HonorificPrefix.valueHints}})}static get renderHints(){return super.renderHints.copyWith({propertyHints:{[this.propertyNames.givenName.$path]:d.GivenName.renderHints,[this.propertyNames.middleName.$path]:m.MiddleName.renderHints,[this.propertyNames.surname.$path]:y.Surname.renderHints,[this.propertyNames.honorificSuffix.$path]:p.HonorificSuffix.renderHints,[this.propertyNames.honorificPrefix.$path]:f.HonorificPrefix.renderHints}})}static from(e){return this.fromAny(e)}toString(){const e=[];return this.honorificPrefix&&e.push(this.honorificPrefix.value),e.push(this.givenName.value),this.middleName&&e.push(this.middleName.value),e.push(this.surname.value),this.honorificSuffix&&e.push(this.honorificSuffix.value),e.join(" ")}toJSON(e,t){return super.toJSON(e,t)}};h.propertyNames=(0,s.default)(),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",d.GivenName)],h.prototype,"givenName",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",m.MiddleName)],h.prototype,"middleName",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)(),i("design:type",y.Surname)],h.prototype,"surname",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",p.HonorificSuffix)],h.prototype,"honorificSuffix",void 0),n([(0,o.serialize)({customGenerator:c.AbstractAttributeValue.valueGenerator}),(0,o.validate)({nullable:!0}),i("design:type",f.HonorificPrefix)],h.prototype,"honorificPrefix",void 0),h=n([(0,o.type)("PersonName")],h),t.PersonName=h},2877:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Pseudonym=void 0;const i=r(194),a=r(6550);let o=class Pseudonym extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Pseudonym")],o),t.Pseudonym=o},2234:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Surname=void 0;const i=r(194),a=r(6550);let o=class Surname extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Surname")],o),t.Surname=o},8867:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(90),t),i(r(5642),t),i(r(394),t),i(r(3357),t),i(r(3698),t),i(r(454),t),i(r(2877),t),i(r(2234),t)},7806:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Citizenship=void 0;const i=r(194),a=r(9702);let o=class Citizenship extends a.AbstractCountry{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Citizenship")],o),t.Citizenship=o},9942:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.JobTitle=void 0;const i=r(194),a=r(6550);let o=class JobTitle extends a.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("JobTitle")],o),t.JobTitle=o},9999:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.Nationality=void 0;const i=r(194),a=r(9702);let o=class Nationality extends a.AbstractCountry{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("Nationality")],o),t.Nationality=o},6735:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Sex=t.BiologicalSex=void 0;const a=r(194),o=r(3711),s=r(6550);var c;!function(e){e.X="intersex",e.F="female",e.M="male"}(c=t.BiologicalSex||(t.BiologicalSex={}));let l=class Sex extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({values:Object.values(c).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.sex.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.ButtonLike})}static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(c).includes(e)?void 0:`must be one of: ${Object.values(c)}`}),i("design:type",String)],l.prototype,"value",void 0),l=n([(0,a.type)("Sex")],l),t.Sex=l},9438:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(7806),t),i(r(9942),t),i(r(9999),t),i(r(6735),t)},6499:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryBoolean=void 0;const a=r(194),o=r(4992);let s=class ProprietaryBoolean extends o.AbstractBoolean{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryBoolean")],s),t.ProprietaryBoolean=s},3447:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryCountry=void 0;const a=r(194),o=r(6838);let s=class ProprietaryCountry extends o.AbstractCountry{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryCountry")],s),t.ProprietaryCountry=s},827:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryEMailAddress=void 0;const a=r(194),o=r(4832);let s=class ProprietaryEMailAddress extends o.AbstractEMailAddress{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryEMailAddress")],s),t.ProprietaryEMailAddress=s},6495:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryFileReference=void 0;const a=r(194),o=r(9702);let s=class ProprietaryFileReference extends o.AbstractFileReference{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryFileReference")],s),t.ProprietaryFileReference=s},2728:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryFloat=void 0;const a=r(194),o=r(36);let s=class ProprietaryFloat extends o.AbstractFloat{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryFloat")],s),t.ProprietaryFloat=s},2307:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryHEXColor=void 0;const a=r(194),o=r(3262);let s=class ProprietaryHEXColor extends o.AbstractHEXColor{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryHEXColor")],s),t.ProprietaryHEXColor=s},2804:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryInteger=void 0;const a=r(194),o=r(3711),s=r(6591);let c=class ProprietaryInteger extends s.AbstractInteger{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}get valueHints(){return super.valueHints.copyWith(this.valueHintsOverride?.toJSON())}get renderHints(){return super.renderHints.copyWith(this.renderHintsOverride?.toJSON())}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],c.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],c.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.ValueHintsOverride)],c.prototype,"valueHintsOverride",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.RenderHintsOverride)],c.prototype,"renderHintsOverride",void 0),c=n([(0,a.type)("ProprietaryInteger")],c),t.ProprietaryInteger=c},7503:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryLanguage=void 0;const a=r(194),o=r(6485);let s=class ProprietaryLanguage extends o.AbstractLanguage{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryLanguage")],s),t.ProprietaryLanguage=s},249:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryPhoneNumber=void 0;const a=r(194),o=r(4118);let s=class ProprietaryPhoneNumber extends o.AbstractPhoneNumber{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryPhoneNumber")],s),t.ProprietaryPhoneNumber=s},6813:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryString=void 0;const a=r(194),o=r(6550);let s=class ProprietaryString extends o.AbstractString{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryString")],s),t.ProprietaryString=s},587:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProprietaryURL=void 0;const a=r(194),o=r(7221);let s=class ProprietaryURL extends o.AbstractURL{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),s=n([(0,a.type)("ProprietaryURL")],s),t.ProprietaryURL=s},8756:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6499),t),i(r(3447),t),i(r(827),t),i(r(6495),t),i(r(2728),t),i(r(2307),t),i(r(2804),t),i(r(7503),t),i(r(249),t),i(r(6813),t),i(r(587),t)},7909:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Consent=void 0;const a=r(194),o=r(4183),s=r(3711);let c=class Consent extends o.AbstractAttributeValue{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}static get valueHints(){return s.ValueHints.from({propertyHints:{consent:{max:2e3},link:{min:3,max:1024}}})}static get renderHints(){return s.RenderHints.from({editType:s.RenderHintsEditType.Complex,technicalType:s.RenderHintsTechnicalType.Object,propertyHints:{consent:{editType:s.RenderHintsEditType.TextArea,technicalType:s.RenderHintsTechnicalType.String},link:{editType:s.RenderHintsEditType.InputLike,technicalType:s.RenderHintsTechnicalType.String,dataType:s.RenderHintsDataType.URL}}})}};n([(0,a.serialize)(),(0,a.validate)({max:2e3}),i("design:type",String)],c.prototype,"consent",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0,min:3,max:1024,regExp:new RegExp(/^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-_]*)?\??(?:[\-\+=&;%@\.\w_]*)#?(?:[\.\!\/\\\w]*))?)$/i)}),i("design:type",String)],c.prototype,"link",void 0),c=n([(0,a.type)("Consent")],c),t.Consent=c},3509:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(7909),t)},6838:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractCountry=void 0;const a=r(194),o=r(3711),s=r(4871),c=r(6550);class AbstractCountry extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:2,max:2,values:Object.values(s.CountryAlpha2).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.countries.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Country})}}n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>Object.values(s.CountryAlpha2).includes(e)?void 0:`must be one of: ${Object.values(s.CountryAlpha2)}`}),i("design:type",String)],AbstractCountry.prototype,"value",void 0),t.AbstractCountry=AbstractCountry},4832:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractEMailAddress=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractEMailAddress extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:100,pattern:"/^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,}$/i"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.EMailAddress})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:100,regExp:new RegExp("^[A-Z0-9._%+-]+@[A-Z0-9.-]+.[A-Z]{2,}$","i")}),i("design:type",String)],AbstractEMailAddress.prototype,"value",void 0),t.AbstractEMailAddress=AbstractEMailAddress},5902:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractFileReference=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractFileReference extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:30,max:100})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.FileReference})}}n([(0,a.serialize)(),(0,a.validate)({min:30,max:100}),i("design:type",String)],AbstractFileReference.prototype,"value",void 0),t.AbstractFileReference=AbstractFileReference},3262:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractHEXColor=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractHEXColor extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:4,max:9,pattern:"^#([0-9A-F]{3}){1,2}$/i"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.HEXColor})}}n([(0,a.serialize)(),(0,a.validate)({min:4,max:9,regExp:new RegExp("^#([0-9A-F]{3}){1,2}$","i")}),i("design:type",String)],AbstractHEXColor.prototype,"value",void 0),t.AbstractHEXColor=AbstractHEXColor},6485:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractLanguage=void 0;const a=r(194),o=r(3711),s=r(4473),c=r(6550);class AbstractLanguage extends c.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:2,max:2,values:Object.values(s.LanguageISO639).map((e=>o.ValueHintsValue.from({key:e,displayName:`i18n://attributes.values.languages.${e}`})))})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.SelectLike,dataType:o.RenderHintsDataType.Language})}}n([(0,a.serialize)(),(0,a.validate)({min:2,max:2,customValidator:e=>Object.values(s.LanguageISO639).includes(e)?void 0:`must be one of: ${Object.values(s.LanguageISO639)}`}),i("design:type",String)],AbstractLanguage.prototype,"value",void 0),t.AbstractLanguage=AbstractLanguage},4118:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractPhoneNumber=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractPhoneNumber extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:100,pattern:"/^[d+-x#*()/[] ]{3,100}$/"})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.PhoneNumber})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:100,regExp:new RegExp(/^[\d+\-x#*()/[\] ]{3,100}$/)}),i("design:type",String)],AbstractPhoneNumber.prototype,"value",void 0),t.AbstractPhoneNumber=AbstractPhoneNumber},7221:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.AbstractURL=void 0;const a=r(194),o=r(3711),s=r(6550);class AbstractURL extends s.AbstractString{static get valueHints(){return super.valueHints.copyWith({min:3,max:1024})}static get renderHints(){return super.renderHints.copyWith({editType:o.RenderHintsEditType.InputLike,dataType:o.RenderHintsDataType.URL})}}n([(0,a.serialize)(),(0,a.validate)({min:3,max:1024,regExp:new RegExp(/^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-_]*)?\??(?:[\-\+=&;%@\.\w_]*)#?(?:[\.\!\/\\\w]*))?)$/i)}),i("design:type",String)],AbstractURL.prototype,"value",void 0),t.AbstractURL=AbstractURL},9702:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(6838),t),i(r(4832),t),i(r(5902),t),i(r(3262),t),i(r(6485),t),i(r(4118),t),i(r(7221),t)},2500:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.buildInformation=void 0;const n=r(194),i=r(2890),a=r(9663);t.buildInformation={version:"2.0.0",build:"121",date:"2022-10-24T08:23:16+00:00",commit:"fdb936ff088294bd43a24ead14effaea38c36b02",dependencies:{"@js-soft/logging-abstractions":"^1.0.0","easy-tsnameof":"^3.0.6","mocha-param":"^2.0.1"},libraries:{serval:n.buildInformation,crypto:i.buildInformation,transport:a.buildInformation}}},5590:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(3700),t),i(r(2500),t),i(r(8564),t),i(r(7502),t),i(r(6795),t),i(r(3757),t)},7502:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Mail=void 0;const a=r(194),o=r(9663);let s=class Mail extends a.Serializable{static preFrom(e){return void 0===e.cc&&(e.cc=[]),void 0===e.body&&e.content&&(e.body=e.content,delete e.content),e}static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)({type:o.CoreAddress}),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"to",void 0),n([(0,a.serialize)({type:o.CoreAddress}),(0,a.validate)({nullable:!0}),i("design:type",Array)],s.prototype,"cc",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"subject",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"body",void 0),s=n([(0,a.type)("Mail")],s),t.Mail=s},8471:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipCreationChangeRequestContent=void 0;const a=r(194),o=r(6460);let s=class RelationshipCreationChangeRequestContent extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.Response)],s.prototype,"response",void 0),s=n([(0,a.type)("RelationshipCreationChangeRequestContent")],s),t.RelationshipCreationChangeRequestContent=s},9145:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RelationshipTemplateContent=void 0;const a=r(194),o=r(9016);let s=class RelationshipTemplateContent extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"metadata",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.Request)],s.prototype,"onNewRelationship",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.Request)],s.prototype,"onExistingRelationship",void 0),s=n([(0,a.type)("RelationshipTemplateContent")],s),t.RelationshipTemplateContent=s},6795:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8471),t),i(r(9145),t)},9016:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Request=void 0;const a=r(194),o=r(9663);let s=class Request extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreId)],s.prototype,"id",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",o.CoreDate)],s.prototype,"expiresAt",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"items",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],s.prototype,"metadata",void 0),s=n([(0,a.type)("Request")],s),t.Request=s},705:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RequestItem=void 0;const a=r(194);class RequestItem extends a.Serializable{toJSON(e,t){return super.toJSON(e,t)}}n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],RequestItem.prototype,"title",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],RequestItem.prototype,"description",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",Boolean)],RequestItem.prototype,"mustBeAccepted",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Object)],RequestItem.prototype,"metadata",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",Boolean)],RequestItem.prototype,"requireManualDecision",void 0),t.RequestItem=RequestItem},5135:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RequestItemGroup=void 0;const o=r(194),s=r(4714);let c=n=class RequestItemGroup extends o.Serializable{static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");if(e.mustBeAccepted&&e.items.every((e=>!e.mustBeAccepted)))throw new o.ValidationError(n.name,(0,s.nameof)((e=>e.mustBeAccepted)),`${(0,s.nameof)((e=>e.mustBeAccepted))} can only be true if at least one item is flagged as ${(0,s.nameof)((e=>e.mustBeAccepted))}`);return e}toJSON(e,t){return super.toJSON(e,t)}};i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"title",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",String)],c.prototype,"description",void 0),i([(0,o.serialize)(),(0,o.validate)(),a("design:type",Boolean)],c.prototype,"mustBeAccepted",void 0),i([(0,o.serialize)(),(0,o.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),a("design:type",Array)],c.prototype,"items",void 0),i([(0,o.serialize)(),(0,o.validate)({nullable:!0}),a("design:type",Object)],c.prototype,"metadata",void 0),c=n=i([(0,o.type)("RequestItemGroup")],c),t.RequestItemGroup=c},3757:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(8303),t),i(r(9016),t),i(r(705),t),i(r(5135),t),i(r(1764),t)},1329:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AuthenticationRequestItem=void 0;const i=r(194),a=r(705);let o=class AuthenticationRequestItem extends a.RequestItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("AuthenticationRequestItem")],o),t.AuthenticationRequestItem=o},5386:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ConsentRequestItem=void 0;const a=r(194),o=r(705);let s=class ConsentRequestItem extends o.RequestItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"consent",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"link",void 0),s=n([(0,a.type)("ConsentRequestItem")],s),t.ConsentRequestItem=s},9797:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.CreateAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(1764);let c=class CreateAttributeAcceptResponseItem extends s.AcceptResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],c.prototype,"attributeId",void 0),c=n([(0,a.type)("CreateAttributeAcceptResponseItem")],c),t.CreateAttributeAcceptResponseItem=c},832:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.CreateAttributeRequestItem=void 0;const a=r(194),o=r(3700),s=r(705);let c=class CreateAttributeRequestItem extends s.RequestItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.validate)(),(0,a.serialize)({unionTypes:[o.RelationshipAttribute,o.IdentityAttribute]}),i("design:type",Object)],c.prototype,"attribute",void 0),c=n([(0,a.type)("CreateAttributeRequestItem")],c),t.CreateAttributeRequestItem=c},8303:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(1329),t),i(r(5386),t),i(r(9797),t),i(r(832),t),i(r(9065),t),i(r(1278),t),i(r(1977),t),i(r(9296),t),i(r(506),t),i(r(9771),t),i(r(4639),t),i(r(5729),t)},9065:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProposeAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(1764);let l=class ProposeAttributeAcceptResponseItem extends c.AcceptResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"attributeId",void 0),n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),l=n([(0,a.type)("ProposeAttributeAcceptResponseItem")],l),t.ProposeAttributeAcceptResponseItem=l},1278:function(e,t,r){var n,i=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ProposeAttributeRequestItem=void 0;const o=r(194),s=r(4714),c=r(3700),l=r(705);let u=n=class ProposeAttributeRequestItem extends l.RequestItem{static from(e){return this.fromAny(e)}static postFrom(e){if(!(e instanceof n))throw new Error("this should never happen");if(e.query instanceof c.IdentityAttributeQuery){const t=e.attribute.value.toJSON()["@type"],r=e.query.valueType;if(t!==r)throw new o.ValidationError(n.name,`${(0,s.nameof)((e=>e.query))}.${(0,s.nameof)((e=>e.valueType))}`,`You cannot propose an Attribute whose type of the value ('${t}') is different from the value type of the query ('${r}').`)}if(e.attribute instanceof c.RelationshipAttribute&&!(e.query instanceof c.RelationshipAttributeQuery))throw new o.ValidationError(n.name,"","When proposing a RelationshipAttribute, the corresponding query has to be a RelationshipAttributeQuery.");if(e.attribute instanceof c.IdentityAttribute&&!(e.query instanceof c.IdentityAttributeQuery))throw new o.ValidationError(n.name,"","When proposing an IdentityAttribute, the corresponding query has to be a IdentityAttributeQuery.");return e}toJSON(e,t){return super.toJSON(e,t)}};i([(0,o.serialize)({unionTypes:[c.IdentityAttributeQuery,c.RelationshipAttributeQuery]}),(0,o.validate)(),a("design:type",Object)],u.prototype,"query",void 0),i([(0,o.serialize)({unionTypes:[c.IdentityAttribute,c.RelationshipAttribute]}),(0,o.validate)(),a("design:type",Object)],u.prototype,"attribute",void 0),u=n=i([(0,o.type)("ProposeAttributeRequestItem")],u),t.ProposeAttributeRequestItem=u},1977:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ReadAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(1764);let l=class ReadAttributeAcceptResponseItem extends c.AcceptResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"attributeId",void 0),n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),l=n([(0,a.type)("ReadAttributeAcceptResponseItem")],l),t.ReadAttributeAcceptResponseItem=l},9296:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ReadAttributeRequestItem=void 0;const a=r(194),o=r(3700),s=r(705);let c=class ReadAttributeRequestItem extends s.RequestItem{static from(e){return this.fromAny(e)}};n([(0,a.serialize)({unionTypes:[o.IdentityAttributeQuery,o.RelationshipAttributeQuery,o.ThirdPartyRelationshipAttributeQuery]}),(0,a.validate)(),i("design:type",Object)],c.prototype,"query",void 0),c=n([(0,a.type)("ReadAttributeRequestItem")],c),t.ReadAttributeRequestItem=c},506:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RegisterAttributeListenerAcceptResponseItem=void 0;const a=r(194),o=r(1764);let s=class RegisterAttributeListenerAcceptResponseItem extends o.AcceptResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"listenerId",void 0),s=n([(0,a.type)("RegisterAttributeListenerAcceptResponseItem")],s),t.RegisterAttributeListenerAcceptResponseItem=s},9771:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RegisterAttributeListenerRequestItem=void 0;const a=r(194),o=r(3700),s=r(705);let c=class RegisterAttributeListenerRequestItem extends s.RequestItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)({unionTypes:[o.IdentityAttributeQuery,o.ThirdPartyRelationshipAttributeQuery]}),(0,a.validate)(),i("design:type",Object)],c.prototype,"query",void 0),c=n([(0,a.type)("RegisterAttributeListenerRequestItem")],c),t.RegisterAttributeListenerRequestItem=c},4639:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareAttributeAcceptResponseItem=void 0;const a=r(194),o=r(9663),s=r(1764);let c=class ShareAttributeAcceptResponseItem extends s.AcceptResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],c.prototype,"attributeId",void 0),c=n([(0,a.type)("ShareAttributeAcceptResponseItem")],c),t.ShareAttributeAcceptResponseItem=c},5729:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ShareAttributeRequestItem=void 0;const a=r(194),o=r(9663),s=r(3700),c=r(705);let l=class ShareAttributeRequestItem extends c.RequestItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)({unionTypes:[s.IdentityAttribute,s.RelationshipAttribute]}),(0,a.validate)(),i("design:type",Object)],l.prototype,"attribute",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],l.prototype,"sourceAttributeId",void 0),l=n([(0,a.type)("ShareAttributeRequestItem")],l),t.ShareAttributeRequestItem=l},9019:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o};Object.defineProperty(t,"__esModule",{value:!0}),t.AcceptResponseItem=void 0;const i=r(194),a=r(6990);let o=class AcceptResponseItem extends a.ResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};o=n([(0,i.type)("AcceptResponseItem")],o),t.AcceptResponseItem=o},6187:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorResponseItem=void 0;const a=r(194),o=r(6990);let s=class ErrorResponseItem extends o.ResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"code",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"message",void 0),s=n([(0,a.type)("ErrorResponseItem")],s),t.ErrorResponseItem=s},3985:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.RejectResponseItem=void 0;const a=r(194),o=r(6990);let s=class RejectResponseItem extends o.ResponseItem{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"code",void 0),n([(0,a.serialize)(),(0,a.validate)({nullable:!0}),i("design:type",String)],s.prototype,"message",void 0),s=n([(0,a.type)("RejectResponseItem")],s),t.RejectResponseItem=s},6460:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.Response=t.ResponseResult=void 0;const a=r(194),o=r(9663);!function(e){e.Accepted="Accepted",e.Rejected="Rejected"}(t.ResponseResult||(t.ResponseResult={}));let s=class Response extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],s.prototype,"result",void 0),n([(0,a.serialize)(),(0,a.validate)(),i("design:type",o.CoreId)],s.prototype,"requestId",void 0),n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],s.prototype,"items",void 0),s=n([(0,a.type)("Response")],s),t.Response=s},6990:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItem=void 0;const a=r(194);r(6167);class ResponseItem extends a.Serializable{toJSON(e,t){return super.toJSON(e,t)}}n([(0,a.serialize)(),(0,a.validate)(),i("design:type",String)],ResponseItem.prototype,"result",void 0),t.ResponseItem=ResponseItem},5509:function(e,t,r){var n=this&&this.__decorate||function(e,t,r,n){var i,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,n);else for(var s=e.length-1;s>=0;s--)(i=e[s])&&(o=(a<3?i(o):a>3?i(t,r,o):i(t,r))||o);return a>3&&o&&Object.defineProperty(t,r,o),o},i=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)};Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItemGroup=void 0;const a=r(194);let o=class ResponseItemGroup extends a.Serializable{static from(e){return this.fromAny(e)}toJSON(e,t){return super.toJSON(e,t)}};n([(0,a.serialize)(),(0,a.validate)({customValidator:e=>e.length<1?"may not be empty":void 0}),i("design:type",Array)],o.prototype,"items",void 0),o=n([(0,a.type)("ResponseItemGroup")],o),t.ResponseItemGroup=o},6167:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ResponseItemResult=void 0,function(e){e.Accepted="Accepted",e.Rejected="Rejected",e.Failed="Error"}(t.ResponseItemResult||(t.ResponseItemResult={}))},1764:function(e,t,r){var n=this&&this.__createBinding||(Object.create?function(e,t,r,n){void 0===n&&(n=r);var i=Object.getOwnPropertyDescriptor(t,r);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,i)}:function(e,t,r,n){void 0===n&&(n=r),e[n]=t[r]}),i=this&&this.__exportStar||function(e,t){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(t,r)||n(t,e,r)};Object.defineProperty(t,"__esModule",{value:!0}),i(r(9019),t),i(r(6187),t),i(r(3985),t),i(r(6460),t),i(r(6990),t),i(r(5509),t),i(r(6167),t)},9524:(e,t,r)=>{var n;r.r(t),r.d(t,{default:()=>l,nameOf:()=>l});var i=function appendStringSymbolChunkToPath(e,t){return e+(""===e?t.toString():"."+t.toString())},a=function pathToString(e){return e.reduce((function(e,t){return function appendStringPathChunk(e,t){return"number"==typeof t?e+"["+t+"]":i(e,t)}(e,t)}),"")},o=((n={$path:function $path(e){return a(e)},$rawPath:function $rawPath(e){return e},toString:function toString(e){return function(){return a(e)}}})[Symbol.toStringTag]=function(e){return a(e)},n.valueOf=function valueOf(e){return function(){return a(e)}},n),s=function convertNumericKeyToNumber(e){if("string"==typeof e){var t=+e;if(t==t)return t}return e},c={},l=function nameOf(e,t){if(void 0===t&&(t=[]),"string"==typeof e)return e;var r=new Proxy(c,{get:function get(e,r){var n=function getHandlerByNameKey(e){if(o[e])return o[e]}(r);return n?n(t):nameOf(void 0,[].concat(t,[s(r)]))}});return"function"==typeof e?e(r).$path:r}},8565:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0});class LuxonError extends Error{}class InvalidDateTimeError extends LuxonError{constructor(e){super(`Invalid DateTime: ${e.toMessage()}`)}}class InvalidIntervalError extends LuxonError{constructor(e){super(`Invalid Interval: ${e.toMessage()}`)}}class InvalidDurationError extends LuxonError{constructor(e){super(`Invalid Duration: ${e.toMessage()}`)}}class ConflictingSpecificationError extends LuxonError{}class InvalidUnitError extends LuxonError{constructor(e){super(`Invalid unit ${e}`)}}class InvalidArgumentError extends LuxonError{}class ZoneIsAbstractError extends LuxonError{constructor(){super("Zone is an abstract class")}}const r="numeric",n="short",i="long",a={year:r,month:r,day:r},o={year:r,month:n,day:r},s={year:r,month:n,day:r,weekday:n},c={year:r,month:i,day:r},l={year:r,month:i,day:r,weekday:i},u={hour:r,minute:r},d={hour:r,minute:r,second:r},f={hour:r,minute:r,second:r,timeZoneName:n},p={hour:r,minute:r,second:r,timeZoneName:i},m={hour:r,minute:r,hourCycle:"h23"},y={hour:r,minute:r,second:r,hourCycle:"h23"},h={hour:r,minute:r,second:r,hourCycle:"h23",timeZoneName:n},v={hour:r,minute:r,second:r,hourCycle:"h23",timeZoneName:i},b={year:r,month:r,day:r,hour:r,minute:r},g={year:r,month:r,day:r,hour:r,minute:r,second:r},O={year:r,month:n,day:r,hour:r,minute:r},S={year:r,month:n,day:r,hour:r,minute:r,second:r},R={year:r,month:n,day:r,weekday:n,hour:r,minute:r},A={year:r,month:i,day:r,hour:r,minute:r,timeZoneName:n},_={year:r,month:i,day:r,hour:r,minute:r,second:r,timeZoneName:n},N={year:r,month:i,day:r,weekday:i,hour:r,minute:r,timeZoneName:i},j={year:r,month:i,day:r,weekday:i,hour:r,minute:r,second:r,timeZoneName:i};function isUndefined(e){return void 0===e}function isNumber(e){return"number"==typeof e}function isInteger(e){return"number"==typeof e&&e%1==0}function hasRelative(){try{return"undefined"!=typeof Intl&&!!Intl.RelativeTimeFormat}catch(e){return!1}}function bestBy(e,t,r){if(0!==e.length)return e.reduce(((e,n)=>{const i=[t(n),n];return e&&r(e[0],i[0])===e[0]?e:i}),null)[1]}function hasOwnProperty(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function integerBetween(e,t,r){return isInteger(e)&&e>=t&&e<=r}function padStart(e,t=2){let r;return r=e<0?"-"+(""+-e).padStart(t,"0"):(""+e).padStart(t,"0"),r}function parseInteger(e){return isUndefined(e)||null===e||""===e?void 0:parseInt(e,10)}function parseFloating(e){return isUndefined(e)||null===e||""===e?void 0:parseFloat(e)}function parseMillis(e){if(!isUndefined(e)&&null!==e&&""!==e){const t=1e3*parseFloat("0."+e);return Math.floor(t)}}function roundTo(e,t,r=!1){const n=10**t;return(r?Math.trunc:Math.round)(e*n)/n}function isLeapYear(e){return e%4==0&&(e%100!=0||e%400==0)}function daysInYear(e){return isLeapYear(e)?366:365}function daysInMonth(e,t){const r=function floorMod(e,t){return e-t*Math.floor(e/t)}(t-1,12)+1;return 2===r?isLeapYear(e+(t-r)/12)?29:28:[31,null,31,30,31,30,31,31,30,31,30,31][r-1]}function objToLocalTS(e){let t=Date.UTC(e.year,e.month-1,e.day,e.hour,e.minute,e.second,e.millisecond);return e.year<100&&e.year>=0&&(t=new Date(t),t.setUTCFullYear(t.getUTCFullYear()-1900)),+t}function weeksInWeekYear(e){const t=(e+Math.floor(e/4)-Math.floor(e/100)+Math.floor(e/400))%7,r=e-1,n=(r+Math.floor(r/4)-Math.floor(r/100)+Math.floor(r/400))%7;return 4===t||3===n?53:52}function untruncateYear(e){return e>99?e:e>60?1900+e:2e3+e}function parseZoneInfo(e,t,r,n=null){const i=new Date(e),a={hourCycle:"h23",year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"};n&&(a.timeZone=n);const o={timeZoneName:t,...a},s=new Intl.DateTimeFormat(r,o).formatToParts(i).find((e=>"timezonename"===e.type.toLowerCase()));return s?s.value:null}function signedOffset(e,t){let r=parseInt(e,10);Number.isNaN(r)&&(r=0);const n=parseInt(t,10)||0;return 60*r+(r<0||Object.is(r,-0)?-n:n)}function asNumber(e){const t=Number(e);if("boolean"==typeof e||""===e||Number.isNaN(t))throw new InvalidArgumentError(`Invalid unit value ${e}`);return t}function normalizeObject(e,t){const r={};for(const n in e)if(hasOwnProperty(e,n)){const i=e[n];if(null==i)continue;r[t(n)]=asNumber(i)}return r}function formatOffset(e,t){const r=Math.trunc(Math.abs(e/60)),n=Math.trunc(Math.abs(e%60)),i=e>=0?"+":"-";switch(t){case"short":return`${i}${padStart(r,2)}:${padStart(n,2)}`;case"narrow":return`${i}${r}${n>0?`:${n}`:""}`;case"techie":return`${i}${padStart(r,2)}${padStart(n,2)}`;default:throw new RangeError(`Value format ${t} is out of range for property format`)}}function timeObject(e){return function pick(e,t){return t.reduce(((t,r)=>(t[r]=e[r],t)),{})}(e,["hour","minute","second","millisecond"])}const T=/[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/,P=["January","February","March","April","May","June","July","August","September","October","November","December"],M=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],w=["J","F","M","A","M","J","J","A","S","O","N","D"];function months(e){switch(e){case"narrow":return[...w];case"short":return[...M];case"long":return[...P];case"numeric":return["1","2","3","4","5","6","7","8","9","10","11","12"];case"2-digit":return["01","02","03","04","05","06","07","08","09","10","11","12"];default:return null}}const I=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],D=["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],H=["M","T","W","T","F","S","S"];function weekdays(e){switch(e){case"narrow":return[...H];case"short":return[...D];case"long":return[...I];case"numeric":return["1","2","3","4","5","6","7"];default:return null}}const x=["AM","PM"],C=["Before Christ","Anno Domini"],E=["BC","AD"],k=["B","A"];function eras(e){switch(e){case"narrow":return[...k];case"short":return[...E];case"long":return[...C];default:return null}}function stringifyTokens(e,t){let r="";for(const n of e)n.literal?r+=n.val:r+=t(n.val);return r}const z={D:a,DD:o,DDD:c,DDDD:l,t:u,tt:d,ttt:f,tttt:p,T:m,TT:y,TTT:h,TTTT:v,f:b,ff:O,fff:A,ffff:N,F:g,FF:S,FFF:_,FFFF:j};class Formatter{static create(e,t={}){return new Formatter(e,t)}static parseFormat(e){let t=null,r="",n=!1;const i=[];for(let a=0;a<e.length;a++){const o=e.charAt(a);"'"===o?(r.length>0&&i.push({literal:n,val:r}),t=null,r="",n=!n):n||o===t?r+=o:(r.length>0&&i.push({literal:!1,val:r}),r=o,t=o)}return r.length>0&&i.push({literal:n,val:r}),i}static macroTokenToFormatOpts(e){return z[e]}constructor(e,t){this.opts=t,this.loc=e,this.systemLoc=null}formatWithSystemDefault(e,t){null===this.systemLoc&&(this.systemLoc=this.loc.redefaultToSystem());return this.systemLoc.dtFormatter(e,{...this.opts,...t}).format()}formatDateTime(e,t={}){return this.loc.dtFormatter(e,{...this.opts,...t}).format()}formatDateTimeParts(e,t={}){return this.loc.dtFormatter(e,{...this.opts,...t}).formatToParts()}resolvedOptions(e,t={}){return this.loc.dtFormatter(e,{...this.opts,...t}).resolvedOptions()}num(e,t=0){if(this.opts.forceSimple)return padStart(e,t);const r={...this.opts};return t>0&&(r.padTo=t),this.loc.numberFormatter(r).format(e)}formatDateTimeFromString(e,t){const r="en"===this.loc.listingMode(),n=this.loc.outputCalendar&&"gregory"!==this.loc.outputCalendar,string=(t,r)=>this.loc.extract(e,t,r),formatOffset=t=>e.isOffsetFixed&&0===e.offset&&t.allowZ?"Z":e.isValid?e.zone.formatOffset(e.ts,t.format):"",meridiem=()=>r?function meridiemForDateTime(e){return x[e.hour<12?0:1]}(e):string({hour:"numeric",hourCycle:"h12"},"dayperiod"),month=(t,n)=>r?function monthForDateTime(e,t){return months(t)[e.month-1]}(e,t):string(n?{month:t}:{month:t,day:"numeric"},"month"),weekday=(t,n)=>r?function weekdayForDateTime(e,t){return weekdays(t)[e.weekday-1]}(e,t):string(n?{weekday:t}:{weekday:t,month:"long",day:"numeric"},"weekday"),maybeMacro=t=>{const r=Formatter.macroTokenToFormatOpts(t);return r?this.formatWithSystemDefault(e,r):t},era=t=>r?function eraForDateTime(e,t){return eras(t)[e.year<0?0:1]}(e,t):string({era:t},"era");return stringifyTokens(Formatter.parseFormat(t),(t=>{switch(t){case"S":return this.num(e.millisecond);case"u":case"SSS":return this.num(e.millisecond,3);case"s":return this.num(e.second);case"ss":return this.num(e.second,2);case"uu":return this.num(Math.floor(e.millisecond/10),2);case"uuu":return this.num(Math.floor(e.millisecond/100));case"m":return this.num(e.minute);case"mm":return this.num(e.minute,2);case"h":return this.num(e.hour%12==0?12:e.hour%12);case"hh":return this.num(e.hour%12==0?12:e.hour%12,2);case"H":return this.num(e.hour);case"HH":return this.num(e.hour,2);case"Z":return formatOffset({format:"narrow",allowZ:this.opts.allowZ});case"ZZ":return formatOffset({format:"short",allowZ:this.opts.allowZ});case"ZZZ":return formatOffset({format:"techie",allowZ:this.opts.allowZ});case"ZZZZ":return e.zone.offsetName(e.ts,{format:"short",locale:this.loc.locale});case"ZZZZZ":return e.zone.offsetName(e.ts,{format:"long",locale:this.loc.locale});case"z":return e.zoneName;case"a":return meridiem();case"d":return n?string({day:"numeric"},"day"):this.num(e.day);case"dd":return n?string({day:"2-digit"},"day"):this.num(e.day,2);case"c":case"E":return this.num(e.weekday);case"ccc":return weekday("short",!0);case"cccc":return weekday("long",!0);case"ccccc":return weekday("narrow",!0);case"EEE":return weekday("short",!1);case"EEEE":return weekday("long",!1);case"EEEEE":return weekday("narrow",!1);case"L":return n?string({month:"numeric",day:"numeric"},"month"):this.num(e.month);case"LL":return n?string({month:"2-digit",day:"numeric"},"month"):this.num(e.month,2);case"LLL":return month("short",!0);case"LLLL":return month("long",!0);case"LLLLL":return month("narrow",!0);case"M":return n?string({month:"numeric"},"month"):this.num(e.month);case"MM":return n?string({month:"2-digit"},"month"):this.num(e.month,2);case"MMM":return month("short",!1);case"MMMM":return month("long",!1);case"MMMMM":return month("narrow",!1);case"y":return n?string({year:"numeric"},"year"):this.num(e.year);case"yy":return n?string({year:"2-digit"},"year"):this.num(e.year.toString().slice(-2),2);case"yyyy":return n?string({year:"numeric"},"year"):this.num(e.year,4);case"yyyyyy":return n?string({year:"numeric"},"year"):this.num(e.year,6);case"G":return era("short");case"GG":return era("long");case"GGGGG":return era("narrow");case"kk":return this.num(e.weekYear.toString().slice(-2),2);case"kkkk":return this.num(e.weekYear,4);case"W":return this.num(e.weekNumber);case"WW":return this.num(e.weekNumber,2);case"o":return this.num(e.ordinal);case"ooo":return this.num(e.ordinal,3);case"q":return this.num(e.quarter);case"qq":return this.num(e.quarter,2);case"X":return this.num(Math.floor(e.ts/1e3));case"x":return this.num(e.ts);default:return maybeMacro(t)}}))}formatDurationFromString(e,t){const tokenToField=e=>{switch(e[0]){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":return"hour";case"d":return"day";case"w":return"week";case"M":return"month";case"y":return"year";default:return null}},r=Formatter.parseFormat(t),n=r.reduce(((e,{literal:t,val:r})=>t?e:e.concat(r)),[]);return stringifyTokens(r,(e=>t=>{const r=tokenToField(t);return r?this.num(e.get(r),t.length):t})(e.shiftTo(...n.map(tokenToField).filter((e=>e)))))}}class Invalid{constructor(e,t){this.reason=e,this.explanation=t}toMessage(){return this.explanation?`${this.reason}: ${this.explanation}`:this.reason}}class Zone{get type(){throw new ZoneIsAbstractError}get name(){throw new ZoneIsAbstractError}get ianaName(){return this.name}get isUniversal(){throw new ZoneIsAbstractError}offsetName(e,t){throw new ZoneIsAbstractError}formatOffset(e,t){throw new ZoneIsAbstractError}offset(e){throw new ZoneIsAbstractError}equals(e){throw new ZoneIsAbstractError}get isValid(){throw new ZoneIsAbstractError}}let L=null;class SystemZone extends Zone{static get instance(){return null===L&&(L=new SystemZone),L}get type(){return"system"}get name(){return(new Intl.DateTimeFormat).resolvedOptions().timeZone}get isUniversal(){return!1}offsetName(e,{format:t,locale:r}){return parseZoneInfo(e,t,r)}formatOffset(e,t){return formatOffset(this.offset(e),t)}offset(e){return-new Date(e).getTimezoneOffset()}equals(e){return"system"===e.type}get isValid(){return!0}}let F={};const V={year:0,month:1,day:2,era:3,hour:4,minute:5,second:6};let B={};class IANAZone extends Zone{static create(e){return B[e]||(B[e]=new IANAZone(e)),B[e]}static resetCache(){B={},F={}}static isValidSpecifier(e){return this.isValidZone(e)}static isValidZone(e){if(!e)return!1;try{return new Intl.DateTimeFormat("en-US",{timeZone:e}).format(),!0}catch(e){return!1}}constructor(e){super(),this.zoneName=e,this.valid=IANAZone.isValidZone(e)}get type(){return"iana"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(e,{format:t,locale:r}){return parseZoneInfo(e,t,r,this.name)}formatOffset(e,t){return formatOffset(this.offset(e),t)}offset(e){const t=new Date(e);if(isNaN(t))return NaN;const r=function makeDTF(e){return F[e]||(F[e]=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:e,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",era:"short"})),F[e]}(this.name);let[n,i,a,o,s,c,l]=r.formatToParts?function partsOffset(e,t){const r=e.formatToParts(t),n=[];for(let e=0;e<r.length;e++){const{type:t,value:i}=r[e],a=V[t];"era"===t?n[a]=i:isUndefined(a)||(n[a]=parseInt(i,10))}return n}(r,t):function hackyOffset(e,t){const r=e.format(t).replace(/\u200E/g,""),n=/(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(r),[,i,a,o,s,c,l,u]=n;return[o,i,a,s,c,l,u]}(r,t);"BC"===o&&(n=1-Math.abs(n));let u=+t;const d=u%1e3;return u-=d>=0?d:1e3+d,(objToLocalTS({year:n,month:i,day:a,hour:24===s?0:s,minute:c,second:l,millisecond:0})-u)/6e4}equals(e){return"iana"===e.type&&e.name===this.name}get isValid(){return this.valid}}let G=null;class FixedOffsetZone extends Zone{static get utcInstance(){return null===G&&(G=new FixedOffsetZone(0)),G}static instance(e){return 0===e?FixedOffsetZone.utcInstance:new FixedOffsetZone(e)}static parseSpecifier(e){if(e){const t=e.match(/^utc(?:([+-]\d{1,2})(?::(\d{2}))?)?$/i);if(t)return new FixedOffsetZone(signedOffset(t[1],t[2]))}return null}constructor(e){super(),this.fixed=e}get type(){return"fixed"}get name(){return 0===this.fixed?"UTC":`UTC${formatOffset(this.fixed,"narrow")}`}get ianaName(){return 0===this.fixed?"Etc/UTC":`Etc/GMT${formatOffset(-this.fixed,"narrow")}`}offsetName(){return this.name}formatOffset(e,t){return formatOffset(this.fixed,t)}get isUniversal(){return!0}offset(){return this.fixed}equals(e){return"fixed"===e.type&&e.fixed===this.fixed}get isValid(){return!0}}class InvalidZone extends Zone{constructor(e){super(),this.zoneName=e}get type(){return"invalid"}get name(){return this.zoneName}get isUniversal(){return!1}offsetName(){return null}formatOffset(){return""}offset(){return NaN}equals(){return!1}get isValid(){return!1}}function normalizeZone(e,t){if(isUndefined(e)||null===e)return t;if(e instanceof Zone)return e;if(function isString(e){return"string"==typeof e}(e)){const r=e.toLowerCase();return"default"===r?t:"local"===r||"system"===r?SystemZone.instance:"utc"===r||"gmt"===r?FixedOffsetZone.utcInstance:FixedOffsetZone.parseSpecifier(r)||IANAZone.create(e)}return isNumber(e)?FixedOffsetZone.instance(e):"object"==typeof e&&e.offset&&"number"==typeof e.offset?e:new InvalidZone(e)}let J,now=()=>Date.now(),Z="system",$=null,U=null,q=null;class Settings{static get now(){return now}static set now(e){now=e}static set defaultZone(e){Z=e}static get defaultZone(){return normalizeZone(Z,SystemZone.instance)}static get defaultLocale(){return $}static set defaultLocale(e){$=e}static get defaultNumberingSystem(){return U}static set defaultNumberingSystem(e){U=e}static get defaultOutputCalendar(){return q}static set defaultOutputCalendar(e){q=e}static get throwOnInvalid(){return J}static set throwOnInvalid(e){J=e}static resetCaches(){Locale.resetCache(),IANAZone.resetCache()}}let W={};let Y={};function getCachedDTF(e,t={}){const r=JSON.stringify([e,t]);let n=Y[r];return n||(n=new Intl.DateTimeFormat(e,t),Y[r]=n),n}let K={};let Q={};let X=null;function listStuff(e,t,r,n,i){const a=e.listingMode(r);return"error"===a?null:"en"===a?n(t):i(t)}class PolyNumberFormatter{constructor(e,t,r){this.padTo=r.padTo||0,this.floor=r.floor||!1;const{padTo:n,floor:i,...a}=r;if(!t||Object.keys(a).length>0){const t={useGrouping:!1,...r};r.padTo>0&&(t.minimumIntegerDigits=r.padTo),this.inf=function getCachedINF(e,t={}){const r=JSON.stringify([e,t]);let n=K[r];return n||(n=new Intl.NumberFormat(e,t),K[r]=n),n}(e,t)}}format(e){if(this.inf){const t=this.floor?Math.floor(e):e;return this.inf.format(t)}return padStart(this.floor?Math.floor(e):roundTo(e,3),this.padTo)}}class PolyDateFormatter{constructor(e,t,r){let n;if(this.opts=r,e.zone.isUniversal){const t=e.offset/60*-1,i=t>=0?`Etc/GMT+${t}`:`Etc/GMT${t}`;0!==e.offset&&IANAZone.create(i).valid?(n=i,this.dt=e):(n="UTC",r.timeZoneName?this.dt=e:this.dt=0===e.offset?e:DateTime.fromMillis(e.ts+60*e.offset*1e3))}else"system"===e.zone.type?this.dt=e:(this.dt=e,n=e.zone.name);const i={...this.opts};n&&(i.timeZone=n),this.dtf=getCachedDTF(t,i)}format(){return this.dtf.format(this.dt.toJSDate())}formatToParts(){return this.dtf.formatToParts(this.dt.toJSDate())}resolvedOptions(){return this.dtf.resolvedOptions()}}class PolyRelFormatter{constructor(e,t,r){this.opts={style:"long",...r},!t&&hasRelative()&&(this.rtf=function getCachedRTF(e,t={}){const{base:r,...n}=t,i=JSON.stringify([e,n]);let a=Q[i];return a||(a=new Intl.RelativeTimeFormat(e,t),Q[i]=a),a}(e,r))}format(e,t){return this.rtf?this.rtf.format(e,t):function formatRelativeTime(e,t,r="always",n=!1){const i={years:["year","yr."],quarters:["quarter","qtr."],months:["month","mo."],weeks:["week","wk."],days:["day","day","days"],hours:["hour","hr."],minutes:["minute","min."],seconds:["second","sec."]},a=-1===["hours","minutes","seconds"].indexOf(e);if("auto"===r&&a){const r="days"===e;switch(t){case 1:return r?"tomorrow":`next ${i[e][0]}`;case-1:return r?"yesterday":`last ${i[e][0]}`;case 0:return r?"today":`this ${i[e][0]}`}}const o=Object.is(t,-0)||t<0,s=Math.abs(t),c=1===s,l=i[e],u=n?c?l[1]:l[2]||l[1]:c?i[e][0]:e;return o?`${s} ${u} ago`:`in ${s} ${u}`}(t,e,this.opts.numeric,"long"!==this.opts.style)}formatToParts(e,t){return this.rtf?this.rtf.formatToParts(e,t):[]}}class Locale{static fromOpts(e){return Locale.create(e.locale,e.numberingSystem,e.outputCalendar,e.defaultToEN)}static create(e,t,r,n=!1){const i=e||Settings.defaultLocale,a=i||(n?"en-US":function systemLocale(){return X||(X=(new Intl.DateTimeFormat).resolvedOptions().locale,X)}()),o=t||Settings.defaultNumberingSystem,s=r||Settings.defaultOutputCalendar;return new Locale(a,o,s,i)}static resetCache(){X=null,Y={},K={},Q={}}static fromObject({locale:e,numberingSystem:t,outputCalendar:r}={}){return Locale.create(e,t,r)}constructor(e,t,r,n){const[i,a,o]=function parseLocaleString(e){const t=e.indexOf("-u-");if(-1===t)return[e];{let r;const n=e.substring(0,t);try{r=getCachedDTF(e).resolvedOptions()}catch(e){r=getCachedDTF(n).resolvedOptions()}const{numberingSystem:i,calendar:a}=r;return[n,i,a]}}(e);this.locale=i,this.numberingSystem=t||a||null,this.outputCalendar=r||o||null,this.intl=function intlConfigString(e,t,r){return r||t?(e+="-u",r&&(e+=`-ca-${r}`),t&&(e+=`-nu-${t}`),e):e}(this.locale,this.numberingSystem,this.outputCalendar),this.weekdaysCache={format:{},standalone:{}},this.monthsCache={format:{},standalone:{}},this.meridiemCache=null,this.eraCache={},this.specifiedLocale=n,this.fastNumbersCached=null}get fastNumbers(){return null==this.fastNumbersCached&&(this.fastNumbersCached=function supportsFastNumbers(e){return(!e.numberingSystem||"latn"===e.numberingSystem)&&("latn"===e.numberingSystem||!e.locale||e.locale.startsWith("en")||"latn"===new Intl.DateTimeFormat(e.intl).resolvedOptions().numberingSystem)}(this)),this.fastNumbersCached}listingMode(){const e=this.isEnglish(),t=!(null!==this.numberingSystem&&"latn"!==this.numberingSystem||null!==this.outputCalendar&&"gregory"!==this.outputCalendar);return e&&t?"en":"intl"}clone(e){return e&&0!==Object.getOwnPropertyNames(e).length?Locale.create(e.locale||this.specifiedLocale,e.numberingSystem||this.numberingSystem,e.outputCalendar||this.outputCalendar,e.defaultToEN||!1):this}redefaultToEN(e={}){return this.clone({...e,defaultToEN:!0})}redefaultToSystem(e={}){return this.clone({...e,defaultToEN:!1})}months(e,t=!1,r=!0){return listStuff(this,e,r,months,(()=>{const r=t?{month:e,day:"numeric"}:{month:e},n=t?"format":"standalone";return this.monthsCache[n][e]||(this.monthsCache[n][e]=function mapMonths(e){const t=[];for(let r=1;r<=12;r++){const n=DateTime.utc(2016,r,1);t.push(e(n))}return t}((e=>this.extract(e,r,"month")))),this.monthsCache[n][e]}))}weekdays(e,t=!1,r=!0){return listStuff(this,e,r,weekdays,(()=>{const r=t?{weekday:e,year:"numeric",month:"long",day:"numeric"}:{weekday:e},n=t?"format":"standalone";return this.weekdaysCache[n][e]||(this.weekdaysCache[n][e]=function mapWeekdays(e){const t=[];for(let r=1;r<=7;r++){const n=DateTime.utc(2016,11,13+r);t.push(e(n))}return t}((e=>this.extract(e,r,"weekday")))),this.weekdaysCache[n][e]}))}meridiems(e=!0){return listStuff(this,void 0,e,(()=>x),(()=>{if(!this.meridiemCache){const e={hour:"numeric",hourCycle:"h12"};this.meridiemCache=[DateTime.utc(2016,11,13,9),DateTime.utc(2016,11,13,19)].map((t=>this.extract(t,e,"dayperiod")))}return this.meridiemCache}))}eras(e,t=!0){return listStuff(this,e,t,eras,(()=>{const t={era:e};return this.eraCache[e]||(this.eraCache[e]=[DateTime.utc(-40,1,1),DateTime.utc(2017,1,1)].map((e=>this.extract(e,t,"era")))),this.eraCache[e]}))}extract(e,t,r){const n=this.dtFormatter(e,t).formatToParts().find((e=>e.type.toLowerCase()===r));return n?n.value:null}numberFormatter(e={}){return new PolyNumberFormatter(this.intl,e.forceSimple||this.fastNumbers,e)}dtFormatter(e,t={}){return new PolyDateFormatter(e,this.intl,t)}relFormatter(e={}){return new PolyRelFormatter(this.intl,this.isEnglish(),e)}listFormatter(e={}){return function getCachedLF(e,t={}){const r=JSON.stringify([e,t]);let n=W[r];return n||(n=new Intl.ListFormat(e,t),W[r]=n),n}(this.intl,e)}isEnglish(){return"en"===this.locale||"en-us"===this.locale.toLowerCase()||new Intl.DateTimeFormat(this.intl).resolvedOptions().locale.startsWith("en-us")}equals(e){return this.locale===e.locale&&this.numberingSystem===e.numberingSystem&&this.outputCalendar===e.outputCalendar}}function combineRegexes(...e){const t=e.reduce(((e,t)=>e+t.source),"");return RegExp(`^${t}$`)}function combineExtractors(...e){return t=>e.reduce((([e,r,n],i)=>{const[a,o,s]=i(t,n);return[{...e,...a},o||r,s]}),[{},null,1]).slice(0,2)}function parse(e,...t){if(null==e)return[null,null];for(const[r,n]of t){const t=r.exec(e);if(t)return n(t)}return[null,null]}function simpleParse(...e){return(t,r)=>{const n={};let i;for(i=0;i<e.length;i++)n[e[i]]=parseInteger(t[r+i]);return[n,null,r+i]}}const ee=/(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/,te=/(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/,re=RegExp(`${te.source}${`(?:${ee.source}?(?:\\[(${T.source})\\])?)?`}`),ne=RegExp(`(?:T${re.source})?`),ie=simpleParse("weekYear","weekNumber","weekDay"),ae=simpleParse("year","ordinal"),oe=RegExp(`${te.source} ?(?:${ee.source}|(${T.source}))?`),se=RegExp(`(?: ${oe.source})?`);function int(e,t,r){const n=e[t];return isUndefined(n)?r:parseInteger(n)}function extractISOTime(e,t){return[{hours:int(e,t,0),minutes:int(e,t+1,0),seconds:int(e,t+2,0),milliseconds:parseMillis(e[t+3])},null,t+4]}function extractISOOffset(e,t){const r=!e[t]&&!e[t+1],n=signedOffset(e[t+1],e[t+2]);return[{},r?null:FixedOffsetZone.instance(n),t+3]}function extractIANAZone(e,t){return[{},e[t]?IANAZone.create(e[t]):null,t+1]}const ce=RegExp(`^T?${te.source}$`),le=/^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/;function extractISODuration(e){const[t,r,n,i,a,o,s,c,l]=e,u="-"===t[0],d=c&&"-"===c[0],maybeNegate=(e,t=!1)=>void 0!==e&&(t||e&&u)?-e:e;return[{years:maybeNegate(parseFloating(r)),months:maybeNegate(parseFloating(n)),weeks:maybeNegate(parseFloating(i)),days:maybeNegate(parseFloating(a)),hours:maybeNegate(parseFloating(o)),minutes:maybeNegate(parseFloating(s)),seconds:maybeNegate(parseFloating(c),"-0"===c),milliseconds:maybeNegate(parseMillis(l),d)}]}const ue={GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function fromStrings(e,t,r,n,i,a,o){const s={year:2===t.length?untruncateYear(parseInteger(t)):parseInteger(t),month:M.indexOf(r)+1,day:parseInteger(n),hour:parseInteger(i),minute:parseInteger(a)};return o&&(s.second=parseInteger(o)),e&&(s.weekday=e.length>3?I.indexOf(e)+1:D.indexOf(e)+1),s}const de=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|(?:([+-]\d\d)(\d\d)))$/;function extractRFC2822(e){const[,t,r,n,i,a,o,s,c,l,u,d]=e,f=fromStrings(t,i,n,r,a,o,s);let p;return p=c?ue[c]:l?0:signedOffset(u,d),[f,new FixedOffsetZone(p)]}const fe=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/,pe=/^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/,me=/^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;function extractRFC1123Or850(e){const[,t,r,n,i,a,o,s]=e;return[fromStrings(t,i,n,r,a,o,s),FixedOffsetZone.utcInstance]}function extractASCII(e){const[,t,r,n,i,a,o,s]=e;return[fromStrings(t,s,r,n,i,a,o),FixedOffsetZone.utcInstance]}const ye=combineRegexes(/([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/,ne),he=combineRegexes(/(\d{4})-?W(\d\d)(?:-?(\d))?/,ne),ve=combineRegexes(/(\d{4})-?(\d{3})/,ne),be=combineRegexes(re),ge=combineExtractors((function extractISOYmd(e,t){return[{year:int(e,t),month:int(e,t+1,1),day:int(e,t+2,1)},null,t+3]}),extractISOTime,extractISOOffset,extractIANAZone),Oe=combineExtractors(ie,extractISOTime,extractISOOffset,extractIANAZone),Se=combineExtractors(ae,extractISOTime,extractISOOffset,extractIANAZone),Re=combineExtractors(extractISOTime,extractISOOffset,extractIANAZone);const Ae=combineExtractors(extractISOTime);const _e=combineRegexes(/(\d{4})-(\d\d)-(\d\d)/,se),Ne=combineRegexes(oe),je=combineExtractors(extractISOTime,extractISOOffset,extractIANAZone);const Te={weeks:{days:7,hours:168,minutes:10080,seconds:604800,milliseconds:6048e5},days:{hours:24,minutes:1440,seconds:86400,milliseconds:864e5},hours:{minutes:60,seconds:3600,milliseconds:36e5},minutes:{seconds:60,milliseconds:6e4},seconds:{milliseconds:1e3}},Pe={years:{quarters:4,months:12,weeks:52,days:365,hours:8760,minutes:525600,seconds:31536e3,milliseconds:31536e6},quarters:{months:3,weeks:13,days:91,hours:2184,minutes:131040,seconds:7862400,milliseconds:78624e5},months:{weeks:4,days:30,hours:720,minutes:43200,seconds:2592e3,milliseconds:2592e6},...Te},Me=365.2425,we=30.436875,Ie={years:{quarters:4,months:12,weeks:52.1775,days:Me,hours:8765.82,minutes:525949.2,seconds:525949.2*60,milliseconds:525949.2*60*1e3},quarters:{months:3,weeks:13.044375,days:91.310625,hours:2191.455,minutes:131487.3,seconds:525949.2*60/4,milliseconds:7889237999.999999},months:{weeks:4.3481250000000005,days:we,hours:730.485,minutes:43829.1,seconds:2629746,milliseconds:2629746e3},...Te},De=["years","quarters","months","weeks","days","hours","minutes","seconds","milliseconds"],He=De.slice(0).reverse();function clone$1(e,t,r=!1){const n={values:r?t.values:{...e.values,...t.values||{}},loc:e.loc.clone(t.loc),conversionAccuracy:t.conversionAccuracy||e.conversionAccuracy,matrix:t.matrix||e.matrix};return new Duration(n)}function convert(e,t,r,n,i){const a=e[i][r],o=t[r]/a,s=!(Math.sign(o)===Math.sign(n[i]))&&0!==n[i]&&Math.abs(o)<=1?function antiTrunc(e){return e<0?Math.floor(e):Math.ceil(e)}(o):Math.trunc(o);n[i]+=s,t[r]-=s*a}class Duration{constructor(e){const t="longterm"===e.conversionAccuracy||!1;let r=t?Ie:Pe;e.matrix&&(r=e.matrix),this.values=e.values,this.loc=e.loc||Locale.create(),this.conversionAccuracy=t?"longterm":"casual",this.invalid=e.invalid||null,this.matrix=r,this.isLuxonDuration=!0}static fromMillis(e,t){return Duration.fromObject({milliseconds:e},t)}static fromObject(e,t={}){if(null==e||"object"!=typeof e)throw new InvalidArgumentError("Duration.fromObject: argument expected to be an object, got "+(null===e?"null":typeof e));return new Duration({values:normalizeObject(e,Duration.normalizeUnit),loc:Locale.fromObject(t),conversionAccuracy:t.conversionAccuracy,matrix:t.matrix})}static fromDurationLike(e){if(isNumber(e))return Duration.fromMillis(e);if(Duration.isDuration(e))return e;if("object"==typeof e)return Duration.fromObject(e);throw new InvalidArgumentError(`Unknown duration argument ${e} of type ${typeof e}`)}static fromISO(e,t){const[r]=function parseISODuration(e){return parse(e,[le,extractISODuration])}(e);return r?Duration.fromObject(r,t):Duration.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static fromISOTime(e,t){const[r]=function parseISOTimeOnly(e){return parse(e,[ce,Ae])}(e);return r?Duration.fromObject(r,t):Duration.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static invalid(e,t=null){if(!e)throw new InvalidArgumentError("need to specify a reason the Duration is invalid");const r=e instanceof Invalid?e:new Invalid(e,t);if(Settings.throwOnInvalid)throw new InvalidDurationError(r);return new Duration({invalid:r})}static normalizeUnit(e){const t={year:"years",years:"years",quarter:"quarters",quarters:"quarters",month:"months",months:"months",week:"weeks",weeks:"weeks",day:"days",days:"days",hour:"hours",hours:"hours",minute:"minutes",minutes:"minutes",second:"seconds",seconds:"seconds",millisecond:"milliseconds",milliseconds:"milliseconds"}[e?e.toLowerCase():e];if(!t)throw new InvalidUnitError(e);return t}static isDuration(e){return e&&e.isLuxonDuration||!1}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}toFormat(e,t={}){const r={...t,floor:!1!==t.round&&!1!==t.floor};return this.isValid?Formatter.create(this.loc,r).formatDurationFromString(this,e):"Invalid Duration"}toHuman(e={}){const t=De.map((t=>{const r=this.values[t];return isUndefined(r)?null:this.loc.numberFormatter({style:"unit",unitDisplay:"long",...e,unit:t.slice(0,-1)}).format(r)})).filter((e=>e));return this.loc.listFormatter({type:"conjunction",style:e.listStyle||"narrow",...e}).format(t)}toObject(){return this.isValid?{...this.values}:{}}toISO(){if(!this.isValid)return null;let e="P";return 0!==this.years&&(e+=this.years+"Y"),0===this.months&&0===this.quarters||(e+=this.months+3*this.quarters+"M"),0!==this.weeks&&(e+=this.weeks+"W"),0!==this.days&&(e+=this.days+"D"),0===this.hours&&0===this.minutes&&0===this.seconds&&0===this.milliseconds||(e+="T"),0!==this.hours&&(e+=this.hours+"H"),0!==this.minutes&&(e+=this.minutes+"M"),0===this.seconds&&0===this.milliseconds||(e+=roundTo(this.seconds+this.milliseconds/1e3,3)+"S"),"P"===e&&(e+="T0S"),e}toISOTime(e={}){if(!this.isValid)return null;const t=this.toMillis();if(t<0||t>=864e5)return null;e={suppressMilliseconds:!1,suppressSeconds:!1,includePrefix:!1,format:"extended",...e};const r=this.shiftTo("hours","minutes","seconds","milliseconds");let n="basic"===e.format?"hhmm":"hh:mm";e.suppressSeconds&&0===r.seconds&&0===r.milliseconds||(n+="basic"===e.format?"ss":":ss",e.suppressMilliseconds&&0===r.milliseconds||(n+=".SSS"));let i=r.toFormat(n);return e.includePrefix&&(i="T"+i),i}toJSON(){return this.toISO()}toString(){return this.toISO()}toMillis(){return this.as("milliseconds")}valueOf(){return this.toMillis()}plus(e){if(!this.isValid)return this;const t=Duration.fromDurationLike(e),r={};for(const e of De)(hasOwnProperty(t.values,e)||hasOwnProperty(this.values,e))&&(r[e]=t.get(e)+this.get(e));return clone$1(this,{values:r},!0)}minus(e){if(!this.isValid)return this;const t=Duration.fromDurationLike(e);return this.plus(t.negate())}mapUnits(e){if(!this.isValid)return this;const t={};for(const r of Object.keys(this.values))t[r]=asNumber(e(this.values[r],r));return clone$1(this,{values:t},!0)}get(e){return this[Duration.normalizeUnit(e)]}set(e){if(!this.isValid)return this;return clone$1(this,{values:{...this.values,...normalizeObject(e,Duration.normalizeUnit)}})}reconfigure({locale:e,numberingSystem:t,conversionAccuracy:r,matrix:n}={}){return clone$1(this,{loc:this.loc.clone({locale:e,numberingSystem:t}),matrix:n,conversionAccuracy:r})}as(e){return this.isValid?this.shiftTo(e).get(e):NaN}normalize(){if(!this.isValid)return this;const e=this.toObject();return function normalizeValues(e,t){He.reduce(((r,n)=>isUndefined(t[n])?r:(r&&convert(e,t,r,t,n),n)),null)}(this.matrix,e),clone$1(this,{values:e},!0)}shiftTo(...e){if(!this.isValid)return this;if(0===e.length)return this;e=e.map((e=>Duration.normalizeUnit(e)));const t={},r={},n=this.toObject();let i;for(const a of De)if(e.indexOf(a)>=0){i=a;let e=0;for(const t in r)e+=this.matrix[t][a]*r[t],r[t]=0;isNumber(n[a])&&(e+=n[a]);const o=Math.trunc(e);t[a]=o,r[a]=(1e3*e-1e3*o)/1e3;for(const e in n)De.indexOf(e)>De.indexOf(a)&&convert(this.matrix,n,e,t,a)}else isNumber(n[a])&&(r[a]=n[a]);for(const e in r)0!==r[e]&&(t[i]+=e===i?r[e]:r[e]/this.matrix[i][e]);return clone$1(this,{values:t},!0).normalize()}negate(){if(!this.isValid)return this;const e={};for(const t of Object.keys(this.values))e[t]=0===this.values[t]?0:-this.values[t];return clone$1(this,{values:e},!0)}get years(){return this.isValid?this.values.years||0:NaN}get quarters(){return this.isValid?this.values.quarters||0:NaN}get months(){return this.isValid?this.values.months||0:NaN}get weeks(){return this.isValid?this.values.weeks||0:NaN}get days(){return this.isValid?this.values.days||0:NaN}get hours(){return this.isValid?this.values.hours||0:NaN}get minutes(){return this.isValid?this.values.minutes||0:NaN}get seconds(){return this.isValid?this.values.seconds||0:NaN}get milliseconds(){return this.isValid?this.values.milliseconds||0:NaN}get isValid(){return null===this.invalid}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}equals(e){if(!this.isValid||!e.isValid)return!1;if(!this.loc.equals(e.loc))return!1;for(const n of De)if(t=this.values[n],r=e.values[n],!(void 0===t||0===t?void 0===r||0===r:t===r))return!1;var t,r;return!0}}const xe="Invalid Interval";class Interval{constructor(e){this.s=e.start,this.e=e.end,this.invalid=e.invalid||null,this.isLuxonInterval=!0}static invalid(e,t=null){if(!e)throw new InvalidArgumentError("need to specify a reason the Interval is invalid");const r=e instanceof Invalid?e:new Invalid(e,t);if(Settings.throwOnInvalid)throw new InvalidIntervalError(r);return new Interval({invalid:r})}static fromDateTimes(e,t){const r=friendlyDateTime(e),n=friendlyDateTime(t),i=function validateStartEnd(e,t){return e&&e.isValid?t&&t.isValid?t<e?Interval.invalid("end before start",`The end of an interval must be after its start, but you had start=${e.toISO()} and end=${t.toISO()}`):null:Interval.invalid("missing or invalid end"):Interval.invalid("missing or invalid start")}(r,n);return null==i?new Interval({start:r,end:n}):i}static after(e,t){const r=Duration.fromDurationLike(t),n=friendlyDateTime(e);return Interval.fromDateTimes(n,n.plus(r))}static before(e,t){const r=Duration.fromDurationLike(t),n=friendlyDateTime(e);return Interval.fromDateTimes(n.minus(r),n)}static fromISO(e,t){const[r,n]=(e||"").split("/",2);if(r&&n){let e,i,a,o;try{e=DateTime.fromISO(r,t),i=e.isValid}catch(n){i=!1}try{a=DateTime.fromISO(n,t),o=a.isValid}catch(n){o=!1}if(i&&o)return Interval.fromDateTimes(e,a);if(i){const r=Duration.fromISO(n,t);if(r.isValid)return Interval.after(e,r)}else if(o){const e=Duration.fromISO(r,t);if(e.isValid)return Interval.before(a,e)}}return Interval.invalid("unparsable",`the input "${e}" can't be parsed as ISO 8601`)}static isInterval(e){return e&&e.isLuxonInterval||!1}get start(){return this.isValid?this.s:null}get end(){return this.isValid?this.e:null}get isValid(){return null===this.invalidReason}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}length(e="milliseconds"){return this.isValid?this.toDuration(e).get(e):NaN}count(e="milliseconds"){if(!this.isValid)return NaN;const t=this.start.startOf(e),r=this.end.startOf(e);return Math.floor(r.diff(t,e).get(e))+1}hasSame(e){return!!this.isValid&&(this.isEmpty()||this.e.minus(1).hasSame(this.s,e))}isEmpty(){return this.s.valueOf()===this.e.valueOf()}isAfter(e){return!!this.isValid&&this.s>e}isBefore(e){return!!this.isValid&&this.e<=e}contains(e){return!!this.isValid&&(this.s<=e&&this.e>e)}set({start:e,end:t}={}){return this.isValid?Interval.fromDateTimes(e||this.s,t||this.e):this}splitAt(...e){if(!this.isValid)return[];const t=e.map(friendlyDateTime).filter((e=>this.contains(e))).sort(),r=[];let{s:n}=this,i=0;for(;n<this.e;){const e=t[i]||this.e,a=+e>+this.e?this.e:e;r.push(Interval.fromDateTimes(n,a)),n=a,i+=1}return r}splitBy(e){const t=Duration.fromDurationLike(e);if(!this.isValid||!t.isValid||0===t.as("milliseconds"))return[];let r,{s:n}=this,i=1;const a=[];for(;n<this.e;){const e=this.start.plus(t.mapUnits((e=>e*i)));r=+e>+this.e?this.e:e,a.push(Interval.fromDateTimes(n,r)),n=r,i+=1}return a}divideEqually(e){return this.isValid?this.splitBy(this.length()/e).slice(0,e):[]}overlaps(e){return this.e>e.s&&this.s<e.e}abutsStart(e){return!!this.isValid&&+this.e==+e.s}abutsEnd(e){return!!this.isValid&&+e.e==+this.s}engulfs(e){return!!this.isValid&&(this.s<=e.s&&this.e>=e.e)}equals(e){return!(!this.isValid||!e.isValid)&&(this.s.equals(e.s)&&this.e.equals(e.e))}intersection(e){if(!this.isValid)return this;const t=this.s>e.s?this.s:e.s,r=this.e<e.e?this.e:e.e;return t>=r?null:Interval.fromDateTimes(t,r)}union(e){if(!this.isValid)return this;const t=this.s<e.s?this.s:e.s,r=this.e>e.e?this.e:e.e;return Interval.fromDateTimes(t,r)}static merge(e){const[t,r]=e.sort(((e,t)=>e.s-t.s)).reduce((([e,t],r)=>t?t.overlaps(r)||t.abutsStart(r)?[e,t.union(r)]:[e.concat([t]),r]:[e,r]),[[],null]);return r&&t.push(r),t}static xor(e){let t=null,r=0;const n=[],i=e.map((e=>[{time:e.s,type:"s"},{time:e.e,type:"e"}])),a=Array.prototype.concat(...i).sort(((e,t)=>e.time-t.time));for(const e of a)r+="s"===e.type?1:-1,1===r?t=e.time:(t&&+t!=+e.time&&n.push(Interval.fromDateTimes(t,e.time)),t=null);return Interval.merge(n)}difference(...e){return Interval.xor([this].concat(e)).map((e=>this.intersection(e))).filter((e=>e&&!e.isEmpty()))}toString(){return this.isValid?`[${this.s.toISO()} – ${this.e.toISO()})`:xe}toISO(e){return this.isValid?`${this.s.toISO(e)}/${this.e.toISO(e)}`:xe}toISODate(){return this.isValid?`${this.s.toISODate()}/${this.e.toISODate()}`:xe}toISOTime(e){return this.isValid?`${this.s.toISOTime(e)}/${this.e.toISOTime(e)}`:xe}toFormat(e,{separator:t=" – "}={}){return this.isValid?`${this.s.toFormat(e)}${t}${this.e.toFormat(e)}`:xe}toDuration(e,t){return this.isValid?this.e.diff(this.s,e,t):Duration.invalid(this.invalidReason)}mapEndpoints(e){return Interval.fromDateTimes(e(this.s),e(this.e))}}class Info{static hasDST(e=Settings.defaultZone){const t=DateTime.now().setZone(e).set({month:12});return!e.isUniversal&&t.offset!==t.set({month:6}).offset}static isValidIANAZone(e){return IANAZone.isValidZone(e)}static normalizeZone(e){return normalizeZone(e,Settings.defaultZone)}static months(e="long",{locale:t=null,numberingSystem:r=null,locObj:n=null,outputCalendar:i="gregory"}={}){return(n||Locale.create(t,r,i)).months(e)}static monthsFormat(e="long",{locale:t=null,numberingSystem:r=null,locObj:n=null,outputCalendar:i="gregory"}={}){return(n||Locale.create(t,r,i)).months(e,!0)}static weekdays(e="long",{locale:t=null,numberingSystem:r=null,locObj:n=null}={}){return(n||Locale.create(t,r,null)).weekdays(e)}static weekdaysFormat(e="long",{locale:t=null,numberingSystem:r=null,locObj:n=null}={}){return(n||Locale.create(t,r,null)).weekdays(e,!0)}static meridiems({locale:e=null}={}){return Locale.create(e).meridiems()}static eras(e="short",{locale:t=null}={}){return Locale.create(t,null,"gregory").eras(e)}static features(){return{relative:hasRelative()}}}function dayDiff(e,t){const utcDayStart=e=>e.toUTC(0,{keepLocalTime:!0}).startOf("day").valueOf(),r=utcDayStart(t)-utcDayStart(e);return Math.floor(Duration.fromMillis(r).as("days"))}function diff(e,t,r,n){let[i,a,o,s]=function highOrderDiffs(e,t,r){const n=[["years",(e,t)=>t.year-e.year],["quarters",(e,t)=>t.quarter-e.quarter+4*(t.year-e.year)],["months",(e,t)=>t.month-e.month+12*(t.year-e.year)],["weeks",(e,t)=>{const r=dayDiff(e,t);return(r-r%7)/7}],["days",dayDiff]],i={};let a,o;for(const[s,c]of n)if(r.indexOf(s)>=0){a=s;let r=c(e,t);o=e.plus({[s]:r}),o>t?(e=e.plus({[s]:r-1}),r-=1):e=o,i[s]=r}return[e,i,o,a]}(e,t,r);const c=t-i,l=r.filter((e=>["hours","minutes","seconds","milliseconds"].indexOf(e)>=0));0===l.length&&(o<t&&(o=i.plus({[s]:1})),o!==i&&(a[s]=(a[s]||0)+c/(o-i)));const u=Duration.fromObject(a,n);return l.length>0?Duration.fromMillis(c,n).shiftTo(...l).plus(u):u}const Ce={arab:"[٠-٩]",arabext:"[۰-۹]",bali:"[᭐-᭙]",beng:"[০-৯]",deva:"[०-९]",fullwide:"[0-9]",gujr:"[૦-૯]",hanidec:"[〇|一|二|三|四|五|六|七|八|九]",khmr:"[០-៩]",knda:"[೦-೯]",laoo:"[໐-໙]",limb:"[᥆-᥏]",mlym:"[൦-൯]",mong:"[᠐-᠙]",mymr:"[၀-၉]",orya:"[୦-୯]",tamldec:"[௦-௯]",telu:"[౦-౯]",thai:"[๐-๙]",tibt:"[༠-༩]",latn:"\\d"},Ee={arab:[1632,1641],arabext:[1776,1785],bali:[6992,7001],beng:[2534,2543],deva:[2406,2415],fullwide:[65296,65303],gujr:[2790,2799],khmr:[6112,6121],knda:[3302,3311],laoo:[3792,3801],limb:[6470,6479],mlym:[3430,3439],mong:[6160,6169],mymr:[4160,4169],orya:[2918,2927],tamldec:[3046,3055],telu:[3174,3183],thai:[3664,3673],tibt:[3872,3881]},ke=Ce.hanidec.replace(/[\[|\]]/g,"").split("");function digitRegex({numberingSystem:e},t=""){return new RegExp(`${Ce[e||"latn"]}${t}`)}function intUnit(e,t=(e=>e)){return{regex:e,deser:([e])=>t(function parseDigits(e){let t=parseInt(e,10);if(isNaN(t)){t="";for(let r=0;r<e.length;r++){const n=e.charCodeAt(r);if(-1!==e[r].search(Ce.hanidec))t+=ke.indexOf(e[r]);else for(const e in Ee){const[r,i]=Ee[e];n>=r&&n<=i&&(t+=n-r)}}return parseInt(t,10)}return t}(e))}}const ze=`[ ${String.fromCharCode(160)}]`,Le=new RegExp(ze,"g");function fixListRegex(e){return e.replace(/\./g,"\\.?").replace(Le,ze)}function stripInsensitivities(e){return e.replace(/\./g,"").replace(Le," ").toLowerCase()}function oneOf(e,t){return null===e?null:{regex:RegExp(e.map(fixListRegex).join("|")),deser:([r])=>e.findIndex((e=>stripInsensitivities(r)===stripInsensitivities(e)))+t}}function offset(e,t){return{regex:e,deser:([,e,t])=>signedOffset(e,t),groups:t}}function simple(e){return{regex:e,deser:([e])=>e}}const Fe={year:{"2-digit":"yy",numeric:"yyyyy"},month:{numeric:"M","2-digit":"MM",short:"MMM",long:"MMMM"},day:{numeric:"d","2-digit":"dd"},weekday:{short:"EEE",long:"EEEE"},dayperiod:"a",dayPeriod:"a",hour:{numeric:"h","2-digit":"hh"},minute:{numeric:"m","2-digit":"mm"},second:{numeric:"s","2-digit":"ss"},timeZoneName:{long:"ZZZZZ",short:"ZZZ"}};let Ve=null;function expandMacroTokens(e,t){return Array.prototype.concat(...e.map((e=>function maybeExpandMacroToken(e,t){if(e.literal)return e;const r=formatOptsToTokens(Formatter.macroTokenToFormatOpts(e.val),t);return null==r||r.includes(void 0)?e:r}(e,t))))}function explainFromTokens(e,t,r){const n=expandMacroTokens(Formatter.parseFormat(r),e),i=n.map((t=>function unitForToken(e,t){const r=digitRegex(t),n=digitRegex(t,"{2}"),i=digitRegex(t,"{3}"),a=digitRegex(t,"{4}"),o=digitRegex(t,"{6}"),s=digitRegex(t,"{1,2}"),c=digitRegex(t,"{1,3}"),l=digitRegex(t,"{1,6}"),u=digitRegex(t,"{1,9}"),d=digitRegex(t,"{2,4}"),f=digitRegex(t,"{4,6}"),literal=e=>{return{regex:RegExp((t=e.val,t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"))),deser:([e])=>e,literal:!0};var t},p=(p=>{if(e.literal)return literal(p);switch(p.val){case"G":return oneOf(t.eras("short",!1),0);case"GG":return oneOf(t.eras("long",!1),0);case"y":return intUnit(l);case"yy":case"kk":return intUnit(d,untruncateYear);case"yyyy":case"kkkk":return intUnit(a);case"yyyyy":return intUnit(f);case"yyyyyy":return intUnit(o);case"M":case"L":case"d":case"H":case"h":case"m":case"q":case"s":case"W":return intUnit(s);case"MM":case"LL":case"dd":case"HH":case"hh":case"mm":case"qq":case"ss":case"WW":return intUnit(n);case"MMM":return oneOf(t.months("short",!0,!1),1);case"MMMM":return oneOf(t.months("long",!0,!1),1);case"LLL":return oneOf(t.months("short",!1,!1),1);case"LLLL":return oneOf(t.months("long",!1,!1),1);case"o":case"S":return intUnit(c);case"ooo":case"SSS":return intUnit(i);case"u":return simple(u);case"uu":return simple(s);case"uuu":case"E":case"c":return intUnit(r);case"a":return oneOf(t.meridiems(),0);case"EEE":return oneOf(t.weekdays("short",!1,!1),1);case"EEEE":return oneOf(t.weekdays("long",!1,!1),1);case"ccc":return oneOf(t.weekdays("short",!0,!1),1);case"cccc":return oneOf(t.weekdays("long",!0,!1),1);case"Z":case"ZZ":return offset(new RegExp(`([+-]${s.source})(?::(${n.source}))?`),2);case"ZZZ":return offset(new RegExp(`([+-]${s.source})(${n.source})?`),2);case"z":return simple(/[a-z_+-/]{1,256}?/i);default:return literal(p)}})(e)||{invalidReason:"missing Intl.DateTimeFormat.formatToParts support"};return p.token=e,p}(t,e))),a=i.find((e=>e.invalidReason));if(a)return{input:t,tokens:n,invalidReason:a.invalidReason};{const[e,r]=function buildRegex(e){return[`^${e.map((e=>e.regex)).reduce(((e,t)=>`${e}(${t.source})`),"")}$`,e]}(i),a=RegExp(e,"i"),[o,s]=function match(e,t,r){const n=e.match(t);if(n){const e={};let t=1;for(const i in r)if(hasOwnProperty(r,i)){const a=r[i],o=a.groups?a.groups+1:1;!a.literal&&a.token&&(e[a.token.val[0]]=a.deser(n.slice(t,t+o))),t+=o}return[n,e]}return[n,{}]}(t,a,r),[c,l,u]=s?function dateTimeFromMatches(e){let t,r=null;return isUndefined(e.z)||(r=IANAZone.create(e.z)),isUndefined(e.Z)||(r||(r=new FixedOffsetZone(e.Z)),t=e.Z),isUndefined(e.q)||(e.M=3*(e.q-1)+1),isUndefined(e.h)||(e.h<12&&1===e.a?e.h+=12:12===e.h&&0===e.a&&(e.h=0)),0===e.G&&e.y&&(e.y=-e.y),isUndefined(e.u)||(e.S=parseMillis(e.u)),[Object.keys(e).reduce(((t,r)=>{const n=(e=>{switch(e){case"S":return"millisecond";case"s":return"second";case"m":return"minute";case"h":case"H":return"hour";case"d":return"day";case"o":return"ordinal";case"L":case"M":return"month";case"y":return"year";case"E":case"c":return"weekday";case"W":return"weekNumber";case"k":return"weekYear";case"q":return"quarter";default:return null}})(r);return n&&(t[n]=e[r]),t}),{}),r,t]}(s):[null,null,void 0];if(hasOwnProperty(s,"a")&&hasOwnProperty(s,"H"))throw new ConflictingSpecificationError("Can't include meridiem when specifying 24-hour format");return{input:t,tokens:n,regex:a,rawMatches:o,matches:s,result:c,zone:l,specificOffset:u}}}function formatOptsToTokens(e,t){if(!e)return null;return Formatter.create(t,e).formatDateTimeParts(function getDummyDateTime(){return Ve||(Ve=DateTime.fromMillis(1555555555555)),Ve}()).map((t=>function tokenForPart(e,t,r){const{type:n,value:i}=e;if("literal"===n)return{literal:!0,val:i};const a=r[n];let o=Fe[n];return"object"==typeof o&&(o=o[a]),o?{literal:!1,val:o}:void 0}(t,0,e)))}const Be=[0,31,59,90,120,151,181,212,243,273,304,334],Ge=[0,31,60,91,121,152,182,213,244,274,305,335];function unitOutOfRange(e,t){return new Invalid("unit out of range",`you specified ${t} (of type ${typeof t}) as a ${e}, which is invalid`)}function dayOfWeek(e,t,r){const n=new Date(Date.UTC(e,t-1,r));e<100&&e>=0&&n.setUTCFullYear(n.getUTCFullYear()-1900);const i=n.getUTCDay();return 0===i?7:i}function computeOrdinal(e,t,r){return r+(isLeapYear(e)?Ge:Be)[t-1]}function uncomputeOrdinal(e,t){const r=isLeapYear(e)?Ge:Be,n=r.findIndex((e=>e<t));return{month:n+1,day:t-r[n]}}function gregorianToWeek(e){const{year:t,month:r,day:n}=e,i=computeOrdinal(t,r,n),a=dayOfWeek(t,r,n);let o,s=Math.floor((i-a+10)/7);return s<1?(o=t-1,s=weeksInWeekYear(o)):s>weeksInWeekYear(t)?(o=t+1,s=1):o=t,{weekYear:o,weekNumber:s,weekday:a,...timeObject(e)}}function weekToGregorian(e){const{weekYear:t,weekNumber:r,weekday:n}=e,i=dayOfWeek(t,1,4),a=daysInYear(t);let o,s=7*r+n-i-3;s<1?(o=t-1,s+=daysInYear(o)):s>a?(o=t+1,s-=daysInYear(t)):o=t;const{month:c,day:l}=uncomputeOrdinal(o,s);return{year:o,month:c,day:l,...timeObject(e)}}function gregorianToOrdinal(e){const{year:t,month:r,day:n}=e;return{year:t,ordinal:computeOrdinal(t,r,n),...timeObject(e)}}function ordinalToGregorian(e){const{year:t,ordinal:r}=e,{month:n,day:i}=uncomputeOrdinal(t,r);return{year:t,month:n,day:i,...timeObject(e)}}function hasInvalidGregorianData(e){const t=isInteger(e.year),r=integerBetween(e.month,1,12),n=integerBetween(e.day,1,daysInMonth(e.year,e.month));return t?r?!n&&unitOutOfRange("day",e.day):unitOutOfRange("month",e.month):unitOutOfRange("year",e.year)}function hasInvalidTimeData(e){const{hour:t,minute:r,second:n,millisecond:i}=e,a=integerBetween(t,0,23)||24===t&&0===r&&0===n&&0===i,o=integerBetween(r,0,59),s=integerBetween(n,0,59),c=integerBetween(i,0,999);return a?o?s?!c&&unitOutOfRange("millisecond",i):unitOutOfRange("second",n):unitOutOfRange("minute",r):unitOutOfRange("hour",t)}const Je="Invalid DateTime",Ze=864e13;function unsupportedZone(e){return new Invalid("unsupported zone",`the zone "${e.name}" is not supported`)}function possiblyCachedWeekData(e){return null===e.weekData&&(e.weekData=gregorianToWeek(e.c)),e.weekData}function clone(e,t){const r={ts:e.ts,zone:e.zone,c:e.c,o:e.o,loc:e.loc,invalid:e.invalid};return new DateTime({...r,...t,old:r})}function fixOffset(e,t,r){let n=e-60*t*1e3;const i=r.offset(n);if(t===i)return[n,t];n-=60*(i-t)*1e3;const a=r.offset(n);return i===a?[n,i]:[e-60*Math.min(i,a)*1e3,Math.max(i,a)]}function tsToObj(e,t){const r=new Date(e+=60*t*1e3);return{year:r.getUTCFullYear(),month:r.getUTCMonth()+1,day:r.getUTCDate(),hour:r.getUTCHours(),minute:r.getUTCMinutes(),second:r.getUTCSeconds(),millisecond:r.getUTCMilliseconds()}}function objToTS(e,t,r){return fixOffset(objToLocalTS(e),t,r)}function adjustTime(e,t){const r=e.o,n=e.c.year+Math.trunc(t.years),i=e.c.month+Math.trunc(t.months)+3*Math.trunc(t.quarters),a={...e.c,year:n,month:i,day:Math.min(e.c.day,daysInMonth(n,i))+Math.trunc(t.days)+7*Math.trunc(t.weeks)},o=Duration.fromObject({years:t.years-Math.trunc(t.years),quarters:t.quarters-Math.trunc(t.quarters),months:t.months-Math.trunc(t.months),weeks:t.weeks-Math.trunc(t.weeks),days:t.days-Math.trunc(t.days),hours:t.hours,minutes:t.minutes,seconds:t.seconds,milliseconds:t.milliseconds}).as("milliseconds"),s=objToLocalTS(a);let[c,l]=fixOffset(s,r,e.zone);return 0!==o&&(c+=o,l=e.zone.offset(c)),{ts:c,o:l}}function parseDataToDateTime(e,t,r,n,i,a){const{setZone:o,zone:s}=r;if(e&&0!==Object.keys(e).length){const n=t||s,i=DateTime.fromObject(e,{...r,zone:n,specificOffset:a});return o?i:i.setZone(s)}return DateTime.invalid(new Invalid("unparsable",`the input "${i}" can't be parsed as ${n}`))}function toTechFormat(e,t,r=!0){return e.isValid?Formatter.create(Locale.create("en-US"),{allowZ:r,forceSimple:!0}).formatDateTimeFromString(e,t):null}function toISODate(e,t){const r=e.c.year>9999||e.c.year<0;let n="";return r&&e.c.year>=0&&(n+="+"),n+=padStart(e.c.year,r?6:4),t?(n+="-",n+=padStart(e.c.month),n+="-",n+=padStart(e.c.day)):(n+=padStart(e.c.month),n+=padStart(e.c.day)),n}function toISOTime(e,t,r,n,i,a){let o=padStart(e.c.hour);return t?(o+=":",o+=padStart(e.c.minute),0===e.c.second&&r||(o+=":")):o+=padStart(e.c.minute),0===e.c.second&&r||(o+=padStart(e.c.second),0===e.c.millisecond&&n||(o+=".",o+=padStart(e.c.millisecond,3))),i&&(e.isOffsetFixed&&0===e.offset&&!a?o+="Z":e.o<0?(o+="-",o+=padStart(Math.trunc(-e.o/60)),o+=":",o+=padStart(Math.trunc(-e.o%60))):(o+="+",o+=padStart(Math.trunc(e.o/60)),o+=":",o+=padStart(Math.trunc(e.o%60)))),a&&(o+="["+e.zone.ianaName+"]"),o}const $e={month:1,day:1,hour:0,minute:0,second:0,millisecond:0},Ue={weekNumber:1,weekday:1,hour:0,minute:0,second:0,millisecond:0},qe={ordinal:1,hour:0,minute:0,second:0,millisecond:0},We=["year","month","day","hour","minute","second","millisecond"],Ye=["weekYear","weekNumber","weekday","hour","minute","second","millisecond"],Ke=["year","ordinal","hour","minute","second","millisecond"];function normalizeUnit(e){const t={year:"year",years:"year",month:"month",months:"month",day:"day",days:"day",hour:"hour",hours:"hour",minute:"minute",minutes:"minute",quarter:"quarter",quarters:"quarter",second:"second",seconds:"second",millisecond:"millisecond",milliseconds:"millisecond",weekday:"weekday",weekdays:"weekday",weeknumber:"weekNumber",weeksnumber:"weekNumber",weeknumbers:"weekNumber",weekyear:"weekYear",weekyears:"weekYear",ordinal:"ordinal"}[e.toLowerCase()];if(!t)throw new InvalidUnitError(e);return t}function quickDT(e,t){const r=normalizeZone(t.zone,Settings.defaultZone),n=Locale.fromObject(t),i=Settings.now();let a,o;if(isUndefined(e.year))a=i;else{for(const t of We)isUndefined(e[t])&&(e[t]=$e[t]);const t=hasInvalidGregorianData(e)||hasInvalidTimeData(e);if(t)return DateTime.invalid(t);const n=r.offset(i);[a,o]=objToTS(e,n,r)}return new DateTime({ts:a,zone:r,loc:n,o})}function diffRelative(e,t,r){const n=!!isUndefined(r.round)||r.round,format=(e,i)=>{e=roundTo(e,n||r.calendary?0:2,!0);return t.loc.clone(r).relFormatter(r).format(e,i)},differ=n=>r.calendary?t.hasSame(e,n)?0:t.startOf(n).diff(e.startOf(n),n).get(n):t.diff(e,n).get(n);if(r.unit)return format(differ(r.unit),r.unit);for(const e of r.units){const t=differ(e);if(Math.abs(t)>=1)return format(t,e)}return format(e>t?-0:0,r.units[r.units.length-1])}function lastOpts(e){let t,r={};return e.length>0&&"object"==typeof e[e.length-1]?(r=e[e.length-1],t=Array.from(e).slice(0,e.length-1)):t=Array.from(e),[r,t]}class DateTime{constructor(e){const t=e.zone||Settings.defaultZone;let r=e.invalid||(Number.isNaN(e.ts)?new Invalid("invalid input"):null)||(t.isValid?null:unsupportedZone(t));this.ts=isUndefined(e.ts)?Settings.now():e.ts;let n=null,i=null;if(!r){if(e.old&&e.old.ts===this.ts&&e.old.zone.equals(t))[n,i]=[e.old.c,e.old.o];else{const e=t.offset(this.ts);n=tsToObj(this.ts,e),r=Number.isNaN(n.year)?new Invalid("invalid input"):null,n=r?null:n,i=r?null:e}}this._zone=t,this.loc=e.loc||Locale.create(),this.invalid=r,this.weekData=null,this.c=n,this.o=i,this.isLuxonDateTime=!0}static now(){return new DateTime({})}static local(){const[e,t]=lastOpts(arguments),[r,n,i,a,o,s,c]=t;return quickDT({year:r,month:n,day:i,hour:a,minute:o,second:s,millisecond:c},e)}static utc(){const[e,t]=lastOpts(arguments),[r,n,i,a,o,s,c]=t;return e.zone=FixedOffsetZone.utcInstance,quickDT({year:r,month:n,day:i,hour:a,minute:o,second:s,millisecond:c},e)}static fromJSDate(e,t={}){const r=function isDate(e){return"[object Date]"===Object.prototype.toString.call(e)}(e)?e.valueOf():NaN;if(Number.isNaN(r))return DateTime.invalid("invalid input");const n=normalizeZone(t.zone,Settings.defaultZone);return n.isValid?new DateTime({ts:r,zone:n,loc:Locale.fromObject(t)}):DateTime.invalid(unsupportedZone(n))}static fromMillis(e,t={}){if(isNumber(e))return e<-Ze||e>Ze?DateTime.invalid("Timestamp out of range"):new DateTime({ts:e,zone:normalizeZone(t.zone,Settings.defaultZone),loc:Locale.fromObject(t)});throw new InvalidArgumentError(`fromMillis requires a numerical input, but received a ${typeof e} with value ${e}`)}static fromSeconds(e,t={}){if(isNumber(e))return new DateTime({ts:1e3*e,zone:normalizeZone(t.zone,Settings.defaultZone),loc:Locale.fromObject(t)});throw new InvalidArgumentError("fromSeconds requires a numerical input")}static fromObject(e,t={}){e=e||{};const r=normalizeZone(t.zone,Settings.defaultZone);if(!r.isValid)return DateTime.invalid(unsupportedZone(r));const n=Settings.now(),i=isUndefined(t.specificOffset)?r.offset(n):t.specificOffset,a=normalizeObject(e,normalizeUnit),o=!isUndefined(a.ordinal),s=!isUndefined(a.year),c=!isUndefined(a.month)||!isUndefined(a.day),l=s||c,u=a.weekYear||a.weekNumber,d=Locale.fromObject(t);if((l||o)&&u)throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(c&&o)throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");const f=u||a.weekday&&!l;let p,m,y=tsToObj(n,i);f?(p=Ye,m=Ue,y=gregorianToWeek(y)):o?(p=Ke,m=qe,y=gregorianToOrdinal(y)):(p=We,m=$e);let h=!1;for(const e of p){isUndefined(a[e])?a[e]=h?m[e]:y[e]:h=!0}const v=f?function hasInvalidWeekData(e){const t=isInteger(e.weekYear),r=integerBetween(e.weekNumber,1,weeksInWeekYear(e.weekYear)),n=integerBetween(e.weekday,1,7);return t?r?!n&&unitOutOfRange("weekday",e.weekday):unitOutOfRange("week",e.week):unitOutOfRange("weekYear",e.weekYear)}(a):o?function hasInvalidOrdinalData(e){const t=isInteger(e.year),r=integerBetween(e.ordinal,1,daysInYear(e.year));return t?!r&&unitOutOfRange("ordinal",e.ordinal):unitOutOfRange("year",e.year)}(a):hasInvalidGregorianData(a),b=v||hasInvalidTimeData(a);if(b)return DateTime.invalid(b);const g=f?weekToGregorian(a):o?ordinalToGregorian(a):a,[O,S]=objToTS(g,i,r),R=new DateTime({ts:O,zone:r,o:S,loc:d});return a.weekday&&l&&e.weekday!==R.weekday?DateTime.invalid("mismatched weekday",`you can't specify both a weekday of ${a.weekday} and a date of ${R.toISO()}`):R}static fromISO(e,t={}){const[r,n]=function parseISODate(e){return parse(e,[ye,ge],[he,Oe],[ve,Se],[be,Re])}(e);return parseDataToDateTime(r,n,t,"ISO 8601",e)}static fromRFC2822(e,t={}){const[r,n]=function parseRFC2822Date(e){return parse(function preprocessRFC2822(e){return e.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").trim()}(e),[de,extractRFC2822])}(e);return parseDataToDateTime(r,n,t,"RFC 2822",e)}static fromHTTP(e,t={}){const[r,n]=function parseHTTPDate(e){return parse(e,[fe,extractRFC1123Or850],[pe,extractRFC1123Or850],[me,extractASCII])}(e);return parseDataToDateTime(r,n,t,"HTTP",t)}static fromFormat(e,t,r={}){if(isUndefined(e)||isUndefined(t))throw new InvalidArgumentError("fromFormat requires an input string and a format");const{locale:n=null,numberingSystem:i=null}=r,a=Locale.fromOpts({locale:n,numberingSystem:i,defaultToEN:!0}),[o,s,c,l]=function parseFromTokens(e,t,r){const{result:n,zone:i,specificOffset:a,invalidReason:o}=explainFromTokens(e,t,r);return[n,i,a,o]}(a,e,t);return l?DateTime.invalid(l):parseDataToDateTime(o,s,r,`format ${t}`,e,c)}static fromString(e,t,r={}){return DateTime.fromFormat(e,t,r)}static fromSQL(e,t={}){const[r,n]=function parseSQL(e){return parse(e,[_e,ge],[Ne,je])}(e);return parseDataToDateTime(r,n,t,"SQL",e)}static invalid(e,t=null){if(!e)throw new InvalidArgumentError("need to specify a reason the DateTime is invalid");const r=e instanceof Invalid?e:new Invalid(e,t);if(Settings.throwOnInvalid)throw new InvalidDateTimeError(r);return new DateTime({invalid:r})}static isDateTime(e){return e&&e.isLuxonDateTime||!1}static parseFormatForOpts(e,t={}){const r=formatOptsToTokens(e,Locale.fromObject(t));return r?r.map((e=>e?e.val:null)).join(""):null}static expandFormat(e,t={}){return expandMacroTokens(Formatter.parseFormat(e),Locale.fromObject(t)).map((e=>e.val)).join("")}get(e){return this[e]}get isValid(){return null===this.invalid}get invalidReason(){return this.invalid?this.invalid.reason:null}get invalidExplanation(){return this.invalid?this.invalid.explanation:null}get locale(){return this.isValid?this.loc.locale:null}get numberingSystem(){return this.isValid?this.loc.numberingSystem:null}get outputCalendar(){return this.isValid?this.loc.outputCalendar:null}get zone(){return this._zone}get zoneName(){return this.isValid?this.zone.name:null}get year(){return this.isValid?this.c.year:NaN}get quarter(){return this.isValid?Math.ceil(this.c.month/3):NaN}get month(){return this.isValid?this.c.month:NaN}get day(){return this.isValid?this.c.day:NaN}get hour(){return this.isValid?this.c.hour:NaN}get minute(){return this.isValid?this.c.minute:NaN}get second(){return this.isValid?this.c.second:NaN}get millisecond(){return this.isValid?this.c.millisecond:NaN}get weekYear(){return this.isValid?possiblyCachedWeekData(this).weekYear:NaN}get weekNumber(){return this.isValid?possiblyCachedWeekData(this).weekNumber:NaN}get weekday(){return this.isValid?possiblyCachedWeekData(this).weekday:NaN}get ordinal(){return this.isValid?gregorianToOrdinal(this.c).ordinal:NaN}get monthShort(){return this.isValid?Info.months("short",{locObj:this.loc})[this.month-1]:null}get monthLong(){return this.isValid?Info.months("long",{locObj:this.loc})[this.month-1]:null}get weekdayShort(){return this.isValid?Info.weekdays("short",{locObj:this.loc})[this.weekday-1]:null}get weekdayLong(){return this.isValid?Info.weekdays("long",{locObj:this.loc})[this.weekday-1]:null}get offset(){return this.isValid?+this.o:NaN}get offsetNameShort(){return this.isValid?this.zone.offsetName(this.ts,{format:"short",locale:this.locale}):null}get offsetNameLong(){return this.isValid?this.zone.offsetName(this.ts,{format:"long",locale:this.locale}):null}get isOffsetFixed(){return this.isValid?this.zone.isUniversal:null}get isInDST(){return!this.isOffsetFixed&&(this.offset>this.set({month:1,day:1}).offset||this.offset>this.set({month:5}).offset)}get isInLeapYear(){return isLeapYear(this.year)}get daysInMonth(){return daysInMonth(this.year,this.month)}get daysInYear(){return this.isValid?daysInYear(this.year):NaN}get weeksInWeekYear(){return this.isValid?weeksInWeekYear(this.weekYear):NaN}resolvedLocaleOptions(e={}){const{locale:t,numberingSystem:r,calendar:n}=Formatter.create(this.loc.clone(e),e).resolvedOptions(this);return{locale:t,numberingSystem:r,outputCalendar:n}}toUTC(e=0,t={}){return this.setZone(FixedOffsetZone.instance(e),t)}toLocal(){return this.setZone(Settings.defaultZone)}setZone(e,{keepLocalTime:t=!1,keepCalendarTime:r=!1}={}){if((e=normalizeZone(e,Settings.defaultZone)).equals(this.zone))return this;if(e.isValid){let n=this.ts;if(t||r){const t=e.offset(this.ts),r=this.toObject();[n]=objToTS(r,t,e)}return clone(this,{ts:n,zone:e})}return DateTime.invalid(unsupportedZone(e))}reconfigure({locale:e,numberingSystem:t,outputCalendar:r}={}){return clone(this,{loc:this.loc.clone({locale:e,numberingSystem:t,outputCalendar:r})})}setLocale(e){return this.reconfigure({locale:e})}set(e){if(!this.isValid)return this;const t=normalizeObject(e,normalizeUnit),r=!isUndefined(t.weekYear)||!isUndefined(t.weekNumber)||!isUndefined(t.weekday),n=!isUndefined(t.ordinal),i=!isUndefined(t.year),a=!isUndefined(t.month)||!isUndefined(t.day),o=i||a,s=t.weekYear||t.weekNumber;if((o||n)&&s)throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals");if(a&&n)throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");let c;r?c=weekToGregorian({...gregorianToWeek(this.c),...t}):isUndefined(t.ordinal)?(c={...this.toObject(),...t},isUndefined(t.day)&&(c.day=Math.min(daysInMonth(c.year,c.month),c.day))):c=ordinalToGregorian({...gregorianToOrdinal(this.c),...t});const[l,u]=objToTS(c,this.o,this.zone);return clone(this,{ts:l,o:u})}plus(e){if(!this.isValid)return this;return clone(this,adjustTime(this,Duration.fromDurationLike(e)))}minus(e){if(!this.isValid)return this;return clone(this,adjustTime(this,Duration.fromDurationLike(e).negate()))}startOf(e){if(!this.isValid)return this;const t={},r=Duration.normalizeUnit(e);switch(r){case"years":t.month=1;case"quarters":case"months":t.day=1;case"weeks":case"days":t.hour=0;case"hours":t.minute=0;case"minutes":t.second=0;case"seconds":t.millisecond=0}if("weeks"===r&&(t.weekday=1),"quarters"===r){const e=Math.ceil(this.month/3);t.month=3*(e-1)+1}return this.set(t)}endOf(e){return this.isValid?this.plus({[e]:1}).startOf(e).minus(1):this}toFormat(e,t={}){return this.isValid?Formatter.create(this.loc.redefaultToEN(t)).formatDateTimeFromString(this,e):Je}toLocaleString(e=a,t={}){return this.isValid?Formatter.create(this.loc.clone(t),e).formatDateTime(this):Je}toLocaleParts(e={}){return this.isValid?Formatter.create(this.loc.clone(e),e).formatDateTimeParts(this):[]}toISO({format:e="extended",suppressSeconds:t=!1,suppressMilliseconds:r=!1,includeOffset:n=!0,extendedZone:i=!1}={}){if(!this.isValid)return null;const a="extended"===e;let o=toISODate(this,a);return o+="T",o+=toISOTime(this,a,t,r,n,i),o}toISODate({format:e="extended"}={}){return this.isValid?toISODate(this,"extended"===e):null}toISOWeekDate(){return toTechFormat(this,"kkkk-'W'WW-c")}toISOTime({suppressMilliseconds:e=!1,suppressSeconds:t=!1,includeOffset:r=!0,includePrefix:n=!1,extendedZone:i=!1,format:a="extended"}={}){if(!this.isValid)return null;return(n?"T":"")+toISOTime(this,"extended"===a,t,e,r,i)}toRFC2822(){return toTechFormat(this,"EEE, dd LLL yyyy HH:mm:ss ZZZ",!1)}toHTTP(){return toTechFormat(this.toUTC(),"EEE, dd LLL yyyy HH:mm:ss 'GMT'")}toSQLDate(){return this.isValid?toISODate(this,!0):null}toSQLTime({includeOffset:e=!0,includeZone:t=!1,includeOffsetSpace:r=!0}={}){let n="HH:mm:ss.SSS";return(t||e)&&(r&&(n+=" "),t?n+="z":e&&(n+="ZZ")),toTechFormat(this,n,!0)}toSQL(e={}){return this.isValid?`${this.toSQLDate()} ${this.toSQLTime(e)}`:null}toString(){return this.isValid?this.toISO():Je}valueOf(){return this.toMillis()}toMillis(){return this.isValid?this.ts:NaN}toSeconds(){return this.isValid?this.ts/1e3:NaN}toUnixInteger(){return this.isValid?Math.floor(this.ts/1e3):NaN}toJSON(){return this.toISO()}toBSON(){return this.toJSDate()}toObject(e={}){if(!this.isValid)return{};const t={...this.c};return e.includeConfig&&(t.outputCalendar=this.outputCalendar,t.numberingSystem=this.loc.numberingSystem,t.locale=this.loc.locale),t}toJSDate(){return new Date(this.isValid?this.ts:NaN)}diff(e,t="milliseconds",r={}){if(!this.isValid||!e.isValid)return Duration.invalid("created by diffing an invalid DateTime");const n={locale:this.locale,numberingSystem:this.numberingSystem,...r},i=function maybeArray(e){return Array.isArray(e)?e:[e]}(t).map(Duration.normalizeUnit),a=e.valueOf()>this.valueOf(),o=diff(a?this:e,a?e:this,i,n);return a?o.negate():o}diffNow(e="milliseconds",t={}){return this.diff(DateTime.now(),e,t)}until(e){return this.isValid?Interval.fromDateTimes(this,e):this}hasSame(e,t){if(!this.isValid)return!1;const r=e.valueOf(),n=this.setZone(e.zone,{keepLocalTime:!0});return n.startOf(t)<=r&&r<=n.endOf(t)}equals(e){return this.isValid&&e.isValid&&this.valueOf()===e.valueOf()&&this.zone.equals(e.zone)&&this.loc.equals(e.loc)}toRelative(e={}){if(!this.isValid)return null;const t=e.base||DateTime.fromObject({},{zone:this.zone}),r=e.padding?this<t?-e.padding:e.padding:0;let n=["years","months","days","hours","minutes","seconds"],i=e.unit;return Array.isArray(e.unit)&&(n=e.unit,i=void 0),diffRelative(t,this.plus(r),{...e,numeric:"always",units:n,unit:i})}toRelativeCalendar(e={}){return this.isValid?diffRelative(e.base||DateTime.fromObject({},{zone:this.zone}),this,{...e,numeric:"auto",units:["years","months","days"],calendary:!0}):null}static min(...e){if(!e.every(DateTime.isDateTime))throw new InvalidArgumentError("min requires all arguments be DateTimes");return bestBy(e,(e=>e.valueOf()),Math.min)}static max(...e){if(!e.every(DateTime.isDateTime))throw new InvalidArgumentError("max requires all arguments be DateTimes");return bestBy(e,(e=>e.valueOf()),Math.max)}static fromFormatExplain(e,t,r={}){const{locale:n=null,numberingSystem:i=null}=r;return explainFromTokens(Locale.fromOpts({locale:n,numberingSystem:i,defaultToEN:!0}),e,t)}static fromStringExplain(e,t,r={}){return DateTime.fromFormatExplain(e,t,r)}static get DATE_SHORT(){return a}static get DATE_MED(){return o}static get DATE_MED_WITH_WEEKDAY(){return s}static get DATE_FULL(){return c}static get DATE_HUGE(){return l}static get TIME_SIMPLE(){return u}static get TIME_WITH_SECONDS(){return d}static get TIME_WITH_SHORT_OFFSET(){return f}static get TIME_WITH_LONG_OFFSET(){return p}static get TIME_24_SIMPLE(){return m}static get TIME_24_WITH_SECONDS(){return y}static get TIME_24_WITH_SHORT_OFFSET(){return h}static get TIME_24_WITH_LONG_OFFSET(){return v}static get DATETIME_SHORT(){return b}static get DATETIME_SHORT_WITH_SECONDS(){return g}static get DATETIME_MED(){return O}static get DATETIME_MED_WITH_SECONDS(){return S}static get DATETIME_MED_WITH_WEEKDAY(){return R}static get DATETIME_FULL(){return A}static get DATETIME_FULL_WITH_SECONDS(){return _}static get DATETIME_HUGE(){return N}static get DATETIME_HUGE_WITH_SECONDS(){return j}}function friendlyDateTime(e){if(DateTime.isDateTime(e))return e;if(e&&e.valueOf&&isNumber(e.valueOf()))return DateTime.fromJSDate(e);if(e&&"object"==typeof e)return DateTime.fromObject(e);throw new InvalidArgumentError(`Unknown datetime argument: ${e}, of type ${typeof e}`)}t.DateTime=DateTime,t.Duration=Duration,t.FixedOffsetZone=FixedOffsetZone,t.IANAZone=IANAZone,t.Info=Info,t.Interval=Interval,t.InvalidZone=InvalidZone,t.Settings=Settings,t.SystemZone=SystemZone,t.VERSION="3.0.4",t.Zone=Zone},4714:(e,t,r)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0;var n=r(6898);Object.defineProperty(t,"nameof",{enumerable:!0,get:function(){return n.nameof}})},6898:(e,t)=>{function cleanseAssertionOperators(e){return e.replace(/[?!]/g,"")}Object.defineProperty(t,"__esModule",{value:!0}),t.nameof=void 0,t.nameof=function nameof(e,t){var r=e.toString();if(r.startsWith("class ")&&!r.startsWith("class =>"))return cleanseAssertionOperators(r.substring("class ".length,r.indexOf(" {")));if(r.includes("=>"))return cleanseAssertionOperators(r.substring(r.indexOf(".")+1));var n=r.match(/function\s*\(\w+\)\s*\{[\r\n\s]*return\s+\w+\.((\w+\.)*(\w+))/i);if(n)return t&&t.lastProp?n[3]:n[1];if(r.startsWith("function "))return cleanseAssertionOperators(r.substring("function ".length,r.indexOf("(")));throw new Error("ts-simple-nameof: Invalid function.")}},2890:e=>{e.exports=NMSHDCrypto},9663:e=>{e.exports=NMSHDTransport},194:e=>{e.exports=TSServal}},t={};function __webpack_require__(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,__webpack_require__),i.exports}__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r=__webpack_require__(5590);NMSHDContent=r})();
2
2
  //# sourceMappingURL=nmshd.content.min.js.map