alchemy 0.68.0 → 0.69.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 (92) hide show
  1. package/bin/alchemy.js +19 -1
  2. package/lib/aws/control/properties.d.ts +64 -0
  3. package/lib/aws/control/properties.d.ts.map +1 -1
  4. package/lib/aws/control/properties.js +554 -39
  5. package/lib/aws/control/properties.js.map +1 -1
  6. package/lib/aws/control/resource.d.ts.map +1 -1
  7. package/lib/aws/control/resource.js +33 -0
  8. package/lib/aws/control/resource.js.map +1 -1
  9. package/lib/aws/control/types.d.ts +5451 -1587
  10. package/lib/aws/control/types.d.ts.map +1 -1
  11. package/lib/aws/control/types.js.map +1 -1
  12. package/lib/aws/control/update-types.d.ts +12913 -0
  13. package/lib/aws/control/update-types.d.ts.map +1 -0
  14. package/lib/aws/control/update-types.js +12916 -0
  15. package/lib/aws/control/update-types.js.map +1 -0
  16. package/lib/cloudflare/api.d.ts +1 -1
  17. package/lib/cloudflare/api.d.ts.map +1 -1
  18. package/lib/cloudflare/api.js +9 -10
  19. package/lib/cloudflare/api.js.map +1 -1
  20. package/lib/cloudflare/astro/astro.d.ts.map +1 -1
  21. package/lib/cloudflare/astro/astro.js +3 -3
  22. package/lib/cloudflare/astro/astro.js.map +1 -1
  23. package/lib/cloudflare/bucket-object.d.ts +81 -0
  24. package/lib/cloudflare/bucket-object.d.ts.map +1 -0
  25. package/lib/cloudflare/bucket-object.js +67 -0
  26. package/lib/cloudflare/bucket-object.js.map +1 -0
  27. package/lib/cloudflare/bucket.d.ts +30 -3
  28. package/lib/cloudflare/bucket.d.ts.map +1 -1
  29. package/lib/cloudflare/bucket.js +97 -13
  30. package/lib/cloudflare/bucket.js.map +1 -1
  31. package/lib/cloudflare/compatibility-date.gen.d.ts +1 -1
  32. package/lib/cloudflare/compatibility-date.gen.js +1 -1
  33. package/lib/cloudflare/container.d.ts.map +1 -1
  34. package/lib/cloudflare/container.js +1 -1
  35. package/lib/cloudflare/container.js.map +1 -1
  36. package/lib/cloudflare/index.d.ts +1 -0
  37. package/lib/cloudflare/index.d.ts.map +1 -1
  38. package/lib/cloudflare/index.js +1 -0
  39. package/lib/cloudflare/index.js.map +1 -1
  40. package/lib/cloudflare/next.js.map +1 -1
  41. package/lib/cloudflare/nuxt/nuxt.d.ts.map +1 -1
  42. package/lib/cloudflare/nuxt/nuxt.js +3 -3
  43. package/lib/cloudflare/nuxt/nuxt.js.map +1 -1
  44. package/lib/cloudflare/vite/vite.d.ts.map +1 -1
  45. package/lib/cloudflare/vite/vite.js +3 -3
  46. package/lib/cloudflare/vite/vite.js.map +1 -1
  47. package/lib/cloudflare/website.d.ts +7 -1
  48. package/lib/cloudflare/website.d.ts.map +1 -1
  49. package/lib/cloudflare/website.js +19 -1
  50. package/lib/cloudflare/website.js.map +1 -1
  51. package/lib/cloudflare/wrangler.json.d.ts +27 -8
  52. package/lib/cloudflare/wrangler.json.d.ts.map +1 -1
  53. package/lib/cloudflare/wrangler.json.js +3 -1
  54. package/lib/cloudflare/wrangler.json.js.map +1 -1
  55. package/lib/llms.cloudflare.txt +2 -2
  56. package/lib/neon/branch.d.ts +19 -3
  57. package/lib/neon/branch.d.ts.map +1 -1
  58. package/lib/neon/branch.js +4 -4
  59. package/lib/neon/branch.js.map +1 -1
  60. package/lib/neon/project.d.ts +17 -1
  61. package/lib/neon/project.d.ts.map +1 -1
  62. package/lib/neon/project.js +4 -4
  63. package/lib/neon/project.js.map +1 -1
  64. package/lib/serde.d.ts +3 -0
  65. package/lib/serde.d.ts.map +1 -1
  66. package/lib/serde.js +40 -0
  67. package/lib/serde.js.map +1 -1
  68. package/lib/test/bun.js.map +1 -1
  69. package/package.json +1 -1
  70. package/src/aws/control/properties.ts +554 -39
  71. package/src/aws/control/resource.ts +58 -0
  72. package/src/aws/control/types.ts +85281 -84914
  73. package/src/aws/control/update-types.ts +12917 -0
  74. package/src/cloudflare/api.ts +9 -10
  75. package/src/cloudflare/astro/astro.ts +8 -3
  76. package/src/cloudflare/bucket-object.ts +117 -0
  77. package/src/cloudflare/bucket.ts +148 -14
  78. package/src/cloudflare/compatibility-date.gen.ts +1 -1
  79. package/src/cloudflare/container.ts +2 -3
  80. package/src/cloudflare/index.ts +1 -0
  81. package/src/cloudflare/next.ts +2 -2
  82. package/src/cloudflare/nuxt/nuxt.ts +8 -3
  83. package/src/cloudflare/vite/vite.ts +8 -3
  84. package/src/cloudflare/website.ts +28 -2
  85. package/src/cloudflare/wrangler.json.ts +32 -17
  86. package/src/llms.cloudflare.txt +2 -2
  87. package/src/neon/branch.ts +6 -5
  88. package/src/neon/project.ts +4 -4
  89. package/src/serde.ts +50 -0
  90. package/src/test/bun.ts +1 -1
  91. package/templates/rwsdk/.cursor/rules/alchemy_cloudflare.mdc +2 -2
  92. package/workers/tunnel-proxy.js +1 -1
