This file is indexed.

/usr/share/k3d/lsystem/abop-lychnis-structure.ls is in k3d-data 0.8.0.3-3build1.

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
43
44
45
46
47
48
49
# --- L-System Parser/Mutator --- Lj Lapre ----------------------------------
31
18
100
#
# axiom
#
c(12)N
#
# rules
#
N=FII[&(60)Y]>(90)[&(45)'(0.8)A]>(90)[&(60)Y]>(90)[&(45)'(0.8)D]FIK
#
# forms substitutes, leaves from bop01.ls
#
Y=[c(4){++l.--l.--l.++|++l.--l.--l.}]
l=g(20)l # leaves grow in size with recursion level
#
# forms substitutes, flowers from bop01.ls
#
K=[!c(2)FF>w>(72)w>(72)w>(72)w>(72)w]
w=[c(2)^!F][c(5)&(72){-(54)f(300)+(54)f(300)|-(54)f(300)+(54)f(300)}]
f=_  # removes all flower leaves except those of the last recursion
#
# 7 step delay for A(i)
#
A=B
B=C
C=D
D=E
E=G
G=H
H=N
#
# 10 delay for I(i)
#
I=FO
O=FP
P=FQ
Q=FR
R=FS
S=FT
T=FU
U=FV
V=FW
W=FX
X=_
#
@