This file is indexed.

/usr/share/doc/graphviz/examples/graphs/directed/mike.gv is in graphviz-doc 2.40.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
digraph mike{
size = "8,8";
	a -> A;
	a -> m;
	a -> E;
	t -> O;
	r -> V;
	r -> Q;
	p -> B;
	m -> R;
	l -> C;
	c -> C;
	W -> X;
	W -> D;
	V -> W;
	T -> U;
	Q -> T;
	Q -> H;
	Q -> A;
	O -> K;
	L -> U;
	K -> L;
	K -> J;
	K -> E;
	J -> I;
	R -> B;
	P -> F;
	H -> R;
	H -> P;
	U -> H;
	G -> U;
	E -> G;
	C -> Z;
	C -> D;
	S -> D;
	B -> N;
	B -> D;
	B -> S;
	M -> B;
	A -> M;
	N -> Y;
}