@deepintel-ltd/farmpro-contracts 1.15.4 → 1.15.6

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 (48) hide show
  1. package/dist/routes/agent-workflows.routes.d.ts +56 -56
  2. package/dist/routes/commodity-deals.routes.d.ts +561 -6
  3. package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
  4. package/dist/routes/commodity-deals.routes.js +17 -1
  5. package/dist/routes/fertigation.routes.d.ts +160 -160
  6. package/dist/routes/field-activities.routes.d.ts +172 -172
  7. package/dist/routes/field-monitoring.routes.d.ts +50 -50
  8. package/dist/routes/field-observations.routes.d.ts +40 -40
  9. package/dist/routes/fields.routes.d.ts +461 -0
  10. package/dist/routes/fields.routes.d.ts.map +1 -1
  11. package/dist/routes/fields.routes.js +19 -1
  12. package/dist/routes/finance.routes.d.ts +78 -78
  13. package/dist/routes/harvest.routes.d.ts +72 -72
  14. package/dist/routes/inventory.routes.d.ts +42 -42
  15. package/dist/routes/live-monitor.routes.d.ts +6 -6
  16. package/dist/routes/measurements.routes.d.ts +6 -6
  17. package/dist/routes/monitoring-visualization.routes.d.ts +12 -12
  18. package/dist/routes/prescription-maps.routes.d.ts +28 -28
  19. package/dist/routes/soil-tests.routes.d.ts +80 -80
  20. package/dist/routes/suppliers.routes.d.ts +80 -80
  21. package/dist/routes/waybills.routes.d.ts +56 -56
  22. package/dist/routes/weather.routes.d.ts +24 -24
  23. package/dist/routes/yield-prediction.routes.d.ts +36 -36
  24. package/dist/schemas/agent-workflows.schemas.d.ts +64 -64
  25. package/dist/schemas/commodity-deals.schemas.d.ts +728 -13
  26. package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
  27. package/dist/schemas/commodity-deals.schemas.js +68 -1
  28. package/dist/schemas/fertigation.schemas.d.ts +72 -72
  29. package/dist/schemas/field-activities.schemas.d.ts +148 -148
  30. package/dist/schemas/field-monitoring.schemas.d.ts +30 -30
  31. package/dist/schemas/field-observations.schemas.d.ts +34 -34
  32. package/dist/schemas/fields.schemas.d.ts +286 -0
  33. package/dist/schemas/fields.schemas.d.ts.map +1 -1
  34. package/dist/schemas/fields.schemas.js +26 -0
  35. package/dist/schemas/finance.schemas.d.ts +94 -94
  36. package/dist/schemas/harvest.schemas.d.ts +80 -80
  37. package/dist/schemas/inventory.schemas.d.ts +46 -46
  38. package/dist/schemas/live-monitor.schemas.d.ts +10 -10
  39. package/dist/schemas/measurements.schemas.d.ts +6 -6
  40. package/dist/schemas/monitoring-visualization.schemas.d.ts +14 -14
  41. package/dist/schemas/prescription-maps.schemas.d.ts +22 -22
  42. package/dist/schemas/recommendations.schemas.d.ts +6 -6
  43. package/dist/schemas/soil-tests.schemas.d.ts +84 -84
  44. package/dist/schemas/suppliers.schemas.d.ts +84 -84
  45. package/dist/schemas/waybills.schemas.d.ts +48 -48
  46. package/dist/schemas/weather.schemas.d.ts +68 -68
  47. package/dist/schemas/yield-prediction.schemas.d.ts +24 -24
  48. package/package.json +1 -1
@@ -961,6 +961,561 @@ export declare const commodityDealsRouter: {
961
961
  }>;
962
962
  };
963
963
  };
