@thi.ng/grid-iterators 4.0.73 → 4.0.75
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/CHANGELOG.md +9 -1
- package/README.md +2 -2
- package/circle.js +7 -14
- package/clipping.js +4 -6
- package/diagonal-ends.js +1 -2
- package/diagonal-slope.d.ts +4 -2
- package/diagonal-slope.js +8 -16
- package/diamond-square.d.ts +4 -2
- package/flood-fill.d.ts +4 -2
- package/flood-fill.js +13 -8
- package/hilbert.js +1 -2
- package/hvline.js +2 -4
- package/interleave.d.ts +3 -2
- package/interleave.js +7 -10
- package/line.js +1 -2
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-
|
|
3
|
+
- **Last updated**: 2024-06-21T19:34:38Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,14 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [4.0.75](https://github.com/thi-ng/umbrella/tree/@thi.ng/grid-iterators@4.0.75) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- dedupe interleave logic/iteration, add tests ([7bc9f7f](https://github.com/thi-ng/umbrella/commit/7bc9f7f))
|
|
17
|
+
- enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
|
|
18
|
+
- internal update floodFill() ([3af4715](https://github.com/thi-ng/umbrella/commit/3af4715))
|
|
19
|
+
|
|
12
20
|
### [4.0.71](https://github.com/thi-ng/umbrella/tree/@thi.ng/grid-iterators@4.0.71) (2024-04-20)
|
|
13
21
|
|
|
14
22
|
#### ♻️ Refactoring
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 193 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -253,7 +253,7 @@ For Node.js REPL:
|
|
|
253
253
|
const gi = await import("@thi.ng/grid-iterators");
|
|
254
254
|
```
|
|
255
255
|
|
|
256
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 2.
|
|
256
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 2.67 KB
|
|
257
257
|
|
|
258
258
|
## Dependencies
|
|
259
259
|
|
package/circle.js
CHANGED
|
@@ -3,8 +3,7 @@ import { clipped, intersectRectCircle } from "./clipping.js";
|
|
|
3
3
|
import { hline } from "./hvline.js";
|
|
4
4
|
function* circle(cx, cy, r, fill = true) {
|
|
5
5
|
[cx, cy, r] = asInt(cx, cy, r);
|
|
6
|
-
if (r < 1)
|
|
7
|
-
return;
|
|
6
|
+
if (r < 1) return;
|
|
8
7
|
let x = 0;
|
|
9
8
|
let y = r;
|
|
10
9
|
let y2 = r * r;
|
|
@@ -14,25 +13,20 @@ function* circle(cx, cy, r, fill = true) {
|
|
|
14
13
|
while (x <= y) {
|
|
15
14
|
if (fill) {
|
|
16
15
|
yield* hline(cx - y, cy + x, y << 1);
|
|
17
|
-
if (x)
|
|
18
|
-
yield* hline(cx - y, cy - x, y << 1);
|
|
16
|
+
if (x) yield* hline(cx - y, cy - x, y << 1);
|
|
19
17
|
} else {
|
|
20
18
|
yield [cx - y, cy + x];
|
|
21
|
-
if (y)
|
|
22
|
-
yield [cx + y, cy + x];
|
|
19
|
+
if (y) yield [cx + y, cy + x];
|
|
23
20
|
if (x) {
|
|
24
21
|
yield [cx - y, cy - x];
|
|
25
|
-
if (y)
|
|
26
|
-
yield [cx + y, cy - x];
|
|
22
|
+
if (y) yield [cx + y, cy - x];
|
|
27
23
|
}
|
|
28
24
|
if (x !== y) {
|
|
29
25
|
yield [cx - x, cy - y];
|
|
30
|
-
if (x)
|
|
31
|
-
yield [cx + x, cy - y];
|
|
26
|
+
if (x) yield [cx + x, cy - y];
|
|
32
27
|
if (y) {
|
|
33
28
|
yield [cx - x, cy + y];
|
|
34
|
-
if (x)
|
|
35
|
-
yield [cx + x, cy + y];
|
|
29
|
+
if (x) yield [cx + x, cy + y];
|
|
36
30
|
}
|
|
37
31
|
}
|
|
38
32
|
}
|
|
@@ -40,8 +34,7 @@ function* circle(cx, cy, r, fill = true) {
|
|
|
40
34
|
if (sum <= y2) {
|
|
41
35
|
if (fill && x !== y) {
|
|
42
36
|
yield* hline(cx - x, cy - y, x << 1);
|
|
43
|
-
if (y)
|
|
44
|
-
yield* hline(cx - x, cy + y, x << 1);
|
|
37
|
+
if (y) yield* hline(cx - x, cy + y, x << 1);
|
|
45
38
|
}
|
|
46
39
|
y--;
|
|
47
40
|
y2 -= dy2;
|
package/clipping.js
CHANGED
|
@@ -4,8 +4,8 @@ function* clipped(src, left, top, right, bottom) {
|
|
|
4
4
|
yield p;
|
|
5
5
|
}
|
|
6
6
|
}
|
|
7
|
-
const
|
|
8
|
-
const intersectRectCircle = (x, y, w, h, cx, cy, r) =>
|
|
7
|
+
const __axis = (a, b, c) => (a < b ? a - b : a > b + c ? a - b - c : 0) ** 2;
|
|
8
|
+
const intersectRectCircle = (x, y, w, h, cx, cy, r) => __axis(cx, x, w) + __axis(cy, y, h) <= r * r;
|
|
9
9
|
const liangBarsky = (ax, ay, bx, by, minx, miny, maxx, maxy) => {
|
|
10
10
|
const dx = bx - ax;
|
|
11
11
|
const dy = by - ay;
|
|
@@ -14,13 +14,11 @@ const liangBarsky = (ax, ay, bx, by, minx, miny, maxx, maxy) => {
|
|
|
14
14
|
const clip = (p, q) => {
|
|
15
15
|
if (p < 0) {
|
|
16
16
|
const r = q / p;
|
|
17
|
-
if (r > beta)
|
|
18
|
-
return false;
|
|
17
|
+
if (r > beta) return false;
|
|
19
18
|
r > alpha && (alpha = r);
|
|
20
19
|
} else if (p > 0) {
|
|
21
20
|
const r = q / p;
|
|
22
|
-
if (r < alpha)
|
|
23
|
-
return false;
|
|
21
|
+
if (r < alpha) return false;
|
|
24
22
|
r < beta && (beta = r);
|
|
25
23
|
} else if (q < 0) {
|
|
26
24
|
return false;
|
package/diagonal-ends.js
CHANGED
|
@@ -10,8 +10,7 @@ function* diagonalEnds2d(opts) {
|
|
|
10
10
|
for (let p of diagonal2d({ cols, rows })) {
|
|
11
11
|
if (check(i)) {
|
|
12
12
|
const [x, y] = p;
|
|
13
|
-
if (x === 0 || x === maxX || y === 0 || y === maxY)
|
|
14
|
-
yield tx(x, y);
|
|
13
|
+
if (x === 0 || x === maxX || y === 0 || y === maxY) yield tx(x, y);
|
|
15
14
|
}
|
|
16
15
|
i++;
|
|
17
16
|
}
|
package/diagonal-slope.d.ts
CHANGED
|
@@ -12,11 +12,13 @@ export interface DiagonalSlopeOpts extends GridIterOpts2D {
|
|
|
12
12
|
* step in -x direction.
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
|
-
* ```ts
|
|
15
|
+
* ```ts tangle:../export/diagonal-slopey.ts
|
|
16
16
|
* import { diagonalSlopeY } from "@thi.ng/grid-iterators";
|
|
17
17
|
*
|
|
18
18
|
* // iterate grid in diagonals of 1:3 ratio (x:y)
|
|
19
|
-
*
|
|
19
|
+
* console.log(
|
|
20
|
+
* [...diagonalSlopeY({ cols: 5, rows: 5, slope: 3 })]
|
|
21
|
+
* );
|
|
20
22
|
* // [
|
|
21
23
|
* // [0, 0], [0, 1 ], [0, 2 ],
|
|
22
24
|
* // [1, 0], [1, 1 ], [1, 2 ],
|
package/diagonal-slope.js
CHANGED
|
@@ -15,24 +15,19 @@ function* diagonalSlopeY(opts) {
|
|
|
15
15
|
n = slope;
|
|
16
16
|
x = nx;
|
|
17
17
|
y = ny;
|
|
18
|
-
if (nx < maxX)
|
|
19
|
-
|
|
20
|
-
else
|
|
21
|
-
ny += slope;
|
|
18
|
+
if (nx < maxX) nx++;
|
|
19
|
+
else ny += slope;
|
|
22
20
|
};
|
|
23
21
|
for (let i = 0; i <= num; i++) {
|
|
24
22
|
yield tx(x, y);
|
|
25
23
|
if (--n > 0) {
|
|
26
24
|
y++;
|
|
27
|
-
if (y >= rows)
|
|
28
|
-
reset();
|
|
25
|
+
if (y >= rows) reset();
|
|
29
26
|
} else {
|
|
30
27
|
x--;
|
|
31
28
|
y++;
|
|
32
|
-
if (x < 0 || y >= rows)
|
|
33
|
-
|
|
34
|
-
else
|
|
35
|
-
n = slope;
|
|
29
|
+
if (x < 0 || y >= rows) reset();
|
|
30
|
+
else n = slope;
|
|
36
31
|
}
|
|
37
32
|
}
|
|
38
33
|
}
|
|
@@ -62,15 +57,12 @@ function* diagonalSlopeX(opts) {
|
|
|
62
57
|
yield tx(x, y);
|
|
63
58
|
if (--n > 0) {
|
|
64
59
|
x--;
|
|
65
|
-
if (x < 0)
|
|
66
|
-
reset();
|
|
60
|
+
if (x < 0) reset();
|
|
67
61
|
} else {
|
|
68
62
|
x--;
|
|
69
63
|
y++;
|
|
70
|
-
if (x < 0 || y >= rows)
|
|
71
|
-
|
|
72
|
-
else
|
|
73
|
-
n = slope;
|
|
64
|
+
if (x < 0 || y >= rows) reset();
|
|
65
|
+
else n = slope;
|
|
74
66
|
}
|
|
75
67
|
}
|
|
76
68
|
}
|
package/diamond-square.d.ts
CHANGED
|
@@ -8,11 +8,13 @@
|
|
|
8
8
|
* Reference: https://en.wikipedia.org/wiki/Diamond-square_algorithm
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
|
-
* ```ts
|
|
11
|
+
* ```ts tangle:../export/diamond-square.ts
|
|
12
12
|
* import { diamondSquare } from "@thi.ng/grid-iterators";
|
|
13
13
|
*
|
|
14
14
|
* // generate coords for a 17x17 grid
|
|
15
|
-
*
|
|
15
|
+
* console.log(
|
|
16
|
+
* [...diamondSquare(4)]
|
|
17
|
+
* );
|
|
16
18
|
* // [
|
|
17
19
|
* // [0, 0], [16, 0], [16, 16], [0, 16], [8, 0], [8, 16],
|
|
18
20
|
* // [16, 8], [0, 8], [8, 8], [4, 0], [12, 0], [12, 16],
|
package/flood-fill.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import type { Predicate2 } from "@thi.ng/api";
|
|
|
11
11
|
* Grid cells are visited max. once. A bit field is used to mark visited cells.
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
|
-
* ```ts
|
|
14
|
+
* ```ts tangle:../export/flood-fill.ts
|
|
15
15
|
* import { floodFill } from "@thi.ng/grid-iterators";
|
|
16
16
|
*
|
|
17
17
|
* const img = [
|
|
@@ -22,7 +22,9 @@ import type { Predicate2 } from "@thi.ng/api";
|
|
|
22
22
|
* ];
|
|
23
23
|
*
|
|
24
24
|
* // flood fill connected region from point (2,1)
|
|
25
|
-
*
|
|
25
|
+
* console.log(
|
|
26
|
+
* [...floodFill((x, y) => img[y * 4 + x] === 0, 2, 1, 4, 4)]
|
|
27
|
+
* );
|
|
26
28
|
* // [
|
|
27
29
|
* // [2, 1], [1, 1], [0, 1], [3, 1], [3, 2],
|
|
28
30
|
* // [3, 0], [0, 2], [0, 3], [1, 0]
|
package/flood-fill.js
CHANGED
|
@@ -2,21 +2,26 @@ import { BitField, defBitField } from "@thi.ng/bitfield/bitfield";
|
|
|
2
2
|
function* floodFill(pred, x, y, width, height) {
|
|
3
3
|
x |= 0;
|
|
4
4
|
y |= 0;
|
|
5
|
-
if (!pred(x, y))
|
|
6
|
-
return;
|
|
5
|
+
if (!pred(x, y)) return;
|
|
7
6
|
const queue = [[x, y]];
|
|
8
7
|
const visited = defBitField(width * height);
|
|
9
8
|
height--;
|
|
9
|
+
const state = { pred, queue, visited, width, height };
|
|
10
10
|
while (queue.length) {
|
|
11
11
|
[x, y] = queue.pop();
|
|
12
|
-
yield*
|
|
13
|
-
yield*
|
|
12
|
+
yield* __partialRow(state, x, y, -1);
|
|
13
|
+
yield* __partialRow(state, x + 1, y, 1);
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
function*
|
|
16
|
+
function* __partialRow({
|
|
17
|
+
pred,
|
|
18
|
+
queue,
|
|
19
|
+
visited,
|
|
20
|
+
width,
|
|
21
|
+
height
|
|
22
|
+
}, x, y, step) {
|
|
17
23
|
let idx = y * width + x;
|
|
18
|
-
if (visited.at(idx))
|
|
19
|
-
return;
|
|
24
|
+
if (visited.at(idx)) return;
|
|
20
25
|
let scanUp = false;
|
|
21
26
|
let scanDown = false;
|
|
22
27
|
while (x >= 0 && x < width && pred(x, y)) {
|
|
@@ -30,7 +35,7 @@ function* partialRow(pred, queue, visited, x, y, width, height1, step) {
|
|
|
30
35
|
scanUp = false;
|
|
31
36
|
}
|
|
32
37
|
}
|
|
33
|
-
if (y <
|
|
38
|
+
if (y < height) {
|
|
34
39
|
if (pred(x, y + 1) && !scanDown) {
|
|
35
40
|
queue.push([x, y + 1]);
|
|
36
41
|
scanDown = true;
|
package/hilbert.js
CHANGED
|
@@ -3,8 +3,7 @@ function* hilbert2d(opts) {
|
|
|
3
3
|
const { cols, rows, tx } = __opts(opts);
|
|
4
4
|
let hIndex = 0;
|
|
5
5
|
let hOrder = 0;
|
|
6
|
-
while ((1 << hOrder < cols || 1 << hOrder < rows) && hOrder < 15)
|
|
7
|
-
hOrder++;
|
|
6
|
+
while ((1 << hOrder < cols || 1 << hOrder < rows) && hOrder < 15) hOrder++;
|
|
8
7
|
const numBuckets = 1 << 2 * hOrder;
|
|
9
8
|
for (let i = 0, n = cols * rows; i < n; i++) {
|
|
10
9
|
let hx, hy;
|
package/hvline.js
CHANGED
|
@@ -13,8 +13,7 @@ function* vline(x, y, len) {
|
|
|
13
13
|
}
|
|
14
14
|
function* hlineClipped(x, y, len, left, top, right, bottom) {
|
|
15
15
|
[x, y, len] = asInt(x, y, len);
|
|
16
|
-
if (x >= right || y < top || y >= bottom)
|
|
17
|
-
return;
|
|
16
|
+
if (x >= right || y < top || y >= bottom) return;
|
|
18
17
|
if (x < left) {
|
|
19
18
|
len += x - left;
|
|
20
19
|
x = left;
|
|
@@ -23,8 +22,7 @@ function* hlineClipped(x, y, len, left, top, right, bottom) {
|
|
|
23
22
|
}
|
|
24
23
|
function* vlineClipped(x, y, len, left, top, right, bottom) {
|
|
25
24
|
[x, y, len] = asInt(x, y, len);
|
|
26
|
-
if (x < left || x >= right || y >= bottom)
|
|
27
|
-
return;
|
|
25
|
+
if (x < left || x >= right || y >= bottom) return;
|
|
28
26
|
if (y < top) {
|
|
29
27
|
len += y - top;
|
|
30
28
|
y = top;
|
package/interleave.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface InterleaveOpts2D extends GridIterOpts2D {
|
|
|
22
22
|
*
|
|
23
23
|
* @param opts -
|
|
24
24
|
*/
|
|
25
|
-
export declare
|
|
25
|
+
export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, undefined>;
|
|
26
26
|
/**
|
|
27
27
|
* Similar to {@link interleaveColumns2d}, but yields 2D grid coordinates in
|
|
28
28
|
* the order of interleaved rows with configurable `step` size (default:
|
|
@@ -37,5 +37,6 @@ export declare function interleaveColumns2d(opts: InterleaveOpts2D): Generator<i
|
|
|
37
37
|
*
|
|
38
38
|
* @param opts -
|
|
39
39
|
*/
|
|
40
|
-
export declare
|
|
40
|
+
export declare const interleaveRows2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, undefined>;
|
|
41
|
+
export declare function __interleave(opts: InterleaveOpts2D, order: [number, number], [x, y]: [number, number]): Generator<import("./api.js").GridCoord2D, void, undefined>;
|
|
41
42
|
//# sourceMappingURL=interleave.d.ts.map
|
package/interleave.js
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
import { map } from "@thi.ng/transducers/map";
|
|
2
2
|
import { range2d } from "@thi.ng/transducers/range2d";
|
|
3
3
|
import { __opts } from "./utils.js";
|
|
4
|
-
|
|
4
|
+
const interleaveColumns2d = (opts) => __interleave(opts, [0, 1], [1, 0]);
|
|
5
|
+
const interleaveRows2d = (opts) => __interleave(opts, [1, 0], [0, 1]);
|
|
6
|
+
function* __interleave(opts, order, [x, y]) {
|
|
5
7
|
const { cols, rows, tx } = __opts(opts);
|
|
6
|
-
const step = (opts.step
|
|
8
|
+
const step = (opts.step ?? 2) | 0;
|
|
9
|
+
const [outer, inner] = order.map((x2) => [cols, rows][x2]);
|
|
7
10
|
for (let j = 0; j < step; j++) {
|
|
8
|
-
yield* map((p) => tx(p[
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
function* interleaveRows2d(opts) {
|
|
12
|
-
const { cols, rows, tx } = __opts(opts);
|
|
13
|
-
const step = (opts.step != null ? opts.step : 2) | 0;
|
|
14
|
-
for (let j = 0; j < step; j++) {
|
|
15
|
-
yield* map((p) => tx(p[0], p[1]), range2d(0, cols, j, rows, 1, step));
|
|
11
|
+
yield* map((p) => tx(p[x], p[y]), range2d(0, inner, j, outer, 1, step));
|
|
16
12
|
}
|
|
17
13
|
}
|
|
18
14
|
export {
|
|
15
|
+
__interleave,
|
|
19
16
|
interleaveColumns2d,
|
|
20
17
|
interleaveRows2d
|
|
21
18
|
};
|
package/line.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/grid-iterators",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.75",
|
|
4
4
|
"description": "2D grid and shape iterators w/ multiple orderings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/thi-ng/umbrella.git"
|
|
12
12
|
},
|
|
13
|
-
"homepage": "https://
|
|
13
|
+
"homepage": "https://thi.ng/grid-iterators",
|
|
14
14
|
"funding": [
|
|
15
15
|
{
|
|
16
16
|
"type": "github",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.11.
|
|
42
|
-
"@thi.ng/arrays": "^2.9.
|
|
43
|
-
"@thi.ng/binary": "^3.4.
|
|
44
|
-
"@thi.ng/bitfield": "^2.3.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/morton": "^3.1.
|
|
47
|
-
"@thi.ng/random": "^3.
|
|
48
|
-
"@thi.ng/transducers": "^9.0.
|
|
41
|
+
"@thi.ng/api": "^8.11.3",
|
|
42
|
+
"@thi.ng/arrays": "^2.9.7",
|
|
43
|
+
"@thi.ng/binary": "^3.4.26",
|
|
44
|
+
"@thi.ng/bitfield": "^2.3.42",
|
|
45
|
+
"@thi.ng/errors": "^2.5.8",
|
|
46
|
+
"@thi.ng/morton": "^3.1.87",
|
|
47
|
+
"@thi.ng/random": "^3.8.1",
|
|
48
|
+
"@thi.ng/transducers": "^9.0.6"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.
|
|
52
|
-
"esbuild": "^0.
|
|
53
|
-
"typedoc": "^0.25.
|
|
54
|
-
"typescript": "^5.
|
|
51
|
+
"@microsoft/api-extractor": "^7.47.0",
|
|
52
|
+
"esbuild": "^0.21.5",
|
|
53
|
+
"typedoc": "^0.25.13",
|
|
54
|
+
"typescript": "^5.5.2"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
57
57
|
"2d",
|
|
@@ -166,5 +166,5 @@
|
|
|
166
166
|
],
|
|
167
167
|
"year": 2019
|
|
168
168
|
},
|
|
169
|
-
"gitHead": "
|
|
169
|
+
"gitHead": "154c95cf9d6bab32174498ec3b5b5d87e42be7f9\n"
|
|
170
170
|
}
|