@sentio/sdk 2.44.2-rc.2 → 2.44.3-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +23 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +24 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.js +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/builtin/0x4.js +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/sui/builtin/0x1.js +1 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +59 -0
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +58 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/context.d.ts +1 -1
- package/lib/sui/context.d.ts.map +1 -1
- package/lib/sui/ext/move-dex.d.ts +1 -1
- package/lib/sui/ext/move-dex.d.ts.map +1 -1
- package/lib/sui/models.d.ts +1 -1
- package/lib/sui/models.d.ts.map +1 -1
- package/lib/sui/network.d.ts +1 -1
- package/lib/sui/network.d.ts.map +1 -1
- package/lib/sui/network.js +1 -1
- package/lib/sui/network.js.map +1 -1
- package/lib/sui/sui-object-processor-template.d.ts +1 -1
- package/lib/sui/sui-object-processor-template.d.ts.map +1 -1
- package/lib/sui/sui-object-processor.d.ts +1 -1
- package/lib/sui/sui-object-processor.d.ts.map +1 -1
- package/lib/sui/sui-processor.d.ts +1 -1
- package/lib/sui/sui-processor.d.ts.map +1 -1
- package/lib/sui/utils.d.ts +1 -1
- package/lib/sui/utils.d.ts.map +1 -1
- package/lib/testing/sui-facet.d.ts +1 -1
- package/lib/testing/sui-facet.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/aptos/abis/0x1.json +571 -17
- package/src/aptos/abis/0x3.json +60 -0
- package/src/aptos/abis/0x4.json +139 -2
- package/src/aptos/builtin/0x1.ts +64 -1
- package/src/aptos/builtin/0x3.ts +1 -1
- package/src/aptos/builtin/0x4.ts +1 -1
- package/src/sui/abis/0x1.json +499 -0
- package/src/sui/abis/0x3.json +900 -41
- package/src/sui/builtin/0x1.ts +1 -1
- package/src/sui/builtin/0x3.ts +154 -1
- package/src/sui/codegen/codegen.ts +1 -1
- package/src/sui/context.ts +1 -1
- package/src/sui/ext/coin.ts +1 -1
- package/src/sui/ext/move-dex.ts +1 -1
- package/src/sui/models.ts +1 -1
- package/src/sui/network.ts +1 -1
- package/src/sui/sui-object-processor-template.ts +1 -1
- package/src/sui/sui-object-processor.ts +1 -1
- package/src/sui/sui-processor.ts +1 -1
- package/src/sui/utils.ts +1 -1
- package/src/testing/sui-facet.ts +1 -1
package/src/sui/abis/0x1.json
CHANGED
@@ -2076,6 +2076,17 @@
|
|
2076
2076
|
"friends": [],
|
2077
2077
|
"structs": {},
|
2078
2078
|
"exposedFunctions": {
|
2079
|
+
"bitwise_not": {
|
2080
|
+
"visibility": "Public",
|
2081
|
+
"isEntry": false,
|
2082
|
+
"typeParameters": [],
|
2083
|
+
"parameters": [
|
2084
|
+
"U128"
|
2085
|
+
],
|
2086
|
+
"return": [
|
2087
|
+
"U128"
|
2088
|
+
]
|
2089
|
+
},
|
2079
2090
|
"diff": {
|
2080
2091
|
"visibility": "Public",
|
2081
2092
|
"isEntry": false,
|
@@ -2146,6 +2157,104 @@
|
|
2146
2157
|
"return": [
|
2147
2158
|
"U128"
|
2148
2159
|
]
|
2160
|
+
},
|
2161
|
+
"to_string": {
|
2162
|
+
"visibility": "Public",
|
2163
|
+
"isEntry": false,
|
2164
|
+
"typeParameters": [],
|
2165
|
+
"parameters": [
|
2166
|
+
"U128"
|
2167
|
+
],
|
2168
|
+
"return": [
|
2169
|
+
{
|
2170
|
+
"Struct": {
|
2171
|
+
"address": "0x1",
|
2172
|
+
"module": "string",
|
2173
|
+
"name": "String",
|
2174
|
+
"typeArguments": []
|
2175
|
+
}
|
2176
|
+
}
|
2177
|
+
]
|
2178
|
+
},
|
2179
|
+
"try_as_u16": {
|
2180
|
+
"visibility": "Public",
|
2181
|
+
"isEntry": false,
|
2182
|
+
"typeParameters": [],
|
2183
|
+
"parameters": [
|
2184
|
+
"U128"
|
2185
|
+
],
|
2186
|
+
"return": [
|
2187
|
+
{
|
2188
|
+
"Struct": {
|
2189
|
+
"address": "0x1",
|
2190
|
+
"module": "option",
|
2191
|
+
"name": "Option",
|
2192
|
+
"typeArguments": [
|
2193
|
+
"U16"
|
2194
|
+
]
|
2195
|
+
}
|
2196
|
+
}
|
2197
|
+
]
|
2198
|
+
},
|
2199
|
+
"try_as_u32": {
|
2200
|
+
"visibility": "Public",
|
2201
|
+
"isEntry": false,
|
2202
|
+
"typeParameters": [],
|
2203
|
+
"parameters": [
|
2204
|
+
"U128"
|
2205
|
+
],
|
2206
|
+
"return": [
|
2207
|
+
{
|
2208
|
+
"Struct": {
|
2209
|
+
"address": "0x1",
|
2210
|
+
"module": "option",
|
2211
|
+
"name": "Option",
|
2212
|
+
"typeArguments": [
|
2213
|
+
"U32"
|
2214
|
+
]
|
2215
|
+
}
|
2216
|
+
}
|
2217
|
+
]
|
2218
|
+
},
|
2219
|
+
"try_as_u64": {
|
2220
|
+
"visibility": "Public",
|
2221
|
+
"isEntry": false,
|
2222
|
+
"typeParameters": [],
|
2223
|
+
"parameters": [
|
2224
|
+
"U128"
|
2225
|
+
],
|
2226
|
+
"return": [
|
2227
|
+
{
|
2228
|
+
"Struct": {
|
2229
|
+
"address": "0x1",
|
2230
|
+
"module": "option",
|
2231
|
+
"name": "Option",
|
2232
|
+
"typeArguments": [
|
2233
|
+
"U64"
|
2234
|
+
]
|
2235
|
+
}
|
2236
|
+
}
|
2237
|
+
]
|
2238
|
+
},
|
2239
|
+
"try_as_u8": {
|
2240
|
+
"visibility": "Public",
|
2241
|
+
"isEntry": false,
|
2242
|
+
"typeParameters": [],
|
2243
|
+
"parameters": [
|
2244
|
+
"U128"
|
2245
|
+
],
|
2246
|
+
"return": [
|
2247
|
+
{
|
2248
|
+
"Struct": {
|
2249
|
+
"address": "0x1",
|
2250
|
+
"module": "option",
|
2251
|
+
"name": "Option",
|
2252
|
+
"typeArguments": [
|
2253
|
+
"U8"
|
2254
|
+
]
|
2255
|
+
}
|
2256
|
+
}
|
2257
|
+
]
|
2149
2258
|
}
|
2150
2259
|
}
|
2151
2260
|
},
|
@@ -2156,6 +2265,17 @@
|
|
2156
2265
|
"friends": [],
|
2157
2266
|
"structs": {},
|
2158
2267
|
"exposedFunctions": {
|
2268
|
+
"bitwise_not": {
|
2269
|
+
"visibility": "Public",
|
2270
|
+
"isEntry": false,
|
2271
|
+
"typeParameters": [],
|
2272
|
+
"parameters": [
|
2273
|
+
"U16"
|
2274
|
+
],
|
2275
|
+
"return": [
|
2276
|
+
"U16"
|
2277
|
+
]
|
2278
|
+
},
|
2159
2279
|
"diff": {
|
2160
2280
|
"visibility": "Public",
|
2161
2281
|
"isEntry": false,
|
@@ -2226,6 +2346,44 @@
|
|
2226
2346
|
"return": [
|
2227
2347
|
"U16"
|
2228
2348
|
]
|
2349
|
+
},
|
2350
|
+
"to_string": {
|
2351
|
+
"visibility": "Public",
|
2352
|
+
"isEntry": false,
|
2353
|
+
"typeParameters": [],
|
2354
|
+
"parameters": [
|
2355
|
+
"U16"
|
2356
|
+
],
|
2357
|
+
"return": [
|
2358
|
+
{
|
2359
|
+
"Struct": {
|
2360
|
+
"address": "0x1",
|
2361
|
+
"module": "string",
|
2362
|
+
"name": "String",
|
2363
|
+
"typeArguments": []
|
2364
|
+
}
|
2365
|
+
}
|
2366
|
+
]
|
2367
|
+
},
|
2368
|
+
"try_as_u8": {
|
2369
|
+
"visibility": "Public",
|
2370
|
+
"isEntry": false,
|
2371
|
+
"typeParameters": [],
|
2372
|
+
"parameters": [
|
2373
|
+
"U16"
|
2374
|
+
],
|
2375
|
+
"return": [
|
2376
|
+
{
|
2377
|
+
"Struct": {
|
2378
|
+
"address": "0x1",
|
2379
|
+
"module": "option",
|
2380
|
+
"name": "Option",
|
2381
|
+
"typeArguments": [
|
2382
|
+
"U8"
|
2383
|
+
]
|
2384
|
+
}
|
2385
|
+
}
|
2386
|
+
]
|
2229
2387
|
}
|
2230
2388
|
}
|
2231
2389
|
},
|
@@ -2236,6 +2394,17 @@
|
|
2236
2394
|
"friends": [],
|
2237
2395
|
"structs": {},
|
2238
2396
|
"exposedFunctions": {
|
2397
|
+
"bitwise_not": {
|
2398
|
+
"visibility": "Public",
|
2399
|
+
"isEntry": false,
|
2400
|
+
"typeParameters": [],
|
2401
|
+
"parameters": [
|
2402
|
+
"U256"
|
2403
|
+
],
|
2404
|
+
"return": [
|
2405
|
+
"U256"
|
2406
|
+
]
|
2407
|
+
},
|
2239
2408
|
"diff": {
|
2240
2409
|
"visibility": "Public",
|
2241
2410
|
"isEntry": false,
|
@@ -2295,6 +2464,124 @@
|
|
2295
2464
|
"return": [
|
2296
2465
|
"U256"
|
2297
2466
|
]
|
2467
|
+
},
|
2468
|
+
"to_string": {
|
2469
|
+
"visibility": "Public",
|
2470
|
+
"isEntry": false,
|
2471
|
+
"typeParameters": [],
|
2472
|
+
"parameters": [
|
2473
|
+
"U256"
|
2474
|
+
],
|
2475
|
+
"return": [
|
2476
|
+
{
|
2477
|
+
"Struct": {
|
2478
|
+
"address": "0x1",
|
2479
|
+
"module": "string",
|
2480
|
+
"name": "String",
|
2481
|
+
"typeArguments": []
|
2482
|
+
}
|
2483
|
+
}
|
2484
|
+
]
|
2485
|
+
},
|
2486
|
+
"try_as_u128": {
|
2487
|
+
"visibility": "Public",
|
2488
|
+
"isEntry": false,
|
2489
|
+
"typeParameters": [],
|
2490
|
+
"parameters": [
|
2491
|
+
"U256"
|
2492
|
+
],
|
2493
|
+
"return": [
|
2494
|
+
{
|
2495
|
+
"Struct": {
|
2496
|
+
"address": "0x1",
|
2497
|
+
"module": "option",
|
2498
|
+
"name": "Option",
|
2499
|
+
"typeArguments": [
|
2500
|
+
"U128"
|
2501
|
+
]
|
2502
|
+
}
|
2503
|
+
}
|
2504
|
+
]
|
2505
|
+
},
|
2506
|
+
"try_as_u16": {
|
2507
|
+
"visibility": "Public",
|
2508
|
+
"isEntry": false,
|
2509
|
+
"typeParameters": [],
|
2510
|
+
"parameters": [
|
2511
|
+
"U256"
|
2512
|
+
],
|
2513
|
+
"return": [
|
2514
|
+
{
|
2515
|
+
"Struct": {
|
2516
|
+
"address": "0x1",
|
2517
|
+
"module": "option",
|
2518
|
+
"name": "Option",
|
2519
|
+
"typeArguments": [
|
2520
|
+
"U16"
|
2521
|
+
]
|
2522
|
+
}
|
2523
|
+
}
|
2524
|
+
]
|
2525
|
+
},
|
2526
|
+
"try_as_u32": {
|
2527
|
+
"visibility": "Public",
|
2528
|
+
"isEntry": false,
|
2529
|
+
"typeParameters": [],
|
2530
|
+
"parameters": [
|
2531
|
+
"U256"
|
2532
|
+
],
|
2533
|
+
"return": [
|
2534
|
+
{
|
2535
|
+
"Struct": {
|
2536
|
+
"address": "0x1",
|
2537
|
+
"module": "option",
|
2538
|
+
"name": "Option",
|
2539
|
+
"typeArguments": [
|
2540
|
+
"U32"
|
2541
|
+
]
|
2542
|
+
}
|
2543
|
+
}
|
2544
|
+
]
|
2545
|
+
},
|
2546
|
+
"try_as_u64": {
|
2547
|
+
"visibility": "Public",
|
2548
|
+
"isEntry": false,
|
2549
|
+
"typeParameters": [],
|
2550
|
+
"parameters": [
|
2551
|
+
"U256"
|
2552
|
+
],
|
2553
|
+
"return": [
|
2554
|
+
{
|
2555
|
+
"Struct": {
|
2556
|
+
"address": "0x1",
|
2557
|
+
"module": "option",
|
2558
|
+
"name": "Option",
|
2559
|
+
"typeArguments": [
|
2560
|
+
"U64"
|
2561
|
+
]
|
2562
|
+
}
|
2563
|
+
}
|
2564
|
+
]
|
2565
|
+
},
|
2566
|
+
"try_as_u8": {
|
2567
|
+
"visibility": "Public",
|
2568
|
+
"isEntry": false,
|
2569
|
+
"typeParameters": [],
|
2570
|
+
"parameters": [
|
2571
|
+
"U256"
|
2572
|
+
],
|
2573
|
+
"return": [
|
2574
|
+
{
|
2575
|
+
"Struct": {
|
2576
|
+
"address": "0x1",
|
2577
|
+
"module": "option",
|
2578
|
+
"name": "Option",
|
2579
|
+
"typeArguments": [
|
2580
|
+
"U8"
|
2581
|
+
]
|
2582
|
+
}
|
2583
|
+
}
|
2584
|
+
]
|
2298
2585
|
}
|
2299
2586
|
}
|
2300
2587
|
},
|
@@ -2305,6 +2592,17 @@
|
|
2305
2592
|
"friends": [],
|
2306
2593
|
"structs": {},
|
2307
2594
|
"exposedFunctions": {
|
2595
|
+
"bitwise_not": {
|
2596
|
+
"visibility": "Public",
|
2597
|
+
"isEntry": false,
|
2598
|
+
"typeParameters": [],
|
2599
|
+
"parameters": [
|
2600
|
+
"U32"
|
2601
|
+
],
|
2602
|
+
"return": [
|
2603
|
+
"U32"
|
2604
|
+
]
|
2605
|
+
},
|
2308
2606
|
"diff": {
|
2309
2607
|
"visibility": "Public",
|
2310
2608
|
"isEntry": false,
|
@@ -2375,6 +2673,64 @@
|
|
2375
2673
|
"return": [
|
2376
2674
|
"U32"
|
2377
2675
|
]
|
2676
|
+
},
|
2677
|
+
"to_string": {
|
2678
|
+
"visibility": "Public",
|
2679
|
+
"isEntry": false,
|
2680
|
+
"typeParameters": [],
|
2681
|
+
"parameters": [
|
2682
|
+
"U32"
|
2683
|
+
],
|
2684
|
+
"return": [
|
2685
|
+
{
|
2686
|
+
"Struct": {
|
2687
|
+
"address": "0x1",
|
2688
|
+
"module": "string",
|
2689
|
+
"name": "String",
|
2690
|
+
"typeArguments": []
|
2691
|
+
}
|
2692
|
+
}
|
2693
|
+
]
|
2694
|
+
},
|
2695
|
+
"try_as_u16": {
|
2696
|
+
"visibility": "Public",
|
2697
|
+
"isEntry": false,
|
2698
|
+
"typeParameters": [],
|
2699
|
+
"parameters": [
|
2700
|
+
"U32"
|
2701
|
+
],
|
2702
|
+
"return": [
|
2703
|
+
{
|
2704
|
+
"Struct": {
|
2705
|
+
"address": "0x1",
|
2706
|
+
"module": "option",
|
2707
|
+
"name": "Option",
|
2708
|
+
"typeArguments": [
|
2709
|
+
"U16"
|
2710
|
+
]
|
2711
|
+
}
|
2712
|
+
}
|
2713
|
+
]
|
2714
|
+
},
|
2715
|
+
"try_as_u8": {
|
2716
|
+
"visibility": "Public",
|
2717
|
+
"isEntry": false,
|
2718
|
+
"typeParameters": [],
|
2719
|
+
"parameters": [
|
2720
|
+
"U32"
|
2721
|
+
],
|
2722
|
+
"return": [
|
2723
|
+
{
|
2724
|
+
"Struct": {
|
2725
|
+
"address": "0x1",
|
2726
|
+
"module": "option",
|
2727
|
+
"name": "Option",
|
2728
|
+
"typeArguments": [
|
2729
|
+
"U8"
|
2730
|
+
]
|
2731
|
+
}
|
2732
|
+
}
|
2733
|
+
]
|
2378
2734
|
}
|
2379
2735
|
}
|
2380
2736
|
},
|
@@ -2385,6 +2741,17 @@
|
|
2385
2741
|
"friends": [],
|
2386
2742
|
"structs": {},
|
2387
2743
|
"exposedFunctions": {
|
2744
|
+
"bitwise_not": {
|
2745
|
+
"visibility": "Public",
|
2746
|
+
"isEntry": false,
|
2747
|
+
"typeParameters": [],
|
2748
|
+
"parameters": [
|
2749
|
+
"U64"
|
2750
|
+
],
|
2751
|
+
"return": [
|
2752
|
+
"U64"
|
2753
|
+
]
|
2754
|
+
},
|
2388
2755
|
"diff": {
|
2389
2756
|
"visibility": "Public",
|
2390
2757
|
"isEntry": false,
|
@@ -2455,6 +2822,84 @@
|
|
2455
2822
|
"return": [
|
2456
2823
|
"U64"
|
2457
2824
|
]
|
2825
|
+
},
|
2826
|
+
"to_string": {
|
2827
|
+
"visibility": "Public",
|
2828
|
+
"isEntry": false,
|
2829
|
+
"typeParameters": [],
|
2830
|
+
"parameters": [
|
2831
|
+
"U64"
|
2832
|
+
],
|
2833
|
+
"return": [
|
2834
|
+
{
|
2835
|
+
"Struct": {
|
2836
|
+
"address": "0x1",
|
2837
|
+
"module": "string",
|
2838
|
+
"name": "String",
|
2839
|
+
"typeArguments": []
|
2840
|
+
}
|
2841
|
+
}
|
2842
|
+
]
|
2843
|
+
},
|
2844
|
+
"try_as_u16": {
|
2845
|
+
"visibility": "Public",
|
2846
|
+
"isEntry": false,
|
2847
|
+
"typeParameters": [],
|
2848
|
+
"parameters": [
|
2849
|
+
"U64"
|
2850
|
+
],
|
2851
|
+
"return": [
|
2852
|
+
{
|
2853
|
+
"Struct": {
|
2854
|
+
"address": "0x1",
|
2855
|
+
"module": "option",
|
2856
|
+
"name": "Option",
|
2857
|
+
"typeArguments": [
|
2858
|
+
"U16"
|
2859
|
+
]
|
2860
|
+
}
|
2861
|
+
}
|
2862
|
+
]
|
2863
|
+
},
|
2864
|
+
"try_as_u32": {
|
2865
|
+
"visibility": "Public",
|
2866
|
+
"isEntry": false,
|
2867
|
+
"typeParameters": [],
|
2868
|
+
"parameters": [
|
2869
|
+
"U64"
|
2870
|
+
],
|
2871
|
+
"return": [
|
2872
|
+
{
|
2873
|
+
"Struct": {
|
2874
|
+
"address": "0x1",
|
2875
|
+
"module": "option",
|
2876
|
+
"name": "Option",
|
2877
|
+
"typeArguments": [
|
2878
|
+
"U32"
|
2879
|
+
]
|
2880
|
+
}
|
2881
|
+
}
|
2882
|
+
]
|
2883
|
+
},
|
2884
|
+
"try_as_u8": {
|
2885
|
+
"visibility": "Public",
|
2886
|
+
"isEntry": false,
|
2887
|
+
"typeParameters": [],
|
2888
|
+
"parameters": [
|
2889
|
+
"U64"
|
2890
|
+
],
|
2891
|
+
"return": [
|
2892
|
+
{
|
2893
|
+
"Struct": {
|
2894
|
+
"address": "0x1",
|
2895
|
+
"module": "option",
|
2896
|
+
"name": "Option",
|
2897
|
+
"typeArguments": [
|
2898
|
+
"U8"
|
2899
|
+
]
|
2900
|
+
}
|
2901
|
+
}
|
2902
|
+
]
|
2458
2903
|
}
|
2459
2904
|
}
|
2460
2905
|
},
|
@@ -2465,6 +2910,17 @@
|
|
2465
2910
|
"friends": [],
|
2466
2911
|
"structs": {},
|
2467
2912
|
"exposedFunctions": {
|
2913
|
+
"bitwise_not": {
|
2914
|
+
"visibility": "Public",
|
2915
|
+
"isEntry": false,
|
2916
|
+
"typeParameters": [],
|
2917
|
+
"parameters": [
|
2918
|
+
"U8"
|
2919
|
+
],
|
2920
|
+
"return": [
|
2921
|
+
"U8"
|
2922
|
+
]
|
2923
|
+
},
|
2468
2924
|
"diff": {
|
2469
2925
|
"visibility": "Public",
|
2470
2926
|
"isEntry": false,
|
@@ -2535,6 +2991,24 @@
|
|
2535
2991
|
"return": [
|
2536
2992
|
"U8"
|
2537
2993
|
]
|
2994
|
+
},
|
2995
|
+
"to_string": {
|
2996
|
+
"visibility": "Public",
|
2997
|
+
"isEntry": false,
|
2998
|
+
"typeParameters": [],
|
2999
|
+
"parameters": [
|
3000
|
+
"U8"
|
3001
|
+
],
|
3002
|
+
"return": [
|
3003
|
+
{
|
3004
|
+
"Struct": {
|
3005
|
+
"address": "0x1",
|
3006
|
+
"module": "string",
|
3007
|
+
"name": "String",
|
3008
|
+
"typeArguments": []
|
3009
|
+
}
|
3010
|
+
}
|
3011
|
+
]
|
2538
3012
|
}
|
2539
3013
|
}
|
2540
3014
|
},
|
@@ -2681,6 +3155,31 @@
|
|
2681
3155
|
}
|
2682
3156
|
]
|
2683
3157
|
},
|
3158
|
+
"flatten": {
|
3159
|
+
"visibility": "Public",
|
3160
|
+
"isEntry": false,
|
3161
|
+
"typeParameters": [
|
3162
|
+
{
|
3163
|
+
"abilities": []
|
3164
|
+
}
|
3165
|
+
],
|
3166
|
+
"parameters": [
|
3167
|
+
{
|
3168
|
+
"Vector": {
|
3169
|
+
"Vector": {
|
3170
|
+
"TypeParameter": 0
|
3171
|
+
}
|
3172
|
+
}
|
3173
|
+
}
|
3174
|
+
],
|
3175
|
+
"return": [
|
3176
|
+
{
|
3177
|
+
"Vector": {
|
3178
|
+
"TypeParameter": 0
|
3179
|
+
}
|
3180
|
+
}
|
3181
|
+
]
|
3182
|
+
},
|
2684
3183
|
"index_of": {
|
2685
3184
|
"visibility": "Public",
|
2686
3185
|
"isEntry": false,
|