964
+ getCommodityDealInsights: {
965
+ pathParams: z.ZodObject<{
966
+ organizationId: z.ZodString;
967
+ }, "strip", z.ZodTypeAny, {
968
+ organizationId: string;
969
+ }, {
970
+ organizationId: string;
971
+ }>;
972
+ query: z.ZodObject<{
973
+ period: z.ZodDefault<z.ZodOptional<z.ZodEnum<["this_month", "last_3_months", "ytd", "all"]>>>;
974
+ }, "strip", z.ZodTypeAny, {
975
+ period: "all" | "this_month" | "last_3_months" | "ytd";
976
+ }, {
977
+ period?: "all" | "this_month" | "last_3_months" | "ytd" | undefined;
978
+ }>;
979
+ summary: "Get period-aware commodity deal profitability insights and trends";
980
+ method: "GET";
981
+ path: "/organizations/:organizationId/commodity-deals/insights";
982
+ responses: {
983
+ 200: z.ZodObject<{
984
+ data: z.ZodObject<{
985
+ period: z.ZodEnum<["this_month", "last_3_months", "ytd", "all"]>;
986
+ currency: z.ZodDefault<z.ZodString>;
987
+ totalDealCount: z.ZodNumber;
988
+ totals: z.ZodObject<{
989
+ paidDealCount: z.ZodNumber;
990
+ paidRevenue: z.ZodNumber;
991
+ totalCost: z.ZodNumber;
992
+ grossProfit: z.ZodNumber;
993
+ companyKeep: z.ZodNumber;
994
+ investorPool: z.ZodNumber;
995
+ staffCommission: z.ZodNumber;
996
+ avgMarginPct: z.ZodNullable<z.ZodNumber>;
997
+ }, "strip", z.ZodTypeAny, {
998
+ totalCost: number;
999
+ grossProfit: number;
1000
+ investorPool: number;
1001
+ paidDealCount: number;
1002
+ paidRevenue: number;
1003
+ companyKeep: number;
1004
+ staffCommission: number;
1005
+ avgMarginPct: number | null;
1006
+ }, {
1007
+ totalCost: number;
1008
+ grossProfit: number;
1009
+ investorPool: number;
1010
+ paidDealCount: number;
1011
+ paidRevenue: number;
1012
+ companyKeep: number;
1013
+ staffCommission: number;
1014
+ avgMarginPct: number | null;
1015
+ }>;
1016
+ prior: z.ZodNullable<z.ZodObject<{
1017
+ paidDealCount: z.ZodNumber;
1018
+ paidRevenue: z.ZodNumber;
1019
+ totalCost: z.ZodNumber;
1020
+ grossProfit: z.ZodNumber;
1021
+ companyKeep: z.ZodNumber;
1022
+ investorPool: z.ZodNumber;
1023
+ staffCommission: z.ZodNumber;
1024
+ avgMarginPct: z.ZodNullable<z.ZodNumber>;
1025
+ }, "strip", z.ZodTypeAny, {
1026
+ totalCost: number;
1027
+ grossProfit: number;
1028
+ investorPool: number;
1029
+ paidDealCount: number;
1030
+ paidRevenue: number;
1031
+ companyKeep: number;
1032
+ staffCommission: number;
1033
+ avgMarginPct: number | null;
1034
+ }, {
1035
+ totalCost: number;
1036
+ grossProfit: number;
1037
+ investorPool: number;
1038
+ paidDealCount: number;
1039
+ paidRevenue: number;
1040
+ companyKeep: number;
1041
+ staffCommission: number;
1042
+ avgMarginPct: number | null;
1043
+ }>>;
1044
+ monthly: z.ZodArray<z.ZodObject<{
1045
+ month: z.ZodString;
1046
+ paidRevenue: z.ZodNumber;
1047
+ companyKeep: z.ZodNumber;
1048
+ grossProfit: z.ZodNumber;
1049
+ dealCount: z.ZodNumber;
1050
+ }, "strip", z.ZodTypeAny, {
1051
+ month: string;
1052
+ grossProfit: number;
1053
+ paidRevenue: number;
1054
+ companyKeep: number;
1055
+ dealCount: number;
1056
+ }, {
1057
+ month: string;
1058
+ grossProfit: number;
1059
+ paidRevenue: number;
1060
+ companyKeep: number;
1061
+ dealCount: number;
1062
+ }>, "many">;
1063
+ profitSplit: z.ZodObject<{
1064
+ companyKeep: z.ZodNumber;
1065
+ investorPool: z.ZodNumber;
1066
+ staffCommission: z.ZodNumber;
1067
+ }, "strip", z.ZodTypeAny, {
1068
+ investorPool: number;
1069
+ companyKeep: number;
1070
+ staffCommission: number;
1071
+ }, {
1072
+ investorPool: number;
1073
+ companyKeep: number;
1074
+ staffCommission: number;
1075
+ }>;
1076
+ byBuyer: z.ZodArray<z.ZodObject<{
1077
+ buyerId: z.ZodString;
1078
+ buyerName: z.ZodString;
1079
+ paidRevenue: z.ZodNumber;
1080
+ companyKeep: z.ZodNumber;
1081
+ dealCount: z.ZodNumber;
1082
+ marginPct: z.ZodNullable<z.ZodNumber>;
1083
+ }, "strip", z.ZodTypeAny, {
1084
+ buyerName: string;
1085
+ buyerId: string;
1086
+ paidRevenue: number;
1087
+ companyKeep: number;
1088
+ dealCount: number;
1089
+ marginPct: number | null;
1090
+ }, {
1091
+ buyerName: string;
1092
+ buyerId: string;
1093
+ paidRevenue: number;
1094
+ companyKeep: number;
1095
+ dealCount: number;
1096
+ marginPct: number | null;
1097
+ }>, "many">;
1098
+ pipeline: z.ZodObject<{
1099
+ invoicedUnpaidCount: z.ZodNumber;
1100
+ overdueCount: z.ZodNumber;
1101
+ unrealizedGrossProfit: z.ZodNumber;
1102
+ unpaidInvoiceTotal: z.ZodNumber;
1103
+ overdueInvoiceTotal: z.ZodNumber;
1104
+ }, "strip", z.ZodTypeAny, {
1105
+ invoicedUnpaidCount: number;
1106
+ unrealizedGrossProfit: number;
1107
+ overdueCount: number;
1108
+ unpaidInvoiceTotal: number;
1109
+ overdueInvoiceTotal: number;
1110
+ }, {
1111
+ invoicedUnpaidCount: number;
1112
+ unrealizedGrossProfit: number;
1113
+ overdueCount: number;
1114
+ unpaidInvoiceTotal: number;
1115
+ overdueInvoiceTotal: number;
1116
+ }>;
1117
+ staffCommissionUnpaid: z.ZodNumber;
1118
+ staffCommissionsEnabled: z.ZodBoolean;
1119
+ }, "strip", z.ZodTypeAny, {
1120
+ currency: string;
1121
+ monthly: {
1122
+ month: string;
1123
+ grossProfit: number;
1124
+ paidRevenue: number;
1125
+ companyKeep: number;
1126
+ dealCount: number;
1127
+ }[];
1128
+ period: "all" | "this_month" | "last_3_months" | "ytd";
1129
+ staffCommissionsEnabled: boolean;
1130
+ totalDealCount: number;
1131
+ totals: {
1132
+ totalCost: number;
1133
+ grossProfit: number;
1134
+ investorPool: number;
1135
+ paidDealCount: number;
1136
+ paidRevenue: number;
1137
+ companyKeep: number;
1138
+ staffCommission: number;
1139
+ avgMarginPct: number | null;
1140
+ };
1141
+ prior: {
1142
+ totalCost: number;
1143
+ grossProfit: number;
1144
+ investorPool: number;
1145
+ paidDealCount: number;
1146
+ paidRevenue: number;
1147
+ companyKeep: number;
1148
+ staffCommission: number;
1149
+ avgMarginPct: number | null;
1150
+ } | null;
1151
+ profitSplit: {
1152
+ investorPool: number;
1153
+ companyKeep: number;
1154
+ staffCommission: number;
1155
+ };
1156
+ byBuyer: {
1157
+ buyerName: string;
1158
+ buyerId: string;
1159
+ paidRevenue: number;
1160
+ companyKeep: number;
1161
+ dealCount: number;
1162
+ marginPct: number | null;
1163
+ }[];
1164
+ pipeline: {
1165
+ invoicedUnpaidCount: number;
1166
+ unrealizedGrossProfit: number;
1167
+ overdueCount: number;
1168
+ unpaidInvoiceTotal: number;
1169
+ overdueInvoiceTotal: number;
1170
+ };
1171
+ staffCommissionUnpaid: number;
1172
+ }, {
1173
+ monthly: {
1174
+ month: string;
1175
+ grossProfit: number;
1176
+ paidRevenue: number;
1177
+ companyKeep: number;
1178
+ dealCount: number;
1179
+ }[];
1180
+ period: "all" | "this_month" | "last_3_months" | "ytd";
1181
+ staffCommissionsEnabled: boolean;
1182
+ totalDealCount: number;
1183
+ totals: {
1184
+ totalCost: number;
1185
+ grossProfit: number;
1186
+ investorPool: number;
1187
+ paidDealCount: number;
1188
+ paidRevenue: number;
1189
+ companyKeep: number;
1190
+ staffCommission: number;
1191
+ avgMarginPct: number | null;
1192
+ };
1193
+ prior: {
1194
+ totalCost: number;
1195
+ grossProfit: number;
1196
+ investorPool: number;
1197
+ paidDealCount: number;
1198
+ paidRevenue: number;
1199
+ companyKeep: number;
1200
+ staffCommission: number;
1201
+ avgMarginPct: number | null;
1202
+ } | null;
1203
+ profitSplit: {
1204
+ investorPool: number;
1205
+ companyKeep: number;
1206
+ staffCommission: number;
1207
+ };
1208
+ byBuyer: {
1209
+ buyerName: string;
1210
+ buyerId: string;
1211
+ paidRevenue: number;
1212
+ companyKeep: number;
1213
+ dealCount: number;
1214
+ marginPct: number | null;
1215
+ }[];
1216
+ pipeline: {
1217
+ invoicedUnpaidCount: number;
1218
+ unrealizedGrossProfit: number;
1219
+ overdueCount: number;
1220
+ unpaidInvoiceTotal: number;
1221
+ overdueInvoiceTotal: number;
1222
+ };
1223
+ staffCommissionUnpaid: number;
1224
+ currency?: string | undefined;
1225
+ }>;
1226
+ }, "strip", z.ZodTypeAny, {
1227
+ data: {
1228
+ currency: string;
1229
+ monthly: {
1230
+ month: string;
1231
+ grossProfit: number;
1232
+ paidRevenue: number;
1233
+ companyKeep: number;
1234
+ dealCount: number;
1235
+ }[];
1236
+ period: "all" | "this_month" | "last_3_months" | "ytd";
1237
+ staffCommissionsEnabled: boolean;
1238
+ totalDealCount: number;
1239
+ totals: {
1240
+ totalCost: number;
1241
+ grossProfit: number;
1242
+ investorPool: number;
1243
+ paidDealCount: number;
1244
+ paidRevenue: number;
1245
+ companyKeep: number;
1246
+ staffCommission: number;
1247
+ avgMarginPct: number | null;
1248
+ };
1249
+ prior: {
1250
+ totalCost: number;
1251
+ grossProfit: number;
1252
+ investorPool: number;
1253
+ paidDealCount: number;
1254
+ paidRevenue: number;
1255
+ companyKeep: number;
1256
+ staffCommission: number;
1257
+ avgMarginPct: number | null;
1258
+ } | null;
1259
+ profitSplit: {
1260
+ investorPool: number;
1261
+ companyKeep: number;
1262
+ staffCommission: number;
1263
+ };
1264
+ byBuyer: {
1265
+ buyerName: string;
1266
+ buyerId: string;
1267
+ paidRevenue: number;
1268
+ companyKeep: number;
1269
+ dealCount: number;
1270
+ marginPct: number | null;
1271
+ }[];
1272
+ pipeline: {
1273
+ invoicedUnpaidCount: number;
1274
+ unrealizedGrossProfit: number;
1275
+ overdueCount: number;
1276
+ unpaidInvoiceTotal: number;
1277
+ overdueInvoiceTotal: number;
1278
+ };
1279
+ staffCommissionUnpaid: number;
1280
+ };
1281
+ }, {
1282
+ data: {
1283
+ monthly: {
1284
+ month: string;
1285
+ grossProfit: number;
1286
+ paidRevenue: number;
1287
+ companyKeep: number;
1288
+ dealCount: number;
1289
+ }[];
1290
+ period: "all" | "this_month" | "last_3_months" | "ytd";
1291
+ staffCommissionsEnabled: boolean;
1292
+ totalDealCount: number;
1293
+ totals: {
1294
+ totalCost: number;
1295
+ grossProfit: number;
1296
+ investorPool: number;
1297
+ paidDealCount: number;
1298
+ paidRevenue: number;
1299
+ companyKeep: number;
1300
+ staffCommission: number;
1301
+ avgMarginPct: number | null;
1302
+ };
1303
+ prior: {
1304
+ totalCost: number;
1305
+ grossProfit: number;
1306
+ investorPool: number;
1307
+ paidDealCount: number;
1308
+ paidRevenue: number;
1309
+ companyKeep: number;
1310
+ staffCommission: number;
1311
+ avgMarginPct: number | null;
1312
+ } | null;
1313
+ profitSplit: {
1314
+ investorPool: number;
1315
+ companyKeep: number;
1316
+ staffCommission: number;
1317
+ };
1318
+ byBuyer: {
1319
+ buyerName: string;
1320
+ buyerId: string;
1321
+ paidRevenue: number;
1322
+ companyKeep: number;
1323
+ dealCount: number;
1324
+ marginPct: number | null;
1325
+ }[];
1326
+ pipeline: {
1327
+ invoicedUnpaidCount: number;
1328
+ unrealizedGrossProfit: number;
1329
+ overdueCount: number;
1330
+ unpaidInvoiceTotal: number;
1331
+ overdueInvoiceTotal: number;
1332
+ };
1333
+ staffCommissionUnpaid: number;
1334
+ currency?: string | undefined;
1335
+ };
1336
+ }>;
1337
+ 401: z.ZodObject<{
1338
+ errors: z.ZodArray<z.ZodObject<{
1339
+ id: z.ZodOptional<z.ZodString>;
1340
+ links: z.ZodOptional<z.ZodObject<{
1341
+ about: z.ZodOptional<z.ZodString>;
1342
+ }, "strip", z.ZodTypeAny, {
1343
+ about?: string | undefined;
1344
+ }, {
1345
+ about?: string | undefined;
1346
+ }>>;
1347
+ status: z.ZodOptional<z.ZodString>;
1348
+ code: z.ZodOptional<z.ZodString>;
1349
+ title: z.ZodOptional<z.ZodString>;
1350
+ detail: z.ZodOptional<z.ZodString>;
1351
+ source: z.ZodOptional<z.ZodObject<{
1352
+ pointer: z.ZodOptional<z.ZodString>;
1353
+ parameter: z.ZodOptional<z.ZodString>;
1354
+ }, "strip", z.ZodTypeAny, {
1355
+ pointer?: string | undefined;
1356
+ parameter?: string | undefined;
1357
+ }, {
1358
+ pointer?: string | undefined;
1359
+ parameter?: string | undefined;
1360
+ }>>;
1361
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1362
+ }, "strip", z.ZodTypeAny, {
1363
+ status?: string | undefined;
1364
+ code?: string | undefined;
1365
+ id?: string | undefined;
1366
+ links?: {
1367
+ about?: string | undefined;
1368
+ } | undefined;
1369
+ meta?: Record<string, unknown> | undefined;
1370
+ title?: string | undefined;
1371
+ detail?: string | undefined;
1372
+ source?: {
1373
+ pointer?: string | undefined;
1374
+ parameter?: string | undefined;
1375
+ } | undefined;
1376
+ }, {
1377
+ status?: string | undefined;
1378
+ code?: string | undefined;
1379
+ id?: string | undefined;
1380
+ links?: {
1381
+ about?: string | undefined;
1382
+ } | undefined;
1383
+ meta?: Record<string, unknown> | undefined;
1384
+ title?: string | undefined;
1385
+ detail?: string | undefined;
1386
+ source?: {
1387
+ pointer?: string | undefined;
1388
+ parameter?: string | undefined;
1389
+ } | undefined;
1390
+ }>, "many">;
1391
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1392
+ }, "strip", z.ZodTypeAny, {
1393
+ errors: {
1394
+ status?: string | undefined;
1395
+ code?: string | undefined;
1396
+ id?: string | undefined;
1397
+ links?: {
1398
+ about?: string | undefined;
1399
+ } | undefined;
1400
+ meta?: Record<string, unknown> | undefined;
1401
+ title?: string | undefined;
1402
+ detail?: string | undefined;
1403
+ source?: {
1404
+ pointer?: string | undefined;
1405
+ parameter?: string | undefined;
1406
+ } | undefined;
1407
+ }[];
1408
+ meta?: Record<string, unknown> | undefined;
1409
+ }, {
1410
+ errors: {
1411
+ status?: string | undefined;
1412
+ code?: string | undefined;
1413
+ id?: string | undefined;
1414
+ links?: {
1415
+ about?: string | undefined;
1416
+ } | undefined;
1417
+ meta?: Record<string, unknown> | undefined;
1418
+ title?: string | undefined;
1419
+ detail?: string | undefined;
1420
+ source?: {
1421
+ pointer?: string | undefined;
1422
+ parameter?: string | undefined;
1423
+ } | undefined;
1424
+ }[];
1425
+ meta?: Record<string, unknown> | undefined;
1426
+ }>;
1427
+ 404: z.ZodObject<{
1428
+ errors: z.ZodArray<z.ZodObject<{
1429
+ id: z.ZodOptional<z.ZodString>;
1430
+ links: z.ZodOptional<z.ZodObject<{
1431
+ about: z.ZodOptional<z.ZodString>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ about?: string | undefined;
1434
+ }, {
1435
+ about?: string | undefined;
1436
+ }>>;
1437
+ status: z.ZodOptional<z.ZodString>;
1438
+ code: z.ZodOptional<z.ZodString>;
1439
+ title: z.ZodOptional<z.ZodString>;
1440
+ detail: z.ZodOptional<z.ZodString>;
1441
+ source: z.ZodOptional<z.ZodObject<{
1442
+ pointer: z.ZodOptional<z.ZodString>;
1443
+ parameter: z.ZodOptional<z.ZodString>;
1444
+ }, "strip", z.ZodTypeAny, {
1445
+ pointer?: string | undefined;
1446
+ parameter?: string | undefined;
1447
+ }, {
1448
+ pointer?: string | undefined;
1449
+ parameter?: string | undefined;
1450
+ }>>;
1451
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1452
+ }, "strip", z.ZodTypeAny, {
1453
+ status?: string | undefined;
1454
+ code?: string | undefined;
1455
+ id?: string | undefined;
1456
+ links?: {
1457
+ about?: string | undefined;
1458
+ } | undefined;
1459
+ meta?: Record<string, unknown> | undefined;
1460
+ title?: string | undefined;
1461
+ detail?: string | undefined;
1462
+ source?: {
1463
+ pointer?: string | undefined;
1464
+ parameter?: string | undefined;
1465
+ } | undefined;
1466
+ }, {
1467
+ status?: string | undefined;
1468
+ code?: string | undefined;
1469
+ id?: string | undefined;
1470
+ links?: {
1471
+ about?: string | undefined;
1472
+ } | undefined;
1473
+ meta?: Record<string, unknown> | undefined;
1474
+ title?: string | undefined;
1475
+ detail?: string | undefined;
1476
+ source?: {
1477
+ pointer?: string | undefined;
1478
+ parameter?: string | undefined;
1479
+ } | undefined;
1480
+ }>, "many">;
1481
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1482
+ }, "strip", z.ZodTypeAny, {
1483
+ errors: {
1484
+ status?: string | undefined;
1485
+ code?: string | undefined;
1486
+ id?: string | undefined;
1487
+ links?: {
1488
+ about?: string | undefined;
1489
+ } | undefined;
1490
+ meta?: Record<string, unknown> | undefined;
1491
+ title?: string | undefined;
1492
+ detail?: string | undefined;
1493
+ source?: {
1494
+ pointer?: string | undefined;
1495
+ parameter?: string | undefined;
1496
+ } | undefined;
1497
+ }[];
1498
+ meta?: Record<string, unknown> | undefined;
1499
+ }, {
1500
+ errors: {
1501
+ status?: string | undefined;
1502
+ code?: string | undefined;
1503
+ id?: string | undefined;
1504
+ links?: {
1505
+ about?: string | undefined;
1506
+ } | undefined;
1507
+ meta?: Record<string, unknown> | undefined;
1508
+ title?: string | undefined;
1509
+ detail?: string | undefined;
1510
+ source?: {
1511
+ pointer?: string | undefined;
1512
+ parameter?: string | undefined;
1513
+ } | undefined;
1514
+ }[];
1515
+ meta?: Record<string, unknown> | undefined;
1516
+ }>;
1517
+ };
1518
+ };
964
1519
  getMyEarnings: {
965
1520
  pathParams: z.ZodObject<{
966
1521
  organizationId: z.ZodString;
@@ -985,15 +1540,15 @@ export declare const commodityDealsRouter: {
985
1540
  currency: z.ZodDefault<z.ZodString>;
986
1541
  }, "strip", z.ZodTypeAny, {
987
1542
  currency: string;
1543
+ dealCount: number;
988
1544
  realizedEarnings: number;
989
1545
  projectedEarnings: number;
990
1546
  capitalDeployed: number;
991
- dealCount: number;
992
1547
  }, {
1548
+ dealCount: number;
993
1549
  realizedEarnings: number;
994
1550
  projectedEarnings: number;
995
1551
  capitalDeployed: number;
996
- dealCount: number;
997
1552
  currency?: string | undefined;
998
1553
  }>;
999
1554
  }, "strip", z.ZodTypeAny, {
@@ -1001,19 +1556,19 @@ export declare const commodityDealsRouter: {
1001
1556
  id: string;
1002
1557
  attributes: {
1003
1558
  currency: string;
1559
+ dealCount: number;
1004
1560
  realizedEarnings: number;
1005
1561
  projectedEarnings: number;
1006
1562
  capitalDeployed: number;
1007
- dealCount: number;
1008
1563
  };
1009
1564
  }, {
1010
1565
  type: "investor-earnings";
1011
1566
  id: string;
1012
1567
  attributes: {
1568
+ dealCount: number;
1013
1569
  realizedEarnings: number;
1014
1570
  projectedEarnings: number;
1015
1571
  capitalDeployed: number;
1016
- dealCount: number;
1017
1572
  currency?: string | undefined;
1018
1573
  };
1019
1574
  }>;
@@ -1023,10 +1578,10 @@ export declare const commodityDealsRouter: {
1023
1578
  id: string;
1024
1579
  attributes: {
1025
1580
  currency: string;
1581
+ dealCount: number;
1026
1582
  realizedEarnings: number;
1027
1583
  projectedEarnings: number;
1028
1584
  capitalDeployed: number;
1029
- dealCount: number;
1030
1585
  };
1031
1586
  };
1032
1587
  }, {
@@ -1034,10 +1589,10 @@ export declare const commodityDealsRouter: {
1034
1589
  type: "investor-earnings";
1035
1590
  id: string;
1036
1591
  attributes: {
1592
+ dealCount: number;
1037
1593
  realizedEarnings: number;
1038
1594
  projectedEarnings: number;
1039
1595
  capitalDeployed: number;
1040
- dealCount: number;
1041
1596
  currency?: string | undefined;
1042
1597
  };
1043
1598
  };
@@ -1 +1 @@
1
- {"version":3,"file":"commodity-deals.routes.d.ts","sourceRoot":"","sources":["../../src/routes/commodity-deals.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoBxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0J/B,CAAC"}
1
+ {"version":3,"file":"commodity-deals.routes.d.ts","sourceRoot":"","sources":["../../src/routes/commodity-deals.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAsBxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2K/B,CAAC"}