This file is indexed.

/usr/lib/lv2/sapistaEQv2.lv2/eq1qm.ttl is in eq10q 2.2~repack0-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
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
@prefix lv2:  <http://lv2plug.in/ns/lv2core#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix guiext: <http://lv2plug.in/ns/extensions/ui#>.
@prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
@prefix urid:  <http://lv2plug.in/ns/ext/urid#> .
@prefix rsz:     <http://lv2plug.in/ns/ext/resize-port#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix pprop: <http://lv2plug.in/ns/ext/port-props#> .

<http://eq10q.sourceforge.net/prafols#me>
	a foaf:Person ;
	foaf:name "Pere Ràfols Soler" ;
	foaf:mbox <mailto:sapista2@gmail.com> ;
	foaf:homepage <http://eq10q.sourceforge.net> .

<http://eq10q.sourceforge.net/eq10qplugins>
	a doap:Project ;
	doap:maintainer <http://eq10q.sourceforge.net/prafols#me> ;
	doap:name "EQ10Q plugins" .

##LV2 GUI extension
<http://eq10q.sourceforge.net/eq/eq10q/gui>
  a guiext:GtkUI;
  guiext:binary <gui/eq10q_gui.so>;
  lv2:requiredFeature urid:map;
  lv2:optionalFeature guiext:noUserResize.
  
##LV2 plugin binary
<http://eq10q.sourceforge.net/eq/eq1qm>
  a lv2:Plugin, lv2:EQPlugin, doap:Project;
  lv2:binary <eq1qm.so>;
  doap:name "EQ1Q Mono";
  doap:license <http://usefulinc.com/doap/licenses/gpl>;
  lv2:requiredFeature urid:map;
  lv2:optionalFeature lv2:hardRTCapable;
  lv2:project <http://eq10q.sourceforge.net/eq10qplugins>;
  guiext:ui <http://eq10q.sourceforge.net/eq/eq10q/gui>;

  lv2:port [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 0;
    lv2:symbol "bypass";
    lv2:name "Bypass";
    lv2:minimum 0;
    lv2:maximum 1;
    lv2:default 0;
    lv2:portProperty lv2:toggled;
  ],

  [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 1;
    lv2:symbol "input_gain";
    lv2:name "Input Gain";
    lv2:minimum -20;
    lv2:maximum 20;
    lv2:default 0;
    units:unit units:db;
  ],

  [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 2;
    lv2:symbol "output_gain";
    lv2:name "Output Gain";
    lv2:minimum -20;
    lv2:maximum 20;
    lv2:default 0;
    units:unit units:db;
  ],

 [
    a lv2:AudioPort, lv2:InputPort;
    lv2:index 3;
    lv2:symbol "input";
    lv2:name "Input";
  ],

  [
    a lv2:AudioPort, lv2:OutputPort;
    lv2:index 4;
    lv2:symbol "output";
    lv2:name "Output";
  ],

 [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 5;
    lv2:symbol "filter1_gain";
    lv2:name "Filter 1 Gain";
    lv2:minimum -20;
    lv2:maximum 20;
    lv2:default 0;
    units:unit units:db;
  ],

 [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 6;
    lv2:symbol "filter1_freq";
    lv2:name "Filter 1 Freq";
    lv2:minimum 20;
    lv2:maximum 20000;
    lv2:default 1000;
    units:unit units:hz ;
    lv2:portProperty pprop:logarithmic;
  ],

  [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 7;
    lv2:symbol "filter1_q";
    lv2:name "Filter 1 Q";
    lv2:minimum 0.1;
    lv2:maximum 16;
    lv2:default 2;
  ],

  [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 8;
    lv2:symbol "filter1_type";
    lv2:name "Filter 1 Type";
    lv2:minimum 1;
    lv2:maximum 12;
    lv2:default 11;
    lv2:portProperty lv2:integer;
  ],

  [
    a lv2:ControlPort, lv2:InputPort;
    lv2:index 9;
    lv2:symbol "filter1_enable";
    lv2:name "Filter 1 Enable";
    lv2:minimum 0;
    lv2:maximum 1;
    lv2:default 0;
    lv2:portProperty lv2:toggled;
  ],

  [
    a lv2:ControlPort, lv2:OutputPort;
    lv2:index 10;
    lv2:symbol "in_vu_ctl";
    lv2:name "In Vu CTL";
  ],

  [
    a lv2:ControlPort, lv2:OutputPort;
    lv2:index 11;
    lv2:symbol "out_vu_ctl";
    lv2:name "Out VU CTL";
  ],
  
  [
    a lv2:OutputPort ,
            atom:AtomPort ;
    atom:bufferType atom:Sequence ;
    lv2:index 12 ;
    lv2:symbol "notify" ;
    lv2:name "Notify" ;
    rsz:minimumSize 73000;
  ],
  
  [
    a atom:AtomPort ,
            lv2:InputPort ;
    atom:bufferType atom:Sequence ;
    lv2:designation lv2:control ;
    lv2:index 13 ;
    lv2:symbol "control" ;
    lv2:name "Control"
  ].