package/bin/alchemy.js CHANGED
@@ -36537,6 +36537,7 @@ async function serialize$1(scope, value, options) {
36537
36537
  return { "@symbol": value.toString() };
36538
36538
  } else if (isScope(value)) return { "@scope": null };
36539
36539
  else if (isImportMeta(value)) return Object.fromEntries(Object.keys(Object.getPrototypeOf(value)).filter((prop) => prop === "env").map((prop) => [prop, value[prop]]));
36540
+ else if (isBinary(value)) return { "@buffer": await serializeBinary(value) };
36540
36541
  else if (value && typeof value === "object") {
36541
36542
  for (const symbol$2 of Object.getOwnPropertySymbols(value)) assertNotUniqueSymbol(symbol$2);
36542
36543
  return Object.fromEntries(await Promise.all([...Object.getOwnPropertySymbols(value), ...Object.keys(value)].map(async (key) => [key.toString(), await serialize$1(scope, value[key], options)])));
@@ -36559,6 +36560,7 @@ async function deserialize(scope, value, options) {
36559
36560
  else if ("@date" in value) return new Date(value["@date"]);
36560
36561
  else if ("@symbol" in value) return parseSymbol(value["@symbol"]);
36561
36562
  else if ("@scope" in value) return scope;
36563
+ else if ("@buffer" in value) return Buffer.from(value["@buffer"], "base64");
36562
36564
  return Object.fromEntries(await Promise.all(Object.entries(value).map(async ([key, value$1]) => [parseSymbol(key) ?? key, await deserialize(scope, value$1, options)])));
36563
36565
  }
36564
36566
  return value;
@@ -36572,6 +36574,22 @@ function parseSymbol(value) {
36572
36574
  function assertNotUniqueSymbol(symbol$2) {
36573
36575
  if (symbol$2.description === void 0 || symbol$2 !== Symbol.for(symbol$2.description)) throw new Error(`Cannot serialize unique symbol: ${symbol$2.description}`);
36574
36576
  }
36577
+ const isBinary = (value) => {
36578
+ return value instanceof Buffer || value instanceof Uint8Array || value instanceof ArrayBuffer || value instanceof Blob || value instanceof ReadableStream || ArrayBuffer.isView(value);
36579
+ };
36580
+ const serializeBinary = async (value) => {
36581
+ return value instanceof Buffer ? value.toString("base64") : value instanceof Uint8Array ? value.toString("base64") : value instanceof ArrayBuffer ? serializeBinary(Buffer.from(value)) : value instanceof Blob ? serializeBinary(await value.arrayBuffer()) : value instanceof ReadableStream ? serializeBinary(await streamToBuffer(value)) : value;
36582
+ };
36583
+ async function streamToBuffer(stream$1) {
36584
+ const reader = stream$1.getReader();
36585
+ const chunks = [];
36586
+ while (true) {
36587
+ const { done, value } = await reader.read();
36588
+ if (done) break;
36589
+ chunks.push(value);
36590
+ }
36591
+ return Buffer.concat(chunks);
36592
+ }
36575
36593
 
36576
36594
  //#endregion
36577
36595
  //#region src/util/ignore.ts
@@ -36728,7 +36746,7 @@ var InstrumentedStateStore = class {
36728
36746
  //#endregion
36729
36747
  //#region package.json
36730
36748
  var name = "alchemy";
36731
- var version = "0.68.0";
36749
+ var version = "0.69.0";
36732
36750
  var license = "Apache-2.0";
36733
36751
  var author = "Sam Goodwin <sam@alchemy.run>";
36734
36752
  var homepage = "https://alchemy.run";
@@ -5,11 +5,18 @@ declare const properties: {
5
5
  CertificateAuthorityActivation: string[];
6
6
  Permission: string[];
7
7
  };
8
+ AIOps: {
9
+ InvestigationGroup: string[];
10
+ };
8
11
  APS: {
12
+ ResourcePolicy: string[];
9
13
  RuleGroupsNamespace: string[];
10
14
  Scraper: string[];
11
15
  Workspace: string[];
12
16
  };
17
+ ARCRegionSwitch: {
18
+ Plan: string[];
19
+ };
13
20
  ARCZonalShift: {
14
21
  AutoshiftObserverNotificationStatus: string[];
15
22
  ZonalAutoshiftConfiguration: string[];
@@ -199,11 +206,14 @@ declare const properties: {
199
206
  JobDefinition: string[];
200
207
  JobQueue: string[];
201
208
  SchedulingPolicy: string[];
209
+ ServiceEnvironment: string[];
202
210
  };
203
211
  Bedrock: {
204
212
  Agent: string[];
205
213
  AgentAlias: string[];
206
214
  ApplicationInferenceProfile: string[];
215
+ AutomatedReasoningPolicy: string[];
216
+ AutomatedReasoningPolicyVersion: string[];
207
217
  Blueprint: string[];
208
218
  DataAutomationProject: string[];
209
219
  DataSource: string[];
@@ -217,6 +227,9 @@ declare const properties: {
217
227
  Prompt: string[];
218
228
  PromptVersion: string[];
219
229
  };
230
+ Billing: {
231
+ BillingView: string[];
232
+ };
220
233
  BillingConductor: {
221
234
  BillingGroup: string[];
222
235
  CustomLineItem: string[];
@@ -502,6 +515,7 @@ declare const properties: {
502
515
  EnvironmentProfile: string[];
503
516
  GroupProfile: string[];
504
517
  Owner: string[];
518
+ PolicyGrant: string[];
505
519
  Project: string[];
506
520
  ProjectMembership: string[];
507
521
  ProjectProfile: string[];
@@ -577,6 +591,7 @@ declare const properties: {
577
591
  Instance: string[];
578
592
  InstanceConnectEndpoint: string[];
579
593
  InternetGateway: string[];
594
+ IpPoolRouteTableAssociation: string[];
580
595
  KeyPair: string[];
581
596
  LaunchTemplate: string[];
582
597
  LocalGatewayRoute: string[];
@@ -620,6 +635,7 @@ declare const properties: {
620
635
  TransitGateway: string[];
621
636
  TransitGatewayAttachment: string[];
622
637
  TransitGatewayConnect: string[];
638
+ TransitGatewayConnectPeer: string[];
623
639
  TransitGatewayMulticastDomain: string[];
624
640
  TransitGatewayMulticastDomainAssociation: string[];
625
641
  TransitGatewayMulticastGroupMember: string[];
@@ -774,6 +790,7 @@ declare const properties: {
774
790
  FSx: {
775
791
  DataRepositoryAssociation: string[];
776
792
  FileSystem: string[];
793
+ S3AccessPointAttachment: string[];
777
794
  Snapshot: string[];
778
795
  StorageVirtualMachine: string[];
779
796
  Volume: string[];
@@ -871,7 +888,9 @@ declare const properties: {
871
888
  Master: string[];
872
889
  Member: string[];
873
890
  PublishingDestination: string[];
891
+ ThreatEntitySet: string[];
874
892
  ThreatIntelSet: string[];
893
+ TrustedEntitySet: string[];
875
894
  };
876
895
  HealthImaging: {
877
896
  Datastore: string[];
@@ -934,6 +953,8 @@ declare const properties: {
934
953
  };
935
954
  InspectorV2: {
936
955
  CisScanConfiguration: string[];
956
+ CodeSecurityIntegration: string[];
957
+ CodeSecurityScanConfiguration: string[];
937
958
  Filter: string[];
938
959
  };
939
960
  InternetMonitor: {
@@ -953,6 +974,7 @@ declare const properties: {
953
974
  CustomMetric: string[];
954
975
  Dimension: string[];
955
976
  DomainConfiguration: string[];
977
+ EncryptionConfiguration: string[];
956
978
  FleetMetric: string[];
957
979
  JobTemplate: string[];
958
980
  Logging: string[];
@@ -1003,6 +1025,7 @@ declare const properties: {
1003
1025
  AccessPolicy: string[];
1004
1026
  Asset: string[];
1005
1027
  AssetModel: string[];
1028
+ ComputationModel: string[];
1006
1029
  Dashboard: string[];
1007
1030
  Dataset: string[];
1008
1031
  Gateway: string[];
@@ -1111,6 +1134,7 @@ declare const properties: {
1111
1134
  Database: string[];
1112
1135
  Disk: string[];
1113
1136
  Distribution: string[];
1137
+ Domain: string[];
1114
1138
  Instance: string[];
1115
1139
  InstanceSnapshot: string[];
1116
1140
  LoadBalancer: string[];
@@ -1157,6 +1181,10 @@ declare const properties: {
1157
1181
  Deployment: string[];
1158
1182
  Environment: string[];
1159
1183
  };
1184
+ MPA: {
1185
+ ApprovalTeam: string[];
1186
+ IdentitySource: string[];
1187
+ };
1160
1188
  MSK: {
1161
1189
  BatchScramSecret: string[];
1162
1190
  Cluster: string[];
@@ -1289,10 +1317,18 @@ declare const properties: {
1289
1317
  ManagedNotificationAdditionalChannelAssociation: string[];
1290
1318
  NotificationConfiguration: string[];
1291
1319
  NotificationHub: string[];
1320
+ OrganizationalUnitAssociation: string[];
1292
1321
  };
1293
1322
  NotificationsContacts: {
1294
1323
  EmailContact: string[];
1295
1324
  };
1325
+ ODB: {
1326
+ CloudAutonomousVmCluster: string[];
1327
+ CloudExadataInfrastructure: string[];
1328
+ CloudVmCluster: string[];
1329
+ OdbNetwork: string[];
1330
+ OdbPeeringConnection: string[];
1331
+ };
1296
1332
  OSIS: {
1297
1333
  Pipeline: string[];
1298
1334
  };
@@ -1300,6 +1336,10 @@ declare const properties: {
1300
1336
  Link: string[];
1301
1337
  Sink: string[];
1302
1338
  };
1339
+ ObservabilityAdmin: {
1340
+ OrganizationTelemetryRule: string[];
1341
+ TelemetryRule: string[];
1342
+ };
1303
1343
  Omics: {
1304
1344
  AnnotationStore: string[];
1305
1345
  ReferenceStore: string[];
@@ -1474,6 +1514,7 @@ declare const properties: {
1474
1514
  };
1475
1515
  RedshiftServerless: {
1476
1516
  Namespace: string[];
1517
+ Snapshot: string[];
1477
1518
  Workgroup: string[];
1478
1519
  };
1479
1520
  RefactorSpaces: {
@@ -1580,8 +1621,11 @@ declare const properties: {
1580
1621
  Endpoint: string[];
1581
1622
  };
1582
1623
  S3Tables: {
1624
+ Namespace: string[];
1625
+ Table: string[];
1583
1626
  TableBucket: string[];
1584
1627
  TableBucketPolicy: string[];
1628
+ TablePolicy: string[];
1585
1629
  };
1586
1630
  SES: {
1587
1631
  ConfigurationSet: string[];
@@ -1603,6 +1647,15 @@ declare const properties: {
1603
1647
  Template: string[];
1604
1648
  VdmAttributes: string[];
1605
1649
  };
1650
+ SMSVOICE: {
1651
+ ConfigurationSet: string[];
1652
+ OptOutList: string[];
1653
+ PhoneNumber: string[];
1654
+ Pool: string[];
1655
+ ProtectConfiguration: string[];
1656
+ ResourcePolicy: string[];
1657
+ SenderId: string[];
1658
+ };
1606
1659
  SNS: {
1607
1660
  Subscription: string[];
1608
1661
  Topic: string[];
@@ -1676,6 +1729,7 @@ declare const properties: {
1676
1729
  NotebookInstanceLifecycleConfig: string[];
1677
1730
  PartnerApp: string[];
1678
1731
  Pipeline: string[];
1732
+ ProcessingJob: string[];
1679
1733
  Project: string[];
1680
1734
  Space: string[];
1681
1735
  StudioLifecycleConfig: string[];
@@ -1693,11 +1747,14 @@ declare const properties: {
1693
1747
  SecretTargetAttachment: string[];
1694
1748
  };
1695
1749
  SecurityHub: {
1750
+ AggregatorV2: string[];
1696
1751
  AutomationRule: string[];
1752
+ AutomationRuleV2: string[];
1697
1753
  ConfigurationPolicy: string[];
1698
1754
  DelegatedAdmin: string[];
1699
1755
  FindingAggregator: string[];
1700
1756
  Hub: string[];
1757
+ HubV2: string[];
1701
1758
  Insight: string[];
1702
1759
  OrganizationConfiguration: string[];
1703
1760
  PolicyAssociation: string[];
@@ -1855,6 +1912,7 @@ declare const properties: {
1855
1912
  KnowledgeBase: string[];
1856
1913
  MessageTemplate: string[];
1857
1914
  MessageTemplateVersion: string[];
1915
+ QuickResponse: string[];
1858
1916
  };
1859
1917
  WorkSpaces: {
1860
1918
  ConnectionAlias: string[];
@@ -1871,10 +1929,16 @@ declare const properties: {
1871
1929
  IpAccessSettings: string[];
1872
1930
  NetworkSettings: string[];
1873
1931
  Portal: string[];
1932
+ SessionLogger: string[];
1874
1933
  TrustStore: string[];
1875
1934
  UserAccessLoggingSettings: string[];
1876
1935
  UserSettings: string[];
1877
1936
  };
1937
+ WorkspacesInstances: {
1938
+ Volume: string[];
1939
+ VolumeAssociation: string[];
1940
+ WorkspaceInstance: string[];
1941
+ };
1878
1942
  XRay: {
1879
1943
  Group: string[];
1880
1944
  ResourcePolicy: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"properties.d.ts","sourceRoot":"","sources":["../../../src/aws/control/properties.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAw5Nf,CAAC;AAEF,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"properties.d.ts","sourceRoot":"","sources":["../../../src/aws/control/properties.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA25Of,CAAC;AAEF,eAAe,UAAU,CAAC"}