This file is indexed.

/usr/share/kobo-deluxe/sfx/phattpad2.agw is in kobodeluxe-data 0.5.1-6.

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
50
51
52
/////////////////////////////////////////////
// Phatt Pad 2
// Copyright (C) David Olofson, 2002
/////////////////////////////////////////////

wid = target;

w_format wid, MONO16, 33488;
w_blank wid, 33488, 1;

// The exact desired frequency is 523.25 Hz,
// but as we need a perfect loop, we'll round
// all frequencies so that we get integer
// numbers of periods per loop.

w_env AMPLITUDE,
		0,	.15,
		.25,	.25,
		.5,	.25,
		.25,	.15;
w_env MOD1,
		0,	0,
		.5,	.1,
		.5,	0;
w_env FREQUENCY, 519;
w_osc wid, TRIANGLE;
w_env FREQUENCY, 521;
w_osc wid, TRIANGLE;

w_env MOD1,
		0,	0,
		.2,	.2,
		.3,	.07,
		.3,	.15,
		.2,	0;
w_env FREQUENCY, 523;
w_osc wid, TRIANGLE;
w_env FREQUENCY, 526;
w_osc wid, TRIANGLE; 

p_param target, WAVE, wid;
p_param target, DRIVER, POLY;
p_param target, ENV_SKIP, 1;
p_param target, ENV_L0, 0;
p_param target, ENV_DELAY, 0;
p_param target, ENV_T1, .001;
p_param target, ENV_L1, 1;
p_param target, ENV_HOLD, .05;
p_param target, ENV_T2, .1;
p_param target, ENV_L2, .6;
p_param target, ENV_T3, -1;
p_param target, ENV_T4, .02;