Skip to content

CK26: ADFR extras¤


Retries and skips for ADFR

Retries: 0

Skips: 0

Results per-language for ADFR

overall german english
recall 0.778874 0.759763 0.797985
precison 0.417613 0.397879 0.437347
F1-score 0.507700 0.489171 0.526229
ndcg 0.788472 0.846091 0.730852
F1-score/ndcg 0.512887 0.499284 0.531892

Data collected per query:

question standard query standard result set returned query returned result set scores
ck26:1-en
Which department does Ms. Brant
belong to?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org> pv:memberOf ?result .
?result a pv:Department .
}
{
"http://ld.company.org/prod-instances/dept-73191": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?dept WHERE {
VALUES ?emp { pi:empl-Karen.Brant%40company.org }
?emp pv:memberOf ?dept .
} LIMIT 10
{
"http://ld.company.org/prod-instances/dept-73191": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:1-de
Zu welcher Abteilung gehört Frau
Brant?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org> pv:memberOf ?result .
?result a pv:Department .
}
{
"http://ld.company.org/prod-instances/dept-73191": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?dept (SAMPLE(COALESCE(?dLbl, ?dName, STR(?dept))) AS ?deptLabel) WHERE {
pi:empl-Karen.Brant%40company.org pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?dLbl }
OPTIONAL { ?dept pv:name ?dName }
}
GROUP BY ?dept
LIMIT 10
{
"http://ld.company.org/prod-instances/dept-73191": 1,
"Engineering": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:2-en
What's Baldwin Dirksen's phone
number?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org> pv:phone ?result .
}
{
"+49-6200-33069465": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?phone WHERE { pi:empl-Baldwin.Dirksen%40company.org pv:phone ?phone . }
{
"+49-6200-33069465": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:2-de
Wie lautet Baldwin Dirksens
Telefonnummer?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org> pv:phone ?result .
}
{
"+49-6200-33069465": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?phone WHERE { pi:empl-Baldwin.Dirksen%40company.org pv:phone ?phone } LIMIT 1
{
"+49-6200-33069465": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:3-en
Who is Heinrich Hoch's manager?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org> pv:hasManager ?result .
}
{
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?manager ?managerLabel ?managerEmail ?managerPhone WHERE {
BIND(pi:empl-Heinrich.Hoch%40company.org AS ?employee)
?employee pv:hasManager ?manager .
OPTIONAL { ?manager rdfs:label ?lbl0. }
OPTIONAL { ?manager pv:name ?name0. }
OPTIONAL { ?manager pv:email ?managerEmail. }
OPTIONAL { ?manager pv:phone ?managerPhone. }
BIND(COALESCE(?lbl0, ?name0, STR(?manager)) AS ?managerLabel)
}
LIMIT 10
{
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"Waldtraud Kuttner": 1,
"Waldtraud.Kuttner@company.org": 1,
"(08798) 5416209": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:3-de
Wer ist Heinrich Hochs Manager?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org> pv:hasManager ?result .
}
{
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?manager (SAMPLE(COALESCE(?mgrLabel, ?mgrName, STR(?manager))) AS ?managerLabel) WHERE {
pi:empl-Heinrich.Hoch%40company.org pv:hasManager ?manager .
OPTIONAL { ?manager rdfs:label ?mgrLabel }
OPTIONAL { ?manager pv:name ?mgrName }
} GROUP BY ?manager
{
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"Waldtraud Kuttner": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:4-en
Could you tell me Sabrina's email
address from the Marketing
department?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?department pv:name "Marketing" .
?person pv:memberOf ?department .
?person pv:email ?result .
?person pv:name ?name .
FILTER (CONTAINS(?name, "Sabrina"))
}
{
"Sabrina.Geiger@company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?empl ?label ?email WHERE {
?empl pv:memberOf pi:dept-85880 .
OPTIONAL { ?empl rdfs:label ?lbl0 }
OPTIONAL { ?empl pv:name ?name0 }
OPTIONAL { ?empl pv:email ?email }
BIND(COALESCE(?lbl0, ?name0, STR(?empl)) AS ?label)
FILTER(CONTAINS(LCASE(?label), "sabrina"))
} LIMIT 10
{
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"Sabrina Geiger": 1,
"Sabrina.Geiger@company.org": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:4-de
Könnten Sie mir bitte Sabrinas
E-Mail-Adresse aus der
Marketingabteilung geben?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?department pv:name "Marketing" .
?person pv:memberOf ?department .
?person pv:email ?result .
?person pv:name ?name .
FILTER (CONTAINS(?name, "Sabrina"))
}
{
"Sabrina.Geiger@company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?empl ?dept ?deptLabel ?email WHERE {
VALUES ?empl { pi:empl-Sabrina.Geiger%40company.org pi:empl-Sabrina.Bayer%40company.org }
OPTIONAL { ?empl pv:memberOf ?dept . OPTIONAL { ?dept rdfs:label ?deptLabel } }
OPTIONAL { ?empl pv:email ?email }
}
{
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/dept-66469": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"Production": 1,
"Marketing": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1
}
{
"set_P": 0.125,
"set_recall": 1.0,
"set_F": 0.2222222222222222
}
ck26:5-en
Who is knowledgeable about
transistors?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Transistor> .
}
{
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?person ?personLabel ?email ?phone WHERE {
?person pv:areaOfExpertise pi:prod-cat-Transistor .
OPTIONAL { ?person rdfs:label ?lbl0. }
OPTIONAL { ?person pv:name ?name0. }
BIND(COALESCE(?lbl0,?name0,STR(?person)) AS ?personLabel) .
OPTIONAL { ?person pv:email ?email. }
OPTIONAL { ?person pv:phone ?phone. }
}
ORDER BY ?personLabel
{
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"Anamchara Foerstner": 1,
"Erhard Fried": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Anamchara.Foerstner@company.org": 1,
"Erhard.Fried@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"+49-360-5655698": 1,
"+49-400-5290537": 1,
"(0938) 228702909": 1
}
{
"set_P": 0.26666666666666666,
"set_recall": 1.0,
"set_F": 0.4210526315789474
}
ck26:5-de
Wer kennt sich mit Transistoren
aus?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Transistor> .
}
{
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?empl ?emplLabel ?email ?phone WHERE {
?empl pv:areaOfExpertise pi:prod-cat-Transistor .
OPTIONAL { ?empl rdfs:label ?lbl0 }
OPTIONAL { ?empl pv:name ?name0 }
BIND(COALESCE(?lbl0, ?name0, STR(?empl)) AS ?emplLabel)
OPTIONAL { ?empl pv:email ?email }
OPTIONAL { ?empl pv:phone ?phone }
}
ORDER BY ?emplLabel
{
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"Anamchara Foerstner": 1,
"Erhard Fried": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Anamchara.Foerstner@company.org": 1,
"Erhard.Fried@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"+49-360-5655698": 1,
"+49-400-5290537": 1,
"(0938) 228702909": 1
}
{
"set_P": 0.26666666666666666,
"set_recall": 1.0,
"set_F": 0.4210526315789474
}
ck26:6-en
Who is our sensor specialist?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Sensor> .
}
{
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?empl ?label ?email ?phone WHERE {
?empl pv:areaOfExpertise pi:prod-cat-Sensor .
OPTIONAL { ?empl rdfs:label ?lbl }
OPTIONAL { ?empl pv:name ?name }
BIND(COALESCE(?lbl, ?name, STR(?empl)) AS ?label)
OPTIONAL { ?empl pv:email ?email }
OPTIONAL { ?empl pv:phone ?phone }
} ORDER BY ?label
{
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Gretel Roth": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Sylvester Brant": 1,
"Xochitl Aue": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Gretel.Roth@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Xochitl.Aue@company.org": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"+49-9456-94517553": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"(08514) 9139423": 1
}
{
"set_P": 0.25925925925925924,
"set_recall": 1.0,
"set_F": 0.4117647058823529
}
ck26:6-de
Wer ist unser Sensor-Spezialist?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Sensor> .
}
{
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?emp ?label ?email ?phone WHERE {
?emp pv:areaOfExpertise pi:prod-cat-Sensor .
OPTIONAL { ?emp rdfs:label ?lbl0 . }
OPTIONAL { ?emp pv:name ?name0 . }
OPTIONAL { ?emp pv:email ?email . }
OPTIONAL { ?emp pv:phone ?phone . }
BIND(COALESCE(?lbl0,?name0,STR(?emp)) AS ?label)
}
ORDER BY ?label
{
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Gretel Roth": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Sylvester Brant": 1,
"Xochitl Aue": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Gretel.Roth@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Xochitl.Aue@company.org": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"+49-9456-94517553": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"(08514) 9139423": 1
}
{
"set_P": 0.25925925925925924,
"set_recall": 1.0,
"set_F": 0.4117647058823529
}
ck26:7-en
Who heads the Data Services
department?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?person pv:memberOf <http://ld.company.org/prod-instances/dept-41622> .
?person pv:hasManager ?result .
}
{
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?mgr (SAMPLE(COALESCE(?ml, ?mname, STR(?mgr))) AS ?mgrLabel) (COUNT(DISTINCT ?emp) AS ?memberCount) WHERE {
?emp pv:memberOf pi:dept-41622 .
?emp pv:hasManager ?mgr .
OPTIONAL { ?mgr rdfs:label ?ml }
OPTIONAL { ?mgr pv:name ?mname }
}
GROUP BY ?mgr
ORDER BY DESC(?memberCount)
LIMIT 1
{
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"Elena Herzog": 1,
"9": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:7-de
Wer leitet die Abteilung für
Datenmanagement?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?person pv:memberOf <http://ld.company.org/prod-instances/dept-41622> .
?person pv:hasManager ?result .
}
{
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?mgr (SAMPLE(COALESCE(rdfs:label, pv:name, STR(?mgr))) AS ?mgrLabel) (COUNT(DISTINCT ?e) AS ?numReports) WHERE {
?e pv:memberOf pi:dept-41622 .
?e pv:hasManager ?mgr .
} GROUP BY ?mgr
ORDER BY DESC(?numReports)
LIMIT 1
{
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"9": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:8-en
Which department handles the Sensor
Switch M558-2275045?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:responsibleFor <http://ld.company.org/prod-instances/hw-M558-2275045> .
}
{
"http://ld.company.org/prod-instances/dept-41622": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?dept ?deptLabel WHERE {
BIND(pi:hw-M558-2275045 AS ?product)
{
?product pv:hasProductManager ?mgr .
?mgr pv:memberOf ?dept .
}
UNION
{
?product pv:hasDepartment ?dept .
}
UNION
{
?product pv:handledBy ?dept .
}
OPTIONAL { ?dept rdfs:label ?deptLabel. }
} LIMIT 10
{
"http://ld.company.org/prod-instances/dept-41622": 1,
"Data Services": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:8-de
Welche Abteilung ist für den
Sensor-Schalter M558-2275045
zuständig?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:responsibleFor <http://ld.company.org/prod-instances/hw-M558-2275045> .
}
{
"http://ld.company.org/prod-instances/dept-41622": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?dept ?deptLabel WHERE {
BIND(pi:hw-M558-2275045 AS ?product)
OPTIONAL {
?product pv:hasProductManager ?mgr .
?mgr pv:memberOf ?dept .
}
OPTIONAL {
?product pv:memberOf ?dept .
}
OPTIONAL { ?dept rdfs:label ?deptLabel }
}
{
"http://ld.company.org/prod-instances/dept-41622": 1,
"Data Services": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:9-en
How many different Sensor Switches
do we offer?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT (COUNT(?resultR) as ?result)
WHERE
{
?resultR pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Sensor> .
?resultR pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Switch> .
}
{
"3": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT (COUNT(DISTINCT ?prod) AS ?count) WHERE {
?prod rdf:type ?type .
FILTER(?type IN (pv:Product, pv:Hardware)) .
OPTIONAL { ?prod rdfs:label ?lbl }
OPTIONAL { ?prod pv:name ?name }
BIND(LCASE(COALESCE(STR(?lbl), STR(?name), "")) AS ?txt)
FILTER(CONTAINS(?txt, "sensor") && CONTAINS(?txt, "switch"))
}
{
"3": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:9-de
Wie viele verschiedene Sensor-
Schalter bieten wir an?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT (COUNT(?resultR) as ?result)
WHERE
{
?resultR pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Sensor> .
?resultR pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Switch> .
}
{
"3": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT (COUNT(DISTINCT ?product) AS ?count) WHERE {
?product (rdfs:label|pv:name) ?lbl .
FILTER(regex(?lbl, "sensor[- ]?switch|sensor[- ]?schalter", "i"))
}
{
"3": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:10-en
Who is the network expert in the
marketing department?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?employee pv:memberOf <http://ld.company.org/prod-instances/dept-85880> .
?employee pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Network> .
?employee pv:name ?result .
}
{
"Kevin Feigenbaum": 1,
"Lambert Faust": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?empl ?emplLabel ?email ?phone ?expert ?expertLabel WHERE {
?empl pv:memberOf pi:dept-85880 .
?empl pv:areaOfExpertise ?expert .
OPTIONAL { ?empl pv:email ?email }
OPTIONAL { ?empl pv:phone ?phone }
OPTIONAL { ?empl rdfs:label ?empl_lbl0 }
OPTIONAL { ?empl pv:name ?empl_name0 }
BIND(COALESCE(?empl_lbl0, ?empl_name0, STR(?empl)) AS ?emplLabel)
OPTIONAL { ?expert rdfs:label ?expert_lbl0 }
OPTIONAL { ?expert pv:name ?expert_name0 }
BIND(COALESCE(?expert_lbl0, ?expert_name0, STR(?expert)) AS ?expertLabel)
FILTER(CONTAINS(LCASE(?expertLabel), "network"))
}
{
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"Kevin Feigenbaum": 1,
"Lambert Faust": 1,
"Kevin.Feigenbaum@company.org": 1,
"Lambert.Faust@company.org": 1,
"(0673) 525930320": 1,
"http://ld.company.org/prod-instances/prod-cat-Network": 1,
"Network": 1
}
{
"set_P": 0.2222222222222222,
"set_recall": 1.0,
"set_F": 0.3636363636363636
}
ck26:10-de
Wer ist der Netzwerkspezialist in
der Marketingabteilung?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?employee pv:memberOf <http://ld.company.org/prod-instances/dept-85880> .
?employee pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Network> .
?employee pv:name ?result .
}
{
"Kevin Feigenbaum": 1,
"Lambert Faust": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?empl (SAMPLE(COALESCE(?lbl0, ?pname0, STR(?empl))) AS ?label) (SAMPLE(?email0) AS ?email) (SAMPLE(?phone0) AS ?phone) WHERE {
?empl pv:memberOf pi:dept-85880 .
?empl pv:areaOfExpertise pi:prod-cat-Network .
OPTIONAL { ?empl rdfs:label ?lbl0. }
OPTIONAL { ?empl pv:name ?pname0. }
OPTIONAL { ?empl pv:email ?email0. }
OPTIONAL { ?empl pv:phone ?phone0. }
} GROUP BY ?empl
{
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"Kevin Feigenbaum": 1,
"Lambert Faust": 1,
"Kevin.Feigenbaum@company.org": 1,
"Lambert.Faust@company.org": 1,
"(0673) 525930320": 1
}
{
"set_P": 0.2857142857142857,
"set_recall": 1.0,
"set_F": 0.4444444444444445
}
ck26:11-en
Which departments have transducer
experts?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?employee pv:memberOf ?result .
?employee pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Transducer> .
}
{
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-85880": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?dept (SAMPLE(COALESCE(?lbl0, ?name0, STR(?dept))) AS ?deptLabel) WHERE {
?empl pv:areaOfExpertise pi:prod-cat-Transducer ;
pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?lbl0 }
OPTIONAL { ?dept pv:name ?name0 }
} GROUP BY ?dept
ORDER BY ?deptLabel
{
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-22183": 1,
"Marketing": 1,
"Product Management": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:11-de
Welche Abteilungen haben Experten
für Sensoren/Wandler?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?employee pv:memberOf ?result .
?employee pv:areaOfExpertise <http://ld.company.org/prod-instances/prod-cat-Transducer> .
}
{
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-85880": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?dept (COALESCE(?lbl0, ?name0, STR(?dept)) AS ?deptLabel) WHERE {
?emp pv:areaOfExpertise ?expert .
VALUES ?expert { pi:prod-cat-Sensor pi:prod-cat-Transducer }
?emp pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?lbl0 }
OPTIONAL { ?dept pv:name ?name0 }
} ORDER BY ?deptLabel
{
"http://ld.company.org/prod-instances/dept-41622": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-84279": 1,
"http://ld.company.org/prod-instances/dept-22183": 1,
"Data Services": 1,
"Marketing": 1,
"Procurement": 1,
"Product Management": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:12-en
Which suppliers can deliver
compensators?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?hardware pv:hasSupplier ?result .
?hardware pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Compensator> .
}
{
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?supplier (SAMPLE(COALESCE(?lbl0, ?name0, STR(?supplier))) AS ?supplierLabel) WHERE {
?product pv:hasCategory pi:prod-cat-Compensator .
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier rdfs:label ?lbl0. }
OPTIONAL { ?supplier pv:name ?name0. }
}
GROUP BY ?supplier
ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"Adams-White (United States)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Aguilar, Matthews and Martinez (Tanzania, United Republic of)": 1,
"Anderson-Young (Uganda)": 1,
"Barnes LLC (Pakistan)": 1,
"Barry PLC (United States)": 1,
"Bennett, Best and Jacobson (India)": 1,
"Bolton, Sanchez and Rodgers (Turkey)": 1,
"Brown PLC (India)": 1,
"Bryan-James (Italy)": 1,
"Carter, Webb and Bush (Tanzania, United Republic of)": 1,
"Cervantes, Wagner and Jackson (Argentina)": 1,
"Collins-Hensley (Germany)": 1,
"Cooper, Walker and Perez (Canada)": 1,
"Daniels Group (Antigua and Barbuda)": 1,
"Davis-Wagner (Spain)": 1,
"Drake Ltd (Honduras)": 1,
"Evans, Park and James (China)": 1,
"Fernandez-Roberts (United States)": 1,
"Garcia Ltd (Malaysia)": 1,
"Gentry-Gross (Bolivia, Plurinational State of)": 1,
"Green-Crawford (Brazil)": 1,
"Gregory PLC (Mexico)": 1,
"Griffin, Smith and Smith (United States)": 1,
"Gross, Frey and Mcmahon (Philippines)": 1,
"Guerrero, Sutton and Lucas (United States)": 1,
"Harris, Graves and Gonzalez (Turkey)": 1,
"Harris, Wright and Morales (Japan)": 1,
"Harris-Cunningham (France)": 1,
"Harris-Waller (Venezuela, Bolivarian Republic of)": 1,
"Harrison PLC (Argentina)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Howell-Meyer (Korea, Republic of)": 1,
"Huang, Guerrero and Hurst (Japan)": 1,
"Hutchinson-Lane (India)": 1,
"Ibarra and Sons (United States)": 1,
"Jackson, Chan and Rivera (United Kingdom)": 1,
"James-Wright (France)": 1,
"Jones PLC (Philippines)": 1,
"Jones-Martinez (Palestine, State of)": 1,
"Jordan, James and Bradley (France)": 1,
"Kerr LLC (Spain)": 1,
"Kidd, Mcdaniel and Russell (Finland)": 1,
"King-Johnson (Iran, Islamic Republic of)": 1,
"Lee and Sons (Brazil)": 1,
"Little, Dunlap and Nelson (Kiribati)": 1,
"Lynch-Ramirez (Thailand)": 1,
"Maldonado Inc (Ukraine)": 1,
"Martin and Sons (Spain)": 1,
"Martinez LLC (United States)": 1,
"Martinez and Sons (Mexico)": 1,
"May, Ruiz and Butler (Turkey)": 1,
"Mclaughlin-Hawkins (Philippines)": 1,
"Meyer, Floyd and Jackson (Germany)": 1,
"Miller, Green and Scott (Hungary)": 1,
"Moran, Martin and Freeman (United States)": 1,
"Morgan-Leonard (Romania)": 1,
"Neal LLC (United Kingdom)": 1,
"Newton Inc (Germany)": 1,
"Nichols Inc (Peru)": 1,
"Odonnell-Williams (Angola)": 1,
"Parker-Lawrence (Pakistan)": 1,
"Peck, Tucker and Patterson (Colombia)": 1,
"Perkins, Garza and Cochran (Indonesia)": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Petty, Hamilton and Solomon (Germany)": 1,
"Powell-Nguyen (United Kingdom)": 1,
"Reese-Williams (Italy)": 1,
"Rich, Powell and Ward (Brazil)": 1,
"Rivera Group (Philippines)": 1,
"Rodriguez, Estrada and Kim (Kazakhstan)": 1,
"Rodriguez-Warren (Russian Federation)": 1,
"Ross-Brooks (Japan)": 1,
"Rowland, Todd and Whitaker (Spain)": 1,
"Santiago-Gardner (Bangladesh)": 1,
"Schroeder and Sons (South Africa)": 1,
"Shaffer PLC (China)": 1,
"Smith and Sons (Central African Republic)": 1,
"Smith-Cobb (United States)": 1,
"Smith-Williamson (Estonia)": 1,
"Snyder, Robinson and Brown (United Kingdom)": 1,
"Thomas-Jenkins (Bangladesh)": 1,
"Thompson Ltd (China)": 1,
"Washington-Villanueva (China)": 1,
"Watkins Group (Russian Federation)": 1,
"White, Lewis and Evans (Poland)": 1,
"White, Wong and Trevino (Germany)": 1,
"White-Nash (Pakistan)": 1,
"Williamson-Young (India)": 1,
"Wilson, Kim and Dorsey (Brazil)": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:12-de
Welche Lieferanten können
Kompensatoren liefern?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?hardware pv:hasSupplier ?result .
?hardware pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Compensator> .
}
{
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier ?supplierLabel WHERE {
?product pv:hasCategory pi:prod-cat-Compensator .
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier rdfs:label ?lbl }
OPTIONAL { ?supplier pv:name ?name }
BIND(COALESCE(?lbl, ?name, STR(?supplier)) AS ?supplierLabel)
}
ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"Adams-White (United States)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Aguilar, Matthews and Martinez (Tanzania, United Republic of)": 1,
"Anderson-Young (Uganda)": 1,
"Barnes LLC (Pakistan)": 1,
"Barry PLC (United States)": 1,
"Bennett, Best and Jacobson (India)": 1,
"Bolton, Sanchez and Rodgers (Turkey)": 1,
"Brown PLC (India)": 1,
"Bryan-James (Italy)": 1,
"Carter, Webb and Bush (Tanzania, United Republic of)": 1,
"Cervantes, Wagner and Jackson (Argentina)": 1,
"Collins-Hensley (Germany)": 1,
"Cooper, Walker and Perez (Canada)": 1,
"Daniels Group (Antigua and Barbuda)": 1,
"Davis-Wagner (Spain)": 1,
"Drake Ltd (Honduras)": 1,
"Evans, Park and James (China)": 1,
"Fernandez-Roberts (United States)": 1,
"Garcia Ltd (Malaysia)": 1,
"Gentry-Gross (Bolivia, Plurinational State of)": 1,
"Green-Crawford (Brazil)": 1,
"Gregory PLC (Mexico)": 1,
"Griffin, Smith and Smith (United States)": 1,
"Gross, Frey and Mcmahon (Philippines)": 1,
"Guerrero, Sutton and Lucas (United States)": 1,
"Harris, Graves and Gonzalez (Turkey)": 1,
"Harris, Wright and Morales (Japan)": 1,
"Harris-Cunningham (France)": 1,
"Harris-Waller (Venezuela, Bolivarian Republic of)": 1,
"Harrison PLC (Argentina)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Howell-Meyer (Korea, Republic of)": 1,
"Huang, Guerrero and Hurst (Japan)": 1,
"Hutchinson-Lane (India)": 1,
"Ibarra and Sons (United States)": 1,
"Jackson, Chan and Rivera (United Kingdom)": 1,
"James-Wright (France)": 1,
"Jones PLC (Philippines)": 1,
"Jones-Martinez (Palestine, State of)": 1,
"Jordan, James and Bradley (France)": 1,
"Kerr LLC (Spain)": 1,
"Kidd, Mcdaniel and Russell (Finland)": 1,
"King-Johnson (Iran, Islamic Republic of)": 1,
"Lee and Sons (Brazil)": 1,
"Little, Dunlap and Nelson (Kiribati)": 1,
"Lynch-Ramirez (Thailand)": 1,
"Maldonado Inc (Ukraine)": 1,
"Martin and Sons (Spain)": 1,
"Martinez LLC (United States)": 1,
"Martinez and Sons (Mexico)": 1,
"May, Ruiz and Butler (Turkey)": 1,
"Mclaughlin-Hawkins (Philippines)": 1,
"Meyer, Floyd and Jackson (Germany)": 1,
"Miller, Green and Scott (Hungary)": 1,
"Moran, Martin and Freeman (United States)": 1,
"Morgan-Leonard (Romania)": 1,
"Neal LLC (United Kingdom)": 1,
"Newton Inc (Germany)": 1,
"Nichols Inc (Peru)": 1,
"Odonnell-Williams (Angola)": 1,
"Parker-Lawrence (Pakistan)": 1,
"Peck, Tucker and Patterson (Colombia)": 1,
"Perkins, Garza and Cochran (Indonesia)": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Petty, Hamilton and Solomon (Germany)": 1,
"Powell-Nguyen (United Kingdom)": 1,
"Reese-Williams (Italy)": 1,
"Rich, Powell and Ward (Brazil)": 1,
"Rivera Group (Philippines)": 1,
"Rodriguez, Estrada and Kim (Kazakhstan)": 1,
"Rodriguez-Warren (Russian Federation)": 1,
"Ross-Brooks (Japan)": 1,
"Rowland, Todd and Whitaker (Spain)": 1,
"Santiago-Gardner (Bangladesh)": 1,
"Schroeder and Sons (South Africa)": 1,
"Shaffer PLC (China)": 1,
"Smith and Sons (Central African Republic)": 1,
"Smith-Cobb (United States)": 1,
"Smith-Williamson (Estonia)": 1,
"Snyder, Robinson and Brown (United Kingdom)": 1,
"Thomas-Jenkins (Bangladesh)": 1,
"Thompson Ltd (China)": 1,
"Washington-Villanueva (China)": 1,
"Watkins Group (Russian Federation)": 1,
"White, Lewis and Evans (Poland)": 1,
"White, Wong and Trevino (Germany)": 1,
"White-Nash (Pakistan)": 1,
"Williamson-Young (India)": 1,
"Wilson, Kim and Dorsey (Brazil)": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:13-en
How many of our suppliers are based
in France?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) as ?result)
WHERE
{
?product pv:hasSupplier ?supplier .
?supplier pv:addressCountry "France" .
}
{
"8": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) AS ?count) WHERE {
?supplier pv:country <http://dbpedia.org/resource/France> .
}
{
"9": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:13-de
Wie viele unserer Lieferanten haben
ihren Sitz in Frankreich?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) as ?result)
WHERE
{
?product pv:hasSupplier ?supplier .
?supplier pv:addressCountry "France" .
}
{
"8": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) AS ?count) WHERE {
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/France> .
}
{
"8": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:14-en
Which supplier in France provides
compensators?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasSupplier ?result .
?product pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Compensator> .
?result pv:addressCountry "France" .
}
{
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier ?supplierLabel ?country ?countryLabel WHERE {
?product pv:hasCategory pi:prod-cat-Compensator .
?product pv:hasSupplier ?supplier .

OPTIONAL { ?supplier rdfs:label ?supplierLbl0 }
OPTIONAL { ?supplier pv:name ?supplierName0 }
BIND(COALESCE(?supplierLbl0, ?supplierName0, STR(?supplier)) AS ?supplierLabel)

?supplier pv:country ?country .
OPTIONAL { ?country rdfs:label ?countryLbl0 }
OPTIONAL { ?country pv:name ?countryName0 }
BIND(COALESCE(?countryLbl0, ?countryName0, STR(?country)) AS ?countryLabel)

FILTER(
CONTAINS(LCASE(?countryLabel), "france") ||
CONTAINS(LCASE(STR(?country)), "france")
)
} ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"Harris-Cunningham (France)": 1,
"James-Wright (France)": 1,
"Jordan, James and Bradley (France)": 1,
"http://dbpedia.org/resource/France": 1
}
{
"set_P": 0.42857142857142855,
"set_recall": 1.0,
"set_F": 0.6
}
ck26:14-de
Welcher Lieferant in Frankreich
bietet Kompensatoren an?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasSupplier ?result .
?product pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Compensator> .
?result pv:addressCountry "France" .
}
{
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?supplier))) AS ?supplierLabel) WHERE { ?product pv:hasCategory pi:prod-cat-Compensator . ?product pv:hasSupplier ?supplier . ?supplier pv:country <http://dbpedia.org/resource/France> . OPTIONAL { ?supplier rdfs:label ?l } OPTIONAL { ?supplier pv:name ?n } } GROUP BY ?supplier ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1
}
{
"set_P": 0.75,
"set_recall": 1.0,
"set_F": 0.8571428571428571
}
ck26:15-en
Which encoder is the most
affordable from a French or German
supplier?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Encoder> .
?result pv:price ?priceR .
?priceR pv:amount ?price .
?result pv:hasSupplier ?supplier .
?supplier pv:addressCountry ?country .
FILTER ( (?country = "France") || (?country = "Germany") )
}
ORDER BY ASC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-P453-8155326": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?productLabel ?amount ?currency ?supplier ?supplierLabel ?country WHERE {
{
SELECT (MIN(?amt) AS ?minAmount) WHERE {
?p pv:hasCategory pi:prod-cat-Encoder ;
pv:hasSupplier ?s ;
pv:price ?ps .
?s pv:country ?country .
FILTER(?country IN (<http://dbpedia.org/resource/France>, <http://dbpedia.org/resource/Germany>)) .
?ps pv:amount ?amt ;
pv:currency "EUR" .
}
}
?product pv:hasCategory pi:prod-cat-Encoder ;
pv:hasSupplier ?supplier ;
pv:price ?priceSpec .
?supplier pv:country ?country .
?priceSpec pv:amount ?amount ; pv:currency ?currency .
FILTER(?country IN (<http://dbpedia.org/resource/France>, <http://dbpedia.org/resource/Germany>)) .
FILTER(?amount = ?minAmount) .
OPTIONAL { ?product rdfs:label ?plbl }
OPTIONAL { ?supplier rdfs:label ?slbl }
BIND(COALESCE(?plbl, ?product) AS ?productLabel)
BIND(COALESCE(?slbl, ?supplier) AS ?supplierLabel)
}
ORDER BY ?supplierLabel ?productLabel
{
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"P453-8155326 - Encoder Breaker": 1,
"0.39": 1,
"EUR": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"Fletcher, Pierce and Navarro (France)": 1,
"http://dbpedia.org/resource/France": 1
}
{
"set_P": 0.14285714285714285,
"set_recall": 1.0,
"set_F": 0.25
}
ck26:15-de
Welcher Encoder ist von einem
französischen oder deutschen
Anbieter am günstigsten?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Encoder> .
?result pv:price ?priceR .
?priceR pv:amount ?price .
?result pv:hasSupplier ?supplier .
?supplier pv:addressCountry ?country .
FILTER ( (?country = "France") || (?country = "Germany") )
}
ORDER BY ASC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-P453-8155326": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?productLabel ?amount ?supplier ?supplierLabel ?countryLabel WHERE {
?product pv:hasCategory pi:prod-cat-Encoder .
?product pv:hasSupplier ?supplier .
?product pv:price ?priceNode .
?priceNode pv:amount ?amount .
?supplier pv:country ?country .
FILTER(?country IN (<http://dbpedia.org/resource/France>, <http://dbpedia.org/resource/Germany>))

{
SELECT (MIN(?amt) AS ?minAmount) WHERE {
?p pv:hasCategory pi:prod-cat-Encoder .
?p pv:hasSupplier ?s .
?p pv:price ?pr .
?pr pv:amount ?amt .
?s pv:country ?c .
FILTER(?c IN (<http://dbpedia.org/resource/France>, <http://dbpedia.org/resource/Germany>))
}
}
?priceNode pv:amount ?amount .
FILTER(?amount = ?minAmount)

OPTIONAL { ?product rdfs:label ?productLabel0 }
OPTIONAL { ?product pv:name ?productName0 }
OPTIONAL { ?supplier rdfs:label ?supplierLabel0 }
OPTIONAL { ?supplier pv:name ?supplierName0 }
OPTIONAL { ?country rdfs:label ?countryLabel0 }
BIND(COALESCE(?productLabel0, ?productName0, STR(?product)) AS ?productLabel)
BIND(COALESCE(?supplierLabel0, ?supplierName0, STR(?supplier)) AS ?supplierLabel)
BIND(COALESCE(?countryLabel0, STR(?country)) AS ?countryLabel)
}
LIMIT 50
{
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"P453-8155326 - Encoder Breaker": 1,
"0.39": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"Fletcher, Pierce and Navarro (France)": 1,
"http://dbpedia.org/resource/France": 1
}
{
"set_P": 0.16666666666666666,
"set_recall": 1.0,
"set_F": 0.2857142857142857
}
ck26:16-en
Are there any suppliers we have in
Toulouse?
PREFIX pv: <http://ld.company.org/prod-vocab/>
ASK
WHERE
{
?product pv:hasSupplier ?supplier .
?supplier pv:addressLocality "Toulouse" .
}
{
"true": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
ASK WHERE { ?supplier pv:addressLocality ?loc . FILTER(CONTAINS(LCASE(STR(?loc)), "toulouse")) }
{
"true": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:16-de
Haben wir Lieferanten in Toulouse?
PREFIX pv: <http://ld.company.org/prod-vocab/>
ASK
WHERE
{
?product pv:hasSupplier ?supplier .
?supplier pv:addressLocality "Toulouse" .
}
{
"true": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?supplier))) AS ?supplierLabel) (SAMPLE(?locality) AS ?localitySample) WHERE {
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier pv:addressLocality ?locality. }
OPTIONAL { ?supplier pv:addressText ?addrText. }
FILTER(
(BOUND(?locality) && CONTAINS(LCASE(STR(?locality)), "toulouse")) ||
(BOUND(?addrText) && CONTAINS(LCASE(STR(?addrText)), "toulouse"))
)
}
GROUP BY ?supplier
LIMIT 100
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"Toulouse": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:17-en
Who are our suppliers in Toulouse?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasSupplier ?result .
?result pv:addressLocality "Toulouse" .
}
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier (COALESCE(?lbl0, ?name0, STR(?supplier)) AS ?supplierLabel) WHERE {
?supplier pv:addressLocality ?locality .
FILTER(CONTAINS(LCASE(STR(?locality)), "toulouse"))
OPTIONAL { ?supplier rdfs:label ?lbl0 }
OPTIONAL { ?supplier pv:name ?name0 }
} ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"Harris-Cunningham (France)": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:17-de
Wer sind unsere Lieferanten in
Toulouse?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasSupplier ?result .
?result pv:addressLocality "Toulouse" .
}
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier (SAMPLE(COALESCE(?lbl0,?name0,STR(?supplier))) AS ?supplierLabel) WHERE {
?supplier ?p ?o .
OPTIONAL { ?supplier rdfs:label ?lbl0 }
OPTIONAL { ?supplier pv:name ?name0 }
OPTIONAL { ?supplier pv:addressLocality ?locality }
OPTIONAL { ?supplier pv:addressText ?addrText }
BIND(COALESCE(STR(?locality), STR(?addrText), "") AS ?locStr)
FILTER(CONTAINS(LCASE(?locStr), "toulouse"))
}
GROUP BY ?supplier
ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"Harris-Cunningham (France)": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:18-en
Which oscillator do we offer at the
lowest price?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Oscillator> .
?result pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY ASC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-F388-7030185": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?minPrice ?label WHERE {
{
SELECT (MIN(?price) AS ?minPrice) WHERE {
?p0 pv:hasCategory pi:prod-cat-Oscillator .
?p0 pv:price ?price .
}
}
?product pv:hasCategory pi:prod-cat-Oscillator ;
pv:price ?minPrice .
OPTIONAL { ?product rdfs:label ?lbl0 }
OPTIONAL { ?product pv:name ?name0 }
BIND(COALESCE(?lbl0, ?name0, STR(?product)) AS ?label)
}
{
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/price-hw-A391-9508821-EUR": 1,
"A391-9508821 - Oscillator Compensator": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:18-de
Welchen Oszillator bieten wir zum
niedrigsten Preis an?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Oscillator> .
?result pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY ASC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-F388-7030185": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?productLabel ?priceNode ?amount ?currency WHERE {
{
SELECT (MIN(?amt) AS ?minAmount) WHERE {
?prod pv:hasCategory pi:prod-cat-Oscillator ;
pv:price ?pr .
?pr pv:amount ?amt .
}
}
?product pv:hasCategory pi:prod-cat-Oscillator ;
pv:price ?priceNode .
?priceNode pv:amount ?amount .
OPTIONAL { ?priceNode pv:currency ?currency. }
FILTER(?amount = ?minAmount)
OPTIONAL { ?product rdfs:label ?lbl0. }
OPTIONAL { ?product pv:name ?name0. }
BIND(COALESCE(?lbl0, ?name0, STR(?product)) AS ?productLabel)
}
ORDER BY ?product
{
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"F388-7030185 - Oscillator Transistor Transducer": 1,
"http://ld.company.org/prod-instances/price-hw-F388-7030185-EUR": 1,
"0.1": 1,
"EUR": 1
}
{
"set_P": 0.2,
"set_recall": 1.0,
"set_F": 0.33333333333333337
}
ck26:19-en
Which of our services is the most
expensive?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result a pv:Service .
?result pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY DESC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/srv-D215-3449390": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?service (COALESCE(rdfs:label, pv:name, STR(?service)) AS ?label) ?price ?amount ?currency WHERE {
?service rdf:type pv:Service .
?service pv:price ?price .
?price pv:amount ?amount .
OPTIONAL { ?price pv:currency ?currency }
} ORDER BY DESC(xsd:decimal(?amount)) LIMIT 1
{
"http://ld.company.org/prod-instances/srv-D215-3449390": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"http://ld.company.org/prod-instances/price-srv-D215-3449390-EUR": 1,
"1709.54": 1,
"EUR": 1
}
{
"set_P": 0.2,
"set_recall": 1.0,
"set_F": 0.33333333333333337
}
ck26:19-de
Welche unserer Dienstleistungen ist
die teuerste?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result a pv:Service .
?result pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY DESC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/srv-D215-3449390": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?service (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?service))) AS ?label) ?amount ?currency WHERE {
?service rdf:type pv:Service .
?service pv:price ?priceObj .
?priceObj pv:amount ?amount .
OPTIONAL { ?priceObj pv:currency ?currency }
OPTIONAL { ?service rdfs:label ?lbl }
OPTIONAL { ?service pv:name ?name }
BIND(COALESCE(?lbl,?name,STR(?service)) AS ?label)
{
SELECT (MAX(xsd:decimal(?amt)) AS ?maxAmount) WHERE {
?s rdf:type pv:Service .
?s pv:price ?p .
?p pv:amount ?amt .
}
}
FILTER(xsd:decimal(?amount) = ?maxAmount)
} GROUP BY ?service ?amount ?currency
{}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:20-en
Who oversees the most expensive
service we offer?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?service a pv:Service .
?service pv:hasProductManager ?result .
?service pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY DESC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/empl-Ida.Halle%40company.org": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?mgr ?mgrLabel ?service ?serviceLabel ?amount ?currency WHERE {
{
SELECT (MAX(xsd:decimal(?amt)) AS ?maxAmount) WHERE {
?svc a pv:Service .
?svc pv:price ?pr .
?pr pv:amount ?amt .
}
}
?service a pv:Service ;
pv:price ?pr2 .
?pr2 pv:amount ?amount .
OPTIONAL { ?pr2 pv:currency ?currency . }
FILTER(xsd:decimal(?amount) = ?maxAmount)
OPTIONAL { ?service rdfs:label ?svcLbl . }
OPTIONAL { ?service pv:name ?svcName . }
BIND(COALESCE(?svcLbl, ?svcName, STR(?service)) AS ?serviceLabel)
OPTIONAL { ?service pv:hasProductManager ?mgr . }
OPTIONAL { ?mgr rdfs:label ?mgrLbl . }
OPTIONAL { ?mgr pv:name ?mgrName . }
BIND(COALESCE(?mgrLbl, ?mgrName, STR(?mgr)) AS ?mgrLabel)
}
{
"http://ld.company.org/prod-instances/empl-Ida.Halle%40company.org": 1,
"http://ld.company.org/prod-instances/srv-D215-3449390": 1,
"D215-3449390 - Manual Inspection": 1,
"1709.54": 1,
"EUR": 1
}
{
"set_P": 0.2,
"set_recall": 1.0,
"set_F": 0.33333333333333337
}
ck26:20-de
Wer ist für unsere teuerste
Dienstleistung verantwortlich?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?service a pv:Service .
?service pv:hasProductManager ?result .
?service pv:price ?priceR .
?priceR pv:amount ?price .
}
ORDER BY DESC(?price)
LIMIT 1
{
"http://ld.company.org/prod-instances/empl-Ida.Halle%40company.org": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?service ?serviceLabel ?mgr ?mgrLabel ?email ?phone ?amt WHERE {
{
SELECT ?service ?amt WHERE {
?service rdf:type pv:Service .
?service pv:price ?priceObj .
?priceObj pv:amount ?amt .
} ORDER BY DESC(?amt) LIMIT 1
}
OPTIONAL { ?service rdfs:label ?sLbl }
OPTIONAL { ?service pv:name ?sName }
BIND(COALESCE(?sLbl, ?sName, STR(?service)) AS ?serviceLabel)
OPTIONAL {
?service pv:hasProductManager ?mgr .
OPTIONAL { ?mgr rdfs:label ?mLbl }
OPTIONAL { ?mgr pv:email ?email }
OPTIONAL { ?mgr pv:phone ?phone }
BIND(COALESCE(?mLbl, STR(?mgr)) AS ?mgrLabel)
}
} LIMIT 1
{
"http://ld.company.org/prod-instances/srv-D215-3449390": 1,
"D215-3449390 - Manual Inspection": 1,
"http://ld.company.org/prod-instances/empl-Ida.Halle%40company.org": 1,
"1709.54": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:21-en
Which coil is the heaviest while
still fitting within a 15mm x 15mm
base area?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Coil> .
?result pv:weight_g ?weight_g .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
FILTER (?width_mm <= 15)
FILTER (?depth_mm <= 15)
}
ORDER BY DESC(?weight_g)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N558-1730215": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?label ?weight ?width ?depth WHERE {
?product pv:hasCategory pi:prod-cat-Coil .
?product pv:weight_g ?weight .
?product pv:width_mm ?width .
?product pv:depth_mm ?depth .
OPTIONAL { ?product rdfs:label ?lbl0 . }
OPTIONAL { ?product pv:name ?name0 . }
BIND(COALESCE(?lbl0, ?name0, STR(?product)) AS ?label)
FILTER(?width <= 15 && ?depth <= 15)
}
ORDER BY DESC(?weight)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"N558-1730215 - Flow Coil Dipole Strain": 1,
"14": 1,
"12": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:21-de
Welche Spule ist am schwersten,
während sie noch in einen
Grundbereich von 15 mm x 15 mm
passt?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Coil> .
?result pv:weight_g ?weight_g .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
FILTER (?width_mm <= 15)
FILTER (?depth_mm <= 15)
}
ORDER BY DESC(?weight_g)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N558-1730215": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product (SAMPLE(COALESCE(?lbl0,?name0,STR(?product))) AS ?label) ?weight ?width ?depth WHERE {
{
SELECT (MAX(?w) AS ?maxW) WHERE {
?p pv:hasCategory pi:prod-cat-Coil ;
pv:width_mm ?w1 ;
pv:depth_mm ?d1 ;
pv:weight_g ?w .
FILTER(?w1 <= 15 && ?d1 <= 15)
}
}
?product pv:hasCategory pi:prod-cat-Coil ;
pv:width_mm ?width ;
pv:depth_mm ?depth ;
pv:weight_g ?weight .
FILTER(?width <= 15 && ?depth <= 15 && ?weight = ?maxW)
OPTIONAL { ?product rdfs:label ?lbl0 }
OPTIONAL { ?product pv:name ?name0 }
}
GROUP BY ?product ?weight ?width ?depth
LIMIT 10
{
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"N558-1730215 - Flow Coil Dipole Strain": 1,
"14": 1,
"12": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:22-en
Which products can be used with the
U990 LCD Inductor?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/hw-U990-5234138> pv:compatibleProduct ?result .
}
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?product (SAMPLE(COALESCE(?lbl0, ?name0, STR(?product))) AS ?productLabel) WHERE {
{
?product pv:compatibleProduct pi:hw-U990-5234138 .
} UNION {
pi:hw-U990-5234138 pv:compatibleProduct ?product .
}
OPTIONAL { ?product rdfs:label ?lbl0 }
OPTIONAL { ?product pv:name ?name0 }
}
GROUP BY ?product
ORDER BY ?productLabel
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"S113-2439377 - LCD Potentiometer": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:22-de
Welche Produkte können mit dem U990
LCD-Induktor verwendet werden?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/hw-U990-5234138> pv:compatibleProduct ?result .
}
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?other (SAMPLE(COALESCE(?lbl0,?name0, STR(?other))) AS ?otherLabel) WHERE {
{ pi:hw-U990-5234138 pv:compatibleProduct ?other . }
UNION
{ ?other pv:compatibleProduct pi:hw-U990-5234138 . }
OPTIONAL { ?other rdfs:label ?lbl0. }
OPTIONAL { ?other pv:name ?name0. }
} GROUP BY ?other ORDER BY ?otherLabel
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"S113-2439377 - LCD Potentiometer": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:23-en
Which products from US suppliers
are compatible with the U990 LCD
inductor?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/hw-U990-5234138> pv:compatibleProduct ?result .
?result pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .
}
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?comp ?compLabel ?supplier ?supplierLabel WHERE {
pi:hw-U990-5234138 pv:compatibleProduct ?comp .
?comp pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .
OPTIONAL { ?comp rdfs:label ?comp_lbl. }
OPTIONAL { ?comp pv:name ?comp_name. }
OPTIONAL { ?supplier rdfs:label ?sup_lbl. }
OPTIONAL { ?supplier pv:name ?sup_name. }
BIND(COALESCE(?comp_lbl, ?comp_name, STR(?comp)) AS ?compLabel)
BIND(COALESCE(?sup_lbl, ?sup_name, STR(?supplier)) AS ?supplierLabel)
} ORDER BY ?compLabel
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"Fernandez-Roberts (United States)": 1,
"Collins and Sons (United States)": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:23-de
Welche Produkte von US-
amerikanischen Lieferanten sind mit
dem U990-LCD-Induktor kompatibel?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/hw-U990-5234138> pv:compatibleProduct ?result .
?result pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .
}
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?product ?productLabel ?supplier ?supplierLabel WHERE {
{
?product pv:compatibleProduct pi:hw-U990-5234138 .
} UNION {
pi:hw-U990-5234138 pv:compatibleProduct ?product .
}
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .

OPTIONAL { ?product rdfs:label ?prodLbl }
OPTIONAL { ?product pv:name ?prodName }
BIND(COALESCE(?prodLbl, ?prodName, STR(?product)) AS ?productLabel)

OPTIONAL { ?supplier rdfs:label ?supLbl }
OPTIONAL { ?supplier pv:name ?supName }
BIND(COALESCE(?supLbl, ?supName, STR(?supplier)) AS ?supplierLabel)
} ORDER BY ?productLabel
{
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"Fernandez-Roberts (United States)": 1,
"Collins and Sons (United States)": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:24-en
Which potentiometer has the
smallest volume?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Potentiometer> .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
?result pv:height_mm ?height_mm .
BIND(?width_mm * ?depth_mm * ?height_mm as ?volume)
}
ORDER BY ASC(?volume)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-I893-5009730": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?product ?label ?vol_mm3 WHERE {
?product pv:hasCategory pi:prod-cat-Potentiometer .
?product pv:height_mm ?h .
?product pv:width_mm ?w .
?product pv:depth_mm ?d .
FILTER(BOUND(?h) && BOUND(?w) && BOUND(?d))
BIND(xsd:double(?h) * xsd:double(?w) * xsd:double(?d) AS ?vol_mm3)
OPTIONAL { ?product rdfs:label ?lbl }
OPTIONAL { ?product pv:name ?name }
BIND(COALESCE(?lbl, ?name, STR(?product)) AS ?label)
}
ORDER BY ?vol_mm3
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-I893-5009730": 1,
"I893-5009730 - Polymer Potentiometer Meter": 1,
"3.456E3": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:24-de
Welches Potentiometer hat das
kleinste Volumen?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Potentiometer> .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
?result pv:height_mm ?height_mm .
BIND(?width_mm * ?depth_mm * ?height_mm as ?volume)
}
ORDER BY ASC(?volume)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-I893-5009730": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?prod (SAMPLE(COALESCE(?lbl0,?name0,STR(?prod))) AS ?label) ?depth ?height ?width ((?depth * ?height * ?width) AS ?volume)
WHERE {
?prod pv:hasCategory pi:prod-cat-Potentiometer .
OPTIONAL { ?prod rdfs:label ?lbl0. }
OPTIONAL { ?prod pv:name ?name0. }
OPTIONAL { ?prod pv:depth_mm ?depth. }
OPTIONAL { ?prod pv:height_mm ?height. }
OPTIONAL { ?prod pv:width_mm ?width. }
FILTER(BOUND(?depth) && BOUND(?height) && BOUND(?width))
}
GROUP BY ?prod ?depth ?height ?width
ORDER BY ASC(?volume)
LIMIT 1
{}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:25-en
Which coil has the greatest
density?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Coil> .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
?result pv:height_mm ?height_mm .
?result pv:weight_g ?weight_g .
BIND(?width_mm * ?depth_mm * ?height_mm / 1000000000 AS ?volume_m3)
BIND(?weight_g / 1000 AS ?weight_kg)
BIND(?weight_kg / ?volume_m3 AS ?density)
}
ORDER BY DESC(?density)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N832-1055352": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?coil ?label ?weight_g ?height_mm ?width_mm ?depth_mm ?density WHERE {
?coil pv:hasCategory pi:prod-cat-Coil .
?coil pv:weight_g ?weight_g .
?coil pv:height_mm ?height_mm .
?coil pv:width_mm ?width_mm .
?coil pv:depth_mm ?depth_mm .
OPTIONAL { ?coil rdfs:label ?lbl0 }
OPTIONAL { ?coil pv:name ?name0 }
FILTER((?height_mm * ?width_mm * ?depth_mm) > 0)
BIND(((?weight_g * 1000.0) / (?height_mm * ?width_mm * ?depth_mm)) AS ?density)
BIND(COALESCE(?lbl0, ?name0, STR(?coil)) AS ?label)
}
ORDER BY DESC(?density)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N832-1055352": 1,
"N832-1055352 - Coil Driver": 1,
"13": 1,
"25": 1,
"12": 1,
"3.3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1
}
{
"set_P": 0.16666666666666666,
"set_recall": 1.0,
"set_F": 0.2857142857142857
}
ck26:25-de
Welche Spule hat die größte Dichte?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Coil> .
?result pv:width_mm ?width_mm .
?result pv:depth_mm ?depth_mm .
?result pv:height_mm ?height_mm .
?result pv:weight_g ?weight_g .
BIND(?width_mm * ?depth_mm * ?height_mm / 1000000000 AS ?volume_m3)
BIND(?weight_g / 1000 AS ?weight_kg)
BIND(?weight_kg / ?volume_m3 AS ?density)
}
ORDER BY DESC(?density)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N832-1055352": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?coil (COALESCE(?lbl0,?name0,STR(?coil)) AS ?coilLabel) (?weight_g / (?height_mm * ?width_mm * ?depth_mm) AS ?density) WHERE {
?coil pv:hasCategory pi:prod-cat-Coil .
?coil pv:weight_g ?weight_g .
?coil pv:height_mm ?height_mm .
?coil pv:width_mm ?width_mm .
?coil pv:depth_mm ?depth_mm .
OPTIONAL { ?coil rdfs:label ?lbl0 }
OPTIONAL { ?coil pv:name ?name0 }
}
ORDER BY DESC(?density)
LIMIT 1
{
"http://ld.company.org/prod-instances/hw-N832-1055352": 1,
"N832-1055352 - Coil Driver": 1,
"0.0033333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:26-en
Which cities are our US LCD
suppliers located in?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-LCD> .
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .
?supplier pv:addressLocality ?result .
}
{
"Cypress": 1,
"Somerset": 1,
"North Bellmore": 1,
"Laramie": 1,
"Back Mountain": 1,
"South El Monte": 1,
"San Leandro": 1,
"Randolph": 1,
"Matthews": 1,
"Murrieta": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?city WHERE {
?product pv:hasCategory pi:prod-cat-LCD .
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier pv:addressLocality ?city . }
OPTIONAL { ?supplier pv:addressCountryCode ?cc . }
OPTIONAL { ?supplier pv:country ?country . }
FILTER( BOUND(?city) && ( (?cc = "US") || (BOUND(?country) && CONTAINS(LCASE(STR(?country)), "united_states")) ) )
}
ORDER BY ?city
{
"Back Mountain": 1,
"Cypress": 1,
"Laramie": 1,
"Matthews": 1,
"Murrieta": 1,
"North Bellmore": 1,
"Randolph": 1,
"San Leandro": 1,
"Somerset": 1,
"South El Monte": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:26-de
In welchen Städten befinden sich
unsere US-amerikanischen LCD-
Lieferanten?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?product pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-LCD> .
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/United_States> .
?supplier pv:addressLocality ?result .
}
{
"Cypress": 1,
"Somerset": 1,
"North Bellmore": 1,
"Laramie": 1,
"Back Mountain": 1,
"South El Monte": 1,
"San Leandro": 1,
"Randolph": 1,
"Matthews": 1,
"Murrieta": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?city WHERE {
?product pv:hasCategory pi:prod-cat-LCD .
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier pv:addressLocality ?city . }
OPTIONAL { ?supplier pv:addressCountry ?country . }
OPTIONAL { ?supplier pv:country ?countryRes . ?countryRes rdfs:label ?countryLabel . }
OPTIONAL { ?supplier rdfs:label ?supplierLabel0 . }
BIND(COALESCE(?supplierLabel0, STR(?supplier)) AS ?supplierLabel)
BIND(COALESCE(?country, ?countryLabel, "") AS ?countryText)
FILTER(
(CONTAINS(LCASE(STR(?countryText)), "united states")) ||
(CONTAINS(LCASE(STR(?supplierLabel)), "united states"))
)
FILTER(BOUND(?city))
} ORDER BY ?city
{
"Back Mountain": 1,
"Cypress": 1,
"Laramie": 1,
"Matthews": 1,
"Murrieta": 1,
"North Bellmore": 1,
"Randolph": 1,
"San Leandro": 1,
"Somerset": 1,
"South El Monte": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:27-en
Could you provide a staff phone
directory that includes the name,
email, and phone number of every
employee who doesn’t manage anyone,
sorted alphabetically by name?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?empl ?name ?email ?phone
WHERE {
?emplClass rdfs:subClassOf* pv:Employee .
?empl a ?emplClass ;
pv:name ?name ;
pv:email ?email .
OPTIONAL { ?empl pv:phone ?phone }
FILTER NOT EXISTS { [] pv:hasManager ?empl . }
}
ORDER BY ?name
{
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"Adolfina Hoch": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Arnelle Gerber": 1,
"Baldwin Dirksen": 1,
"Baldwin Guenther": 1,
"Berlin Schulz": 1,
"Bert Blumstein": 1,
"Corinna Ludwig": 1,
"Dieterich Blau": 1,
"Elisabeth Harman": 1,
"Emil Gotti": 1,
"Erhard Fried": 1,
"Franziska Acker": 1,
"Frauke Faerber": 1,
"Gretel Roth": 1,
"Heinrich Hoch": 1,
"Henny Foth": 1,
"Herr Burgh Eichel": 1,
"Herr Haan Bader": 1,
"Jarvis Jans": 1,
"Karch Moeller": 1,
"Karen Brant": 1,
"Kevin Feigenbaum": 1,
"Kristen Bauers": 1,
"Lambert Faust": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Marius Fux": 1,
"Miles Amsel": 1,
"Minnie Kuehn": 1,
"Nadia Schubert": 1,
"Ratt Beyer": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Sabrina Bayer": 1,
"Sabrina Geiger": 1,
"Siglind Brinkerhoff": 1,
"Sigmund Gros": 1,
"Sylvester Brant": 1,
"Ulrik Denzel": 1,
"Valda Everhart": 1,
"Wanja Hoffmann": 1,
"Wolfgang Martin": 1,
"Xochitl Aue": 1,
"Yanka Schreiber": 1,
"Adolfina.Hoch@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Emil.Gotti@company.org": 1,
"Erhard.Fried@company.org": 1,
"Franziska.Acker@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Gretel.Roth@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Henny.Foth@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Karch.Moeller@company.org": 1,
"Karen.Brant@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Lambert.Faust@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"Marius.Fux@company.org": 1,
"Miles.Amsel@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Ulrik.Denzel@company.org": 1,
"Valda.Everhart@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"+49-109-5719002": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"(03586) 7240528": 1,
"+49-6200-33069465": 1,
"+49-1743-24836762": 1,
"+49-2961-28181571": 1,
"+49-4278-55203507": 1,
"(0101) 854043584": 1,
"+49-400-5290537": 1,
"(01908) 6892372": 1,
"(01356) 2318280": 1,
"+49-9456-94517553": 1,
"+49-4446-26033173": 1,
"(0686) 108701699": 1,
"(05126) 3204437": 1,
"(0322) 517636576": 1,
"(00530) 5040048": 1,
"(0673) 525930320": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"+49-73-917-19816": 1,
"+49-528-8615329": 1,
"+49-551-5670308": 1,
"+49-1805-80560374": 1,
"+49-2117-55002657": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-82-534-91423": 1,
"+49-8295-77923757": 1,
"+49-4855-99936426": 1,
"(0916) 071777489": 1,
"(08514) 9139423": 1,
"+49-04-969-14255": 1,
"+49-1083-38194095": 1,
"+49-701-5973041": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?emp (COALESCE(rdfs:label, pv:name, STR(?emp)) AS ?name) ?email ?phone WHERE {
?emp rdf:type pv:Employee .
OPTIONAL { ?emp pv:email ?email }
OPTIONAL { ?emp pv:phone ?phone }
OPTIONAL { ?emp rdfs:label ?lbl }
OPTIONAL { ?emp pv:name ?pname }
FILTER NOT EXISTS { ?sub pv:hasManager ?emp }
}
ORDER BY LCASE(?name)
{
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"Ulrik.Denzel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Marius.Fux@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Gretel.Roth@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Henny.Foth@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Lili.Geier@company.org": 1,
"Karen.Brant@company.org": 1,
"Karch.Moeller@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Emil.Gotti@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Erhard.Fried@company.org": 1,
"Adolfina.Hoch@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Miles.Amsel@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"Lambert.Faust@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Valda.Everhart@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Liese.Adam@company.org": 1,
"Franziska.Acker@company.org": 1,
"Manfred.Foth@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Sigmund.Gros@company.org": 1,
"(05126) 3204437": 1,
"(03586) 7240528": 1,
"+49-2117-55002657": 1,
"+49-73-917-19816": 1,
"+49-701-5973041": 1,
"+49-9456-94517553": 1,
"+49-1743-24836762": 1,
"(0686) 108701699": 1,
"(0322) 517636576": 1,
"(0938) 228702909": 1,
"(00530) 5040048": 1,
"+49-8295-77923757": 1,
"(0101) 854043584": 1,
"+49-6200-33069465": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-1083-38194095": 1,
"+49-360-5655698": 1,
"+49-82-534-91423": 1,
"(01356) 2318280": 1,
"+49-4278-55203507": 1,
"+49-400-5290537": 1,
"+49-109-5719002": 1,
"+49-2961-28181571": 1,
"(08514) 9139423": 1,
"+49-528-8615329": 1,
"(0673) 525930320": 1,
"+49-8763-66514379": 1,
"+49-4855-99936426": 1,
"+49-04-969-14255": 1,
"+49-551-5670308": 1,
"+49-6092-34516857": 1,
"(01908) 6892372": 1,
"+49-1805-80560374": 1,
"+49-4446-26033173": 1,
"(0916) 071777489": 1
}
{
"set_P": 0.9923664122137404,
"set_recall": 0.7344632768361582,
"set_F": 0.8441558441558441,
"ndcg": 0.7695208985233042
}
ck26:27-de
Könnten Sie ein Telefonverzeichnis
für die Mitarbeiter erstellen, das
den Namen, die E-Mail-Adresse und
die Telefonnummer aller Mitarbeiter
enthält, die keine leitende
Position innehaben, und dieses
alphabetisch nach Namen sortieren?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?empl ?name ?email ?phone
WHERE {
?emplClass rdfs:subClassOf* pv:Employee .
?empl a ?emplClass ;
pv:name ?name ;
pv:email ?email .
OPTIONAL { ?empl pv:phone ?phone }
FILTER NOT EXISTS { [] pv:hasManager ?empl . }
}
ORDER BY ?name
{
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"Adolfina Hoch": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Arnelle Gerber": 1,
"Baldwin Dirksen": 1,
"Baldwin Guenther": 1,
"Berlin Schulz": 1,
"Bert Blumstein": 1,
"Corinna Ludwig": 1,
"Dieterich Blau": 1,
"Elisabeth Harman": 1,
"Emil Gotti": 1,
"Erhard Fried": 1,
"Franziska Acker": 1,
"Frauke Faerber": 1,
"Gretel Roth": 1,
"Heinrich Hoch": 1,
"Henny Foth": 1,
"Herr Burgh Eichel": 1,
"Herr Haan Bader": 1,
"Jarvis Jans": 1,
"Karch Moeller": 1,
"Karen Brant": 1,
"Kevin Feigenbaum": 1,
"Kristen Bauers": 1,
"Lambert Faust": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Marius Fux": 1,
"Miles Amsel": 1,
"Minnie Kuehn": 1,
"Nadia Schubert": 1,
"Ratt Beyer": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Sabrina Bayer": 1,
"Sabrina Geiger": 1,
"Siglind Brinkerhoff": 1,
"Sigmund Gros": 1,
"Sylvester Brant": 1,
"Ulrik Denzel": 1,
"Valda Everhart": 1,
"Wanja Hoffmann": 1,
"Wolfgang Martin": 1,
"Xochitl Aue": 1,
"Yanka Schreiber": 1,
"Adolfina.Hoch@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Emil.Gotti@company.org": 1,
"Erhard.Fried@company.org": 1,
"Franziska.Acker@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Gretel.Roth@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Henny.Foth@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Karch.Moeller@company.org": 1,
"Karen.Brant@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Lambert.Faust@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"Marius.Fux@company.org": 1,
"Miles.Amsel@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Ulrik.Denzel@company.org": 1,
"Valda.Everhart@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"+49-109-5719002": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"(03586) 7240528": 1,
"+49-6200-33069465": 1,
"+49-1743-24836762": 1,
"+49-2961-28181571": 1,
"+49-4278-55203507": 1,
"(0101) 854043584": 1,
"+49-400-5290537": 1,
"(01908) 6892372": 1,
"(01356) 2318280": 1,
"+49-9456-94517553": 1,
"+49-4446-26033173": 1,
"(0686) 108701699": 1,
"(05126) 3204437": 1,
"(0322) 517636576": 1,
"(00530) 5040048": 1,
"(0673) 525930320": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"+49-73-917-19816": 1,
"+49-528-8615329": 1,
"+49-551-5670308": 1,
"+49-1805-80560374": 1,
"+49-2117-55002657": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-82-534-91423": 1,
"+49-8295-77923757": 1,
"+49-4855-99936426": 1,
"(0916) 071777489": 1,
"(08514) 9139423": 1,
"+49-04-969-14255": 1,
"+49-1083-38194095": 1,
"+49-701-5973041": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?empl (SAMPLE(COALESCE(?lbl0, ?name0, STR(?empl))) AS ?displayName) (SAMPLE(?email0) AS ?email) (SAMPLE(?phone0) AS ?phone)
WHERE {
?empl rdf:type pv:Employee .
FILTER NOT EXISTS { ?empl rdf:type pv:Manager . }
OPTIONAL { ?empl rdfs:label ?lbl0 . }
OPTIONAL { ?empl pv:name ?name0 . }
OPTIONAL { ?empl pv:email ?email0 . }
OPTIONAL { ?empl pv:phone ?phone0 . }
}
GROUP BY ?empl
ORDER BY LCASE(?displayName)
{
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"Adolfina Hoch": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Arnelle Gerber": 1,
"Baldwin Dirksen": 1,
"Baldwin Guenther": 1,
"Berlin Schulz": 1,
"Bert Blumstein": 1,
"Corinna Ludwig": 1,
"Dieterich Blau": 1,
"Elisabeth Harman": 1,
"Emil Gotti": 1,
"Erhard Fried": 1,
"Franziska Acker": 1,
"Frauke Faerber": 1,
"Gretel Roth": 1,
"Heinrich Hoch": 1,
"Henny Foth": 1,
"Herr Burgh Eichel": 1,
"Herr Haan Bader": 1,
"Jarvis Jans": 1,
"Karch Moeller": 1,
"Karen Brant": 1,
"Kevin Feigenbaum": 1,
"Kristen Bauers": 1,
"Lambert Faust": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Marius Fux": 1,
"Miles Amsel": 1,
"Minnie Kuehn": 1,
"Nadia Schubert": 1,
"Ratt Beyer": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Sabrina Bayer": 1,
"Sabrina Geiger": 1,
"Siglind Brinkerhoff": 1,
"Sigmund Gros": 1,
"Sylvester Brant": 1,
"Ulrik Denzel": 1,
"Valda Everhart": 1,
"Wanja Hoffmann": 1,
"Wolfgang Martin": 1,
"Xochitl Aue": 1,
"Yanka Schreiber": 1,
"Adolfina.Hoch@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Emil.Gotti@company.org": 1,
"Erhard.Fried@company.org": 1,
"Franziska.Acker@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Gretel.Roth@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Henny.Foth@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Karch.Moeller@company.org": 1,
"Karen.Brant@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Lambert.Faust@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"Marius.Fux@company.org": 1,
"Miles.Amsel@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Ulrik.Denzel@company.org": 1,
"Valda.Everhart@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"+49-109-5719002": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"(03586) 7240528": 1,
"+49-6200-33069465": 1,
"+49-1743-24836762": 1,
"+49-2961-28181571": 1,
"+49-4278-55203507": 1,
"(0101) 854043584": 1,
"+49-400-5290537": 1,
"(01908) 6892372": 1,
"(01356) 2318280": 1,
"+49-9456-94517553": 1,
"+49-4446-26033173": 1,
"(0686) 108701699": 1,
"(05126) 3204437": 1,
"(0322) 517636576": 1,
"(00530) 5040048": 1,
"(0673) 525930320": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"+49-73-917-19816": 1,
"+49-528-8615329": 1,
"+49-551-5670308": 1,
"+49-1805-80560374": 1,
"+49-2117-55002657": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-82-534-91423": 1,
"+49-8295-77923757": 1,
"+49-4855-99936426": 1,
"(0916) 071777489": 1,
"(08514) 9139423": 1,
"+49-04-969-14255": 1,
"+49-1083-38194095": 1,
"+49-701-5973041": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0,
"ndcg": 1.0
}
ck26:28-en
Is there a service that can handle
a BOM containing parts sourced from
Russia?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

ASK
WHERE {
{ # all BOMs with parts from russia
SELECT ?bom
WHERE {
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?hw .
?hw pv:hasSupplier ?suppl .
?suppl pv:addressCountry ?country .
FILTER (CONTAINS(LCASE(?country), LCASE("Russia")))
}
}

# services eligible for parts associated with these BOMs?
?s a pv:Service .
?s pv:eligibleFor ?hw .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?hw .
}
{
"true": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
ASK {
?service a pv:Service .
?service pv:eligibleFor ?part .
?bom a pv:BillOfMaterial .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part pv:hasSupplier ?supplier .
?supplier pv:country ?country .
OPTIONAL { ?country rdfs:label ?countryLabel . }
OPTIONAL { ?country pv:name ?countryName . }
BIND(COALESCE(?countryLabel, ?countryName, STR(?country)) AS ?countryText)
FILTER(CONTAINS(LCASE(?countryText), "russia"))
}
{
"true": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:28-de
Gibt es einen Dienst, der eine
Stückliste (BOM) mit aus Russland
bezogenen Bauteilen verarbeiten
kann?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

ASK
WHERE {
{ # all BOMs with parts from russia
SELECT ?bom
WHERE {
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?hw .
?hw pv:hasSupplier ?suppl .
?suppl pv:addressCountry ?country .
FILTER (CONTAINS(LCASE(?country), LCASE("Russia")))
}
}

# services eligible for parts associated with these BOMs?
?s a pv:Service .
?s pv:eligibleFor ?hw .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?hw .
}
{
"true": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?srv ?srvLabel WHERE {
?bom rdf:type pv:BillOfMaterial .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?prod .
?prod pv:hasSupplier ?sup .
?sup pv:country <http://dbpedia.org/resource/Russia> .
?srv rdf:type pv:Service .
?srv pv:eligibleFor ?prod .
OPTIONAL { ?srv rdfs:label ?srvLabel0 }
OPTIONAL { ?srv pv:name ?srvName0 }
BIND(COALESCE(?srvLabel0, ?srvName0, STR(?srv)) AS ?srvLabel)
} ORDER BY ?srvLabel
{
"http://ld.company.org/prod-instances/srv-D215-3449390": 1,
"http://ld.company.org/prod-instances/srv-N558-1730215": 1,
"http://ld.company.org/prod-instances/srv-O662-4012383": 1,
"http://ld.company.org/prod-instances/srv-P516-8211068": 1,
"http://ld.company.org/prod-instances/srv-P925-8919074": 1,
"http://ld.company.org/prod-instances/srv-U360-2815908": 1,
"http://ld.company.org/prod-instances/srv-Y274-1029755": 1,
"http://ld.company.org/prod-instances/srv-Y704-9764759": 1,
"D215-3449390 - Manual Inspection": 1,
"N558-1730215 - Sensor Adjustment": 1,
"O662-4012383 - Involuntary Service": 1,
"P516-8211068 - IoT Data Marketing": 1,
"P925-8919074 - Predictive Maintenance": 1,
"U360-2815908 - Enterprise Navigation": 1,
"Y274-1029755 - Industry-Grade Hacking": 1,
"Y704-9764759 - Product Analysis": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:29-en
Which suppliers—including their
name, country, and price—provide
the hardware items that rank from
the 6th to the 10th most expensive?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?country ?price
WHERE {
?sup a pv:Supplier ;
pv:addressCountry ?country ;
pv:name ?name .
?hw a pv:Hardware ;
pv:price/pv:amount ?price ;
pv:price/pv:currency "EUR" ;
pv:hasSupplier ?sup .
}
ORDER BY DESC(?price)
LIMIT 5 OFFSET 10
{
"Page, Hernandez and Ayala": 1,
"Fox-Delacruz": 1,
"Garcia Ltd": 1,
"Green-Crawford": 1,
"Newton Inc": 1,
"United States": 1,
"Spain": 1,
"Malaysia": 1,
"Brazil": 1,
"Germany": 1,
"5.96": 1,
"5.95": 1,
"5.93": 1,
"5.92": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?hw ?supplier ?supplierName ?country ?amount ?currency WHERE {
?hw rdf:type pv:Hardware .
?hw pv:price ?priceRes .
?priceRes pv:amount ?amount .
OPTIONAL { ?priceRes pv:currency ?currency }
OPTIONAL { ?hw pv:hasSupplier ?supplier .
OPTIONAL { ?supplier rdfs:label ?supplierName0 }
OPTIONAL { ?supplier pv:name ?supplierName1 }
OPTIONAL { ?supplier pv:addressCountry ?addrCountry }
OPTIONAL { ?supplier pv:country ?countryRes .
OPTIONAL { ?countryRes rdfs:label ?countryResLabel }
}
BIND(COALESCE(?supplierName0, ?supplierName1, STR(?supplier)) AS ?supplierName)
BIND(COALESCE(?addrCountry, ?countryResLabel, STR(?countryRes)) AS ?country)
}
}
ORDER BY DESC(?amount)
OFFSET 5
LIMIT 5
{
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Cortez Group (United States)": 1,
"Romero-Nguyen (Spain)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Mcdaniel, Dean and Delgado (India)": 1,
"Ghana": 1,
"United States": 1,
"Spain": 1,
"Cambodia": 1,
"India": 1,
"5.99": 1,
"5.97": 1,
"5.96": 1,
"EUR": 1
}
{
"set_P": 0.125,
"set_recall": 0.21428571428571427,
"set_F": 0.15789473684210525
}
ck26:29-de
Welche Lieferanten - einschließlich
Name, Land und Preis - liefern die
Hardwareartikel, die vom 6. bis zum
10. teuersten Artikel gehören?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?country ?price
WHERE {
?sup a pv:Supplier ;
pv:addressCountry ?country ;
pv:name ?name .
?hw a pv:Hardware ;
pv:price/pv:amount ?price ;
pv:price/pv:currency "EUR" ;
pv:hasSupplier ?sup .
}
ORDER BY DESC(?price)
LIMIT 5 OFFSET 10
{
"Page, Hernandez and Ayala": 1,
"Fox-Delacruz": 1,
"Garcia Ltd": 1,
"Green-Crawford": 1,
"Newton Inc": 1,
"United States": 1,
"Spain": 1,
"Malaysia": 1,
"Brazil": 1,
"Germany": 1,
"5.96": 1,
"5.95": 1,
"5.93": 1,
"5.92": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?product ?supplier ?supplierLabel ?countryLabel ?amount ?currency WHERE {
{
SELECT ?product ?amount ?currency WHERE {
?product rdf:type pv:Hardware .
?product pv:price ?priceNode .
?priceNode pv:amount ?amount .
OPTIONAL { ?priceNode pv:currency ?currency. }
} ORDER BY DESC(?amount) OFFSET 5 LIMIT 5
}
OPTIONAL {
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier pv:name ?supName. }
OPTIONAL { ?supplier rdfs:label ?supLabel. }
BIND(COALESCE(?supName,?supLabel, STR(?supplier)) AS ?supplierLabel)
OPTIONAL {
?supplier pv:country ?country .
OPTIONAL { ?country rdfs:label ?countryLab. }
OPTIONAL { ?country pv:name ?countryName. }
BIND(COALESCE(?countryLab,?countryName, STR(?country)) AS ?countryLabel)
}
}
}
{
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"Hernandez, Mayer and Jones": 1,
"Romero-Nguyen": 1,
"Cortez Group": 1,
"Mcdaniel, Dean and Delgado": 1,
"Peterson, Norton and Preston": 1,
"http://dbpedia.org/resource/Cambodia": 1,
"http://dbpedia.org/resource/United_States": 1,
"http://dbpedia.org/resource/India": 1,
"http://dbpedia.org/resource/Ghana": 1,
"5.97": 1,
"5.96": 1,
"5.99": 1,
"EUR": 1
}
{
"set_P": 0.043478260869565216,
"set_recall": 0.07142857142857142,
"set_F": 0.05405405405405405
}
ck26:30-en
Which departments have more than
five employees, and could you list
each department's name together
with its employee count?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name (COUNT(?emp) AS ?numEmployees)
WHERE {
?dept a pv:Department ;
pv:name ?name .
?emp a pv:Employee ;
pv:memberOf ?dept .
}
GROUP BY ?depty ?name
HAVING (COUNT(?emp) > 5)
{
"Procurement": 1,
"Marketing": 1,
"Data Services": 1,
"Product Management": 1,
"8": 1,
"9": 1,
"12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?dept (SAMPLE(COALESCE(?lbl0, ?name0, STR(?dept))) AS ?deptLabel) (COUNT(DISTINCT ?emp) AS ?empCount)
WHERE {
?emp pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?lbl0. }
OPTIONAL { ?dept pv:name ?name0. }
}
GROUP BY ?dept
HAVING (COUNT(DISTINCT ?emp) > 5)
ORDER BY DESC(?empCount)
{
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-41622": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-84279": 1,
"http://ld.company.org/prod-instances/dept-73191": 1,
"Product Management": 1,
"Data Services": 1,
"Marketing": 1,
"Procurement": 1,
"Engineering": 1,
"13": 1,
"10": 1,
"9": 1,
"6": 1
}
{
"set_P": 0.35714285714285715,
"set_recall": 0.7142857142857143,
"set_F": 0.4761904761904762
}
ck26:30-de
Welche Abteilungen haben mehr als
fünf Mitarbeiter, und könnten Sie
den Namen jeder Abteilung zusammen
mit der Anzahl ihrer Mitarbeiter
auflisten?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name (COUNT(?emp) AS ?numEmployees)
WHERE {
?dept a pv:Department ;
pv:name ?name .
?emp a pv:Employee ;
pv:memberOf ?dept .
}
GROUP BY ?depty ?name
HAVING (COUNT(?emp) > 5)
{
"Procurement": 1,
"Marketing": 1,
"Data Services": 1,
"Product Management": 1,
"8": 1,
"9": 1,
"12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?dept (SAMPLE(COALESCE(?lbl0,?name0,STR(?dept))) AS ?deptLabel) (COUNT(DISTINCT ?empl) AS ?memberCount)
WHERE {
?empl pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?lbl0. }
OPTIONAL { ?dept pv:name ?name0. }
}
GROUP BY ?dept
HAVING (COUNT(DISTINCT ?empl) > 5)
ORDER BY DESC(?memberCount)
{
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-41622": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-84279": 1,
"http://ld.company.org/prod-instances/dept-73191": 1,
"Product Management": 1,
"Data Services": 1,
"Marketing": 1,
"Procurement": 1,
"Engineering": 1,
"13": 1,
"10": 1,
"9": 1,
"6": 1
}
{
"set_P": 0.35714285714285715,
"set_recall": 0.7142857142857143,
"set_F": 0.4761904761904762
}
ck26:31-en
For each product category, which
hardware item is the lightest and
which is the heaviest?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?cat (MIN(?w) AS ?minWeight) (MAX(?w) AS ?maxWeight)
WHERE {
?catItem a pv:ProductCategory ;
pv:name ?cat .
?hw a pv:Hardware ;
pv:hasCategory ?catItem ;
pv:weight_g ?w .
}
GROUP BY ?cat
{
"Breaker": 1,
"Switch": 1,
"Capacitor": 1,
"Crystal": 1,
"Compensator": 1,
"Driver": 1,
"Memristor": 1,
"LCD": 1,
"Encoder": 1,
"Multiplexer": 1,
"Sensor": 1,
"Coil": 1,
"Resonator": 1,
"Meter": 1,
"Warp": 1,
"Gauge": 1,
"Network": 1,
"Strain": 1,
"Oscillator": 1,
"Resistor": 1,
"Transistor": 1,
"Transformer": 1,
"Inductor": 1,
"Transducer": 1,
"Rheostat": 1,
"Potentiometer": 1,
"1": 1,
"20": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?cat (SAMPLE(COALESCE(?catLabel0, ?catName0, STR(?cat))) AS ?catLabel) (SAMPLE(?lightHw) AS ?lightestHw) (SAMPLE(COALESCE(?lightLabel0, ?lightName0, STR(?lightHw))) AS ?lightestLabel) ?minWeight (SAMPLE(?heavyHw) AS ?heaviestHw) (SAMPLE(COALESCE(?heavyLabel0, ?heavyName0, STR(?heavyHw))) AS ?heaviestLabel) ?maxWeight
WHERE {
{
SELECT ?cat (MIN(?w0) AS ?minWeight) (MAX(?w0) AS ?maxWeight) WHERE {
?s pv:hasCategory ?cat ; pv:weight_g ?w0 .
} GROUP BY ?cat
}
OPTIONAL { ?cat rdfs:label ?catLabel0 }
OPTIONAL { ?cat pv:name ?catName0 }

?lightHw pv:hasCategory ?cat ; pv:weight_g ?w1 .
FILTER(?w1 = ?minWeight)
OPTIONAL { ?lightHw rdfs:label ?lightLabel0 }
OPTIONAL { ?lightHw pv:name ?lightName0 }

?heavyHw pv:hasCategory ?cat ; pv:weight_g ?w2 .
FILTER(?w2 = ?maxWeight)
OPTIONAL { ?heavyHw rdfs:label ?heavyLabel0 }
OPTIONAL { ?heavyHw pv:name ?heavyName0 }
}
GROUP BY ?cat ?minWeight ?maxWeight
ORDER BY ?catLabel
{
"http://ld.company.org/prod-instances/prod-cat-Breaker": 1,
"http://ld.company.org/prod-instances/prod-cat-Capacitor": 1,
"http://ld.company.org/prod-instances/prod-cat-Coil": 1,
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"http://ld.company.org/prod-instances/prod-cat-Crystal": 1,
"http://ld.company.org/prod-instances/prod-cat-Driver": 1,
"http://ld.company.org/prod-instances/prod-cat-Encoder": 1,
"http://ld.company.org/prod-instances/prod-cat-Gauge": 1,
"http://ld.company.org/prod-instances/prod-cat-Inductor": 1,
"http://ld.company.org/prod-instances/prod-cat-LCD": 1,
"http://ld.company.org/prod-instances/prod-cat-Memristor": 1,
"http://ld.company.org/prod-instances/prod-cat-Meter": 1,
"http://ld.company.org/prod-instances/prod-cat-Multiplexer": 1,
"http://ld.company.org/prod-instances/prod-cat-Network": 1,
"http://ld.company.org/prod-instances/prod-cat-Oscillator": 1,
"http://ld.company.org/prod-instances/prod-cat-Potentiometer": 1,
"http://ld.company.org/prod-instances/prod-cat-Resistor": 1,
"http://ld.company.org/prod-instances/prod-cat-Resonator": 1,
"http://ld.company.org/prod-instances/prod-cat-Rheostat": 1,
"http://ld.company.org/prod-instances/prod-cat-Sensor": 1,
"http://ld.company.org/prod-instances/prod-cat-Strain": 1,
"http://ld.company.org/prod-instances/prod-cat-Switch": 1,
"http://ld.company.org/prod-instances/prod-cat-Transducer": 1,
"http://ld.company.org/prod-instances/prod-cat-Transformer": 1,
"http://ld.company.org/prod-instances/prod-cat-Transistor": 1,
"http://ld.company.org/prod-instances/prod-cat-Warp": 1,
"Breaker": 1,
"Capacitor": 1,
"Coil": 1,
"Compensator": 1,
"Crystal": 1,
"Driver": 1,
"Encoder": 1,
"Gauge": 1,
"Inductor": 1,
"LCD": 1,
"Memristor": 1,
"Meter": 1,
"Multiplexer": 1,
"Network": 1,
"Oscillator": 1,
"Potentiometer": 1,
"Resistor": 1,
"Resonator": 1,
"Rheostat": 1,
"Sensor": 1,
"Strain": 1,
"Switch": 1,
"Transducer": 1,
"Transformer": 1,
"Transistor": 1,
"Warp": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-G127-3809321": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-I893-5009730": 1,
"http://ld.company.org/prod-instances/hw-N463-8050264": 1,
"http://ld.company.org/prod-instances/hw-E660-5579477": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"U714-9883090 - Aluminum Multiplexer LCD Capacitor": 1,
"T608-9573692 - Coil Resonator": 1,
"E424-4700158 - Rheostat Compensator Meter": 1,
"E890-4143899 - Coil Crystal Strain": 1,
"R272-9406400 - Potentiometer Driver": 1,
"Y788-8477334 - Inductor Encoder Capacitor": 1,
"G127-3809321 - Heisenberg Memristor Gauge": 1,
"O787-2734023 - Aluminum Memristor Strain": 1,
"I893-5009730 - Polymer Potentiometer Meter": 1,
"N463-8050264 - Multiplexer Network": 1,
"E660-5579477 - Film Oscillator Transistor Capacitor": 1,
"I965-1821441 - Multiplexer Resistor": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"G950-4257402 - Transformer Transducer": 1,
"H958-9648652 - Potentiometer Crystal Warp": 1,
"1": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-S874-6150679": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"K473-9950981 - Coil Compensator": 1,
"D903-5325470 - Flow Crystal Rheostat": 1,
"Z212-3451369 - Driver Strain": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"W846-7438265 - Resistor Memristor Capacitor": 1,
"Q210-8168184 - Network Multiplexer": 1,
"E835-1316991 - Resistor Breaker": 1,
"H510-3094779 - Resonator Transformer": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"J824-5227925 - Strain Switch": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"S874-6150679 - Multiplexer Transistor": 1,
"W493-4799721 - Network Warp": 1,
"20": 1
}
{
"set_P": 0.23728813559322035,
"set_recall": 1.0,
"set_F": 0.3835616438356164
}
ck26:31-de
Für jede Produktkategorie, welches
Hardware-Produkt ist das leichteste
und welches das schwerste?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?cat (MIN(?w) AS ?minWeight) (MAX(?w) AS ?maxWeight)
WHERE {
?catItem a pv:ProductCategory ;
pv:name ?cat .
?hw a pv:Hardware ;
pv:hasCategory ?catItem ;
pv:weight_g ?w .
}
GROUP BY ?cat
{
"Breaker": 1,
"Switch": 1,
"Capacitor": 1,
"Crystal": 1,
"Compensator": 1,
"Driver": 1,
"Memristor": 1,
"LCD": 1,
"Encoder": 1,
"Multiplexer": 1,
"Sensor": 1,
"Coil": 1,
"Resonator": 1,
"Meter": 1,
"Warp": 1,
"Gauge": 1,
"Network": 1,
"Strain": 1,
"Oscillator": 1,
"Resistor": 1,
"Transistor": 1,
"Transformer": 1,
"Inductor": 1,
"Transducer": 1,
"Rheostat": 1,
"Potentiometer": 1,
"1": 1,
"20": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?category (SAMPLE(COALESCE(?catLabel, ?catName, STR(?category))) AS ?categoryLabel) ?extremeType ?product ?weight WHERE {
{
{
SELECT ?category (MIN(?w) AS ?minW)
WHERE { ?p rdf:type pv:Hardware ; pv:hasCategory ?category ; pv:weight_g ?w }
GROUP BY ?category
}
?product rdf:type pv:Hardware ; pv:hasCategory ?category ; pv:weight_g ?weight .
FILTER(?weight = ?minW)
BIND("lightest" AS ?extremeType)
}
UNION
{
{
SELECT ?category (MAX(?w) AS ?maxW)
WHERE { ?p rdf:type pv:Hardware ; pv:hasCategory ?category ; pv:weight_g ?w }
GROUP BY ?category
}
?product rdf:type pv:Hardware ; pv:hasCategory ?category ; pv:weight_g ?weight .
FILTER(?weight = ?maxW)
BIND("heaviest" AS ?extremeType)
}
OPTIONAL { ?category rdfs:label ?catLabel }
OPTIONAL { ?category pv:name ?catName }
}
GROUP BY ?category ?extremeType ?product ?weight
ORDER BY ?categoryLabel ?extremeType ?weight
{
"http://ld.company.org/prod-instances/prod-cat-Breaker": 1,
"http://ld.company.org/prod-instances/prod-cat-Capacitor": 1,
"http://ld.company.org/prod-instances/prod-cat-Coil": 1,
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"http://ld.company.org/prod-instances/prod-cat-Crystal": 1,
"http://ld.company.org/prod-instances/prod-cat-Driver": 1,
"http://ld.company.org/prod-instances/prod-cat-Encoder": 1,
"http://ld.company.org/prod-instances/prod-cat-Gauge": 1,
"http://ld.company.org/prod-instances/prod-cat-Inductor": 1,
"http://ld.company.org/prod-instances/prod-cat-LCD": 1,
"http://ld.company.org/prod-instances/prod-cat-Memristor": 1,
"http://ld.company.org/prod-instances/prod-cat-Meter": 1,
"http://ld.company.org/prod-instances/prod-cat-Multiplexer": 1,
"http://ld.company.org/prod-instances/prod-cat-Network": 1,
"http://ld.company.org/prod-instances/prod-cat-Oscillator": 1,
"http://ld.company.org/prod-instances/prod-cat-Potentiometer": 1,
"http://ld.company.org/prod-instances/prod-cat-Resistor": 1,
"http://ld.company.org/prod-instances/prod-cat-Resonator": 1,
"http://ld.company.org/prod-instances/prod-cat-Rheostat": 1,
"http://ld.company.org/prod-instances/prod-cat-Sensor": 1,
"http://ld.company.org/prod-instances/prod-cat-Strain": 1,
"http://ld.company.org/prod-instances/prod-cat-Switch": 1,
"http://ld.company.org/prod-instances/prod-cat-Transducer": 1,
"http://ld.company.org/prod-instances/prod-cat-Transformer": 1,
"http://ld.company.org/prod-instances/prod-cat-Transistor": 1,
"http://ld.company.org/prod-instances/prod-cat-Warp": 1,
"Breaker": 1,
"Capacitor": 1,
"Coil": 1,
"Compensator": 1,
"Crystal": 1,
"Driver": 1,
"Encoder": 1,
"Gauge": 1,
"Inductor": 1,
"LCD": 1,
"Memristor": 1,
"Meter": 1,
"Multiplexer": 1,
"Network": 1,
"Oscillator": 1,
"Potentiometer": 1,
"Resistor": 1,
"Resonator": 1,
"Rheostat": 1,
"Sensor": 1,
"Strain": 1,
"Switch": 1,
"Transducer": 1,
"Transformer": 1,
"Transistor": 1,
"Warp": 1,
"heaviest": 1,
"lightest": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-E660-5579477": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-A548-4778785": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-Y467-5818685": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-V283-8186620": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-A909-7626614": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-G127-3809321": 1,
"http://ld.company.org/prod-instances/hw-K296-6028981": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-N171-1815828": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-T151-7042410": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-I893-5009730": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-S874-6150679": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-M253-4759368": 1,
"http://ld.company.org/prod-instances/hw-N463-8050264": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-C721-7900144": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-D915-4717890": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-Z763-7274829": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-E405-1045893": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-X663-2500265": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-G223-2092566": 1,
"20": 1,
"1": 1
}
{
"set_P": 0.16666666666666666,
"set_recall": 1.0,
"set_F": 0.2857142857142857
}
ck26:32-en
What is the average price in euros
of each supplier's products,
rounded to a reasonable amount?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name (ROUND(AVG(?amt) * 100) / 100 AS ?avgEur) WHERE {
?sup a pv:Supplier ;
pv:name ?name .
?hw pv:hasSupplier ?sup ;
pv:price/pv:amount ?amt ;
pv:price/pv:currency "EUR" .
}
GROUP BY ?sup ?name
{
"Cohen, Bell and Rodriguez": 1,
"Martinez and Sons": 1,
"Johnson-Carroll": 1,
"Boyd, Turner and Byrd": 1,
"Petty, Hamilton and Solomon": 1,
"White, Wong and Trevino": 1,
"Garrison, Williams and Johnson": 1,
"King-Johnson": 1,
"Fox-Delacruz": 1,
"Washington-Villanueva": 1,
"Riley, Barrett and Mccullough": 1,
"Knight PLC": 1,
"Poole, Coleman and Shea": 1,
"Vincent LLC": 1,
"Griffith-Stout": 1,
"Brown, Estrada and Riggs": 1,
"Smith and Sons": 1,
"Carr, Smith and Webb": 1,
"Ibarra and Sons": 1,
"Figueroa, Ibarra and Jackson": 1,
"Wagner-Ramirez": 1,
"Gross, Frey and Mcmahon": 1,
"Nelson, Cruz and Bush": 1,
"Church Inc": 1,
"Barry PLC": 1,
"Maldonado Inc": 1,
"Pollard LLC": 1,
"Barr-Melendez": 1,
"Adkins, Lopez and Boyd": 1,
"Curtis, Perkins and Sims": 1,
"Williamson-Young": 1,
"Peck, Tucker and Patterson": 1,
"Reese-Williams": 1,
"Martin and Sons": 1,
"Gomez Inc": 1,
"Anderson-Young": 1,
"Garcia-Roberts": 1,
"Gregory PLC": 1,
"Odonnell-Williams": 1,
"Gentry-Gross": 1,
"Mclaughlin-Hawkins": 1,
"Thomas-Jenkins": 1,
"Peterson-Rose": 1,
"Williams, Bailey and Martinez": 1,
"Martinez LLC": 1,
"Parker-Lawrence": 1,
"Chavez-Price": 1,
"Ford, Martinez and Gutierrez": 1,
"Santiago-Gardner": 1,
"Lopez, Goodman and Miller": 1,
"Flores PLC": 1,
"White, Lewis and Evans": 1,
"Moran, Martin and Freeman": 1,
"Mendoza, Moore and Thomas": 1,
"Mccarthy-Galloway": 1,
"Carroll, Nguyen and Martin": 1,
"Bender PLC": 1,
"Boyd, Berg and Sampson": 1,
"Todd-Mcneil": 1,
"Mcpherson Ltd": 1,
"Thompson Ltd": 1,
"Allen-Short": 1,
"Stevens PLC": 1,
"Taylor, Obrien and Delacruz": 1,
"Lee, Pearson and Gates": 1,
"Watkins Group": 1,
"Morris, Cain and Boone": 1,
"Howell-Meyer": 1,
"Cervantes, Wagner and Jackson": 1,
"Jackson, Chan and Rivera": 1,
"Powell-Nguyen": 1,
"Rodriguez LLC": 1,
"Smith LLC": 1,
"Cooper, Walker and Perez": 1,
"Maxwell Inc": 1,
"Buchanan Group": 1,
"Harper PLC": 1,
"Newton Inc": 1,
"Hernandez, Mayer and Jones": 1,
"Wright Inc": 1,
"Allison PLC": 1,
"Richardson Inc": 1,
"Griffin, Smith and Smith": 1,
"Collins, Martin and Lane": 1,
"Perkins, Garza and Cochran": 1,
"Hensley-Porter": 1,
"Kerr LLC": 1,
"Curtis, Doyle and Singleton": 1,
"Davis Ltd": 1,
"Nguyen-Cruz": 1,
"Lynch LLC": 1,
"Smith-Williamson": 1,
"White-Nash": 1,
"Kidd, Mcdaniel and Russell": 1,
"Barrera Inc": 1,
"Mayo, Aguirre and Ryan": 1,
"Lucas and Sons": 1,
"Hardy, Bauer and Martinez": 1,
"Mcdaniel, Dean and Delgado": 1,
"Santana LLC": 1,
"Barber-Hayes": 1,
"Lee and Sons": 1,
"Romero-Nguyen": 1,
"Jones-Martinez": 1,
"Harris, Graves and Gonzalez": 1,
"Alvarez-Curtis": 1,
"Sanchez-Mcdonald": 1,
"Bryan-James": 1,
"Hines-Allen": 1,
"Thornton, Cook and Estrada": 1,
"Coleman LLC": 1,
"Hubbard Ltd": 1,
"Cooper and Sons": 1,
"Anderson Ltd": 1,
"Peterson Ltd": 1,
"Russell, Mcclain and Larson": 1,
"Harrison PLC": 1,
"Gibson-Jackson": 1,
"Stevens LLC": 1,
"Brown, Torres and Bautista": 1,
"Lynch-Ramirez": 1,
"Evans, Park and James": 1,
"Jones Group": 1,
"Rodriguez-Mcdonald": 1,
"Odom-Lawrence": 1,
"Peterson, Norton and Preston": 1,
"Singh Inc": 1,
"Bryan-Jones": 1,
"May, Ruiz and Butler": 1,
"Page, Hernandez and Ayala": 1,
"Smith-Cobb": 1,
"Baker, Medina and George": 1,
"Jordan, James and Bradley": 1,
"Harris-Cunningham": 1,
"Reyes, Taylor and Ramirez": 1,
"Salinas-Kelly": 1,
"Snyder, Robinson and Brown": 1,
"Duran, Mueller and Payne": 1,
"Marshall PLC": 1,
"Miller, Green and Scott": 1,
"Williamson-Green": 1,
"Arnold-Knight": 1,
"Jimenez PLC": 1,
"Guerrero, Sutton and Lucas": 1,
"Simmons, Cox and Craig": 1,
"Moreno Group": 1,
"Cortez Group": 1,
"Collins-Hensley": 1,
"Meyer, Marquez and Mckenzie": 1,
"Manning, Hodges and Mckenzie": 1,
"Davidson, Rosales and Stewart": 1,
"Drake Ltd": 1,
"Rowland, Todd and Whitaker": 1,
"Marsh, Cunningham and Hill": 1,
"Ross-Brooks": 1,
"Cantu-Ferguson": 1,
"Larsen-Martinez": 1,
"Doyle, King and Thompson": 1,
"Huang, Guerrero and Hurst": 1,
"Benitez and Sons": 1,
"Wilson-Callahan": 1,
"Olson LLC": 1,
"Hutchinson-Lane": 1,
"Martin-Mcbride": 1,
"Rivera Group": 1,
"Fleming Inc": 1,
"Fletcher, Pierce and Navarro": 1,
"Carter Group": 1,
"Phillips, Love and Smith": 1,
"Douglas Inc": 1,
"Rich, Powell and Ward": 1,
"Green-Crawford": 1,
"Scott, Frazier and Cooper": 1,
"Nguyen-Peters": 1,
"Collins and Sons": 1,
"Barnes LLC": 1,
"Calderon-Montgomery": 1,
"Avery-Johnson": 1,
"Schroeder and Sons": 1,
"Green and Sons": 1,
"James-Wright": 1,
"Myers-Brown": 1,
"Meyer, Floyd and Jackson": 1,
"Nichols Inc": 1,
"Harris, Wright and Morales": 1,
"Nichols-Davis": 1,
"Wagner Group": 1,
"Turner, Hall and Jimenez": 1,
"Daniels Group": 1,
"Clarke-Brown": 1,
"Larson, Lambert and Gay": 1,
"Goodman-Chapman": 1,
"Cook Group": 1,
"Jones PLC": 1,
"Cochran-Delacruz": 1,
"Carr, Smith and Mayo": 1,
"Estes, Johnston and Richardson": 1,
"Bruce, Gutierrez and Thompson": 1,
"Hill-Jones": 1,
"Becker LLC": 1,
"Aguilar, Matthews and Martinez": 1,
"Bolton, Sanchez and Rodgers": 1,
"Rodriguez, Estrada and Kim": 1,
"Huerta, Clark and Johnson": 1,
"Zamora, Adams and Koch": 1,
"Cook LLC": 1,
"Ferrell-Dixon": 1,
"Rodriguez-Warren": 1,
"Brown, Jackson and Simpson": 1,
"Fuentes Inc": 1,
"Hodges-Johnson": 1,
"Hall-Hodges": 1,
"Carlson Inc": 1,
"Shaffer PLC": 1,
"Grant-Nelson": 1,
"Brown PLC": 1,
"Swanson-Kennedy": 1,
"Davis-Wagner": 1,
"Adams-White": 1,
"Rodriguez, Schmidt and Hodge": 1,
"Johnson, Khan and Oconnell": 1,
"Bennett, Best and Jacobson": 1,
"White and Sons": 1,
"Bryant-Stark": 1,
"Stewart-Woodard": 1,
"Morgan, Brown and Martin": 1,
"Stewart PLC": 1,
"Little, Dunlap and Nelson": 1,
"Fernandez-Roberts": 1,
"Carter, Webb and Bush": 1,
"Hubbard-Holmes": 1,
"Garcia Ltd": 1,
"Horton, Sims and Pacheco": 1,
"Li-Gonzalez": 1,
"Neal LLC": 1,
"Turner and Sons": 1,
"Hernandez, Jenkins and Luna": 1,
"Wilson, Kim and Dorsey": 1,
"Long-Sullivan": 1,
"Morgan-Leonard": 1,
"Harris-Waller": 1,
"Stevens Ltd": 1,
"2.17": 1,
"4.24": 1,
"2.24": 1,
"2.18": 1,
"2.39": 1,
"1.85": 1,
"3.85": 1,
"1.74": 1,
"4.83": 1,
"2.4": 1,
"3.58": 1,
"1.6": 1,
"3.86": 1,
"4.13": 1,
"2.74": 1,
"2.97": 1,
"4.99": 1,
"2.66": 1,
"2.82": 1,
"2.91": 1,
"3.46": 1,
"1.41": 1,
"2.2": 1,
"3.48": 1,
"4.34": 1,
"2.13": 1,
"2.53": 1,
"3.45": 1,
"4.16": 1,
"3.23": 1,
"2.34": 1,
"3.08": 1,
"2.51": 1,
"3.38": 1,
"2.72": 1,
"2.12": 1,
"3.02": 1,
"3.17": 1,
"1.8": 1,
"2.28": 1,
"2.1": 1,
"2.48": 1,
"2.77": 1,
"3.93": 1,
"4.44": 1,
"2.94": 1,
"2.98": 1,
"4.22": 1,
"4.35": 1,
"2.22": 1,
"2.32": 1,
"2.04": 1,
"3.19": 1,
"1.29": 1,
"3.25": 1,
"2.42": 1,
"2.99": 1,
"2.59": 1,
"1.55": 1,
"3.42": 1,
"4.32": 1,
"2.96": 1,
"3.52": 1,
"3.12": 1,
"2.35": 1,
"1.27": 1,
"2.52": 1,
"1.7": 1,
"3.03": 1,
"3.92": 1,
"2.88": 1,
"3.53": 1,
"2.62": 1,
"3.73": 1,
"0.95": 1,
"1.65": 1,
"3.34": 1,
"3.01": 1,
"2.73": 1,
"3.66": 1,
"2.46": 1,
"1.36": 1,
"4.43": 1,
"3.27": 1,
"1.54": 1,
"2.25": 1,
"3.24": 1,
"3.82": 1,
"1.89": 1,
"5.7": 1,
"3.55": 1,
"3.29": 1,
"4.15": 1,
"3.84": 1,
"2.68": 1,
"3.3": 1,
"1.1": 1,
"4.03": 1,
"3.51": 1,
"2.16": 1,
"3.77": 1,
"3.28": 1,
"4.14": 1,
"3.22": 1,
"2.71": 1,
"4.8": 1,
"3.72": 1,
"2.86": 1,
"1.71": 1,
"3.6": 1,
"2.65": 1,
"2.78": 1,
"2.3": 1,
"2.49": 1,
"5.51": 1,
"3.75": 1,
"2.14": 1,
"2.27": 1,
"2.84": 1,
"4.06": 1,
"3.2": 1,
"3.43": 1,
"3.21": 1,
"2.55": 1,
"3.39": 1,
"3.4": 1,
"3.26": 1,
"3.5": 1,
"1.95": 1,
"1.94": 1,
"3.62": 1,
"1.79": 1,
"2.75": 1,
"4.17": 1,
"2.23": 1,
"1.21": 1,
"1.83": 1,
"2.85": 1,
"2.89": 1,
"1.12": 1,
"1.77": 1,
"2.61": 1,
"2.81": 1,
"3.7": 1,
"3.56": 1,
"2.87": 1,
"5.29": 1,
"5.09": 1,
"1.93": 1,
"3.0": 1,
"3.49": 1,
"3.76": 1,
"4.11": 1,
"2.6": 1,
"1.99": 1,
"3.1": 1,
"4.6": 1,
"3.33": 1,
"3.63": 1,
"1.97": 1,
"2.64": 1,
"4.33": 1,
"2.57": 1,
"2.56": 1,
"2.29": 1,
"5.35": 1,
"4.88": 1,
"4.36": 1,
"4.58": 1,
"5.72": 1,
"2.5": 1,
"3.79": 1,
"2.06": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?supplier (SAMPLE(COALESCE(?sLbl, ?sName, STR(?supplier))) AS ?supplierLabel) (ROUND(AVG(?amount)*100)/100 AS ?avg_price_eur) (AVG(?amount) AS ?avg_price_raw) (COUNT(DISTINCT ?product) AS ?productCount) WHERE {
?product pv:hasSupplier ?supplier .
?product pv:price ?priceNode .
?priceNode pv:amount ?amount .
?priceNode pv:currency "EUR" .
OPTIONAL { ?supplier rdfs:label ?sLbl }
OPTIONAL { ?supplier pv:name ?sName }
} GROUP BY ?supplier
ORDER BY DESC(?productCount)
{
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-3288e7a5-6b1b-482e-8c95-3265f948ae03": 1,
"http://ld.company.org/prod-instances/suppl-b9dfb874-fb5d-4d34-8a13-e4f1395f3c6e": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-2f7172a0-e935-4dfc-98a6-b48dcec0ad18": 1,
"http://ld.company.org/prod-instances/suppl-7c930e8b-b9f3-450a-856b-5e03c6b3965e": 1,
"http://ld.company.org/prod-instances/suppl-d0f6eeee-24cc-4a72-9331-d0ebbb83643b": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-27f8059f-fe10-4a39-aa68-d66210c9cc59": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-dd4262b0-805f-49f8-94b0-12dcadea9e73": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-da35429e-b1b6-4780-9fcc-f1b17b40d4e3": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-3ad032a1-2e9f-4629-93c7-0ee0b5bb0e25": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-cd395f35-74dc-4858-8bb9-5fdf0add00ee": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-4f22034e-f299-442a-a1e3-3d9dc974ed8f": 1,
"http://ld.company.org/prod-instances/suppl-8d98799f-d657-4acf-9ca6-9b90420ff681": 1,
"http://ld.company.org/prod-instances/suppl-33da751a-1358-4530-b0e5-e3b9a509e952": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-d396349e-7772-49c3-bcdf-0afbeae658fa": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"http://ld.company.org/prod-instances/suppl-f0feb132-7033-41f2-99e2-fdb8834302ec": 1,
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-29c1b979-da61-4df4-ae3d-a2e303ea4444": 1,
"http://ld.company.org/prod-instances/suppl-3f0439ac-320f-4d70-b9a4-2fef9281ff49": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-d7ca1d2e-6b21-4c0c-821a-c4e8d5a3c65c": 1,
"http://ld.company.org/prod-instances/suppl-9484418b-c487-4050-9094-050f3bab0817": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-b508d6ec-f430-4496-9c08-bd54f1541023": 1,
"http://ld.company.org/prod-instances/suppl-f26204e2-83cc-4526-a8f0-d4c86f295774": 1,
"http://ld.company.org/prod-instances/suppl-f1067c74-aa84-4a06-9fbd-16f914be2e65": 1,
"http://ld.company.org/prod-instances/suppl-fb607751-7ff0-4cea-8e23-d22b4b1c67ad": 1,
"http://ld.company.org/prod-instances/suppl-7f0c3d05-f16c-44c0-b9f4-5ff9d2892270": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-7c4b3772-ee27-4915-8166-359d068db153": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-45d529da-5989-484a-a60d-acba0442a929": 1,
"http://ld.company.org/prod-instances/suppl-4b796fba-c152-4137-b01d-fce80aef6e3c": 1,
"http://ld.company.org/prod-instances/suppl-46bae099-f191-415a-aefa-3cab4b0e8c2e": 1,
"http://ld.company.org/prod-instances/suppl-0ca3c664-7fb2-446a-b5c6-73fe140c4f02": 1,
"http://ld.company.org/prod-instances/suppl-1b447fbd-a0fe-4385-8141-ab5aa43fbedb": 1,
"http://ld.company.org/prod-instances/suppl-f80817bf-7010-48c7-a3be-b015b09309d0": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-79614820-e391-46f2-8ab9-c5022ad154d8": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-658f838d-0e84-4f36-978c-95602545977c": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-a28a6f2f-a549-4a38-98ac-6eaeff8472ce": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-8f607810-ca93-4274-9c27-d0a8dcba7c4a": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-05b5a686-c821-41c4-bc2c-b66d35bac1d8": 1,
"http://ld.company.org/prod-instances/suppl-2731aa23-7ea4-4661-b79b-6f0d4d17d5b3": 1,
"http://ld.company.org/prod-instances/suppl-91be13e0-b467-48d9-8ff7-cbed652b49cb": 1,
"http://ld.company.org/prod-instances/suppl-816e4baa-8158-4e2a-8ff4-c9f969998389": 1,
"http://ld.company.org/prod-instances/suppl-9c9d9974-bea3-4bf9-882e-c16a80b17e84": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-1b032f32-5734-44da-8758-554ad059b03e": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-854314d4-9505-4765-b22a-a2ff53549b0b": 1,
"http://ld.company.org/prod-instances/suppl-fbfe40db-81e4-4b35-93d5-a996307a266e": 1,
"http://ld.company.org/prod-instances/suppl-fd5556a6-46fc-4d68-846b-e543ce6f4ec9": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-6463b573-32bd-4bc5-b2dc-c8e9a96965ba": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-238c3f06-3708-4b59-8617-f94611d6f3a3": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-7f696243-08d9-458c-8041-e114a223b897": 1,
"http://ld.company.org/prod-instances/suppl-a2a17a94-b064-4682-86ba-1c933616568f": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-f494b5db-7627-4a97-809e-8e8f9d92fb51": 1,
"http://ld.company.org/prod-instances/suppl-82869f9c-fa06-45cb-922a-00675cde9676": 1,
"http://ld.company.org/prod-instances/suppl-a6815a96-329d-414e-89fa-27619179f857": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-a0f25cc7-1407-452e-98e2-8fa5083d4041": 1,
"http://ld.company.org/prod-instances/suppl-2318f317-967e-4282-aceb-c17a6349f86e": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-701e751f-51dc-482f-86d5-544b4af40076": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-0c327a40-c6d8-44da-ba2d-e84f924c5208": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-d0c9f303-04ac-44b3-9cbc-afed50b7a260": 1,
"http://ld.company.org/prod-instances/suppl-2fd79a0c-24b5-4361-8b5b-df720d2c7eac": 1,
"http://ld.company.org/prod-instances/suppl-64902ce8-7950-458e-bcee-5df3cabc7972": 1,
"http://ld.company.org/prod-instances/suppl-b8b7794e-329e-4bdc-9fcb-5ddfe9b71248": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-6b879d25-7222-419e-8f1a-d9c9ceda2600": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-532fc460-676f-4727-b5b2-6d3771db9ba1": 1,
"http://ld.company.org/prod-instances/suppl-7d33e910-5889-4f75-bd2b-193ec2434d0f": 1,
"http://ld.company.org/prod-instances/suppl-6ca36744-76bd-47bd-b4fd-6319ed8c87c7": 1,
"http://ld.company.org/prod-instances/suppl-0058fc5e-e9e8-46eb-ac6d-673e436a5d7a": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-42f054a5-0aba-4b02-b68a-851130c639fc": 1,
"http://ld.company.org/prod-instances/suppl-f19beb89-6c1f-45e9-8864-8a832bf17a55": 1,
"http://ld.company.org/prod-instances/suppl-9da10220-7964-4a7a-a1ea-571a63cc483d": 1,
"http://ld.company.org/prod-instances/suppl-66cdfd7b-f68e-40d1-b9dc-0dd54c50b6a1": 1,
"http://ld.company.org/prod-instances/suppl-cc8fb083-225e-4d29-960d-5d74b02adeda": 1,
"http://ld.company.org/prod-instances/suppl-cccd3023-1267-4fe6-9fbe-2441662cbb46": 1,
"http://ld.company.org/prod-instances/suppl-cd18146d-c073-4d58-97b4-ac079baa9b65": 1,
"http://ld.company.org/prod-instances/suppl-cb43b726-1b2f-44dd-b960-18b361c7288e": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-a10b61e6-8288-499d-bd8c-d89b9625fb1f": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-88745cef-2133-4d0c-a1de-00fa0740eb26": 1,
"http://ld.company.org/prod-instances/suppl-7ce25e4c-5894-4e77-ada2-d2bb434fdae9": 1,
"http://ld.company.org/prod-instances/suppl-114d6a02-02d8-4038-97a3-fd39a9701f79": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-373cc68d-3c51-43d9-878a-36aa0aeb86c6": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-66558286-cf29-4320-80a9-de2c12aa2f3c": 1,
"http://ld.company.org/prod-instances/suppl-65131e0d-addc-41f9-a33f-e9f3b7f00566": 1,
"http://ld.company.org/prod-instances/suppl-25e44a18-cb4f-48aa-bb6a-c05189268df6": 1,
"http://ld.company.org/prod-instances/suppl-6268ab7c-e25c-44ff-8431-e631679623b5": 1,
"http://ld.company.org/prod-instances/suppl-4f66d217-8106-4b87-922b-fbe6e8d6d699": 1,
"http://ld.company.org/prod-instances/suppl-15bdf688-23a7-4f52-be5c-fe82bba7add7": 1,
"http://ld.company.org/prod-instances/suppl-fab306a0-9ab2-4834-949a-58804bddc9a4": 1,
"http://ld.company.org/prod-instances/suppl-aaaa3f68-318a-4d8d-b080-79490e9e9dfa": 1,
"http://ld.company.org/prod-instances/suppl-bd9aec71-4218-45ce-b6c6-d076ad07f8cd": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-1e0eae5f-25ae-4ef9-807e-4ce162fa2934": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-e18d93fc-f1db-4ac7-b138-e158c6fb2e69": 1,
"http://ld.company.org/prod-instances/suppl-d42974b3-923e-4f26-9bfa-1176e0073791": 1,
"http://ld.company.org/prod-instances/suppl-ab8fb795-35cd-42c4-827d-6fd907d6b81d": 1,
"http://ld.company.org/prod-instances/suppl-17c52e07-d5ce-4cfd-87cf-5ac7e3554c0c": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-47c86e10-e667-4725-bbe3-ac372da0b472": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-d0f56bf6-b7f2-4032-be8f-95269c626667": 1,
"http://ld.company.org/prod-instances/suppl-f7a4c865-f6d4-4896-bc48-e5ec6b2bf283": 1,
"http://ld.company.org/prod-instances/suppl-30dc6bac-5604-4e78-a48d-eed66f4d4dc8": 1,
"http://ld.company.org/prod-instances/suppl-35f7b6ea-9412-41f4-9652-8e419db45ce8": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-9c71665d-ca2e-44e3-b9ba-f1e47dec6dfe": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-6de163f7-8aa2-434a-a210-78fea02e490c": 1,
"http://ld.company.org/prod-instances/suppl-cfe8ae59-a7a8-4772-8bd5-bbd6991af811": 1,
"http://ld.company.org/prod-instances/suppl-a6f1f4bd-bdd5-4a35-b683-2aee89aa8ed3": 1,
"http://ld.company.org/prod-instances/suppl-e27932a5-487a-4eca-9f9a-d82d5e5c467b": 1,
"http://ld.company.org/prod-instances/suppl-297508c6-6074-4625-8dec-7bab342010a1": 1,
"http://ld.company.org/prod-instances/suppl-d2a60059-73f4-4fae-9a4a-0ab93f5203eb": 1,
"http://ld.company.org/prod-instances/suppl-79274f67-b225-49fa-ad8c-fb20560cb1d5": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-acc9fdfb-2811-4b87-8231-7168c70e7497": 1,
"http://ld.company.org/prod-instances/suppl-f3de43d3-4bd7-4641-be54-2db60238aa14": 1,
"http://ld.company.org/prod-instances/suppl-b5028bba-a927-45d7-9032-ee90825311c5": 1,
"http://ld.company.org/prod-instances/suppl-79126b93-df5a-4170-b80e-546a837605f3": 1,
"http://ld.company.org/prod-instances/suppl-22b67f9e-45e9-449e-8269-a31bd550324a": 1,
"http://ld.company.org/prod-instances/suppl-2451f479-fe10-4322-a8c9-3f4f21f39779": 1,
"http://ld.company.org/prod-instances/suppl-092bb1b2-b39f-4521-9c21-c853db9d9a09": 1,
"http://ld.company.org/prod-instances/suppl-e9d8bb44-d19d-4453-8db2-d6d656f411be": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-6d5eddf9-7c6f-4a88-8aba-2ef65267d78b": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-784f7f15-1a8c-43f5-923c-de0beb82f32f": 1,
"http://ld.company.org/prod-instances/suppl-8a148e6d-972c-4135-930a-c6d9ea6957fd": 1,
"http://ld.company.org/prod-instances/suppl-dff64a17-e085-4289-9196-a1e7ae8b0c22": 1,
"http://ld.company.org/prod-instances/suppl-2617dc37-a7c6-4c6c-b89d-4e4f367f3d78": 1,
"http://ld.company.org/prod-instances/suppl-63ab664f-80d7-46e1-97cb-39a4f713f937": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-b9ed885f-282e-4836-bede-f1dc9f9f5c41": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-6259c66a-0eec-4f7f-b4a4-a0c2be80461e": 1,
"http://ld.company.org/prod-instances/suppl-ebbcad78-26fa-4d33-95ca-84decc4209a4": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-a1a85cfc-109a-47fe-91a2-632334d35f44": 1,
"http://ld.company.org/prod-instances/suppl-2805bfc6-fe9f-49fc-90ba-d4c779a38af2": 1,
"http://ld.company.org/prod-instances/suppl-267680ea-eafe-4d40-a3c6-4807c0d195b1": 1,
"http://ld.company.org/prod-instances/suppl-0d183bba-b1df-4c41-be10-c0896378b406": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-23be71fa-4280-4114-9750-025c224be098": 1,
"http://ld.company.org/prod-instances/suppl-caeb974d-5803-4419-b316-2245f15f73d4": 1,
"http://ld.company.org/prod-instances/suppl-49231eda-bbab-475b-aa59-47e6c8c81166": 1,
"http://ld.company.org/prod-instances/suppl-83983274-a805-4fcd-a909-1c2e14651637": 1,
"http://ld.company.org/prod-instances/suppl-6746c17d-5e49-47bc-82a1-90ac0c7aa01c": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-feeda1ce-d6af-42b2-b6ff-7516ba39ad6c": 1,
"http://ld.company.org/prod-instances/suppl-5f36c064-46dd-4351-b0e8-9cb2c76bfbab": 1,
"http://ld.company.org/prod-instances/suppl-3c198782-cb13-4253-aefc-f48aa8ded00a": 1,
"http://ld.company.org/prod-instances/suppl-12417d4e-b119-46a1-8c47-a560c2d103dd": 1,
"http://ld.company.org/prod-instances/suppl-67db6571-5c2f-4c52-9d0b-1584a74bb116": 1,
"http://ld.company.org/prod-instances/suppl-db55e5ad-918e-42a0-97b4-1f496f9574dd": 1,
"http://ld.company.org/prod-instances/suppl-248fa1c7-dd1e-41fe-931a-9f00777ee0fe": 1,
"http://ld.company.org/prod-instances/suppl-d7f501f6-e595-473c-90fc-89933505411e": 1,
"http://ld.company.org/prod-instances/suppl-7273d4f8-9c3a-4279-a18c-bb0f425bc8eb": 1,
"http://ld.company.org/prod-instances/suppl-ba01e204-e74e-4f87-bc55-1a43c099f199": 1,
"http://ld.company.org/prod-instances/suppl-9b333a39-4f8b-4f38-8bc8-3aea5aa24cd8": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-534df54e-82c6-430e-ad50-d80a3a745e11": 1,
"http://ld.company.org/prod-instances/suppl-0301f65d-2290-456b-a3f7-b2096a632198": 1,
"http://ld.company.org/prod-instances/suppl-e68696c9-d9e7-4d2b-b467-d923c91ce47b": 1,
"http://ld.company.org/prod-instances/suppl-fcdf3268-b0f0-4e2b-8fbd-6008cb4a6d0e": 1,
"http://ld.company.org/prod-instances/suppl-f7c5fad9-9f0c-4206-a338-e162bfe54de1": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-db1a07bc-c946-4ddd-8f47-b836c2f35281": 1,
"Bennett, Best and Jacobson (India)": 1,
"Bolton, Sanchez and Rodgers (Turkey)": 1,
"Williamson-Young (India)": 1,
"Salinas-Kelly (China)": 1,
"Bruce, Gutierrez and Thompson (China)": 1,
"Moran, Martin and Freeman (United States)": 1,
"Anderson-Young (Uganda)": 1,
"Thomas-Jenkins (Bangladesh)": 1,
"Mendoza, Moore and Thomas (Mozambique)": 1,
"Wright Inc (United States)": 1,
"Hernandez, Jenkins and Luna (United States)": 1,
"White-Nash (Pakistan)": 1,
"Becker LLC (Viet Nam)": 1,
"Neal LLC (United Kingdom)": 1,
"Hall-Hodges (Japan)": 1,
"Green-Crawford (Brazil)": 1,
"Williams, Bailey and Martinez (Philippines)": 1,
"James-Wright (France)": 1,
"Richardson Inc (Japan)": 1,
"Hutchinson-Lane (India)": 1,
"Brown PLC (India)": 1,
"Garrison, Williams and Johnson (Iraq)": 1,
"Rich, Powell and Ward (Brazil)": 1,
"Carter, Webb and Bush (Tanzania, United Republic of)": 1,
"Boyd, Berg and Sampson (Namibia)": 1,
"Arnold-Knight (Mexico)": 1,
"Brown, Jackson and Simpson (Tuvalu)": 1,
"Cooper, Walker and Perez (Canada)": 1,
"Fernandez-Roberts (United States)": 1,
"Boyd, Turner and Byrd (Pakistan)": 1,
"Howell-Meyer (Korea, Republic of)": 1,
"Griffin, Smith and Smith (United States)": 1,
"Mcdaniel, Dean and Delgado (India)": 1,
"Lynch LLC (Egypt)": 1,
"Adams-White (United States)": 1,
"Estes, Johnston and Richardson (Czechia)": 1,
"Baker, Medina and George (Finland)": 1,
"Barnes LLC (Pakistan)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Phillips, Love and Smith (Venezuela, Bolivarian Republic of)": 1,
"Fleming Inc (Spain)": 1,
"Garcia Ltd (Malaysia)": 1,
"Page, Hernandez and Ayala (United States)": 1,
"Alvarez-Curtis (Algeria)": 1,
"Zamora, Adams and Koch (France)": 1,
"Meyer, Marquez and Mckenzie (China)": 1,
"Brown, Torres and Bautista (Bangladesh)": 1,
"Barry PLC (United States)": 1,
"Perkins, Garza and Cochran (Indonesia)": 1,
"Griffith-Stout (United Kingdom)": 1,
"Martin and Sons (Spain)": 1,
"Gross, Frey and Mcmahon (Philippines)": 1,
"Pollard LLC (China)": 1,
"Gomez Inc (United Kingdom)": 1,
"Avery-Johnson (United States)": 1,
"Benitez and Sons (United States)": 1,
"Jones Group (Egypt)": 1,
"Clarke-Brown (Austria)": 1,
"Thompson Ltd (China)": 1,
"Jones-Martinez (Palestine, State of)": 1,
"White, Wong and Trevino (Germany)": 1,
"Rodriguez-Mcdonald (India)": 1,
"Morgan-Leonard (Romania)": 1,
"Harris-Waller (Venezuela, Bolivarian Republic of)": 1,
"Watkins Group (Russian Federation)": 1,
"Harrison PLC (Argentina)": 1,
"Wilson-Callahan (France)": 1,
"Lee and Sons (Brazil)": 1,
"Rodriguez, Schmidt and Hodge (Russian Federation)": 1,
"Wagner-Ramirez (Ireland)": 1,
"Harris-Cunningham (France)": 1,
"Odom-Lawrence (India)": 1,
"Little, Dunlap and Nelson (Kiribati)": 1,
"Curtis, Doyle and Singleton (Canada)": 1,
"Cantu-Ferguson (Brazil)": 1,
"Lopez, Goodman and Miller (Brazil)": 1,
"Anderson Ltd (United States)": 1,
"Swanson-Kennedy (China)": 1,
"Collins-Hensley (Germany)": 1,
"Bryan-Jones (Algeria)": 1,
"White, Lewis and Evans (Poland)": 1,
"Turner, Hall and Jimenez (South Africa)": 1,
"Church Inc (Ukraine)": 1,
"Stevens Ltd (Peru)": 1,
"Mclaughlin-Hawkins (Philippines)": 1,
"Aguilar, Matthews and Martinez (Tanzania, United Republic of)": 1,
"Martinez LLC (United States)": 1,
"Cohen, Bell and Rodriguez (India)": 1,
"Grant-Nelson (Australia)": 1,
"Fuentes Inc (United States)": 1,
"Martinez and Sons (Mexico)": 1,
"Maldonado Inc (Ukraine)": 1,
"Carter Group (Cuba)": 1,
"Bender PLC (Russian Federation)": 1,
"Huang, Guerrero and Hurst (Japan)": 1,
"Snyder, Robinson and Brown (United Kingdom)": 1,
"Fletcher, Pierce and Navarro (France)": 1,
"Smith-Williamson (Estonia)": 1,
"Shaffer PLC (China)": 1,
"Santiago-Gardner (Bangladesh)": 1,
"Miller, Green and Scott (Hungary)": 1,
"Mayo, Aguirre and Ryan (Brazil)": 1,
"Nguyen-Cruz (South Africa)": 1,
"Simmons, Cox and Craig (Russian Federation)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Morgan, Brown and Martin (Germany)": 1,
"Wilson, Kim and Dorsey (Brazil)": 1,
"Schroeder and Sons (South Africa)": 1,
"Collins, Martin and Lane (Ukraine)": 1,
"Santana LLC (Somalia)": 1,
"Odonnell-Williams (Angola)": 1,
"Smith-Cobb (United States)": 1,
"Drake Ltd (Honduras)": 1,
"Kidd, Mcdaniel and Russell (Finland)": 1,
"Petty, Hamilton and Solomon (Germany)": 1,
"Harris, Wright and Morales (Japan)": 1,
"Gentry-Gross (Bolivia, Plurinational State of)": 1,
"Bryan-James (Italy)": 1,
"Marsh, Cunningham and Hill (France)": 1,
"Harris, Graves and Gonzalez (Turkey)": 1,
"Hubbard Ltd (China)": 1,
"Newton Inc (Germany)": 1,
"Thompson Ltd (India)": 1,
"Mcpherson Ltd (Ukraine)": 1,
"Manning, Hodges and Mckenzie (Belgium)": 1,
"Davis Ltd (Belarus)": 1,
"Smith and Sons (Central African Republic)": 1,
"Mccarthy-Galloway (Brazil)": 1,
"Rivera Group (Philippines)": 1,
"Meyer, Floyd and Jackson (Germany)": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Horton, Sims and Pacheco (United States)": 1,
"Williamson-Green (Brazil)": 1,
"Knight PLC (India)": 1,
"Allen-Short (South Africa)": 1,
"Kerr LLC (Spain)": 1,
"Sanchez-Mcdonald (India)": 1,
"Poole, Coleman and Shea (Colombia)": 1,
"Johnson, Khan and Oconnell (Japan)": 1,
"Chavez-Price (Belgium)": 1,
"Olson LLC (Brazil)": 1,
"Douglas Inc (United Kingdom)": 1,
"Moreno Group (United States)": 1,
"Hensley-Porter (Indonesia)": 1,
"Cortez Group (United States)": 1,
"Lucas and Sons (United States)": 1,
"Rowland, Todd and Whitaker (Spain)": 1,
"Lynch-Ramirez (Thailand)": 1,
"Larson, Lambert and Gay (China)": 1,
"Hubbard-Holmes (Japan)": 1,
"Nguyen-Peters (China)": 1,
"Gregory PLC (Mexico)": 1,
"Stevens PLC (Ukraine)": 1,
"Rodriguez-Warren (Russian Federation)": 1,
"Bryant-Stark (Portugal)": 1,
"Rodriguez LLC (Netherlands)": 1,
"Coleman LLC (Brazil)": 1,
"Allison PLC (Brazil)": 1,
"Hardy, Bauer and Martinez (Cuba)": 1,
"Taylor, Obrien and Delacruz (Poland)": 1,
"Singh Inc (Russian Federation)": 1,
"Thornton, Cook and Estrada (United States)": 1,
"Peterson-Rose (United States)": 1,
"Cooper and Sons (Switzerland)": 1,
"Jimenez PLC (India)": 1,
"Davis-Wagner (Spain)": 1,
"Jackson, Chan and Rivera (United Kingdom)": 1,
"Smith LLC (Poland)": 1,
"Myers-Brown (Pakistan)": 1,
"Vincent LLC (United States)": 1,
"Martin-Mcbride (China)": 1,
"Collins and Sons (United States)": 1,
"Cervantes, Wagner and Jackson (Argentina)": 1,
"Ibarra and Sons (United States)": 1,
"Jordan, James and Bradley (France)": 1,
"Lee, Pearson and Gates (Japan)": 1,
"Washington-Villanueva (China)": 1,
"Cook LLC (Morocco)": 1,
"Todd-Mcneil (Japan)": 1,
"Garcia-Roberts (Netherlands)": 1,
"Morris, Cain and Boone (Spain)": 1,
"King-Johnson (Iran, Islamic Republic of)": 1,
"Wagner Group (Italy)": 1,
"Peck, Tucker and Patterson (Colombia)": 1,
"Johnson-Carroll (China)": 1,
"Fox-Delacruz (Spain)": 1,
"Cook Group (India)": 1,
"Li-Gonzalez (Philippines)": 1,
"Gibson-Jackson (North Macedonia)": 1,
"Green and Sons (Algeria)": 1,
"Barrera Inc (Ghana)": 1,
"Rodriguez, Estrada and Kim (Kazakhstan)": 1,
"Long-Sullivan (Netherlands)": 1,
"Carr, Smith and Mayo (China)": 1,
"Ford, Martinez and Gutierrez (India)": 1,
"Stewart-Woodard (India)": 1,
"Flores PLC (United States)": 1,
"Figueroa, Ibarra and Jackson (Russian Federation)": 1,
"Hill-Jones (France)": 1,
"Russell, Mcclain and Larson (United States)": 1,
"Guerrero, Sutton and Lucas (United States)": 1,
"Jones PLC (Philippines)": 1,
"Reese-Williams (Italy)": 1,
"Martin and Sons (United States)": 1,
"May, Ruiz and Butler (Turkey)": 1,
"Goodman-Chapman (United States)": 1,
"Huerta, Clark and Johnson (Spain)": 1,
"Curtis, Perkins and Sims (United States)": 1,
"Harper PLC (India)": 1,
"Barr-Melendez (United States)": 1,
"Evans, Park and James (China)": 1,
"Duran, Mueller and Payne (China)": 1,
"Powell-Nguyen (United Kingdom)": 1,
"Brown, Estrada and Riggs (Ukraine)": 1,
"Riley, Barrett and Mccullough (Pakistan)": 1,
"Nichols Inc (Peru)": 1,
"Barber-Hayes (China)": 1,
"Carroll, Nguyen and Martin (Slovakia)": 1,
"Anderson Ltd (Brazil)": 1,
"Larsen-Martinez (Germany)": 1,
"Romero-Nguyen (Spain)": 1,
"White and Sons (North Macedonia)": 1,
"Davidson, Rosales and Stewart (Italy)": 1,
"Hines-Allen (South Africa)": 1,
"Nelson, Cruz and Bush (Tunisia)": 1,
"Buchanan Group (Korea, Republic of)": 1,
"Ross-Brooks (Japan)": 1,
"Calderon-Montgomery (Italy)": 1,
"Reyes, Taylor and Ramirez (United States)": 1,
"Stevens LLC (Korea, Republic of)": 1,
"Cochran-Delacruz (Colombia)": 1,
"Martinez and Sons (Brazil)": 1,
"Stewart PLC (India)": 1,
"Carr, Smith and Webb (Mozambique)": 1,
"Marshall PLC (Belgium)": 1,
"Scott, Frazier and Cooper (Germany)": 1,
"Turner and Sons (Nigeria)": 1,
"Hodges-Johnson (United States)": 1,
"Daniels Group (Antigua and Barbuda)": 1,
"Doyle, King and Thompson (Colombia)": 1,
"Maxwell Inc (India)": 1,
"Ferrell-Dixon (Cameroon)": 1,
"Carlson Inc (Brazil)": 1,
"Nichols-Davis (Ukraine)": 1,
"Parker-Lawrence (Pakistan)": 1,
"Peterson Ltd (Germany)": 1,
"2.56": 1,
"3.52": 1,
"2.82": 1,
"2.78": 1,
"3.76": 1,
"2.94": 1,
"3.08": 1,
"3.02": 1,
"2.98": 1,
"2.88": 1,
"3.72": 1,
"2.46": 1,
"2.86": 1,
"3.19": 1,
"4.06": 1,
"2.13": 1,
"2.59": 1,
"2.62": 1,
"2.75": 1,
"2.64": 1,
"3.85": 1,
"2.89": 1,
"3.21": 1,
"2.32": 1,
"2.14": 1,
"3.33": 1,
"2.24": 1,
"2.52": 1,
"2.18": 1,
"3.42": 1,
"2.97": 1,
"2.25": 1,
"2.73": 1,
"2.6": 1,
"3.49": 1,
"1.77": 1,
"3.92": 1,
"1.83": 1,
"2.23": 1,
"4.36": 1,
"3.29": 1,
"3.53": 1,
"3.28": 1,
"3.48": 1,
"0.95": 1,
"4.13": 1,
"2.04": 1,
"3.46": 1,
"2.34": 1,
"2.35": 1,
"3.43": 1,
"3.51": 1,
"2.65": 1,
"3.39": 1,
"1.85": 1,
"3.22": 1,
"3.03": 1,
"3.79": 1,
"2.16": 1,
"3.93": 1,
"1.89": 1,
"4.33": 1,
"2.91": 1,
"3.6": 1,
"2.71": 1,
"2.28": 1,
"3.34": 1,
"1.95": 1,
"2.77": 1,
"3.55": 1,
"2.87": 1,
"4.44": 1,
"3.5": 1,
"2.2": 1,
"2.06": 1,
"2.12": 1,
"4.11": 1,
"3.17": 1,
"2.17": 1,
"1.65": 1,
"3.63": 1,
"2.61": 1,
"4.34": 1,
"1.21": 1,
"2.22": 1,
"3.62": 1,
"2.3": 1,
"3.66": 1,
"1.97": 1,
"2.48": 1,
"3.75": 1,
"3.27": 1,
"3.38": 1,
"3.45": 1,
"2.5": 1,
"3.7": 1,
"3.73": 1,
"3.24": 1,
"4.03": 1,
"1.36": 1,
"2.39": 1,
"2.72": 1,
"4.15": 1,
"3.26": 1,
"2.68": 1,
"4.8": 1,
"3.01": 1,
"4.22": 1,
"4.17": 1,
"3.56": 1,
"1.6": 1,
"1.29": 1,
"2.57": 1,
"1.79": 1,
"2.85": 1,
"3.2": 1,
"1.54": 1,
"3.4": 1,
"5.09": 1,
"3.25": 1,
"4.6": 1,
"3.12": 1,
"3.84": 1,
"2.42": 1,
"3.3": 1,
"2.27": 1,
"2.96": 1,
"2.55": 1,
"3.86": 1,
"4.32": 1,
"2.66": 1,
"1.71": 1,
"2.99": 1,
"2.4": 1,
"3.1": 1,
"2.51": 1,
"1.55": 1,
"1.74": 1,
"4.16": 1,
"4.83": 1,
"1.93": 1,
"4.58": 1,
"4.43": 1,
"2.1": 1,
"5.35": 1,
"2.84": 1,
"3.23": 1,
"1.99": 1,
"1.7": 1,
"2.53": 1,
"4.14": 1,
"2.49": 1,
"2.74": 1,
"3.58": 1,
"3.82": 1,
"4.35": 1,
"1.1": 1,
"1.94": 1,
"5.7": 1,
"2.29": 1,
"1.41": 1,
"2.81": 1,
"3.77": 1,
"3.0": 1,
"4.24": 1,
"4.88": 1,
"4.99": 1,
"5.51": 1,
"1.12": 1,
"5.72": 1,
"5.29": 1,
"1.27": 1,
"1.8": 1,
"2.5625": 1,
"3.522727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727": 1,
"2.816": 1,
"2.776666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.758888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888": 1,
"2.94444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444": 1,
"3.02125": 1,
"2.9775": 1,
"2.88375": 1,
"3.72125": 1,
"2.45875": 1,
"2.86125": 1,
"3.187142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142": 1,
"4.061428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"3.721428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.131428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.594285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285": 1,
"2.752857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857": 1,
"2.641428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"3.847142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142": 1,
"2.894285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285": 1,
"3.212857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857": 1,
"2.1428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"3.331428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.243333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.518333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.178333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.421666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.973333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.246666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.731666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.596666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.485": 1,
"2.861666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"1.765": 1,
"1.828333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.226666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.356666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.591666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.293333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.526666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.214": 1,
"3.482": 1,
"0.954": 1,
"4.126": 1,
"2.038": 1,
"3.456": 1,
"2.128": 1,
"2.336": 1,
"2.346": 1,
"3.428": 1,
"2.654": 1,
"3.386": 1,
"1.852": 1,
"1.854": 1,
"3.224": 1,
"3.032": 1,
"3.794": 1,
"2.594": 1,
"3.934": 1,
"4.332": 1,
"2.906": 1,
"3.604": 1,
"2.284": 1,
"3.344": 1,
"1.946": 1,
"3.546": 1,
"2.872": 1,
"3.434": 1,
"3.724": 1,
"4.436": 1,
"3.496": 1,
"2.196": 1,
"2.056": 1,
"2.122": 1,
"1.648": 1,
"2.608": 1,
"4.344": 1,
"1.214": 1,
"2.224": 1,
"3.6225": 1,
"2.2975": 1,
"2.455": 1,
"3.6625": 1,
"1.9725": 1,
"2.475": 1,
"3.745": 1,
"3.2725": 1,
"4.055": 1,
"3.445": 1,
"3.5975": 1,
"2.5025": 1,
"3.7025": 1,
"3.7275": 1,
"2.8175": 1,
"2.125": 1,
"1.355": 1,
"2.385": 1,
"2.7225": 1,
"4.145": 1,
"3.255": 1,
"3.5525": 1,
"2.6775": 1,
"3.1925": 1,
"2.1275": 1,
"4.795": 1,
"4.165": 1,
"3.5625": 1,
"2.8825": 1,
"1.2925": 1,
"3.1725": 1,
"2.3925": 1,
"2.565": 1,
"2.2775": 1,
"2.845": 1,
"3.195": 1,
"1.6475": 1,
"1.536666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.396666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"5.093333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.653333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.523333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.376666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.246666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.603333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.123333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.843333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.126666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.183333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.273333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.463333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.273333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.353333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.546666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.856666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"0.953333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.713333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.993333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.403333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.103333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.736666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.83333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.93333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"4.576666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.476666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.425": 1,
"2.595": 1,
"3.655": 1,
"2.095": 1,
"5.345": 1,
"3.505": 1,
"3.225": 1,
"2.955": 1,
"1.985": 1,
"3.845": 1,
"1.695": 1,
"2.525": 1,
"2.485": 1,
"3.815": 1,
"1.095": 1,
"1.935": 1,
"5.695": 1,
"2.285": 1,
"2.545": 1,
"1.405": 1,
"2.515": 1,
"3.495": 1,
"2.805": 1,
"12": 1,
"11": 1,
"10": 1,
"9": 1,
"8": 1,
"7": 1,
"6": 1,
"5": 1,
"4": 1,
"3": 1,
"2": 1,
"1": 1
}
{
"set_P": 0.20473372781065088,
"set_recall": 0.41686746987951806,
"set_F": 0.2746031746031746
}
ck26:32-de
Was ist der durchschnittliche Preis
in Euro für die Produkte jedes
Anbieters, gerundet auf einen
angemessenen Betrag?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name (ROUND(AVG(?amt) * 100) / 100 AS ?avgEur) WHERE {
?sup a pv:Supplier ;
pv:name ?name .
?hw pv:hasSupplier ?sup ;
pv:price/pv:amount ?amt ;
pv:price/pv:currency "EUR" .
}
GROUP BY ?sup ?name
{
"Cohen, Bell and Rodriguez": 1,
"Martinez and Sons": 1,
"Johnson-Carroll": 1,
"Boyd, Turner and Byrd": 1,
"Petty, Hamilton and Solomon": 1,
"White, Wong and Trevino": 1,
"Garrison, Williams and Johnson": 1,
"King-Johnson": 1,
"Fox-Delacruz": 1,
"Washington-Villanueva": 1,
"Riley, Barrett and Mccullough": 1,
"Knight PLC": 1,
"Poole, Coleman and Shea": 1,
"Vincent LLC": 1,
"Griffith-Stout": 1,
"Brown, Estrada and Riggs": 1,
"Smith and Sons": 1,
"Carr, Smith and Webb": 1,
"Ibarra and Sons": 1,
"Figueroa, Ibarra and Jackson": 1,
"Wagner-Ramirez": 1,
"Gross, Frey and Mcmahon": 1,
"Nelson, Cruz and Bush": 1,
"Church Inc": 1,
"Barry PLC": 1,
"Maldonado Inc": 1,
"Pollard LLC": 1,
"Barr-Melendez": 1,
"Adkins, Lopez and Boyd": 1,
"Curtis, Perkins and Sims": 1,
"Williamson-Young": 1,
"Peck, Tucker and Patterson": 1,
"Reese-Williams": 1,
"Martin and Sons": 1,
"Gomez Inc": 1,
"Anderson-Young": 1,
"Garcia-Roberts": 1,
"Gregory PLC": 1,
"Odonnell-Williams": 1,
"Gentry-Gross": 1,
"Mclaughlin-Hawkins": 1,
"Thomas-Jenkins": 1,
"Peterson-Rose": 1,
"Williams, Bailey and Martinez": 1,
"Martinez LLC": 1,
"Parker-Lawrence": 1,
"Chavez-Price": 1,
"Ford, Martinez and Gutierrez": 1,
"Santiago-Gardner": 1,
"Lopez, Goodman and Miller": 1,
"Flores PLC": 1,
"White, Lewis and Evans": 1,
"Moran, Martin and Freeman": 1,
"Mendoza, Moore and Thomas": 1,
"Mccarthy-Galloway": 1,
"Carroll, Nguyen and Martin": 1,
"Bender PLC": 1,
"Boyd, Berg and Sampson": 1,
"Todd-Mcneil": 1,
"Mcpherson Ltd": 1,
"Thompson Ltd": 1,
"Allen-Short": 1,
"Stevens PLC": 1,
"Taylor, Obrien and Delacruz": 1,
"Lee, Pearson and Gates": 1,
"Watkins Group": 1,
"Morris, Cain and Boone": 1,
"Howell-Meyer": 1,
"Cervantes, Wagner and Jackson": 1,
"Jackson, Chan and Rivera": 1,
"Powell-Nguyen": 1,
"Rodriguez LLC": 1,
"Smith LLC": 1,
"Cooper, Walker and Perez": 1,
"Maxwell Inc": 1,
"Buchanan Group": 1,
"Harper PLC": 1,
"Newton Inc": 1,
"Hernandez, Mayer and Jones": 1,
"Wright Inc": 1,
"Allison PLC": 1,
"Richardson Inc": 1,
"Griffin, Smith and Smith": 1,
"Collins, Martin and Lane": 1,
"Perkins, Garza and Cochran": 1,
"Hensley-Porter": 1,
"Kerr LLC": 1,
"Curtis, Doyle and Singleton": 1,
"Davis Ltd": 1,
"Nguyen-Cruz": 1,
"Lynch LLC": 1,
"Smith-Williamson": 1,
"White-Nash": 1,
"Kidd, Mcdaniel and Russell": 1,
"Barrera Inc": 1,
"Mayo, Aguirre and Ryan": 1,
"Lucas and Sons": 1,
"Hardy, Bauer and Martinez": 1,
"Mcdaniel, Dean and Delgado": 1,
"Santana LLC": 1,
"Barber-Hayes": 1,
"Lee and Sons": 1,
"Romero-Nguyen": 1,
"Jones-Martinez": 1,
"Harris, Graves and Gonzalez": 1,
"Alvarez-Curtis": 1,
"Sanchez-Mcdonald": 1,
"Bryan-James": 1,
"Hines-Allen": 1,
"Thornton, Cook and Estrada": 1,
"Coleman LLC": 1,
"Hubbard Ltd": 1,
"Cooper and Sons": 1,
"Anderson Ltd": 1,
"Peterson Ltd": 1,
"Russell, Mcclain and Larson": 1,
"Harrison PLC": 1,
"Gibson-Jackson": 1,
"Stevens LLC": 1,
"Brown, Torres and Bautista": 1,
"Lynch-Ramirez": 1,
"Evans, Park and James": 1,
"Jones Group": 1,
"Rodriguez-Mcdonald": 1,
"Odom-Lawrence": 1,
"Peterson, Norton and Preston": 1,
"Singh Inc": 1,
"Bryan-Jones": 1,
"May, Ruiz and Butler": 1,
"Page, Hernandez and Ayala": 1,
"Smith-Cobb": 1,
"Baker, Medina and George": 1,
"Jordan, James and Bradley": 1,
"Harris-Cunningham": 1,
"Reyes, Taylor and Ramirez": 1,
"Salinas-Kelly": 1,
"Snyder, Robinson and Brown": 1,
"Duran, Mueller and Payne": 1,
"Marshall PLC": 1,
"Miller, Green and Scott": 1,
"Williamson-Green": 1,
"Arnold-Knight": 1,
"Jimenez PLC": 1,
"Guerrero, Sutton and Lucas": 1,
"Simmons, Cox and Craig": 1,
"Moreno Group": 1,
"Cortez Group": 1,
"Collins-Hensley": 1,
"Meyer, Marquez and Mckenzie": 1,
"Manning, Hodges and Mckenzie": 1,
"Davidson, Rosales and Stewart": 1,
"Drake Ltd": 1,
"Rowland, Todd and Whitaker": 1,
"Marsh, Cunningham and Hill": 1,
"Ross-Brooks": 1,
"Cantu-Ferguson": 1,
"Larsen-Martinez": 1,
"Doyle, King and Thompson": 1,
"Huang, Guerrero and Hurst": 1,
"Benitez and Sons": 1,
"Wilson-Callahan": 1,
"Olson LLC": 1,
"Hutchinson-Lane": 1,
"Martin-Mcbride": 1,
"Rivera Group": 1,
"Fleming Inc": 1,
"Fletcher, Pierce and Navarro": 1,
"Carter Group": 1,
"Phillips, Love and Smith": 1,
"Douglas Inc": 1,
"Rich, Powell and Ward": 1,
"Green-Crawford": 1,
"Scott, Frazier and Cooper": 1,
"Nguyen-Peters": 1,
"Collins and Sons": 1,
"Barnes LLC": 1,
"Calderon-Montgomery": 1,
"Avery-Johnson": 1,
"Schroeder and Sons": 1,
"Green and Sons": 1,
"James-Wright": 1,
"Myers-Brown": 1,
"Meyer, Floyd and Jackson": 1,
"Nichols Inc": 1,
"Harris, Wright and Morales": 1,
"Nichols-Davis": 1,
"Wagner Group": 1,
"Turner, Hall and Jimenez": 1,
"Daniels Group": 1,
"Clarke-Brown": 1,
"Larson, Lambert and Gay": 1,
"Goodman-Chapman": 1,
"Cook Group": 1,
"Jones PLC": 1,
"Cochran-Delacruz": 1,
"Carr, Smith and Mayo": 1,
"Estes, Johnston and Richardson": 1,
"Bruce, Gutierrez and Thompson": 1,
"Hill-Jones": 1,
"Becker LLC": 1,
"Aguilar, Matthews and Martinez": 1,
"Bolton, Sanchez and Rodgers": 1,
"Rodriguez, Estrada and Kim": 1,
"Huerta, Clark and Johnson": 1,
"Zamora, Adams and Koch": 1,
"Cook LLC": 1,
"Ferrell-Dixon": 1,
"Rodriguez-Warren": 1,
"Brown, Jackson and Simpson": 1,
"Fuentes Inc": 1,
"Hodges-Johnson": 1,
"Hall-Hodges": 1,
"Carlson Inc": 1,
"Shaffer PLC": 1,
"Grant-Nelson": 1,
"Brown PLC": 1,
"Swanson-Kennedy": 1,
"Davis-Wagner": 1,
"Adams-White": 1,
"Rodriguez, Schmidt and Hodge": 1,
"Johnson, Khan and Oconnell": 1,
"Bennett, Best and Jacobson": 1,
"White and Sons": 1,
"Bryant-Stark": 1,
"Stewart-Woodard": 1,
"Morgan, Brown and Martin": 1,
"Stewart PLC": 1,
"Little, Dunlap and Nelson": 1,
"Fernandez-Roberts": 1,
"Carter, Webb and Bush": 1,
"Hubbard-Holmes": 1,
"Garcia Ltd": 1,
"Horton, Sims and Pacheco": 1,
"Li-Gonzalez": 1,
"Neal LLC": 1,
"Turner and Sons": 1,
"Hernandez, Jenkins and Luna": 1,
"Wilson, Kim and Dorsey": 1,
"Long-Sullivan": 1,
"Morgan-Leonard": 1,
"Harris-Waller": 1,
"Stevens Ltd": 1,
"2.17": 1,
"4.24": 1,
"2.24": 1,
"2.18": 1,
"2.39": 1,
"1.85": 1,
"3.85": 1,
"1.74": 1,
"4.83": 1,
"2.4": 1,
"3.58": 1,
"1.6": 1,
"3.86": 1,
"4.13": 1,
"2.74": 1,
"2.97": 1,
"4.99": 1,
"2.66": 1,
"2.82": 1,
"2.91": 1,
"3.46": 1,
"1.41": 1,
"2.2": 1,
"3.48": 1,
"4.34": 1,
"2.13": 1,
"2.53": 1,
"3.45": 1,
"4.16": 1,
"3.23": 1,
"2.34": 1,
"3.08": 1,
"2.51": 1,
"3.38": 1,
"2.72": 1,
"2.12": 1,
"3.02": 1,
"3.17": 1,
"1.8": 1,
"2.28": 1,
"2.1": 1,
"2.48": 1,
"2.77": 1,
"3.93": 1,
"4.44": 1,
"2.94": 1,
"2.98": 1,
"4.22": 1,
"4.35": 1,
"2.22": 1,
"2.32": 1,
"2.04": 1,
"3.19": 1,
"1.29": 1,
"3.25": 1,
"2.42": 1,
"2.99": 1,
"2.59": 1,
"1.55": 1,
"3.42": 1,
"4.32": 1,
"2.96": 1,
"3.52": 1,
"3.12": 1,
"2.35": 1,
"1.27": 1,
"2.52": 1,
"1.7": 1,
"3.03": 1,
"3.92": 1,
"2.88": 1,
"3.53": 1,
"2.62": 1,
"3.73": 1,
"0.95": 1,
"1.65": 1,
"3.34": 1,
"3.01": 1,
"2.73": 1,
"3.66": 1,
"2.46": 1,
"1.36": 1,
"4.43": 1,
"3.27": 1,
"1.54": 1,
"2.25": 1,
"3.24": 1,
"3.82": 1,
"1.89": 1,
"5.7": 1,
"3.55": 1,
"3.29": 1,
"4.15": 1,
"3.84": 1,
"2.68": 1,
"3.3": 1,
"1.1": 1,
"4.03": 1,
"3.51": 1,
"2.16": 1,
"3.77": 1,
"3.28": 1,
"4.14": 1,
"3.22": 1,
"2.71": 1,
"4.8": 1,
"3.72": 1,
"2.86": 1,
"1.71": 1,
"3.6": 1,
"2.65": 1,
"2.78": 1,
"2.3": 1,
"2.49": 1,
"5.51": 1,
"3.75": 1,
"2.14": 1,
"2.27": 1,
"2.84": 1,
"4.06": 1,
"3.2": 1,
"3.43": 1,
"3.21": 1,
"2.55": 1,
"3.39": 1,
"3.4": 1,
"3.26": 1,
"3.5": 1,
"1.95": 1,
"1.94": 1,
"3.62": 1,
"1.79": 1,
"2.75": 1,
"4.17": 1,
"2.23": 1,
"1.21": 1,
"1.83": 1,
"2.85": 1,
"2.89": 1,
"1.12": 1,
"1.77": 1,
"2.61": 1,
"2.81": 1,
"3.7": 1,
"3.56": 1,
"2.87": 1,
"5.29": 1,
"5.09": 1,
"1.93": 1,
"3.0": 1,
"3.49": 1,
"3.76": 1,
"4.11": 1,
"2.6": 1,
"1.99": 1,
"3.1": 1,
"4.6": 1,
"3.33": 1,
"3.63": 1,
"1.97": 1,
"2.64": 1,
"4.33": 1,
"2.57": 1,
"2.56": 1,
"2.29": 1,
"5.35": 1,
"4.88": 1,
"4.36": 1,
"4.58": 1,
"5.72": 1,
"2.5": 1,
"3.79": 1,
"2.06": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?supplier (SAMPLE(COALESCE(rdfs:label, pv:name, STR(?supplier))) AS ?supplierLabel) (AVG(?amt) AS ?avg) ((ROUND(AVG(?amt) * 100) / 100) AS ?avg_rounded) WHERE {
?product pv:hasSupplier ?supplier .
?product pv:price ?price .
?price pv:amount ?amt .
?price pv:currency ?currency .
FILTER(str(?currency) = "EUR") .
OPTIONAL { ?supplier rdfs:label ?slabel. }
OPTIONAL { ?supplier pv:name ?sname. }
}
GROUP BY ?supplier
ORDER BY DESC(?avg)
{
"http://ld.company.org/prod-instances/suppl-ba01e204-e74e-4f87-bc55-1a43c099f199": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-d7f501f6-e595-473c-90fc-89933505411e": 1,
"http://ld.company.org/prod-instances/suppl-79126b93-df5a-4170-b80e-546a837605f3": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-88745cef-2133-4d0c-a1de-00fa0740eb26": 1,
"http://ld.company.org/prod-instances/suppl-248fa1c7-dd1e-41fe-931a-9f00777ee0fe": 1,
"http://ld.company.org/prod-instances/suppl-db55e5ad-918e-42a0-97b4-1f496f9574dd": 1,
"http://ld.company.org/prod-instances/suppl-cfe8ae59-a7a8-4772-8bd5-bbd6991af811": 1,
"http://ld.company.org/prod-instances/suppl-64902ce8-7950-458e-bcee-5df3cabc7972": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-e27932a5-487a-4eca-9f9a-d82d5e5c467b": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-79274f67-b225-49fa-ad8c-fb20560cb1d5": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-2805bfc6-fe9f-49fc-90ba-d4c779a38af2": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-a28a6f2f-a549-4a38-98ac-6eaeff8472ce": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-67db6571-5c2f-4c52-9d0b-1584a74bb116": 1,
"http://ld.company.org/prod-instances/suppl-6b879d25-7222-419e-8f1a-d9c9ceda2600": 1,
"http://ld.company.org/prod-instances/suppl-532fc460-676f-4727-b5b2-6d3771db9ba1": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-7c4b3772-ee27-4915-8166-359d068db153": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-dd4262b0-805f-49f8-94b0-12dcadea9e73": 1,
"http://ld.company.org/prod-instances/suppl-a6815a96-329d-414e-89fa-27619179f857": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-db1a07bc-c946-4ddd-8f47-b836c2f35281": 1,
"http://ld.company.org/prod-instances/suppl-658f838d-0e84-4f36-978c-95602545977c": 1,
"http://ld.company.org/prod-instances/suppl-22b67f9e-45e9-449e-8269-a31bd550324a": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-ab8fb795-35cd-42c4-827d-6fd907d6b81d": 1,
"http://ld.company.org/prod-instances/suppl-cd395f35-74dc-4858-8bb9-5fdf0add00ee": 1,
"http://ld.company.org/prod-instances/suppl-dff64a17-e085-4289-9196-a1e7ae8b0c22": 1,
"http://ld.company.org/prod-instances/suppl-25e44a18-cb4f-48aa-bb6a-c05189268df6": 1,
"http://ld.company.org/prod-instances/suppl-a1a85cfc-109a-47fe-91a2-632334d35f44": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-3c198782-cb13-4253-aefc-f48aa8ded00a": 1,
"http://ld.company.org/prod-instances/suppl-b9dfb874-fb5d-4d34-8a13-e4f1395f3c6e": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-a0f25cc7-1407-452e-98e2-8fa5083d4041": 1,
"http://ld.company.org/prod-instances/suppl-1b032f32-5734-44da-8758-554ad059b03e": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-d0f6eeee-24cc-4a72-9331-d0ebbb83643b": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-f3de43d3-4bd7-4641-be54-2db60238aa14": 1,
"http://ld.company.org/prod-instances/suppl-238c3f06-3708-4b59-8617-f94611d6f3a3": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"http://ld.company.org/prod-instances/suppl-ebbcad78-26fa-4d33-95ca-84decc4209a4": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-816e4baa-8158-4e2a-8ff4-c9f969998389": 1,
"http://ld.company.org/prod-instances/suppl-6268ab7c-e25c-44ff-8431-e631679623b5": 1,
"http://ld.company.org/prod-instances/suppl-f1067c74-aa84-4a06-9fbd-16f914be2e65": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-1b447fbd-a0fe-4385-8141-ab5aa43fbedb": 1,
"http://ld.company.org/prod-instances/suppl-e9d8bb44-d19d-4453-8db2-d6d656f411be": 1,
"http://ld.company.org/prod-instances/suppl-854314d4-9505-4765-b22a-a2ff53549b0b": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-29c1b979-da61-4df4-ae3d-a2e303ea4444": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-297508c6-6074-4625-8dec-7bab342010a1": 1,
"http://ld.company.org/prod-instances/suppl-bd9aec71-4218-45ce-b6c6-d076ad07f8cd": 1,
"http://ld.company.org/prod-instances/suppl-6d5eddf9-7c6f-4a88-8aba-2ef65267d78b": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-d2a60059-73f4-4fae-9a4a-0ab93f5203eb": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-0ca3c664-7fb2-446a-b5c6-73fe140c4f02": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-82869f9c-fa06-45cb-922a-00675cde9676": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-05b5a686-c821-41c4-bc2c-b66d35bac1d8": 1,
"http://ld.company.org/prod-instances/suppl-33da751a-1358-4530-b0e5-e3b9a509e952": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-f26204e2-83cc-4526-a8f0-d4c86f295774": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-7f0c3d05-f16c-44c0-b9f4-5ff9d2892270": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-aaaa3f68-318a-4d8d-b080-79490e9e9dfa": 1,
"http://ld.company.org/prod-instances/suppl-f494b5db-7627-4a97-809e-8e8f9d92fb51": 1,
"http://ld.company.org/prod-instances/suppl-701e751f-51dc-482f-86d5-544b4af40076": 1,
"http://ld.company.org/prod-instances/suppl-373cc68d-3c51-43d9-878a-36aa0aeb86c6": 1,
"http://ld.company.org/prod-instances/suppl-2318f317-967e-4282-aceb-c17a6349f86e": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-79614820-e391-46f2-8ab9-c5022ad154d8": 1,
"http://ld.company.org/prod-instances/suppl-fb607751-7ff0-4cea-8e23-d22b4b1c67ad": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-cd18146d-c073-4d58-97b4-ac079baa9b65": 1,
"http://ld.company.org/prod-instances/suppl-d0c9f303-04ac-44b3-9cbc-afed50b7a260": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-42f054a5-0aba-4b02-b68a-851130c639fc": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-66558286-cf29-4320-80a9-de2c12aa2f3c": 1,
"http://ld.company.org/prod-instances/suppl-65131e0d-addc-41f9-a33f-e9f3b7f00566": 1,
"http://ld.company.org/prod-instances/suppl-d0f56bf6-b7f2-4032-be8f-95269c626667": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-b8b7794e-329e-4bdc-9fcb-5ddfe9b71248": 1,
"http://ld.company.org/prod-instances/suppl-12417d4e-b119-46a1-8c47-a560c2d103dd": 1,
"http://ld.company.org/prod-instances/suppl-47c86e10-e667-4725-bbe3-ac372da0b472": 1,
"http://ld.company.org/prod-instances/suppl-fcdf3268-b0f0-4e2b-8fbd-6008cb4a6d0e": 1,
"http://ld.company.org/prod-instances/suppl-2f7172a0-e935-4dfc-98a6-b48dcec0ad18": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-7c930e8b-b9f3-450a-856b-5e03c6b3965e": 1,
"http://ld.company.org/prod-instances/suppl-7d33e910-5889-4f75-bd2b-193ec2434d0f": 1,
"http://ld.company.org/prod-instances/suppl-9c9d9974-bea3-4bf9-882e-c16a80b17e84": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-3f0439ac-320f-4d70-b9a4-2fef9281ff49": 1,
"http://ld.company.org/prod-instances/suppl-27f8059f-fe10-4a39-aa68-d66210c9cc59": 1,
"http://ld.company.org/prod-instances/suppl-cccd3023-1267-4fe6-9fbe-2441662cbb46": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-2451f479-fe10-4322-a8c9-3f4f21f39779": 1,
"http://ld.company.org/prod-instances/suppl-17c52e07-d5ce-4cfd-87cf-5ac7e3554c0c": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-feeda1ce-d6af-42b2-b6ff-7516ba39ad6c": 1,
"http://ld.company.org/prod-instances/suppl-3288e7a5-6b1b-482e-8c95-3265f948ae03": 1,
"http://ld.company.org/prod-instances/suppl-91be13e0-b467-48d9-8ff7-cbed652b49cb": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-6259c66a-0eec-4f7f-b4a4-a0c2be80461e": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-f0feb132-7033-41f2-99e2-fdb8834302ec": 1,
"http://ld.company.org/prod-instances/suppl-49231eda-bbab-475b-aa59-47e6c8c81166": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-8f607810-ca93-4274-9c27-d0a8dcba7c4a": 1,
"http://ld.company.org/prod-instances/suppl-0c327a40-c6d8-44da-ba2d-e84f924c5208": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-f80817bf-7010-48c7-a3be-b015b09309d0": 1,
"http://ld.company.org/prod-instances/suppl-7ce25e4c-5894-4e77-ada2-d2bb434fdae9": 1,
"http://ld.company.org/prod-instances/suppl-acc9fdfb-2811-4b87-8231-7168c70e7497": 1,
"http://ld.company.org/prod-instances/suppl-5f36c064-46dd-4351-b0e8-9cb2c76bfbab": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-3ad032a1-2e9f-4629-93c7-0ee0b5bb0e25": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-b508d6ec-f430-4496-9c08-bd54f1541023": 1,
"http://ld.company.org/prod-instances/suppl-9da10220-7964-4a7a-a1ea-571a63cc483d": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-092bb1b2-b39f-4521-9c21-c853db9d9a09": 1,
"http://ld.company.org/prod-instances/suppl-d42974b3-923e-4f26-9bfa-1176e0073791": 1,
"http://ld.company.org/prod-instances/suppl-caeb974d-5803-4419-b316-2245f15f73d4": 1,
"http://ld.company.org/prod-instances/suppl-63ab664f-80d7-46e1-97cb-39a4f713f937": 1,
"http://ld.company.org/prod-instances/suppl-114d6a02-02d8-4038-97a3-fd39a9701f79": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-6746c17d-5e49-47bc-82a1-90ac0c7aa01c": 1,
"http://ld.company.org/prod-instances/suppl-30dc6bac-5604-4e78-a48d-eed66f4d4dc8": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-b9ed885f-282e-4836-bede-f1dc9f9f5c41": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"http://ld.company.org/prod-instances/suppl-15bdf688-23a7-4f52-be5c-fe82bba7add7": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-f19beb89-6c1f-45e9-8864-8a832bf17a55": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-e18d93fc-f1db-4ac7-b138-e158c6fb2e69": 1,
"http://ld.company.org/prod-instances/suppl-46bae099-f191-415a-aefa-3cab4b0e8c2e": 1,
"http://ld.company.org/prod-instances/suppl-4b796fba-c152-4137-b01d-fce80aef6e3c": 1,
"http://ld.company.org/prod-instances/suppl-4f22034e-f299-442a-a1e3-3d9dc974ed8f": 1,
"http://ld.company.org/prod-instances/suppl-f7a4c865-f6d4-4896-bc48-e5ec6b2bf283": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-23be71fa-4280-4114-9750-025c224be098": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-66cdfd7b-f68e-40d1-b9dc-0dd54c50b6a1": 1,
"http://ld.company.org/prod-instances/suppl-1e0eae5f-25ae-4ef9-807e-4ce162fa2934": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-6de163f7-8aa2-434a-a210-78fea02e490c": 1,
"http://ld.company.org/prod-instances/suppl-f7c5fad9-9f0c-4206-a338-e162bfe54de1": 1,
"http://ld.company.org/prod-instances/suppl-9484418b-c487-4050-9094-050f3bab0817": 1,
"http://ld.company.org/prod-instances/suppl-a2a17a94-b064-4682-86ba-1c933616568f": 1,
"http://ld.company.org/prod-instances/suppl-e68696c9-d9e7-4d2b-b467-d923c91ce47b": 1,
"http://ld.company.org/prod-instances/suppl-fbfe40db-81e4-4b35-93d5-a996307a266e": 1,
"http://ld.company.org/prod-instances/suppl-fab306a0-9ab2-4834-949a-58804bddc9a4": 1,
"http://ld.company.org/prod-instances/suppl-9b333a39-4f8b-4f38-8bc8-3aea5aa24cd8": 1,
"http://ld.company.org/prod-instances/suppl-d396349e-7772-49c3-bcdf-0afbeae658fa": 1,
"http://ld.company.org/prod-instances/suppl-6463b573-32bd-4bc5-b2dc-c8e9a96965ba": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-534df54e-82c6-430e-ad50-d80a3a745e11": 1,
"http://ld.company.org/prod-instances/suppl-8d98799f-d657-4acf-9ca6-9b90420ff681": 1,
"http://ld.company.org/prod-instances/suppl-da35429e-b1b6-4780-9fcc-f1b17b40d4e3": 1,
"http://ld.company.org/prod-instances/suppl-45d529da-5989-484a-a60d-acba0442a929": 1,
"http://ld.company.org/prod-instances/suppl-2fd79a0c-24b5-4361-8b5b-df720d2c7eac": 1,
"http://ld.company.org/prod-instances/suppl-4f66d217-8106-4b87-922b-fbe6e8d6d699": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-b5028bba-a927-45d7-9032-ee90825311c5": 1,
"http://ld.company.org/prod-instances/suppl-fd5556a6-46fc-4d68-846b-e543ce6f4ec9": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-8a148e6d-972c-4135-930a-c6d9ea6957fd": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-2731aa23-7ea4-4661-b79b-6f0d4d17d5b3": 1,
"http://ld.company.org/prod-instances/suppl-0d183bba-b1df-4c41-be10-c0896378b406": 1,
"http://ld.company.org/prod-instances/suppl-a6f1f4bd-bdd5-4a35-b683-2aee89aa8ed3": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-d7ca1d2e-6b21-4c0c-821a-c4e8d5a3c65c": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-cc8fb083-225e-4d29-960d-5d74b02adeda": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-784f7f15-1a8c-43f5-923c-de0beb82f32f": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-2617dc37-a7c6-4c6c-b89d-4e4f367f3d78": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-cb43b726-1b2f-44dd-b960-18b361c7288e": 1,
"http://ld.company.org/prod-instances/suppl-6ca36744-76bd-47bd-b4fd-6319ed8c87c7": 1,
"http://ld.company.org/prod-instances/suppl-35f7b6ea-9412-41f4-9652-8e419db45ce8": 1,
"http://ld.company.org/prod-instances/suppl-9c71665d-ca2e-44e3-b9ba-f1e47dec6dfe": 1,
"http://ld.company.org/prod-instances/suppl-a10b61e6-8288-499d-bd8c-d89b9625fb1f": 1,
"http://ld.company.org/prod-instances/suppl-83983274-a805-4fcd-a909-1c2e14651637": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-0058fc5e-e9e8-46eb-ac6d-673e436a5d7a": 1,
"http://ld.company.org/prod-instances/suppl-0301f65d-2290-456b-a3f7-b2096a632198": 1,
"http://ld.company.org/prod-instances/suppl-7f696243-08d9-458c-8041-e114a223b897": 1,
"http://ld.company.org/prod-instances/suppl-7273d4f8-9c3a-4279-a18c-bb0f425bc8eb": 1,
"http://ld.company.org/prod-instances/suppl-267680ea-eafe-4d40-a3c6-4807c0d195b1": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"5.72": 1,
"5.695": 1,
"5.51": 1,
"5.345": 1,
"5.29": 1,
"5.093333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"4.99": 1,
"4.88": 1,
"4.83333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"4.795": 1,
"4.603333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"4.576666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.436": 1,
"4.425": 1,
"4.356666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"4.35": 1,
"4.344": 1,
"4.332": 1,
"4.32": 1,
"4.24": 1,
"4.22": 1,
"4.165": 1,
"4.16": 1,
"4.145": 1,
"4.14": 1,
"4.126": 1,
"4.11": 1,
"4.061428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"4.055": 1,
"4.03": 1,
"3.934": 1,
"3.93": 1,
"3.92": 1,
"3.856666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.847142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142": 1,
"3.845": 1,
"3.843333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.815": 1,
"3.794": 1,
"3.77": 1,
"3.758888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888": 1,
"3.745": 1,
"3.7275": 1,
"3.724": 1,
"3.721428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"3.72125": 1,
"3.7025": 1,
"3.6625": 1,
"3.655": 1,
"3.63": 1,
"3.6225": 1,
"3.604": 1,
"3.5975": 1,
"3.58": 1,
"3.5625": 1,
"3.5525": 1,
"3.546": 1,
"3.53": 1,
"3.526666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.522727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727": 1,
"3.52": 1,
"3.51": 1,
"3.505": 1,
"3.496": 1,
"3.495": 1,
"3.485": 1,
"3.482": 1,
"3.476666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.463333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.46": 1,
"3.456": 1,
"3.45": 1,
"3.445": 1,
"3.434": 1,
"3.428": 1,
"3.421666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.396666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.386": 1,
"3.38": 1,
"3.376666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.344": 1,
"3.331428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"3.3": 1,
"3.293333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.29": 1,
"3.28": 1,
"3.273333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.2725": 1,
"3.255": 1,
"3.246666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"3.24": 1,
"3.225": 1,
"3.224": 1,
"3.214": 1,
"3.212857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857": 1,
"3.195": 1,
"3.1925": 1,
"3.187142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142": 1,
"3.1725": 1,
"3.17": 1,
"3.123333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.103333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"3.08": 1,
"3.032": 1,
"3.03": 1,
"3.02125": 1,
"3.01": 1,
"3.0": 1,
"2.993333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.98": 1,
"2.9775": 1,
"2.973333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.97": 1,
"2.96": 1,
"2.955": 1,
"2.94444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444": 1,
"2.906": 1,
"2.894285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285": 1,
"2.88375": 1,
"2.8825": 1,
"2.872": 1,
"2.87": 1,
"2.861666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.86125": 1,
"2.845": 1,
"2.84": 1,
"2.82": 1,
"2.8175": 1,
"2.816": 1,
"2.805": 1,
"2.776666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.77": 1,
"2.752857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857142857": 1,
"2.74": 1,
"2.731666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.73": 1,
"2.7225": 1,
"2.71": 1,
"2.6775": 1,
"2.66": 1,
"2.654": 1,
"2.653333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.65": 1,
"2.641428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.62": 1,
"2.608": 1,
"2.596666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.595": 1,
"2.594285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285714285": 1,
"2.594": 1,
"2.591666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.565": 1,
"2.5625": 1,
"2.55": 1,
"2.546666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.545": 1,
"2.525": 1,
"2.523333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.518333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.515": 1,
"2.51": 1,
"2.5025": 1,
"2.485": 1,
"2.475": 1,
"2.45875": 1,
"2.455": 1,
"2.42": 1,
"2.403333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.3925": 1,
"2.385": 1,
"2.353333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.346": 1,
"2.336": 1,
"2.32": 1,
"2.2975": 1,
"2.285": 1,
"2.284": 1,
"2.2775": 1,
"2.273333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.246666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.243333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.24": 1,
"2.226666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.224": 1,
"2.22": 1,
"2.196": 1,
"2.183333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.18": 1,
"2.178333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"2.17": 1,
"2.16": 1,
"2.1428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.131428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428571428": 1,
"2.128": 1,
"2.1275": 1,
"2.126666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"2.125": 1,
"2.122": 1,
"2.095": 1,
"2.056": 1,
"2.038": 1,
"1.985": 1,
"1.9725": 1,
"1.946": 1,
"1.935": 1,
"1.93333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.89": 1,
"1.854": 1,
"1.852": 1,
"1.828333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.8": 1,
"1.79": 1,
"1.765": 1,
"1.74": 1,
"1.736666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"1.713333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"1.695": 1,
"1.648": 1,
"1.6475": 1,
"1.6": 1,
"1.55": 1,
"1.536666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666": 1,
"1.405": 1,
"1.355": 1,
"1.2925": 1,
"1.27": 1,
"1.214": 1,
"1.12": 1,
"1.095": 1,
"0.954": 1,
"0.953333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333": 1,
"5.7": 1,
"5.35": 1,
"5.09": 1,
"4.83": 1,
"4.8": 1,
"4.6": 1,
"4.58": 1,
"4.44": 1,
"4.43": 1,
"4.36": 1,
"4.34": 1,
"4.33": 1,
"4.17": 1,
"4.15": 1,
"4.13": 1,
"4.06": 1,
"3.86": 1,
"3.85": 1,
"3.84": 1,
"3.82": 1,
"3.79": 1,
"3.76": 1,
"3.75": 1,
"3.73": 1,
"3.72": 1,
"3.7": 1,
"3.66": 1,
"3.62": 1,
"3.6": 1,
"3.56": 1,
"3.55": 1,
"3.5": 1,
"3.49": 1,
"3.48": 1,
"3.43": 1,
"3.42": 1,
"3.4": 1,
"3.39": 1,
"3.34": 1,
"3.33": 1,
"3.27": 1,
"3.26": 1,
"3.25": 1,
"3.23": 1,
"3.22": 1,
"3.21": 1,
"3.2": 1,
"3.19": 1,
"3.12": 1,
"3.1": 1,
"3.02": 1,
"2.99": 1,
"2.94": 1,
"2.91": 1,
"2.89": 1,
"2.88": 1,
"2.86": 1,
"2.85": 1,
"2.81": 1,
"2.78": 1,
"2.75": 1,
"2.72": 1,
"2.68": 1,
"2.64": 1,
"2.61": 1,
"2.6": 1,
"2.59": 1,
"2.57": 1,
"2.56": 1,
"2.53": 1,
"2.52": 1,
"2.5": 1,
"2.49": 1,
"2.48": 1,
"2.46": 1,
"2.4": 1,
"2.39": 1,
"2.35": 1,
"2.34": 1,
"2.3": 1,
"2.29": 1,
"2.28": 1,
"2.27": 1,
"2.25": 1,
"2.23": 1,
"2.2": 1,
"2.14": 1,
"2.13": 1,
"2.12": 1,
"2.1": 1,
"2.06": 1,
"2.04": 1,
"1.99": 1,
"1.97": 1,
"1.95": 1,
"1.94": 1,
"1.93": 1,
"1.85": 1,
"1.83": 1,
"1.77": 1,
"1.71": 1,
"1.7": 1,
"1.65": 1,
"1.54": 1,
"1.41": 1,
"1.36": 1,
"1.29": 1,
"1.21": 1,
"1.1": 1,
"0.95": 1
}
{
"set_P": 0.2942176870748299,
"set_recall": 0.41686746987951806,
"set_F": 0.3449651046859422
}
ck26:33-en
Do any departments lack an assigned
manager?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

ASK
WHERE {
?dept a pv:Department .
FILTER NOT EXISTS {
?m pv:memberOf ?dept .
?m a pv:Manager .
}
}
{
"true": 0
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
ASK WHERE {
?dept rdf:type pv:Department .
FILTER NOT EXISTS {
?mgr rdf:type pv:Employee .
?mgr pv:memberOf ?dept .
?anyEmp pv:hasManager ?mgr .
}
}
{
"true": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:33-de
Gibt es Abteilungen, denen kein
Verantwortlicher zugewiesen ist?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

ASK
WHERE {
?dept a pv:Department .
FILTER NOT EXISTS {
?m pv:memberOf ?dept .
?m a pv:Manager .
}
}
{
"true": 0
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
ASK {
?dept a pv:Department .
FILTER NOT EXISTS {
?mgr a pv:Manager .
?mgr pv:memberOf ?dept .
}
}
{
"true": 0
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:34-en
I need to refresh my supplier
contact list by collecting each
supplier's name along with their
full address information.
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?locality ?ccode ?country
WHERE {
?sup a pv:Supplier ;
pv:name ?name .
OPTIONAL { ?sup pv:addressLocality ?locality . }
OPTIONAL { ?sup pv:addressCountryCode ?ccode . }
OPTIONAL { ?sup pv:addressCountry ?country . }
}
{
"Stevens Ltd": 1,
"Martinez and Sons": 1,
"Johnson-Carroll": 1,
"Boyd, Turner and Byrd": 1,
"Petty, Hamilton and Solomon": 1,
"White, Wong and Trevino": 1,
"Garrison, Williams and Johnson": 1,
"King-Johnson": 1,
"Fox-Delacruz": 1,
"Washington-Villanueva": 1,
"Knight PLC": 1,
"Riley, Barrett and Mccullough": 1,
"Poole, Coleman and Shea": 1,
"Vincent LLC": 1,
"Griffith-Stout": 1,
"Brown, Estrada and Riggs": 1,
"Carr, Smith and Webb": 1,
"Smith and Sons": 1,
"Ibarra and Sons": 1,
"Figueroa, Ibarra and Jackson": 1,
"Wagner-Ramirez": 1,
"Gross, Frey and Mcmahon": 1,
"Nelson, Cruz and Bush": 1,
"Church Inc": 1,
"Barry PLC": 1,
"Maldonado Inc": 1,
"Pollard LLC": 1,
"Barr-Melendez": 1,
"Adkins, Lopez and Boyd": 1,
"Curtis, Perkins and Sims": 1,
"Williamson-Young": 1,
"Peck, Tucker and Patterson": 1,
"Reese-Williams": 1,
"Martin and Sons": 1,
"Woods Ltd": 1,
"Gomez Inc": 1,
"Anderson-Young": 1,
"Garcia-Roberts": 1,
"Gregory PLC": 1,
"Odonnell-Williams": 1,
"Gentry-Gross": 1,
"Mclaughlin-Hawkins": 1,
"Williams, Bailey and Martinez": 1,
"Peterson-Rose": 1,
"Thomas-Jenkins": 1,
"Martinez LLC": 1,
"Chavez-Price": 1,
"Parker-Lawrence": 1,
"Ford, Martinez and Gutierrez": 1,
"Santiago-Gardner": 1,
"Lopez, Goodman and Miller": 1,
"Flores PLC": 1,
"White, Lewis and Evans": 1,
"Carroll, Nguyen and Martin": 1,
"Mendoza, Moore and Thomas": 1,
"Mccarthy-Galloway": 1,
"Moran, Martin and Freeman": 1,
"Taylor, Obrien and Delacruz": 1,
"Lee, Pearson and Gates": 1,
"Boyd, Berg and Sampson": 1,
"Mcpherson Ltd": 1,
"Bender PLC": 1,
"Thompson Ltd": 1,
"Allen-Short": 1,
"Stevens PLC": 1,
"Todd-Mcneil": 1,
"Morris, Cain and Boone": 1,
"Watkins Group": 1,
"Howell-Meyer": 1,
"Cervantes, Wagner and Jackson": 1,
"Jackson, Chan and Rivera": 1,
"Powell-Nguyen": 1,
"Rodriguez LLC": 1,
"Smith LLC": 1,
"Cooper, Walker and Perez": 1,
"Maxwell Inc": 1,
"Buchanan Group": 1,
"Harper PLC": 1,
"Wright Inc": 1,
"Newton Inc": 1,
"Allison PLC": 1,
"Hernandez, Mayer and Jones": 1,
"Richardson Inc": 1,
"Griffin, Smith and Smith": 1,
"Collins, Martin and Lane": 1,
"Perkins, Garza and Cochran": 1,
"Hensley-Porter": 1,
"Kerr LLC": 1,
"Curtis, Doyle and Singleton": 1,
"Davis Ltd": 1,
"Nguyen-Cruz": 1,
"Smith-Williamson": 1,
"White-Nash": 1,
"Santana LLC": 1,
"Kidd, Mcdaniel and Russell": 1,
"Barrera Inc": 1,
"Sanchez-Mcdonald": 1,
"Hardy, Bauer and Martinez": 1,
"Mcdaniel, Dean and Delgado": 1,
"Williams-Sweeney": 1,
"Mayo, Aguirre and Ryan": 1,
"Lee and Sons": 1,
"Lucas and Sons": 1,
"Barber-Hayes": 1,
"Villegas-Cummings": 1,
"Jones-Martinez": 1,
"Harris, Graves and Gonzalez": 1,
"Romero-Nguyen": 1,
"Alvarez-Curtis": 1,
"Bryan-James": 1,
"Hines-Allen": 1,
"Thornton, Cook and Estrada": 1,
"Coleman LLC": 1,
"Hubbard Ltd": 1,
"Anderson Ltd": 1,
"Cooper and Sons": 1,
"Peterson Ltd": 1,
"Russell, Mcclain and Larson": 1,
"Gibson-Jackson": 1,
"Harrison PLC": 1,
"Stevens LLC": 1,
"Brown, Torres and Bautista": 1,
"Lynch-Ramirez": 1,
"Evans, Park and James": 1,
"Jones Group": 1,
"Rodriguez-Mcdonald": 1,
"Odom-Lawrence": 1,
"Peterson, Norton and Preston": 1,
"May, Ruiz and Butler": 1,
"Bryan-Jones": 1,
"Lynch LLC": 1,
"Page, Hernandez and Ayala": 1,
"Smith-Cobb": 1,
"Singh Inc": 1,
"Baker, Medina and George": 1,
"Jordan, James and Bradley": 1,
"Harris-Cunningham": 1,
"Reyes, Taylor and Ramirez": 1,
"Salinas-Kelly": 1,
"Snyder, Robinson and Brown": 1,
"Duran, Mueller and Payne": 1,
"Marshall PLC": 1,
"Miller, Green and Scott": 1,
"Williamson-Green": 1,
"Jimenez PLC": 1,
"Arnold-Knight": 1,
"Guerrero, Sutton and Lucas": 1,
"Simmons, Cox and Craig": 1,
"Moreno Group": 1,
"Cortez Group": 1,
"Collins-Hensley": 1,
"Meyer, Marquez and Mckenzie": 1,
"Manning, Hodges and Mckenzie": 1,
"Davidson, Rosales and Stewart": 1,
"Drake Ltd": 1,
"Cantu-Ferguson": 1,
"Marsh, Cunningham and Hill": 1,
"Ross-Brooks": 1,
"Larsen-Martinez": 1,
"Doyle, King and Thompson": 1,
"Castillo Inc": 1,
"Benitez and Sons": 1,
"Wilson-Callahan": 1,
"Hutchinson-Lane": 1,
"Olson LLC": 1,
"Martin-Mcbride": 1,
"Rowland, Todd and Whitaker": 1,
"Fleming Inc": 1,
"Fletcher, Pierce and Navarro": 1,
"Huang, Guerrero and Hurst": 1,
"Rivera Group": 1,
"Carter Group": 1,
"Phillips, Love and Smith": 1,
"Douglas Inc": 1,
"Rich, Powell and Ward": 1,
"Green-Crawford": 1,
"Scott, Frazier and Cooper": 1,
"Nguyen-Peters": 1,
"Collins and Sons": 1,
"Barnes LLC": 1,
"Calderon-Montgomery": 1,
"Avery-Johnson": 1,
"Schroeder and Sons": 1,
"Green and Sons": 1,
"James-Wright": 1,
"Meyer, Floyd and Jackson": 1,
"Myers-Brown": 1,
"Nichols Inc": 1,
"Harris, Wright and Morales": 1,
"Nichols-Davis": 1,
"Wagner Group": 1,
"Turner, Hall and Jimenez": 1,
"Daniels Group": 1,
"Clarke-Brown": 1,
"Larson, Lambert and Gay": 1,
"Goodman-Chapman": 1,
"Cook Group": 1,
"Jones PLC": 1,
"Cochran-Delacruz": 1,
"Carr, Smith and Mayo": 1,
"Becker LLC": 1,
"Hill-Jones": 1,
"Bruce, Gutierrez and Thompson": 1,
"Aguilar, Matthews and Martinez": 1,
"Bolton, Sanchez and Rodgers": 1,
"Estes, Johnston and Richardson": 1,
"Rodriguez, Estrada and Kim": 1,
"Huerta, Clark and Johnson": 1,
"Zamora, Adams and Koch": 1,
"Cook LLC": 1,
"Ferrell-Dixon": 1,
"Rodriguez-Warren": 1,
"Brown, Jackson and Simpson": 1,
"Fuentes Inc": 1,
"Hodges-Johnson": 1,
"Hall-Hodges": 1,
"Carlson Inc": 1,
"Shaffer PLC": 1,
"Grant-Nelson": 1,
"Brown PLC": 1,
"Swanson-Kennedy": 1,
"Davis-Wagner": 1,
"Adams-White": 1,
"Rodriguez, Schmidt and Hodge": 1,
"Johnson, Khan and Oconnell": 1,
"Bennett, Best and Jacobson": 1,
"White and Sons": 1,
"Bryant-Stark": 1,
"Morgan, Brown and Martin": 1,
"Stewart-Woodard": 1,
"Stewart PLC": 1,
"Little, Dunlap and Nelson": 1,
"Fernandez-Roberts": 1,
"Hubbard-Holmes": 1,
"Carter, Webb and Bush": 1,
"Garcia Ltd": 1,
"Horton, Sims and Pacheco": 1,
"Li-Gonzalez": 1,
"Neal LLC": 1,
"Turner and Sons": 1,
"Hernandez, Jenkins and Luna": 1,
"Wilson, Kim and Dorsey": 1,
"Long-Sullivan": 1,
"Harris-Waller": 1,
"Morgan-Leonard": 1,
"Cohen, Bell and Rodriguez": 1,
"Chiclayo": 1,
"Jandaia do Sul": 1,
"Suozhen": 1,
"Kamoke": 1,
"B\u00fchl": 1,
"H\u00fcckelhoven": 1,
"Kifr\u012b": 1,
"Ajab Sh\u012br": 1,
"Chamber\u00ed": 1,
"Fuji": 1,
"Deoli": 1,
"Ghauspur": 1,
"Bucaramanga": 1,
"Cypress": 1,
"East Grinstead": 1,
"Chernivtsi": 1,
"Macia": 1,
"Bambari": 1,
"Somerset": 1,
"Smolensk": 1,
"Greystones": 1,
"Malaybalay": 1,
"Ben Arous": 1,
"Molodohvardiisk": 1,
"Erie": 1,
"Yalta": 1,
"Xinyingpan": 1,
"South El Monte": 1,
"Kriens": 1,
"Norristown": 1,
"B\u0101nka": 1,
"Manizales": 1,
"Avezzano": 1,
"Wyoming": 1,
"Azusa": 1,
"Huddersfield": 1,
"Bundibugyo": 1,
"Oisterwijk": 1,
"Mixquiahuala de Juarez": 1,
"U\u00edge": 1,
"Sucre": 1,
"Manolo Fortich": 1,
"Carigara": 1,
"Battle Creek": 1,
"Mukt\u0101g\u0101cha": 1,
"West Whittier-Los Nietos": 1,
"Edegem": 1,
"Bhit Shah": 1,
"Bhudgaon": 1,
"R\u0101ipur": 1,
"Coxim": 1,
"Long Beach": 1,
"\u015arem": 1,
"Doln\u00fd Kub\u00edn": 1,
"Ant\u00f3nio Enes": 1,
"Boa Vista": 1,
"Murrieta": 1,
"Olecko": 1,
"Hann\u014d": 1,
"Walvis Bay": 1,
"Bara\u00f1\u00e1in": 1,
"Starokostyantyniv": 1,
"Dubna": 1,
"Krishnar\u0101jpet": 1,
"Mondlo": 1,
"Pershotravensk": 1,
"Fukagawa": 1,
"Elche": 1,
"Krasnoturinsk": 1,
"Seosan": 1,
"Boedo": 1,
"Broxburn": 1,
"Keynsham": 1,
"Breda": 1,
"Bielsko-Biala": 1,
"Surrey": 1,
"Naraini": 1,
"Jeongeup": 1,
"Tirupparangunram": 1,
"Laramie": 1,
"Steilshoop": 1,
"Perd\u00f5es": 1,
"Krati\u00e9": 1,
"Minamirinkan": 1,
"Longview": 1,
"Sievierodonetsk": 1,
"Pangkalan Brandan": 1,
"Probolinggo": 1,
"Monz\u00f3n": 1,
"West Hill": 1,
"Pinsk": 1,
"Pinetown": 1,
"Narva": 1,
"Larkana": 1,
"Ceerigaabo": 1,
"Lahti": 1,
"Ho": 1,
"L\u0101dwa": 1,
"Matanzas": 1,
"M\u0101nvi": 1,
"Lun\u00e9ville": 1,
"Serrana": 1,
"Bandeirantes": 1,
"Mount Vernon": 1,
"Songyang": 1,
"Klimovsk": 1,
"D\u016br\u0101": 1,
"Siirt": 1,
"Orihuela": 1,
"Sa\u00efda": 1,
"Palmi": 1,
"Bloemfontein": 1,
"Jamestown": 1,
"Brumado": 1,
"Liufeng": 1,
"Taquara": 1,
"Carouge": 1,
"Schwalbach": 1,
"Hartford": 1,
"Ki\u010devo": 1,
"Mercedes": 1,
"Gyeongsan-si": 1,
"Kishorganj": 1,
"Nakhon Si Thammarat": 1,
"Kaiyuan": 1,
"Mallaw\u012b": 1,
"Chharra": 1,
"Suri\u0101pet": 1,
"Berekum": 1,
"Patnos": 1,
"Bir el Djir": 1,
"Asy\u016b\u0163": 1,
"Moorpark": 1,
"Sikeston": 1,
"Lesosibirsk": 1,
"Kuopio": 1,
"Saint-L\u00f4": 1,
"Toulouse": 1,
"Holt": 1,
"Yicheng": 1,
"Warrington": 1,
"Yushan": 1,
"Uccle": 1,
"Budapest XXIII. ker\u00fclet": 1,
"Nova Granada": 1,
"Indore": 1,
"Paracho de Verduzco": 1,
"Eustis": 1,
"Kasimov": 1,
"Back Mountain": 1,
"Hyattsville": 1,
"Marienberg": 1,
"Huimin": 1,
"Marche-en-Famenne": 1,
"Piombino": 1,
"El Para\u00edso": 1,
"Yufengshan": 1,
"Tom\u00e9 A\u00e7u": 1,
"Allauch": 1,
"Okunoya": 1,
"Ebersbach an der Fils": 1,
"Dosquebradas": 1,
"Manj\u012bl": 1,
"South Euclid": 1,
"Le Camas": 1,
"Khardah": 1,
"Cataguases": 1,
"Xinzhou": 1,
"Payson": 1,
"el Camp de l'Arpa del Clot": 1,
"Sant Pere de Ribes": 1,
"Saint-Michel-sur-Orge": 1,
"Honch\u014d": 1,
"Mabalacat City": 1,
"Uni\u00f3n de Reyes": 1,
"Punta de Mata": 1,
"Bellshill": 1,
"Arma\u00e7\u00e3o de B\u00fazios": 1,
"Mairinque": 1,
"Sankt Ingbert": 1,
"Huangshan": 1,
"Randolph": 1,
"Sambrial": 1,
"Gustavo Adolfo Madero": 1,
"Gallarate": 1,
"Chicago Heights": 1,
"Wolmaransstad": 1,
"Constantine": 1,
"Villepinte": 1,
"Hemmingen": 1,
"Dera Ghazi Khan": 1,
"Ferre\u00f1afe": 1,
"Nikk\u014d": 1,
"Ivano-Frankivsk": 1,
"Empangeni": 1,
"Saint John\u2019s": 1,
"Stockerau": 1,
"Heishan": 1,
"Johnston": 1,
"Seondha": 1,
"Aliaga": 1,
"Piedecuesta": 1,
"Nanmen": 1,
"S\u01a1n T\u00e2y": 1,
"Choisy-le-Roi": 1,
"Shiyan": 1,
"Morogoro": 1,
"D\u00fczce": 1,
"Karvin\u00e1": 1,
"Embi": 1,
"El Masnou": 1,
"Wattrelos": 1,
"Ahfir": 1,
"Akonolinga": 1,
"Nikol\u2019skoye": 1,
"Funafuti": 1,
"North Bellmore": 1,
"Pasco": 1,
"Togitsu": 1,
"Cangu\u00e7u": 1,
"Malingshan": 1,
"Malvern East": 1,
"Ranchi": 1,
"Zhabei": 1,
"Bormujos": 1,
"San Leandro": 1,
"Tutayev": 1,
"Namioka": 1,
"Ch\u0101kia": 1,
"Strumica": 1,
"Linda-a-Velha": 1,
"Neuwied": 1,
"\u0100doni": 1,
"Rishra": 1,
"Tarawa": 1,
"Harlingen": 1,
"Kawanishi": 1,
"Somanda": 1,
"Ampang": 1,
"East Hampton": 1,
"Bais": 1,
"Tooting": 1,
"Umuahia": 1,
"Matthews": 1,
"Barra do Pira\u00ed": 1,
"Ridderkerk": 1,
"Ciudad Bolivia": 1,
"C\u00e2mpulung Moldovenesc": 1,
"Dary\u0101pur": 1,
"PE": 1,
"BR": 1,
"CN": 1,
"PK": 1,
"DE": 1,
"IQ": 1,
"IR": 1,
"ES": 1,
"IN": 1,
"CO": 1,
"US": 1,
"GB": 1,
"UA": 1,
"MZ": 1,
"CF": 1,
"RU": 1,
"IE": 1,
"PH": 1,
"TN": 1,
"CH": 1,
"IT": 1,
"UG": 1,
"NL": 1,
"MX": 1,
"AO": 1,
"BO": 1,
"BD": 1,
"BE": 1,
"PL": 1,
"SK": 1,
"JP": 1,
"NA": 1,
"ZA": 1,
"KR": 1,
"AR": 1,
"CA": 1,
"KH": 1,
"ID": 1,
"BY": 1,
"EE": 1,
"SO": 1,
"FI": 1,
"GH": 1,
"CU": 1,
"FR": 1,
"PS": 1,
"TR": 1,
"DZ": 1,
"MK": 1,
"TH": 1,
"EG": 1,
"HU": 1,
"HN": 1,
"VE": 1,
"AG": 1,
"AT": 1,
"VN": 1,
"TZ": 1,
"CZ": 1,
"KZ": 1,
"MA": 1,
"CM": 1,
"TV": 1,
"AU": 1,
"PT": 1,
"KI": 1,
"MY": 1,
"NG": 1,
"RO": 1,
"Peru": 1,
"Brazil": 1,
"China": 1,
"Pakistan": 1,
"Germany": 1,
"Iraq": 1,
"Iran, Islamic Republic of": 1,
"Spain": 1,
"India": 1,
"Colombia": 1,
"United States": 1,
"United Kingdom": 1,
"Ukraine": 1,
"Mozambique": 1,
"Central African Republic": 1,
"Russian Federation": 1,
"Ireland": 1,
"Philippines": 1,
"Tunisia": 1,
"Switzerland": 1,
"Italy": 1,
"Uganda": 1,
"Netherlands": 1,
"Mexico": 1,
"Angola": 1,
"Bolivia, Plurinational State of": 1,
"Bangladesh": 1,
"Belgium": 1,
"Poland": 1,
"Slovakia": 1,
"Japan": 1,
"Namibia": 1,
"South Africa": 1,
"Korea, Republic of": 1,
"Argentina": 1,
"Canada": 1,
"Cambodia": 1,
"Indonesia": 1,
"Belarus": 1,
"Estonia": 1,
"Somalia": 1,
"Finland": 1,
"Ghana": 1,
"Cuba": 1,
"France": 1,
"Palestine, State of": 1,
"Turkey": 1,
"Algeria": 1,
"North Macedonia": 1,
"Thailand": 1,
"Egypt": 1,
"Hungary": 1,
"Honduras": 1,
"Venezuela, Bolivarian Republic of": 1,
"Antigua and Barbuda": 1,
"Austria": 1,
"Viet Nam": 1,
"Tanzania, United Republic of": 1,
"Czechia": 1,
"Kazakhstan": 1,
"Morocco": 1,
"Cameroon": 1,
"Tuvalu": 1,
"Australia": 1,
"Portugal": 1,
"Kiribati": 1,
"Malaysia": 1,
"Nigeria": 1,
"Romania": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier ?supplierLabel ?addressText ?addressLocality ?addressCountry ?addressCountryCode ?phone ?email WHERE {
{
?prod pv:hasSupplier ?supplier .
} UNION {
?supplier a pv:Supplier .
}
OPTIONAL { ?supplier rdfs:label ?lbl0. }
OPTIONAL { ?supplier pv:name ?name0. }
BIND(COALESCE(?lbl0, ?name0, STR(?supplier)) AS ?supplierLabel)
OPTIONAL { ?supplier pv:addressText ?addressText. }
OPTIONAL { ?supplier pv:addressLocality ?addressLocality. }
OPTIONAL { ?supplier pv:addressCountry ?addressCountry. }
OPTIONAL { ?supplier pv:addressCountryCode ?addressCountryCode. }
OPTIONAL { ?supplier pv:phone ?phone. }
OPTIONAL { ?supplier pv:email ?email. }
}
ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-0058fc5e-e9e8-46eb-ac6d-673e436a5d7a": 1,
"http://ld.company.org/prod-instances/suppl-6268ab7c-e25c-44ff-8431-e631679623b5": 1,
"http://ld.company.org/prod-instances/suppl-f26204e2-83cc-4526-a8f0-d4c86f295774": 1,
"http://ld.company.org/prod-instances/suppl-267680ea-eafe-4d40-a3c6-4807c0d195b1": 1,
"http://ld.company.org/prod-instances/suppl-816e4baa-8158-4e2a-8ff4-c9f969998389": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-8d98799f-d657-4acf-9ca6-9b90420ff681": 1,
"http://ld.company.org/prod-instances/suppl-46bae099-f191-415a-aefa-3cab4b0e8c2e": 1,
"http://ld.company.org/prod-instances/suppl-3f0439ac-320f-4d70-b9a4-2fef9281ff49": 1,
"http://ld.company.org/prod-instances/suppl-a1a85cfc-109a-47fe-91a2-632334d35f44": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-63ab664f-80d7-46e1-97cb-39a4f713f937": 1,
"http://ld.company.org/prod-instances/suppl-79274f67-b225-49fa-ad8c-fb20560cb1d5": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-27f8059f-fe10-4a39-aa68-d66210c9cc59": 1,
"http://ld.company.org/prod-instances/suppl-a2a17a94-b064-4682-86ba-1c933616568f": 1,
"http://ld.company.org/prod-instances/suppl-0ca3c664-7fb2-446a-b5c6-73fe140c4f02": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-4f22034e-f299-442a-a1e3-3d9dc974ed8f": 1,
"http://ld.company.org/prod-instances/suppl-d396349e-7772-49c3-bcdf-0afbeae658fa": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-6259c66a-0eec-4f7f-b4a4-a0c2be80461e": 1,
"http://ld.company.org/prod-instances/suppl-33da751a-1358-4530-b0e5-e3b9a509e952": 1,
"http://ld.company.org/prod-instances/suppl-7f0c3d05-f16c-44c0-b9f4-5ff9d2892270": 1,
"http://ld.company.org/prod-instances/suppl-b9dfb874-fb5d-4d34-8a13-e4f1395f3c6e": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-1b032f32-5734-44da-8758-554ad059b03e": 1,
"http://ld.company.org/prod-instances/suppl-66558286-cf29-4320-80a9-de2c12aa2f3c": 1,
"http://ld.company.org/prod-instances/suppl-6746c17d-5e49-47bc-82a1-90ac0c7aa01c": 1,
"http://ld.company.org/prod-instances/suppl-feeda1ce-d6af-42b2-b6ff-7516ba39ad6c": 1,
"http://ld.company.org/prod-instances/suppl-2731aa23-7ea4-4661-b79b-6f0d4d17d5b3": 1,
"http://ld.company.org/prod-instances/suppl-fcdf3268-b0f0-4e2b-8fbd-6008cb4a6d0e": 1,
"http://ld.company.org/prod-instances/suppl-f3de43d3-4bd7-4641-be54-2db60238aa14": 1,
"http://ld.company.org/prod-instances/suppl-248fa1c7-dd1e-41fe-931a-9f00777ee0fe": 1,
"http://ld.company.org/prod-instances/suppl-2805bfc6-fe9f-49fc-90ba-d4c779a38af2": 1,
"http://ld.company.org/prod-instances/suppl-7f696243-08d9-458c-8041-e114a223b897": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-49554e41-9e26-4a38-9f96-871eda1dc50a": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-66cdfd7b-f68e-40d1-b9dc-0dd54c50b6a1": 1,
"http://ld.company.org/prod-instances/suppl-fbfe40db-81e4-4b35-93d5-a996307a266e": 1,
"http://ld.company.org/prod-instances/suppl-f80817bf-7010-48c7-a3be-b015b09309d0": 1,
"http://ld.company.org/prod-instances/suppl-12417d4e-b119-46a1-8c47-a560c2d103dd": 1,
"http://ld.company.org/prod-instances/suppl-6463b573-32bd-4bc5-b2dc-c8e9a96965ba": 1,
"http://ld.company.org/prod-instances/suppl-25e44a18-cb4f-48aa-bb6a-c05189268df6": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"http://ld.company.org/prod-instances/suppl-a0f25cc7-1407-452e-98e2-8fa5083d4041": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-a6f1f4bd-bdd5-4a35-b683-2aee89aa8ed3": 1,
"http://ld.company.org/prod-instances/suppl-d0f56bf6-b7f2-4032-be8f-95269c626667": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-05b5a686-c821-41c4-bc2c-b66d35bac1d8": 1,
"http://ld.company.org/prod-instances/suppl-dff64a17-e085-4289-9196-a1e7ae8b0c22": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-caeb974d-5803-4419-b316-2245f15f73d4": 1,
"http://ld.company.org/prod-instances/suppl-b8b7794e-329e-4bdc-9fcb-5ddfe9b71248": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-cccd3023-1267-4fe6-9fbe-2441662cbb46": 1,
"http://ld.company.org/prod-instances/suppl-534df54e-82c6-430e-ad50-d80a3a745e11": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-b9ed885f-282e-4836-bede-f1dc9f9f5c41": 1,
"http://ld.company.org/prod-instances/suppl-29c1b979-da61-4df4-ae3d-a2e303ea4444": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-e68696c9-d9e7-4d2b-b467-d923c91ce47b": 1,
"http://ld.company.org/prod-instances/suppl-2451f479-fe10-4322-a8c9-3f4f21f39779": 1,
"http://ld.company.org/prod-instances/suppl-9484418b-c487-4050-9094-050f3bab0817": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"http://ld.company.org/prod-instances/suppl-22b67f9e-45e9-449e-8269-a31bd550324a": 1,
"http://ld.company.org/prod-instances/suppl-b5028bba-a927-45d7-9032-ee90825311c5": 1,
"http://ld.company.org/prod-instances/suppl-cfe8ae59-a7a8-4772-8bd5-bbd6991af811": 1,
"http://ld.company.org/prod-instances/suppl-238c3f06-3708-4b59-8617-f94611d6f3a3": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-30dc6bac-5604-4e78-a48d-eed66f4d4dc8": 1,
"http://ld.company.org/prod-instances/suppl-cd395f35-74dc-4858-8bb9-5fdf0add00ee": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-297508c6-6074-4625-8dec-7bab342010a1": 1,
"http://ld.company.org/prod-instances/suppl-4b796fba-c152-4137-b01d-fce80aef6e3c": 1,
"http://ld.company.org/prod-instances/suppl-784f7f15-1a8c-43f5-923c-de0beb82f32f": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-d2a60059-73f4-4fae-9a4a-0ab93f5203eb": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-7c4b3772-ee27-4915-8166-359d068db153": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-dd4262b0-805f-49f8-94b0-12dcadea9e73": 1,
"http://ld.company.org/prod-instances/suppl-4f66d217-8106-4b87-922b-fbe6e8d6d699": 1,
"http://ld.company.org/prod-instances/suppl-2617dc37-a7c6-4c6c-b89d-4e4f367f3d78": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-cb43b726-1b2f-44dd-b960-18b361c7288e": 1,
"http://ld.company.org/prod-instances/suppl-d0f6eeee-24cc-4a72-9331-d0ebbb83643b": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-092bb1b2-b39f-4521-9c21-c853db9d9a09": 1,
"http://ld.company.org/prod-instances/suppl-49231eda-bbab-475b-aa59-47e6c8c81166": 1,
"http://ld.company.org/prod-instances/suppl-9b333a39-4f8b-4f38-8bc8-3aea5aa24cd8": 1,
"http://ld.company.org/prod-instances/suppl-532fc460-676f-4727-b5b2-6d3771db9ba1": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-0c327a40-c6d8-44da-ba2d-e84f924c5208": 1,
"http://ld.company.org/prod-instances/suppl-7ce25e4c-5894-4e77-ada2-d2bb434fdae9": 1,
"http://ld.company.org/prod-instances/suppl-8a148e6d-972c-4135-930a-c6d9ea6957fd": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-1e0eae5f-25ae-4ef9-807e-4ce162fa2934": 1,
"http://ld.company.org/prod-instances/suppl-9da10220-7964-4a7a-a1ea-571a63cc483d": 1,
"http://ld.company.org/prod-instances/suppl-6de163f7-8aa2-434a-a210-78fea02e490c": 1,
"http://ld.company.org/prod-instances/suppl-1b447fbd-a0fe-4385-8141-ab5aa43fbedb": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-6ca36744-76bd-47bd-b4fd-6319ed8c87c7": 1,
"http://ld.company.org/prod-instances/suppl-0d183bba-b1df-4c41-be10-c0896378b406": 1,
"http://ld.company.org/prod-instances/suppl-88745cef-2133-4d0c-a1de-00fa0740eb26": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-47c86e10-e667-4725-bbe3-ac372da0b472": 1,
"http://ld.company.org/prod-instances/suppl-e27932a5-487a-4eca-9f9a-d82d5e5c467b": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-acc9fdfb-2811-4b87-8231-7168c70e7497": 1,
"http://ld.company.org/prod-instances/suppl-91be13e0-b467-48d9-8ff7-cbed652b49cb": 1,
"http://ld.company.org/prod-instances/suppl-a10b61e6-8288-499d-bd8c-d89b9625fb1f": 1,
"http://ld.company.org/prod-instances/suppl-f0feb132-7033-41f2-99e2-fdb8834302ec": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-64902ce8-7950-458e-bcee-5df3cabc7972": 1,
"http://ld.company.org/prod-instances/suppl-701e751f-51dc-482f-86d5-544b4af40076": 1,
"http://ld.company.org/prod-instances/suppl-d7f501f6-e595-473c-90fc-89933505411e": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-6d5eddf9-7c6f-4a88-8aba-2ef65267d78b": 1,
"http://ld.company.org/prod-instances/suppl-17c52e07-d5ce-4cfd-87cf-5ac7e3554c0c": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-67db6571-5c2f-4c52-9d0b-1584a74bb116": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-0301f65d-2290-456b-a3f7-b2096a632198": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-f494b5db-7627-4a97-809e-8e8f9d92fb51": 1,
"http://ld.company.org/prod-instances/suppl-6b879d25-7222-419e-8f1a-d9c9ceda2600": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-2fd79a0c-24b5-4361-8b5b-df720d2c7eac": 1,
"http://ld.company.org/prod-instances/suppl-2f7172a0-e935-4dfc-98a6-b48dcec0ad18": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-fb607751-7ff0-4cea-8e23-d22b4b1c67ad": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-cd18146d-c073-4d58-97b4-ac079baa9b65": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-35f7b6ea-9412-41f4-9652-8e419db45ce8": 1,
"http://ld.company.org/prod-instances/suppl-d42974b3-923e-4f26-9bfa-1176e0073791": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-83983274-a805-4fcd-a909-1c2e14651637": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-82869f9c-fa06-45cb-922a-00675cde9676": 1,
"http://ld.company.org/prod-instances/suppl-114d6a02-02d8-4038-97a3-fd39a9701f79": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-f7c5fad9-9f0c-4206-a338-e162bfe54de1": 1,
"http://ld.company.org/prod-instances/suppl-8f607810-ca93-4274-9c27-d0a8dcba7c4a": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-cc8fb083-225e-4d29-960d-5d74b02adeda": 1,
"http://ld.company.org/prod-instances/suppl-b508d6ec-f430-4496-9c08-bd54f1541023": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-db1a07bc-c946-4ddd-8f47-b836c2f35281": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-bd9aec71-4218-45ce-b6c6-d076ad07f8cd": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-d7ca1d2e-6b21-4c0c-821a-c4e8d5a3c65c": 1,
"http://ld.company.org/prod-instances/suppl-45d529da-5989-484a-a60d-acba0442a929": 1,
"http://ld.company.org/prod-instances/suppl-f19beb89-6c1f-45e9-8864-8a832bf17a55": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-5f36c064-46dd-4351-b0e8-9cb2c76bfbab": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-3ad032a1-2e9f-4629-93c7-0ee0b5bb0e25": 1,
"http://ld.company.org/prod-instances/suppl-ebbcad78-26fa-4d33-95ca-84decc4209a4": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-65131e0d-addc-41f9-a33f-e9f3b7f00566": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-a28a6f2f-a549-4a38-98ac-6eaeff8472ce": 1,
"http://ld.company.org/prod-instances/suppl-79614820-e391-46f2-8ab9-c5022ad154d8": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-e9d8bb44-d19d-4453-8db2-d6d656f411be": 1,
"http://ld.company.org/prod-instances/suppl-3288e7a5-6b1b-482e-8c95-3265f948ae03": 1,
"http://ld.company.org/prod-instances/suppl-42f054a5-0aba-4b02-b68a-851130c639fc": 1,
"http://ld.company.org/prod-instances/suppl-2318f317-967e-4282-aceb-c17a6349f86e": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-7273d4f8-9c3a-4279-a18c-bb0f425bc8eb": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-a6815a96-329d-414e-89fa-27619179f857": 1,
"http://ld.company.org/prod-instances/suppl-fab306a0-9ab2-4834-949a-58804bddc9a4": 1,
"http://ld.company.org/prod-instances/suppl-e18d93fc-f1db-4ac7-b138-e158c6fb2e69": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-3c198782-cb13-4253-aefc-f48aa8ded00a": 1,
"http://ld.company.org/prod-instances/suppl-fd5556a6-46fc-4d68-846b-e543ce6f4ec9": 1,
"http://ld.company.org/prod-instances/suppl-373cc68d-3c51-43d9-878a-36aa0aeb86c6": 1,
"http://ld.company.org/prod-instances/suppl-db55e5ad-918e-42a0-97b4-1f496f9574dd": 1,
"http://ld.company.org/prod-instances/suppl-79126b93-df5a-4170-b80e-546a837605f3": 1,
"http://ld.company.org/prod-instances/suppl-9c9d9974-bea3-4bf9-882e-c16a80b17e84": 1,
"http://ld.company.org/prod-instances/suppl-15bdf688-23a7-4f52-be5c-fe82bba7add7": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-d0c9f303-04ac-44b3-9cbc-afed50b7a260": 1,
"http://ld.company.org/prod-instances/suppl-aaaa3f68-318a-4d8d-b080-79490e9e9dfa": 1,
"http://ld.company.org/prod-instances/suppl-f7a4c865-f6d4-4896-bc48-e5ec6b2bf283": 1,
"http://ld.company.org/prod-instances/suppl-ba01e204-e74e-4f87-bc55-1a43c099f199": 1,
"http://ld.company.org/prod-instances/suppl-854314d4-9505-4765-b22a-a2ff53549b0b": 1,
"http://ld.company.org/prod-instances/suppl-34056316-50e7-46e4-bfef-fa579fe2c5c8": 1,
"http://ld.company.org/prod-instances/suppl-ab8fb795-35cd-42c4-827d-6fd907d6b81d": 1,
"http://ld.company.org/prod-instances/suppl-9c71665d-ca2e-44e3-b9ba-f1e47dec6dfe": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-23be71fa-4280-4114-9750-025c224be098": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-da35429e-b1b6-4780-9fcc-f1b17b40d4e3": 1,
"http://ld.company.org/prod-instances/suppl-5011ad6d-cebe-4f4b-bc58-2147ea820d49": 1,
"http://ld.company.org/prod-instances/suppl-7d33e910-5889-4f75-bd2b-193ec2434d0f": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-658f838d-0e84-4f36-978c-95602545977c": 1,
"http://ld.company.org/prod-instances/suppl-3c5797ed-e2f6-47c2-a7b6-6e4b0feaf5e3": 1,
"http://ld.company.org/prod-instances/suppl-7c930e8b-b9f3-450a-856b-5e03c6b3965e": 1,
"http://ld.company.org/prod-instances/suppl-f1067c74-aa84-4a06-9fbd-16f914be2e65": 1,
"Adams-White (United States)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Aguilar, Matthews and Martinez (Tanzania, United Republic of)": 1,
"Allen-Short (South Africa)": 1,
"Allison PLC (Brazil)": 1,
"Alvarez-Curtis (Algeria)": 1,
"Anderson Ltd (Brazil)": 1,
"Anderson Ltd (United States)": 1,
"Anderson-Young (Uganda)": 1,
"Arnold-Knight (Mexico)": 1,
"Avery-Johnson (United States)": 1,
"Baker, Medina and George (Finland)": 1,
"Barber-Hayes (China)": 1,
"Barnes LLC (Pakistan)": 1,
"Barr-Melendez (United States)": 1,
"Barrera Inc (Ghana)": 1,
"Barry PLC (United States)": 1,
"Becker LLC (Viet Nam)": 1,
"Bender PLC (Russian Federation)": 1,
"Benitez and Sons (United States)": 1,
"Bennett, Best and Jacobson (India)": 1,
"Bolton, Sanchez and Rodgers (Turkey)": 1,
"Boyd, Berg and Sampson (Namibia)": 1,
"Boyd, Turner and Byrd (Pakistan)": 1,
"Brown PLC (India)": 1,
"Brown, Estrada and Riggs (Ukraine)": 1,
"Brown, Jackson and Simpson (Tuvalu)": 1,
"Brown, Torres and Bautista (Bangladesh)": 1,
"Bruce, Gutierrez and Thompson (China)": 1,
"Bryan-James (Italy)": 1,
"Bryan-Jones (Algeria)": 1,
"Bryant-Stark (Portugal)": 1,
"Buchanan Group (Korea, Republic of)": 1,
"Calderon-Montgomery (Italy)": 1,
"Cantu-Ferguson (Brazil)": 1,
"Carlson Inc (Brazil)": 1,
"Carr, Smith and Mayo (China)": 1,
"Carr, Smith and Webb (Mozambique)": 1,
"Carroll, Nguyen and Martin (Slovakia)": 1,
"Carter Group (Cuba)": 1,
"Carter, Webb and Bush (Tanzania, United Republic of)": 1,
"Castillo Inc (Iran, Islamic Republic of)": 1,
"Cervantes, Wagner and Jackson (Argentina)": 1,
"Chavez-Price (Belgium)": 1,
"Church Inc (Ukraine)": 1,
"Clarke-Brown (Austria)": 1,
"Cochran-Delacruz (Colombia)": 1,
"Cohen, Bell and Rodriguez (India)": 1,
"Coleman LLC (Brazil)": 1,
"Collins and Sons (United States)": 1,
"Collins, Martin and Lane (Ukraine)": 1,
"Collins-Hensley (Germany)": 1,
"Cook Group (India)": 1,
"Cook LLC (Morocco)": 1,
"Cooper and Sons (Switzerland)": 1,
"Cooper, Walker and Perez (Canada)": 1,
"Cortez Group (United States)": 1,
"Curtis, Doyle and Singleton (Canada)": 1,
"Curtis, Perkins and Sims (United States)": 1,
"Daniels Group (Antigua and Barbuda)": 1,
"Davidson, Rosales and Stewart (Italy)": 1,
"Davis Ltd (Belarus)": 1,
"Davis-Wagner (Spain)": 1,
"Douglas Inc (United Kingdom)": 1,
"Doyle, King and Thompson (Colombia)": 1,
"Drake Ltd (Honduras)": 1,
"Duran, Mueller and Payne (China)": 1,
"Estes, Johnston and Richardson (Czechia)": 1,
"Evans, Park and James (China)": 1,
"Fernandez-Roberts (United States)": 1,
"Ferrell-Dixon (Cameroon)": 1,
"Figueroa, Ibarra and Jackson (Russian Federation)": 1,
"Fleming Inc (Spain)": 1,
"Fletcher, Pierce and Navarro (France)": 1,
"Flores PLC (United States)": 1,
"Ford, Martinez and Gutierrez (India)": 1,
"Fox-Delacruz (Spain)": 1,
"Fuentes Inc (United States)": 1,
"Garcia Ltd (Malaysia)": 1,
"Garcia-Roberts (Netherlands)": 1,
"Garrison, Williams and Johnson (Iraq)": 1,
"Gentry-Gross (Bolivia, Plurinational State of)": 1,
"Gibson-Jackson (North Macedonia)": 1,
"Gomez Inc (United Kingdom)": 1,
"Goodman-Chapman (United States)": 1,
"Grant-Nelson (Australia)": 1,
"Green and Sons (Algeria)": 1,
"Green-Crawford (Brazil)": 1,
"Gregory PLC (Mexico)": 1,
"Griffin, Smith and Smith (United States)": 1,
"Griffith-Stout (United Kingdom)": 1,
"Gross, Frey and Mcmahon (Philippines)": 1,
"Guerrero, Sutton and Lucas (United States)": 1,
"Hall-Hodges (Japan)": 1,
"Hardy, Bauer and Martinez (Cuba)": 1,
"Harper PLC (India)": 1,
"Harris, Graves and Gonzalez (Turkey)": 1,
"Harris, Wright and Morales (Japan)": 1,
"Harris-Cunningham (France)": 1,
"Harris-Waller (Venezuela, Bolivarian Republic of)": 1,
"Harrison PLC (Argentina)": 1,
"Hensley-Porter (Indonesia)": 1,
"Hernandez, Jenkins and Luna (United States)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Hill-Jones (France)": 1,
"Hines-Allen (South Africa)": 1,
"Hodges-Johnson (United States)": 1,
"Horton, Sims and Pacheco (United States)": 1,
"Howell-Meyer (Korea, Republic of)": 1,
"Huang, Guerrero and Hurst (Japan)": 1,
"Hubbard Ltd (China)": 1,
"Hubbard-Holmes (Japan)": 1,
"Huerta, Clark and Johnson (Spain)": 1,
"Hutchinson-Lane (India)": 1,
"Ibarra and Sons (United States)": 1,
"Jackson, Chan and Rivera (United Kingdom)": 1,
"James-Wright (France)": 1,
"Jimenez PLC (India)": 1,
"Johnson, Khan and Oconnell (Japan)": 1,
"Johnson-Carroll (China)": 1,
"Jones Group (Egypt)": 1,
"Jones PLC (Philippines)": 1,
"Jones-Martinez (Palestine, State of)": 1,
"Jordan, James and Bradley (France)": 1,
"Kerr LLC (Spain)": 1,
"Kidd, Mcdaniel and Russell (Finland)": 1,
"King-Johnson (Iran, Islamic Republic of)": 1,
"Knight PLC (India)": 1,
"Larsen-Martinez (Germany)": 1,
"Larson, Lambert and Gay (China)": 1,
"Lee and Sons (Brazil)": 1,
"Lee, Pearson and Gates (Japan)": 1,
"Li-Gonzalez (Philippines)": 1,
"Little, Dunlap and Nelson (Kiribati)": 1,
"Long-Sullivan (Netherlands)": 1,
"Lopez, Goodman and Miller (Brazil)": 1,
"Lucas and Sons (United States)": 1,
"Lynch LLC (Egypt)": 1,
"Lynch-Ramirez (Thailand)": 1,
"Maldonado Inc (Ukraine)": 1,
"Manning, Hodges and Mckenzie (Belgium)": 1,
"Marsh, Cunningham and Hill (France)": 1,
"Marshall PLC (Belgium)": 1,
"Martin and Sons (Spain)": 1,
"Martin and Sons (United States)": 1,
"Martin-Mcbride (China)": 1,
"Martinez LLC (United States)": 1,
"Martinez and Sons (Brazil)": 1,
"Martinez and Sons (Mexico)": 1,
"Maxwell Inc (India)": 1,
"May, Ruiz and Butler (Turkey)": 1,
"Mayo, Aguirre and Ryan (Brazil)": 1,
"Mccarthy-Galloway (Brazil)": 1,
"Mcdaniel, Dean and Delgado (India)": 1,
"Mclaughlin-Hawkins (Philippines)": 1,
"Mcpherson Ltd (Ukraine)": 1,
"Mendoza, Moore and Thomas (Mozambique)": 1,
"Meyer, Floyd and Jackson (Germany)": 1,
"Meyer, Marquez and Mckenzie (China)": 1,
"Miller, Green and Scott (Hungary)": 1,
"Moran, Martin and Freeman (United States)": 1,
"Moreno Group (United States)": 1,
"Morgan, Brown and Martin (Germany)": 1,
"Morgan-Leonard (Romania)": 1,
"Morris, Cain and Boone (Spain)": 1,
"Myers-Brown (Pakistan)": 1,
"Neal LLC (United Kingdom)": 1,
"Nelson, Cruz and Bush (Tunisia)": 1,
"Newton Inc (Germany)": 1,
"Nguyen-Cruz (South Africa)": 1,
"Nguyen-Peters (China)": 1,
"Nichols Inc (Peru)": 1,
"Nichols-Davis (Ukraine)": 1,
"Odom-Lawrence (India)": 1,
"Odonnell-Williams (Angola)": 1,
"Olson LLC (Brazil)": 1,
"Page, Hernandez and Ayala (United States)": 1,
"Parker-Lawrence (Pakistan)": 1,
"Peck, Tucker and Patterson (Colombia)": 1,
"Perkins, Garza and Cochran (Indonesia)": 1,
"Peterson Ltd (Germany)": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Peterson-Rose (United States)": 1,
"Petty, Hamilton and Solomon (Germany)": 1,
"Phillips, Love and Smith (Venezuela, Bolivarian Republic of)": 1,
"Pollard LLC (China)": 1,
"Poole, Coleman and Shea (Colombia)": 1,
"Powell-Nguyen (United Kingdom)": 1,
"Reese-Williams (Italy)": 1,
"Reyes, Taylor and Ramirez (United States)": 1,
"Rich, Powell and Ward (Brazil)": 1,
"Richardson Inc (Japan)": 1,
"Riley, Barrett and Mccullough (Pakistan)": 1,
"Rivera Group (Philippines)": 1,
"Rodriguez LLC (Netherlands)": 1,
"Rodriguez, Estrada and Kim (Kazakhstan)": 1,
"Rodriguez, Schmidt and Hodge (Russian Federation)": 1,
"Rodriguez-Mcdonald (India)": 1,
"Rodriguez-Warren (Russian Federation)": 1,
"Romero-Nguyen (Spain)": 1,
"Ross-Brooks (Japan)": 1,
"Rowland, Todd and Whitaker (Spain)": 1,
"Russell, Mcclain and Larson (United States)": 1,
"Salinas-Kelly (China)": 1,
"Sanchez-Mcdonald (India)": 1,
"Santana LLC (Somalia)": 1,
"Santiago-Gardner (Bangladesh)": 1,
"Schroeder and Sons (South Africa)": 1,
"Scott, Frazier and Cooper (Germany)": 1,
"Shaffer PLC (China)": 1,
"Simmons, Cox and Craig (Russian Federation)": 1,
"Singh Inc (Russian Federation)": 1,
"Smith LLC (Poland)": 1,
"Smith and Sons (Central African Republic)": 1,
"Smith-Cobb (United States)": 1,
"Smith-Williamson (Estonia)": 1,
"Snyder, Robinson and Brown (United Kingdom)": 1,
"Stevens LLC (Korea, Republic of)": 1,
"Stevens Ltd (Peru)": 1,
"Stevens PLC (Ukraine)": 1,
"Stewart PLC (India)": 1,
"Stewart-Woodard (India)": 1,
"Swanson-Kennedy (China)": 1,
"Taylor, Obrien and Delacruz (Poland)": 1,
"Thomas-Jenkins (Bangladesh)": 1,
"Thompson Ltd (China)": 1,
"Thompson Ltd (India)": 1,
"Thornton, Cook and Estrada (United States)": 1,
"Todd-Mcneil (Japan)": 1,
"Turner and Sons (Nigeria)": 1,
"Turner, Hall and Jimenez (South Africa)": 1,
"Villegas-Cummings (Russian Federation)": 1,
"Vincent LLC (United States)": 1,
"Wagner Group (Italy)": 1,
"Wagner-Ramirez (Ireland)": 1,
"Washington-Villanueva (China)": 1,
"Watkins Group (Russian Federation)": 1,
"White and Sons (North Macedonia)": 1,
"White, Lewis and Evans (Poland)": 1,
"White, Wong and Trevino (Germany)": 1,
"White-Nash (Pakistan)": 1,
"Williams, Bailey and Martinez (Philippines)": 1,
"Williams-Sweeney (France)": 1,
"Williamson-Green (Brazil)": 1,
"Williamson-Young (India)": 1,
"Wilson, Kim and Dorsey (Brazil)": 1,
"Wilson-Callahan (France)": 1,
"Woods Ltd (United States)": 1,
"Wright Inc (United States)": 1,
"Zamora, Adams and Koch (France)": 1,
"San Leandro": 1,
"Kriens": 1,
"Morogoro": 1,
"Mondlo": 1,
"Perd\u00f5es": 1,
"Sa\u00efda": 1,
"Taquara": 1,
"Payson": 1,
"Bundibugyo": 1,
"Paracho de Verduzco": 1,
"Chicago Heights": 1,
"Kuopio": 1,
"Songyang": 1,
"Sambrial": 1,
"South El Monte": 1,
"Ho": 1,
"Erie": 1,
"S\u01a1n T\u00e2y": 1,
"Dubna": 1,
"South Euclid": 1,
"Ch\u0101kia": 1,
"D\u00fczce": 1,
"Walvis Bay": 1,
"Kamoke": 1,
"Ranchi": 1,
"Chernivtsi": 1,
"Funafuti": 1,
"Kishorganj": 1,
"Shiyan": 1,
"Palmi": 1,
"Bir el Djir": 1,
"Linda-a-Velha": 1,
"Jeongeup": 1,
"Gallarate": 1,
"Tom\u00e9 A\u00e7u": 1,
"Cangu\u00e7u": 1,
"Nanmen": 1,
"Macia": 1,
"Doln\u00fd Kub\u00edn": 1,
"Uni\u00f3n de Reyes": 1,
"Somanda": 1,
"Manj\u012bl": 1,
"Boedo": 1,
"Edegem": 1,
"Molodohvardiisk": 1,
"Stockerau": 1,
"Piedecuesta": 1,
"Dary\u0101pur": 1,
"Brumado": 1,
"Randolph": 1,
"Sievierodonetsk": 1,
"Marienberg": 1,
"Seondha": 1,
"Ahfir": 1,
"Carouge": 1,
"Surrey": 1,
"Hyattsville": 1,
"West Hill": 1,
"Norristown": 1,
"Saint John\u2019s": 1,
"Piombino": 1,
"Pinsk": 1,
"Bormujos": 1,
"Bellshill": 1,
"Dosquebradas": 1,
"El Para\u00edso": 1,
"Yushan": 1,
"Karvin\u00e1": 1,
"Kaiyuan": 1,
"Harlingen": 1,
"Akonolinga": 1,
"Smolensk": 1,
"Sant Pere de Ribes": 1,
"Saint-Michel-sur-Orge": 1,
"Long Beach": 1,
"Bhudgaon": 1,
"Chamber\u00ed": 1,
"North Bellmore": 1,
"Ampang": 1,
"Oisterwijk": 1,
"Kifr\u012b": 1,
"Sucre": 1,
"Ki\u010devo": 1,
"Huddersfield": 1,
"Johnston": 1,
"Malvern East": 1,
"Constantine": 1,
"Mairinque": 1,
"Mixquiahuala de Juarez": 1,
"Longview": 1,
"East Grinstead": 1,
"Malaybalay": 1,
"Eustis": 1,
"Togitsu": 1,
"Matanzas": 1,
"Tirupparangunram": 1,
"Siirt": 1,
"Nikk\u014d": 1,
"Toulouse": 1,
"Ciudad Bolivia": 1,
"Mercedes": 1,
"Probolinggo": 1,
"Matthews": 1,
"Krati\u00e9": 1,
"Choisy-le-Roi": 1,
"Bloemfontein": 1,
"Pasco": 1,
"East Hampton": 1,
"Seosan": 1,
"Honch\u014d": 1,
"Liufeng": 1,
"Kawanishi": 1,
"El Masnou": 1,
"Khardah": 1,
"Somerset": 1,
"Broxburn": 1,
"Villepinte": 1,
"Indore": 1,
"Namioka": 1,
"Suozhen": 1,
"Mallaw\u012b": 1,
"Aliaga": 1,
"D\u016br\u0101": 1,
"Saint-L\u00f4": 1,
"Monz\u00f3n": 1,
"Lahti": 1,
"Ajab Sh\u012br": 1,
"Deoli": 1,
"Ebersbach an der Fils": 1,
"Heishan": 1,
"Bandeirantes": 1,
"Hann\u014d": 1,
"Bais": 1,
"Tarawa": 1,
"Ridderkerk": 1,
"Coxim": 1,
"Mount Vernon": 1,
"Asy\u016b\u0163": 1,
"Nakhon Si Thammarat": 1,
"Yalta": 1,
"Marche-en-Famenne": 1,
"Allauch": 1,
"Uccle": 1,
"Bara\u00f1\u00e1in": 1,
"Wyoming": 1,
"Xinzhou": 1,
"West Whittier-Los Nietos": 1,
"Jandaia do Sul": 1,
"Gustavo Adolfo Madero": 1,
"Naraini": 1,
"Patnos": 1,
"Serrana": 1,
"Boa Vista": 1,
"M\u0101nvi": 1,
"Manolo Fortich": 1,
"Starokostyantyniv": 1,
"Ant\u00f3nio Enes": 1,
"Hemmingen": 1,
"Huimin": 1,
"Budapest XXIII. ker\u00fclet": 1,
"Murrieta": 1,
"Back Mountain": 1,
"Neuwied": 1,
"C\u00e2mpulung Moldovenesc": 1,
"Elche": 1,
"Dera Ghazi Khan": 1,
"Tooting": 1,
"Ben Arous": 1,
"Steilshoop": 1,
"Pinetown": 1,
"Huangshan": 1,
"Ferre\u00f1afe": 1,
"Ivano-Frankivsk": 1,
"Suri\u0101pet": 1,
"U\u00edge": 1,
"Cataguases": 1,
"Moorpark": 1,
"Bhit Shah": 1,
"Manizales": 1,
"Pangkalan Brandan": 1,
"Schwalbach": 1,
"Berekum": 1,
"Battle Creek": 1,
"B\u00fchl": 1,
"Punta de Mata": 1,
"Xinyingpan": 1,
"Bucaramanga": 1,
"Keynsham": 1,
"Avezzano": 1,
"Holt": 1,
"Arma\u00e7\u00e3o de B\u00fazios": 1,
"Minamirinkan": 1,
"Ghauspur": 1,
"Mabalacat City": 1,
"Breda": 1,
"Embi": 1,
"Tutayev": 1,
"Chharra": 1,
"Nikol\u2019skoye": 1,
"Orihuela": 1,
"Okunoya": 1,
"el Camp de l'Arpa del Clot": 1,
"Hartford": 1,
"Yicheng": 1,
"L\u0101dwa": 1,
"Ceerigaabo": 1,
"R\u0101ipur": 1,
"Wolmaransstad": 1,
"Sankt Ingbert": 1,
"Malingshan": 1,
"Kasimov": 1,
"Lesosibirsk": 1,
"Bielsko-Biala": 1,
"Bambari": 1,
"Sikeston": 1,
"Narva": 1,
"Warrington": 1,
"Gyeongsan-si": 1,
"Chiclayo": 1,
"Pershotravensk": 1,
"Rishra": 1,
"\u0100doni": 1,
"Zhabei": 1,
"Olecko": 1,
"Mukt\u0101g\u0101cha": 1,
"Yufengshan": 1,
"Krishnar\u0101jpet": 1,
"Jamestown": 1,
"Fukagawa": 1,
"Umuahia": 1,
"Empangeni": 1,
"Klimovsk": 1,
"Cypress": 1,
"Greystones": 1,
"Fuji": 1,
"Krasnoturinsk": 1,
"Strumica": 1,
"\u015arem": 1,
"H\u00fcckelhoven": 1,
"Larkana": 1,
"Carigara": 1,
"Lun\u00e9ville": 1,
"Nova Granada": 1,
"B\u0101nka": 1,
"Barra do Pira\u00ed": 1,
"Le Camas": 1,
"Azusa": 1,
"Laramie": 1,
"Wattrelos": 1,
"United States": 1,
"Switzerland": 1,
"Tanzania, United Republic of": 1,
"South Africa": 1,
"Brazil": 1,
"Algeria": 1,
"Uganda": 1,
"Mexico": 1,
"Finland": 1,
"China": 1,
"Pakistan": 1,
"Ghana": 1,
"Viet Nam": 1,
"Russian Federation": 1,
"India": 1,
"Turkey": 1,
"Namibia": 1,
"Ukraine": 1,
"Tuvalu": 1,
"Bangladesh": 1,
"Italy": 1,
"Portugal": 1,
"Korea, Republic of": 1,
"Mozambique": 1,
"Slovakia": 1,
"Cuba": 1,
"Iran, Islamic Republic of": 1,
"Argentina": 1,
"Belgium": 1,
"Austria": 1,
"Colombia": 1,
"Germany": 1,
"Morocco": 1,
"Canada": 1,
"Antigua and Barbuda": 1,
"Belarus": 1,
"Spain": 1,
"United Kingdom": 1,
"Honduras": 1,
"Czechia": 1,
"Cameroon": 1,
"France": 1,
"Malaysia": 1,
"Netherlands": 1,
"Iraq": 1,
"Bolivia, Plurinational State of": 1,
"North Macedonia": 1,
"Australia": 1,
"Philippines": 1,
"Japan": 1,
"Venezuela, Bolivarian Republic of": 1,
"Indonesia": 1,
"Cambodia": 1,
"Egypt": 1,
"Palestine, State of": 1,
"Kiribati": 1,
"Thailand": 1,
"Hungary": 1,
"Romania": 1,
"Tunisia": 1,
"Peru": 1,
"Angola": 1,
"Kazakhstan": 1,
"Somalia": 1,
"Poland": 1,
"Central African Republic": 1,
"Estonia": 1,
"Nigeria": 1,
"Ireland": 1,
"US": 1,
"CH": 1,
"TZ": 1,
"ZA": 1,
"BR": 1,
"DZ": 1,
"UG": 1,
"MX": 1,
"FI": 1,
"CN": 1,
"PK": 1,
"GH": 1,
"VN": 1,
"RU": 1,
"IN": 1,
"TR": 1,
"NA": 1,
"UA": 1,
"TV": 1,
"BD": 1,
"IT": 1,
"PT": 1,
"KR": 1,
"MZ": 1,
"SK": 1,
"CU": 1,
"IR": 1,
"AR": 1,
"BE": 1,
"AT": 1,
"CO": 1,
"DE": 1,
"MA": 1,
"CA": 1,
"AG": 1,
"BY": 1,
"ES": 1,
"GB": 1,
"HN": 1,
"CZ": 1,
"CM": 1,
"FR": 1,
"MY": 1,
"NL": 1,
"IQ": 1,
"BO": 1,
"MK": 1,
"AU": 1,
"PH": 1,
"JP": 1,
"VE": 1,
"ID": 1,
"KH": 1,
"EG": 1,
"PS": 1,
"KI": 1,
"TH": 1,
"HU": 1,
"RO": 1,
"TN": 1,
"PE": 1,
"AO": 1,
"KZ": 1,
"SO": 1,
"PL": 1,
"CF": 1,
"EE": 1,
"NG": 1,
"IE": 1
}
{
"set_P": 0.4363021420518602,
"set_recall": 0.6113744075829384,
"set_F": 0.5092105263157894
}
ck26:34-de
Ich muss meine
Lieferantenkontaktliste
aktualisieren, indem ich die Namen
aller Lieferanten sowie deren
vollständige Adressdaten erfasse.
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?locality ?ccode ?country
WHERE {
?sup a pv:Supplier ;
pv:name ?name .
OPTIONAL { ?sup pv:addressLocality ?locality . }
OPTIONAL { ?sup pv:addressCountryCode ?ccode . }
OPTIONAL { ?sup pv:addressCountry ?country . }
}
{
"Stevens Ltd": 1,
"Martinez and Sons": 1,
"Johnson-Carroll": 1,
"Boyd, Turner and Byrd": 1,
"Petty, Hamilton and Solomon": 1,
"White, Wong and Trevino": 1,
"Garrison, Williams and Johnson": 1,
"King-Johnson": 1,
"Fox-Delacruz": 1,
"Washington-Villanueva": 1,
"Knight PLC": 1,
"Riley, Barrett and Mccullough": 1,
"Poole, Coleman and Shea": 1,
"Vincent LLC": 1,
"Griffith-Stout": 1,
"Brown, Estrada and Riggs": 1,
"Carr, Smith and Webb": 1,
"Smith and Sons": 1,
"Ibarra and Sons": 1,
"Figueroa, Ibarra and Jackson": 1,
"Wagner-Ramirez": 1,
"Gross, Frey and Mcmahon": 1,
"Nelson, Cruz and Bush": 1,
"Church Inc": 1,
"Barry PLC": 1,
"Maldonado Inc": 1,
"Pollard LLC": 1,
"Barr-Melendez": 1,
"Adkins, Lopez and Boyd": 1,
"Curtis, Perkins and Sims": 1,
"Williamson-Young": 1,
"Peck, Tucker and Patterson": 1,
"Reese-Williams": 1,
"Martin and Sons": 1,
"Woods Ltd": 1,
"Gomez Inc": 1,
"Anderson-Young": 1,
"Garcia-Roberts": 1,
"Gregory PLC": 1,
"Odonnell-Williams": 1,
"Gentry-Gross": 1,
"Mclaughlin-Hawkins": 1,
"Williams, Bailey and Martinez": 1,
"Peterson-Rose": 1,
"Thomas-Jenkins": 1,
"Martinez LLC": 1,
"Chavez-Price": 1,
"Parker-Lawrence": 1,
"Ford, Martinez and Gutierrez": 1,
"Santiago-Gardner": 1,
"Lopez, Goodman and Miller": 1,
"Flores PLC": 1,
"White, Lewis and Evans": 1,
"Carroll, Nguyen and Martin": 1,
"Mendoza, Moore and Thomas": 1,
"Mccarthy-Galloway": 1,
"Moran, Martin and Freeman": 1,
"Taylor, Obrien and Delacruz": 1,
"Lee, Pearson and Gates": 1,
"Boyd, Berg and Sampson": 1,
"Mcpherson Ltd": 1,
"Bender PLC": 1,
"Thompson Ltd": 1,
"Allen-Short": 1,
"Stevens PLC": 1,
"Todd-Mcneil": 1,
"Morris, Cain and Boone": 1,
"Watkins Group": 1,
"Howell-Meyer": 1,
"Cervantes, Wagner and Jackson": 1,
"Jackson, Chan and Rivera": 1,
"Powell-Nguyen": 1,
"Rodriguez LLC": 1,
"Smith LLC": 1,
"Cooper, Walker and Perez": 1,
"Maxwell Inc": 1,
"Buchanan Group": 1,
"Harper PLC": 1,
"Wright Inc": 1,
"Newton Inc": 1,
"Allison PLC": 1,
"Hernandez, Mayer and Jones": 1,
"Richardson Inc": 1,
"Griffin, Smith and Smith": 1,
"Collins, Martin and Lane": 1,
"Perkins, Garza and Cochran": 1,
"Hensley-Porter": 1,
"Kerr LLC": 1,
"Curtis, Doyle and Singleton": 1,
"Davis Ltd": 1,
"Nguyen-Cruz": 1,
"Smith-Williamson": 1,
"White-Nash": 1,
"Santana LLC": 1,
"Kidd, Mcdaniel and Russell": 1,
"Barrera Inc": 1,
"Sanchez-Mcdonald": 1,
"Hardy, Bauer and Martinez": 1,
"Mcdaniel, Dean and Delgado": 1,
"Williams-Sweeney": 1,
"Mayo, Aguirre and Ryan": 1,
"Lee and Sons": 1,
"Lucas and Sons": 1,
"Barber-Hayes": 1,
"Villegas-Cummings": 1,
"Jones-Martinez": 1,
"Harris, Graves and Gonzalez": 1,
"Romero-Nguyen": 1,
"Alvarez-Curtis": 1,
"Bryan-James": 1,
"Hines-Allen": 1,
"Thornton, Cook and Estrada": 1,
"Coleman LLC": 1,
"Hubbard Ltd": 1,
"Anderson Ltd": 1,
"Cooper and Sons": 1,
"Peterson Ltd": 1,
"Russell, Mcclain and Larson": 1,
"Gibson-Jackson": 1,
"Harrison PLC": 1,
"Stevens LLC": 1,
"Brown, Torres and Bautista": 1,
"Lynch-Ramirez": 1,
"Evans, Park and James": 1,
"Jones Group": 1,
"Rodriguez-Mcdonald": 1,
"Odom-Lawrence": 1,
"Peterson, Norton and Preston": 1,
"May, Ruiz and Butler": 1,
"Bryan-Jones": 1,
"Lynch LLC": 1,
"Page, Hernandez and Ayala": 1,
"Smith-Cobb": 1,
"Singh Inc": 1,
"Baker, Medina and George": 1,
"Jordan, James and Bradley": 1,
"Harris-Cunningham": 1,
"Reyes, Taylor and Ramirez": 1,
"Salinas-Kelly": 1,
"Snyder, Robinson and Brown": 1,
"Duran, Mueller and Payne": 1,
"Marshall PLC": 1,
"Miller, Green and Scott": 1,
"Williamson-Green": 1,
"Jimenez PLC": 1,
"Arnold-Knight": 1,
"Guerrero, Sutton and Lucas": 1,
"Simmons, Cox and Craig": 1,
"Moreno Group": 1,
"Cortez Group": 1,
"Collins-Hensley": 1,
"Meyer, Marquez and Mckenzie": 1,
"Manning, Hodges and Mckenzie": 1,
"Davidson, Rosales and Stewart": 1,
"Drake Ltd": 1,
"Cantu-Ferguson": 1,
"Marsh, Cunningham and Hill": 1,
"Ross-Brooks": 1,
"Larsen-Martinez": 1,
"Doyle, King and Thompson": 1,
"Castillo Inc": 1,
"Benitez and Sons": 1,
"Wilson-Callahan": 1,
"Hutchinson-Lane": 1,
"Olson LLC": 1,
"Martin-Mcbride": 1,
"Rowland, Todd and Whitaker": 1,
"Fleming Inc": 1,
"Fletcher, Pierce and Navarro": 1,
"Huang, Guerrero and Hurst": 1,
"Rivera Group": 1,
"Carter Group": 1,
"Phillips, Love and Smith": 1,
"Douglas Inc": 1,
"Rich, Powell and Ward": 1,
"Green-Crawford": 1,
"Scott, Frazier and Cooper": 1,
"Nguyen-Peters": 1,
"Collins and Sons": 1,
"Barnes LLC": 1,
"Calderon-Montgomery": 1,
"Avery-Johnson": 1,
"Schroeder and Sons": 1,
"Green and Sons": 1,
"James-Wright": 1,
"Meyer, Floyd and Jackson": 1,
"Myers-Brown": 1,
"Nichols Inc": 1,
"Harris, Wright and Morales": 1,
"Nichols-Davis": 1,
"Wagner Group": 1,
"Turner, Hall and Jimenez": 1,
"Daniels Group": 1,
"Clarke-Brown": 1,
"Larson, Lambert and Gay": 1,
"Goodman-Chapman": 1,
"Cook Group": 1,
"Jones PLC": 1,
"Cochran-Delacruz": 1,
"Carr, Smith and Mayo": 1,
"Becker LLC": 1,
"Hill-Jones": 1,
"Bruce, Gutierrez and Thompson": 1,
"Aguilar, Matthews and Martinez": 1,
"Bolton, Sanchez and Rodgers": 1,
"Estes, Johnston and Richardson": 1,
"Rodriguez, Estrada and Kim": 1,
"Huerta, Clark and Johnson": 1,
"Zamora, Adams and Koch": 1,
"Cook LLC": 1,
"Ferrell-Dixon": 1,
"Rodriguez-Warren": 1,
"Brown, Jackson and Simpson": 1,
"Fuentes Inc": 1,
"Hodges-Johnson": 1,
"Hall-Hodges": 1,
"Carlson Inc": 1,
"Shaffer PLC": 1,
"Grant-Nelson": 1,
"Brown PLC": 1,
"Swanson-Kennedy": 1,
"Davis-Wagner": 1,
"Adams-White": 1,
"Rodriguez, Schmidt and Hodge": 1,
"Johnson, Khan and Oconnell": 1,
"Bennett, Best and Jacobson": 1,
"White and Sons": 1,
"Bryant-Stark": 1,
"Morgan, Brown and Martin": 1,
"Stewart-Woodard": 1,
"Stewart PLC": 1,
"Little, Dunlap and Nelson": 1,
"Fernandez-Roberts": 1,
"Hubbard-Holmes": 1,
"Carter, Webb and Bush": 1,
"Garcia Ltd": 1,
"Horton, Sims and Pacheco": 1,
"Li-Gonzalez": 1,
"Neal LLC": 1,
"Turner and Sons": 1,
"Hernandez, Jenkins and Luna": 1,
"Wilson, Kim and Dorsey": 1,
"Long-Sullivan": 1,
"Harris-Waller": 1,
"Morgan-Leonard": 1,
"Cohen, Bell and Rodriguez": 1,
"Chiclayo": 1,
"Jandaia do Sul": 1,
"Suozhen": 1,
"Kamoke": 1,
"B\u00fchl": 1,
"H\u00fcckelhoven": 1,
"Kifr\u012b": 1,
"Ajab Sh\u012br": 1,
"Chamber\u00ed": 1,
"Fuji": 1,
"Deoli": 1,
"Ghauspur": 1,
"Bucaramanga": 1,
"Cypress": 1,
"East Grinstead": 1,
"Chernivtsi": 1,
"Macia": 1,
"Bambari": 1,
"Somerset": 1,
"Smolensk": 1,
"Greystones": 1,
"Malaybalay": 1,
"Ben Arous": 1,
"Molodohvardiisk": 1,
"Erie": 1,
"Yalta": 1,
"Xinyingpan": 1,
"South El Monte": 1,
"Kriens": 1,
"Norristown": 1,
"B\u0101nka": 1,
"Manizales": 1,
"Avezzano": 1,
"Wyoming": 1,
"Azusa": 1,
"Huddersfield": 1,
"Bundibugyo": 1,
"Oisterwijk": 1,
"Mixquiahuala de Juarez": 1,
"U\u00edge": 1,
"Sucre": 1,
"Manolo Fortich": 1,
"Carigara": 1,
"Battle Creek": 1,
"Mukt\u0101g\u0101cha": 1,
"West Whittier-Los Nietos": 1,
"Edegem": 1,
"Bhit Shah": 1,
"Bhudgaon": 1,
"R\u0101ipur": 1,
"Coxim": 1,
"Long Beach": 1,
"\u015arem": 1,
"Doln\u00fd Kub\u00edn": 1,
"Ant\u00f3nio Enes": 1,
"Boa Vista": 1,
"Murrieta": 1,
"Olecko": 1,
"Hann\u014d": 1,
"Walvis Bay": 1,
"Bara\u00f1\u00e1in": 1,
"Starokostyantyniv": 1,
"Dubna": 1,
"Krishnar\u0101jpet": 1,
"Mondlo": 1,
"Pershotravensk": 1,
"Fukagawa": 1,
"Elche": 1,
"Krasnoturinsk": 1,
"Seosan": 1,
"Boedo": 1,
"Broxburn": 1,
"Keynsham": 1,
"Breda": 1,
"Bielsko-Biala": 1,
"Surrey": 1,
"Naraini": 1,
"Jeongeup": 1,
"Tirupparangunram": 1,
"Laramie": 1,
"Steilshoop": 1,
"Perd\u00f5es": 1,
"Krati\u00e9": 1,
"Minamirinkan": 1,
"Longview": 1,
"Sievierodonetsk": 1,
"Pangkalan Brandan": 1,
"Probolinggo": 1,
"Monz\u00f3n": 1,
"West Hill": 1,
"Pinsk": 1,
"Pinetown": 1,
"Narva": 1,
"Larkana": 1,
"Ceerigaabo": 1,
"Lahti": 1,
"Ho": 1,
"L\u0101dwa": 1,
"Matanzas": 1,
"M\u0101nvi": 1,
"Lun\u00e9ville": 1,
"Serrana": 1,
"Bandeirantes": 1,
"Mount Vernon": 1,
"Songyang": 1,
"Klimovsk": 1,
"D\u016br\u0101": 1,
"Siirt": 1,
"Orihuela": 1,
"Sa\u00efda": 1,
"Palmi": 1,
"Bloemfontein": 1,
"Jamestown": 1,
"Brumado": 1,
"Liufeng": 1,
"Taquara": 1,
"Carouge": 1,
"Schwalbach": 1,
"Hartford": 1,
"Ki\u010devo": 1,
"Mercedes": 1,
"Gyeongsan-si": 1,
"Kishorganj": 1,
"Nakhon Si Thammarat": 1,
"Kaiyuan": 1,
"Mallaw\u012b": 1,
"Chharra": 1,
"Suri\u0101pet": 1,
"Berekum": 1,
"Patnos": 1,
"Bir el Djir": 1,
"Asy\u016b\u0163": 1,
"Moorpark": 1,
"Sikeston": 1,
"Lesosibirsk": 1,
"Kuopio": 1,
"Saint-L\u00f4": 1,
"Toulouse": 1,
"Holt": 1,
"Yicheng": 1,
"Warrington": 1,
"Yushan": 1,
"Uccle": 1,
"Budapest XXIII. ker\u00fclet": 1,
"Nova Granada": 1,
"Indore": 1,
"Paracho de Verduzco": 1,
"Eustis": 1,
"Kasimov": 1,
"Back Mountain": 1,
"Hyattsville": 1,
"Marienberg": 1,
"Huimin": 1,
"Marche-en-Famenne": 1,
"Piombino": 1,
"El Para\u00edso": 1,
"Yufengshan": 1,
"Tom\u00e9 A\u00e7u": 1,
"Allauch": 1,
"Okunoya": 1,
"Ebersbach an der Fils": 1,
"Dosquebradas": 1,
"Manj\u012bl": 1,
"South Euclid": 1,
"Le Camas": 1,
"Khardah": 1,
"Cataguases": 1,
"Xinzhou": 1,
"Payson": 1,
"el Camp de l'Arpa del Clot": 1,
"Sant Pere de Ribes": 1,
"Saint-Michel-sur-Orge": 1,
"Honch\u014d": 1,
"Mabalacat City": 1,
"Uni\u00f3n de Reyes": 1,
"Punta de Mata": 1,
"Bellshill": 1,
"Arma\u00e7\u00e3o de B\u00fazios": 1,
"Mairinque": 1,
"Sankt Ingbert": 1,
"Huangshan": 1,
"Randolph": 1,
"Sambrial": 1,
"Gustavo Adolfo Madero": 1,
"Gallarate": 1,
"Chicago Heights": 1,
"Wolmaransstad": 1,
"Constantine": 1,
"Villepinte": 1,
"Hemmingen": 1,
"Dera Ghazi Khan": 1,
"Ferre\u00f1afe": 1,
"Nikk\u014d": 1,
"Ivano-Frankivsk": 1,
"Empangeni": 1,
"Saint John\u2019s": 1,
"Stockerau": 1,
"Heishan": 1,
"Johnston": 1,
"Seondha": 1,
"Aliaga": 1,
"Piedecuesta": 1,
"Nanmen": 1,
"S\u01a1n T\u00e2y": 1,
"Choisy-le-Roi": 1,
"Shiyan": 1,
"Morogoro": 1,
"D\u00fczce": 1,
"Karvin\u00e1": 1,
"Embi": 1,
"El Masnou": 1,
"Wattrelos": 1,
"Ahfir": 1,
"Akonolinga": 1,
"Nikol\u2019skoye": 1,
"Funafuti": 1,
"North Bellmore": 1,
"Pasco": 1,
"Togitsu": 1,
"Cangu\u00e7u": 1,
"Malingshan": 1,
"Malvern East": 1,
"Ranchi": 1,
"Zhabei": 1,
"Bormujos": 1,
"San Leandro": 1,
"Tutayev": 1,
"Namioka": 1,
"Ch\u0101kia": 1,
"Strumica": 1,
"Linda-a-Velha": 1,
"Neuwied": 1,
"\u0100doni": 1,
"Rishra": 1,
"Tarawa": 1,
"Harlingen": 1,
"Kawanishi": 1,
"Somanda": 1,
"Ampang": 1,
"East Hampton": 1,
"Bais": 1,
"Tooting": 1,
"Umuahia": 1,
"Matthews": 1,
"Barra do Pira\u00ed": 1,
"Ridderkerk": 1,
"Ciudad Bolivia": 1,
"C\u00e2mpulung Moldovenesc": 1,
"Dary\u0101pur": 1,
"PE": 1,
"BR": 1,
"CN": 1,
"PK": 1,
"DE": 1,
"IQ": 1,
"IR": 1,
"ES": 1,
"IN": 1,
"CO": 1,
"US": 1,
"GB": 1,
"UA": 1,
"MZ": 1,
"CF": 1,
"RU": 1,
"IE": 1,
"PH": 1,
"TN": 1,
"CH": 1,
"IT": 1,
"UG": 1,
"NL": 1,
"MX": 1,
"AO": 1,
"BO": 1,
"BD": 1,
"BE": 1,
"PL": 1,
"SK": 1,
"JP": 1,
"NA": 1,
"ZA": 1,
"KR": 1,
"AR": 1,
"CA": 1,
"KH": 1,
"ID": 1,
"BY": 1,
"EE": 1,
"SO": 1,
"FI": 1,
"GH": 1,
"CU": 1,
"FR": 1,
"PS": 1,
"TR": 1,
"DZ": 1,
"MK": 1,
"TH": 1,
"EG": 1,
"HU": 1,
"HN": 1,
"VE": 1,
"AG": 1,
"AT": 1,
"VN": 1,
"TZ": 1,
"CZ": 1,
"KZ": 1,
"MA": 1,
"CM": 1,
"TV": 1,
"AU": 1,
"PT": 1,
"KI": 1,
"MY": 1,
"NG": 1,
"RO": 1,
"Peru": 1,
"Brazil": 1,
"China": 1,
"Pakistan": 1,
"Germany": 1,
"Iraq": 1,
"Iran, Islamic Republic of": 1,
"Spain": 1,
"India": 1,
"Colombia": 1,
"United States": 1,
"United Kingdom": 1,
"Ukraine": 1,
"Mozambique": 1,
"Central African Republic": 1,
"Russian Federation": 1,
"Ireland": 1,
"Philippines": 1,
"Tunisia": 1,
"Switzerland": 1,
"Italy": 1,
"Uganda": 1,
"Netherlands": 1,
"Mexico": 1,
"Angola": 1,
"Bolivia, Plurinational State of": 1,
"Bangladesh": 1,
"Belgium": 1,
"Poland": 1,
"Slovakia": 1,
"Japan": 1,
"Namibia": 1,
"South Africa": 1,
"Korea, Republic of": 1,
"Argentina": 1,
"Canada": 1,
"Cambodia": 1,
"Indonesia": 1,
"Belarus": 1,
"Estonia": 1,
"Somalia": 1,
"Finland": 1,
"Ghana": 1,
"Cuba": 1,
"France": 1,
"Palestine, State of": 1,
"Turkey": 1,
"Algeria": 1,
"North Macedonia": 1,
"Thailand": 1,
"Egypt": 1,
"Hungary": 1,
"Honduras": 1,
"Venezuela, Bolivarian Republic of": 1,
"Antigua and Barbuda": 1,
"Austria": 1,
"Viet Nam": 1,
"Tanzania, United Republic of": 1,
"Czechia": 1,
"Kazakhstan": 1,
"Morocco": 1,
"Cameroon": 1,
"Tuvalu": 1,
"Australia": 1,
"Portugal": 1,
"Kiribati": 1,
"Malaysia": 1,
"Nigeria": 1,
"Romania": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?supplier (SAMPLE(COALESCE(?lbl0,?name0, STR(?supplier))) AS ?supplierLabel) (SAMPLE(?supplierId0) AS ?supplierId) (SAMPLE(?addrText0) AS ?addrText) (SAMPLE(?addrLocality0) AS ?addrLocality) (SAMPLE(?addrCountry0) AS ?addrCountry) (SAMPLE(?addrCountryCode0) AS ?addrCountryCode) (SAMPLE(?phone0) AS ?phone) (SAMPLE(?email0) AS ?email) (SAMPLE(?countryEntity0) AS ?countryEntity)
WHERE {
?product pv:hasSupplier ?supplier .
OPTIONAL { ?supplier rdfs:label ?lbl0 }
OPTIONAL { ?supplier pv:name ?name0 }
OPTIONAL { ?supplier pv:id ?supplierId0 }
OPTIONAL { ?supplier pv:addressText ?addrText0 }
OPTIONAL { ?supplier pv:addressLocality ?addrLocality0 }
OPTIONAL { ?supplier pv:addressCountry ?addrCountry0 }
OPTIONAL { ?supplier pv:addressCountryCode ?addrCountryCode0 }
OPTIONAL { ?supplier pv:phone ?phone0 }
OPTIONAL { ?supplier pv:email ?email0 }
OPTIONAL { ?supplier pv:country ?countryEntity0 }
}
GROUP BY ?supplier
ORDER BY ?supplierLabel
{
"http://ld.company.org/prod-instances/suppl-23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"http://ld.company.org/prod-instances/suppl-0058fc5e-e9e8-46eb-ac6d-673e436a5d7a": 1,
"http://ld.company.org/prod-instances/suppl-6268ab7c-e25c-44ff-8431-e631679623b5": 1,
"http://ld.company.org/prod-instances/suppl-f26204e2-83cc-4526-a8f0-d4c86f295774": 1,
"http://ld.company.org/prod-instances/suppl-267680ea-eafe-4d40-a3c6-4807c0d195b1": 1,
"http://ld.company.org/prod-instances/suppl-816e4baa-8158-4e2a-8ff4-c9f969998389": 1,
"http://ld.company.org/prod-instances/suppl-7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"http://ld.company.org/prod-instances/suppl-8d98799f-d657-4acf-9ca6-9b90420ff681": 1,
"http://ld.company.org/prod-instances/suppl-46bae099-f191-415a-aefa-3cab4b0e8c2e": 1,
"http://ld.company.org/prod-instances/suppl-3f0439ac-320f-4d70-b9a4-2fef9281ff49": 1,
"http://ld.company.org/prod-instances/suppl-a1a85cfc-109a-47fe-91a2-632334d35f44": 1,
"http://ld.company.org/prod-instances/suppl-06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"http://ld.company.org/prod-instances/suppl-63ab664f-80d7-46e1-97cb-39a4f713f937": 1,
"http://ld.company.org/prod-instances/suppl-79274f67-b225-49fa-ad8c-fb20560cb1d5": 1,
"http://ld.company.org/prod-instances/suppl-8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"http://ld.company.org/prod-instances/suppl-27f8059f-fe10-4a39-aa68-d66210c9cc59": 1,
"http://ld.company.org/prod-instances/suppl-a2a17a94-b064-4682-86ba-1c933616568f": 1,
"http://ld.company.org/prod-instances/suppl-0ca3c664-7fb2-446a-b5c6-73fe140c4f02": 1,
"http://ld.company.org/prod-instances/suppl-f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"http://ld.company.org/prod-instances/suppl-847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"http://ld.company.org/prod-instances/suppl-4f22034e-f299-442a-a1e3-3d9dc974ed8f": 1,
"http://ld.company.org/prod-instances/suppl-d396349e-7772-49c3-bcdf-0afbeae658fa": 1,
"http://ld.company.org/prod-instances/suppl-63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"http://ld.company.org/prod-instances/suppl-6259c66a-0eec-4f7f-b4a4-a0c2be80461e": 1,
"http://ld.company.org/prod-instances/suppl-33da751a-1358-4530-b0e5-e3b9a509e952": 1,
"http://ld.company.org/prod-instances/suppl-7f0c3d05-f16c-44c0-b9f4-5ff9d2892270": 1,
"http://ld.company.org/prod-instances/suppl-b9dfb874-fb5d-4d34-8a13-e4f1395f3c6e": 1,
"http://ld.company.org/prod-instances/suppl-169db3fc-b253-465a-ba91-33f3617a9313": 1,
"http://ld.company.org/prod-instances/suppl-1b032f32-5734-44da-8758-554ad059b03e": 1,
"http://ld.company.org/prod-instances/suppl-66558286-cf29-4320-80a9-de2c12aa2f3c": 1,
"http://ld.company.org/prod-instances/suppl-6746c17d-5e49-47bc-82a1-90ac0c7aa01c": 1,
"http://ld.company.org/prod-instances/suppl-feeda1ce-d6af-42b2-b6ff-7516ba39ad6c": 1,
"http://ld.company.org/prod-instances/suppl-2731aa23-7ea4-4661-b79b-6f0d4d17d5b3": 1,
"http://ld.company.org/prod-instances/suppl-fcdf3268-b0f0-4e2b-8fbd-6008cb4a6d0e": 1,
"http://ld.company.org/prod-instances/suppl-f3de43d3-4bd7-4641-be54-2db60238aa14": 1,
"http://ld.company.org/prod-instances/suppl-248fa1c7-dd1e-41fe-931a-9f00777ee0fe": 1,
"http://ld.company.org/prod-instances/suppl-2805bfc6-fe9f-49fc-90ba-d4c779a38af2": 1,
"http://ld.company.org/prod-instances/suppl-7f696243-08d9-458c-8041-e114a223b897": 1,
"http://ld.company.org/prod-instances/suppl-c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"http://ld.company.org/prod-instances/suppl-95881d4c-8788-46b1-948f-8b359464556d": 1,
"http://ld.company.org/prod-instances/suppl-66cdfd7b-f68e-40d1-b9dc-0dd54c50b6a1": 1,
"http://ld.company.org/prod-instances/suppl-fbfe40db-81e4-4b35-93d5-a996307a266e": 1,
"http://ld.company.org/prod-instances/suppl-f80817bf-7010-48c7-a3be-b015b09309d0": 1,
"http://ld.company.org/prod-instances/suppl-12417d4e-b119-46a1-8c47-a560c2d103dd": 1,
"http://ld.company.org/prod-instances/suppl-6463b573-32bd-4bc5-b2dc-c8e9a96965ba": 1,
"http://ld.company.org/prod-instances/suppl-25e44a18-cb4f-48aa-bb6a-c05189268df6": 1,
"http://ld.company.org/prod-instances/suppl-afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"http://ld.company.org/prod-instances/suppl-a0f25cc7-1407-452e-98e2-8fa5083d4041": 1,
"http://ld.company.org/prod-instances/suppl-13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"http://ld.company.org/prod-instances/suppl-a6f1f4bd-bdd5-4a35-b683-2aee89aa8ed3": 1,
"http://ld.company.org/prod-instances/suppl-d0f56bf6-b7f2-4032-be8f-95269c626667": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-36060220-55ab-4726-9b30-30de76c56344": 1,
"http://ld.company.org/prod-instances/suppl-b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"http://ld.company.org/prod-instances/suppl-05b5a686-c821-41c4-bc2c-b66d35bac1d8": 1,
"http://ld.company.org/prod-instances/suppl-dff64a17-e085-4289-9196-a1e7ae8b0c22": 1,
"http://ld.company.org/prod-instances/suppl-0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"http://ld.company.org/prod-instances/suppl-caeb974d-5803-4419-b316-2245f15f73d4": 1,
"http://ld.company.org/prod-instances/suppl-b8b7794e-329e-4bdc-9fcb-5ddfe9b71248": 1,
"http://ld.company.org/prod-instances/suppl-42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"http://ld.company.org/prod-instances/suppl-cccd3023-1267-4fe6-9fbe-2441662cbb46": 1,
"http://ld.company.org/prod-instances/suppl-534df54e-82c6-430e-ad50-d80a3a745e11": 1,
"http://ld.company.org/prod-instances/suppl-034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"http://ld.company.org/prod-instances/suppl-b9ed885f-282e-4836-bede-f1dc9f9f5c41": 1,
"http://ld.company.org/prod-instances/suppl-29c1b979-da61-4df4-ae3d-a2e303ea4444": 1,
"http://ld.company.org/prod-instances/suppl-183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"http://ld.company.org/prod-instances/suppl-29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"http://ld.company.org/prod-instances/suppl-e68696c9-d9e7-4d2b-b467-d923c91ce47b": 1,
"http://ld.company.org/prod-instances/suppl-2451f479-fe10-4322-a8c9-3f4f21f39779": 1,
"http://ld.company.org/prod-instances/suppl-9484418b-c487-4050-9094-050f3bab0817": 1,
"http://ld.company.org/prod-instances/suppl-9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"http://ld.company.org/prod-instances/suppl-22b67f9e-45e9-449e-8269-a31bd550324a": 1,
"http://ld.company.org/prod-instances/suppl-b5028bba-a927-45d7-9032-ee90825311c5": 1,
"http://ld.company.org/prod-instances/suppl-cfe8ae59-a7a8-4772-8bd5-bbd6991af811": 1,
"http://ld.company.org/prod-instances/suppl-238c3f06-3708-4b59-8617-f94611d6f3a3": 1,
"http://ld.company.org/prod-instances/suppl-e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"http://ld.company.org/prod-instances/suppl-30dc6bac-5604-4e78-a48d-eed66f4d4dc8": 1,
"http://ld.company.org/prod-instances/suppl-cd395f35-74dc-4858-8bb9-5fdf0add00ee": 1,
"http://ld.company.org/prod-instances/suppl-266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"http://ld.company.org/prod-instances/suppl-297508c6-6074-4625-8dec-7bab342010a1": 1,
"http://ld.company.org/prod-instances/suppl-4b796fba-c152-4137-b01d-fce80aef6e3c": 1,
"http://ld.company.org/prod-instances/suppl-784f7f15-1a8c-43f5-923c-de0beb82f32f": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-d2a60059-73f4-4fae-9a4a-0ab93f5203eb": 1,
"http://ld.company.org/prod-instances/suppl-3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"http://ld.company.org/prod-instances/suppl-9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"http://ld.company.org/prod-instances/suppl-88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"http://ld.company.org/prod-instances/suppl-7c4b3772-ee27-4915-8166-359d068db153": 1,
"http://ld.company.org/prod-instances/suppl-671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"http://ld.company.org/prod-instances/suppl-07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"http://ld.company.org/prod-instances/suppl-dd4262b0-805f-49f8-94b0-12dcadea9e73": 1,
"http://ld.company.org/prod-instances/suppl-4f66d217-8106-4b87-922b-fbe6e8d6d699": 1,
"http://ld.company.org/prod-instances/suppl-2617dc37-a7c6-4c6c-b89d-4e4f367f3d78": 1,
"http://ld.company.org/prod-instances/suppl-f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"http://ld.company.org/prod-instances/suppl-fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"http://ld.company.org/prod-instances/suppl-1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"http://ld.company.org/prod-instances/suppl-9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"http://ld.company.org/prod-instances/suppl-a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"http://ld.company.org/prod-instances/suppl-cb43b726-1b2f-44dd-b960-18b361c7288e": 1,
"http://ld.company.org/prod-instances/suppl-d0f6eeee-24cc-4a72-9331-d0ebbb83643b": 1,
"http://ld.company.org/prod-instances/suppl-78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"http://ld.company.org/prod-instances/suppl-092bb1b2-b39f-4521-9c21-c853db9d9a09": 1,
"http://ld.company.org/prod-instances/suppl-49231eda-bbab-475b-aa59-47e6c8c81166": 1,
"http://ld.company.org/prod-instances/suppl-9b333a39-4f8b-4f38-8bc8-3aea5aa24cd8": 1,
"http://ld.company.org/prod-instances/suppl-532fc460-676f-4727-b5b2-6d3771db9ba1": 1,
"http://ld.company.org/prod-instances/suppl-8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"http://ld.company.org/prod-instances/suppl-d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"http://ld.company.org/prod-instances/suppl-0c327a40-c6d8-44da-ba2d-e84f924c5208": 1,
"http://ld.company.org/prod-instances/suppl-7ce25e4c-5894-4e77-ada2-d2bb434fdae9": 1,
"http://ld.company.org/prod-instances/suppl-8a148e6d-972c-4135-930a-c6d9ea6957fd": 1,
"http://ld.company.org/prod-instances/suppl-a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"http://ld.company.org/prod-instances/suppl-dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"http://ld.company.org/prod-instances/suppl-9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"http://ld.company.org/prod-instances/suppl-22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"http://ld.company.org/prod-instances/suppl-1e0eae5f-25ae-4ef9-807e-4ce162fa2934": 1,
"http://ld.company.org/prod-instances/suppl-9da10220-7964-4a7a-a1ea-571a63cc483d": 1,
"http://ld.company.org/prod-instances/suppl-6de163f7-8aa2-434a-a210-78fea02e490c": 1,
"http://ld.company.org/prod-instances/suppl-1b447fbd-a0fe-4385-8141-ab5aa43fbedb": 1,
"http://ld.company.org/prod-instances/suppl-2a78338a-084a-4595-88ec-98f141e653f7": 1,
"http://ld.company.org/prod-instances/suppl-40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"http://ld.company.org/prod-instances/suppl-2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"http://ld.company.org/prod-instances/suppl-57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"http://ld.company.org/prod-instances/suppl-3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"http://ld.company.org/prod-instances/suppl-6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"http://ld.company.org/prod-instances/suppl-6ca36744-76bd-47bd-b4fd-6319ed8c87c7": 1,
"http://ld.company.org/prod-instances/suppl-0d183bba-b1df-4c41-be10-c0896378b406": 1,
"http://ld.company.org/prod-instances/suppl-88745cef-2133-4d0c-a1de-00fa0740eb26": 1,
"http://ld.company.org/prod-instances/suppl-06034b22-8e1b-435f-902e-88739f77d86a": 1,
"http://ld.company.org/prod-instances/suppl-47c86e10-e667-4725-bbe3-ac372da0b472": 1,
"http://ld.company.org/prod-instances/suppl-e27932a5-487a-4eca-9f9a-d82d5e5c467b": 1,
"http://ld.company.org/prod-instances/suppl-ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"http://ld.company.org/prod-instances/suppl-acc9fdfb-2811-4b87-8231-7168c70e7497": 1,
"http://ld.company.org/prod-instances/suppl-91be13e0-b467-48d9-8ff7-cbed652b49cb": 1,
"http://ld.company.org/prod-instances/suppl-a10b61e6-8288-499d-bd8c-d89b9625fb1f": 1,
"http://ld.company.org/prod-instances/suppl-f0feb132-7033-41f2-99e2-fdb8834302ec": 1,
"http://ld.company.org/prod-instances/suppl-ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"http://ld.company.org/prod-instances/suppl-aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"http://ld.company.org/prod-instances/suppl-64902ce8-7950-458e-bcee-5df3cabc7972": 1,
"http://ld.company.org/prod-instances/suppl-701e751f-51dc-482f-86d5-544b4af40076": 1,
"http://ld.company.org/prod-instances/suppl-d7f501f6-e595-473c-90fc-89933505411e": 1,
"http://ld.company.org/prod-instances/suppl-84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"http://ld.company.org/prod-instances/suppl-6d5eddf9-7c6f-4a88-8aba-2ef65267d78b": 1,
"http://ld.company.org/prod-instances/suppl-17c52e07-d5ce-4cfd-87cf-5ac7e3554c0c": 1,
"http://ld.company.org/prod-instances/suppl-a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"http://ld.company.org/prod-instances/suppl-67db6571-5c2f-4c52-9d0b-1584a74bb116": 1,
"http://ld.company.org/prod-instances/suppl-518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"http://ld.company.org/prod-instances/suppl-0301f65d-2290-456b-a3f7-b2096a632198": 1,
"http://ld.company.org/prod-instances/suppl-f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"http://ld.company.org/prod-instances/suppl-f494b5db-7627-4a97-809e-8e8f9d92fb51": 1,
"http://ld.company.org/prod-instances/suppl-6b879d25-7222-419e-8f1a-d9c9ceda2600": 1,
"http://ld.company.org/prod-instances/suppl-93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"http://ld.company.org/prod-instances/suppl-cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"http://ld.company.org/prod-instances/suppl-2fd79a0c-24b5-4361-8b5b-df720d2c7eac": 1,
"http://ld.company.org/prod-instances/suppl-2f7172a0-e935-4dfc-98a6-b48dcec0ad18": 1,
"http://ld.company.org/prod-instances/suppl-ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"http://ld.company.org/prod-instances/suppl-fb607751-7ff0-4cea-8e23-d22b4b1c67ad": 1,
"http://ld.company.org/prod-instances/suppl-cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"http://ld.company.org/prod-instances/suppl-47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"http://ld.company.org/prod-instances/suppl-cd18146d-c073-4d58-97b4-ac079baa9b65": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"http://ld.company.org/prod-instances/suppl-9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"http://ld.company.org/prod-instances/suppl-35f7b6ea-9412-41f4-9652-8e419db45ce8": 1,
"http://ld.company.org/prod-instances/suppl-d42974b3-923e-4f26-9bfa-1176e0073791": 1,
"http://ld.company.org/prod-instances/suppl-cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"http://ld.company.org/prod-instances/suppl-83983274-a805-4fcd-a909-1c2e14651637": 1,
"http://ld.company.org/prod-instances/suppl-89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"http://ld.company.org/prod-instances/suppl-82869f9c-fa06-45cb-922a-00675cde9676": 1,
"http://ld.company.org/prod-instances/suppl-114d6a02-02d8-4038-97a3-fd39a9701f79": 1,
"http://ld.company.org/prod-instances/suppl-d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"http://ld.company.org/prod-instances/suppl-f7c5fad9-9f0c-4206-a338-e162bfe54de1": 1,
"http://ld.company.org/prod-instances/suppl-8f607810-ca93-4274-9c27-d0a8dcba7c4a": 1,
"http://ld.company.org/prod-instances/suppl-29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"http://ld.company.org/prod-instances/suppl-cc8fb083-225e-4d29-960d-5d74b02adeda": 1,
"http://ld.company.org/prod-instances/suppl-b508d6ec-f430-4496-9c08-bd54f1541023": 1,
"http://ld.company.org/prod-instances/suppl-93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"http://ld.company.org/prod-instances/suppl-e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"http://ld.company.org/prod-instances/suppl-1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"http://ld.company.org/prod-instances/suppl-db1a07bc-c946-4ddd-8f47-b836c2f35281": 1,
"http://ld.company.org/prod-instances/suppl-b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"http://ld.company.org/prod-instances/suppl-bd9aec71-4218-45ce-b6c6-d076ad07f8cd": 1,
"http://ld.company.org/prod-instances/suppl-3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"http://ld.company.org/prod-instances/suppl-d7ca1d2e-6b21-4c0c-821a-c4e8d5a3c65c": 1,
"http://ld.company.org/prod-instances/suppl-45d529da-5989-484a-a60d-acba0442a929": 1,
"http://ld.company.org/prod-instances/suppl-f19beb89-6c1f-45e9-8864-8a832bf17a55": 1,
"http://ld.company.org/prod-instances/suppl-f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"http://ld.company.org/prod-instances/suppl-3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"http://ld.company.org/prod-instances/suppl-5f36c064-46dd-4351-b0e8-9cb2c76bfbab": 1,
"http://ld.company.org/prod-instances/suppl-de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"http://ld.company.org/prod-instances/suppl-3ad032a1-2e9f-4629-93c7-0ee0b5bb0e25": 1,
"http://ld.company.org/prod-instances/suppl-ebbcad78-26fa-4d33-95ca-84decc4209a4": 1,
"http://ld.company.org/prod-instances/suppl-ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"http://ld.company.org/prod-instances/suppl-65131e0d-addc-41f9-a33f-e9f3b7f00566": 1,
"http://ld.company.org/prod-instances/suppl-a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"http://ld.company.org/prod-instances/suppl-a28a6f2f-a549-4a38-98ac-6eaeff8472ce": 1,
"http://ld.company.org/prod-instances/suppl-79614820-e391-46f2-8ab9-c5022ad154d8": 1,
"http://ld.company.org/prod-instances/suppl-ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"http://ld.company.org/prod-instances/suppl-92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"http://ld.company.org/prod-instances/suppl-e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"http://ld.company.org/prod-instances/suppl-f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"http://ld.company.org/prod-instances/suppl-e9d8bb44-d19d-4453-8db2-d6d656f411be": 1,
"http://ld.company.org/prod-instances/suppl-3288e7a5-6b1b-482e-8c95-3265f948ae03": 1,
"http://ld.company.org/prod-instances/suppl-42f054a5-0aba-4b02-b68a-851130c639fc": 1,
"http://ld.company.org/prod-instances/suppl-2318f317-967e-4282-aceb-c17a6349f86e": 1,
"http://ld.company.org/prod-instances/suppl-f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"http://ld.company.org/prod-instances/suppl-a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"http://ld.company.org/prod-instances/suppl-7273d4f8-9c3a-4279-a18c-bb0f425bc8eb": 1,
"http://ld.company.org/prod-instances/suppl-bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"http://ld.company.org/prod-instances/suppl-a6815a96-329d-414e-89fa-27619179f857": 1,
"http://ld.company.org/prod-instances/suppl-fab306a0-9ab2-4834-949a-58804bddc9a4": 1,
"http://ld.company.org/prod-instances/suppl-e18d93fc-f1db-4ac7-b138-e158c6fb2e69": 1,
"http://ld.company.org/prod-instances/suppl-d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"http://ld.company.org/prod-instances/suppl-8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"http://ld.company.org/prod-instances/suppl-bf300186-9235-481d-be21-15c8e216dcf1": 1,
"http://ld.company.org/prod-instances/suppl-d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"http://ld.company.org/prod-instances/suppl-3c198782-cb13-4253-aefc-f48aa8ded00a": 1,
"http://ld.company.org/prod-instances/suppl-fd5556a6-46fc-4d68-846b-e543ce6f4ec9": 1,
"http://ld.company.org/prod-instances/suppl-373cc68d-3c51-43d9-878a-36aa0aeb86c6": 1,
"http://ld.company.org/prod-instances/suppl-db55e5ad-918e-42a0-97b4-1f496f9574dd": 1,
"http://ld.company.org/prod-instances/suppl-79126b93-df5a-4170-b80e-546a837605f3": 1,
"http://ld.company.org/prod-instances/suppl-9c9d9974-bea3-4bf9-882e-c16a80b17e84": 1,
"http://ld.company.org/prod-instances/suppl-15bdf688-23a7-4f52-be5c-fe82bba7add7": 1,
"http://ld.company.org/prod-instances/suppl-fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"http://ld.company.org/prod-instances/suppl-a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"http://ld.company.org/prod-instances/suppl-d0c9f303-04ac-44b3-9cbc-afed50b7a260": 1,
"http://ld.company.org/prod-instances/suppl-aaaa3f68-318a-4d8d-b080-79490e9e9dfa": 1,
"http://ld.company.org/prod-instances/suppl-f7a4c865-f6d4-4896-bc48-e5ec6b2bf283": 1,
"http://ld.company.org/prod-instances/suppl-ba01e204-e74e-4f87-bc55-1a43c099f199": 1,
"http://ld.company.org/prod-instances/suppl-854314d4-9505-4765-b22a-a2ff53549b0b": 1,
"http://ld.company.org/prod-instances/suppl-ab8fb795-35cd-42c4-827d-6fd907d6b81d": 1,
"http://ld.company.org/prod-instances/suppl-9c71665d-ca2e-44e3-b9ba-f1e47dec6dfe": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"http://ld.company.org/prod-instances/suppl-b66c44e8-057e-4267-8a38-29324107705f": 1,
"http://ld.company.org/prod-instances/suppl-23be71fa-4280-4114-9750-025c224be098": 1,
"http://ld.company.org/prod-instances/suppl-7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"http://ld.company.org/prod-instances/suppl-4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"http://ld.company.org/prod-instances/suppl-816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"http://ld.company.org/prod-instances/suppl-da35429e-b1b6-4780-9fcc-f1b17b40d4e3": 1,
"http://ld.company.org/prod-instances/suppl-7d33e910-5889-4f75-bd2b-193ec2434d0f": 1,
"http://ld.company.org/prod-instances/suppl-dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"http://ld.company.org/prod-instances/suppl-c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"http://ld.company.org/prod-instances/suppl-658f838d-0e84-4f36-978c-95602545977c": 1,
"http://ld.company.org/prod-instances/suppl-7c930e8b-b9f3-450a-856b-5e03c6b3965e": 1,
"http://ld.company.org/prod-instances/suppl-f1067c74-aa84-4a06-9fbd-16f914be2e65": 1,
"Adams-White (United States)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Aguilar, Matthews and Martinez (Tanzania, United Republic of)": 1,
"Allen-Short (South Africa)": 1,
"Allison PLC (Brazil)": 1,
"Alvarez-Curtis (Algeria)": 1,
"Anderson Ltd (Brazil)": 1,
"Anderson Ltd (United States)": 1,
"Anderson-Young (Uganda)": 1,
"Arnold-Knight (Mexico)": 1,
"Avery-Johnson (United States)": 1,
"Baker, Medina and George (Finland)": 1,
"Barber-Hayes (China)": 1,
"Barnes LLC (Pakistan)": 1,
"Barr-Melendez (United States)": 1,
"Barrera Inc (Ghana)": 1,
"Barry PLC (United States)": 1,
"Becker LLC (Viet Nam)": 1,
"Bender PLC (Russian Federation)": 1,
"Benitez and Sons (United States)": 1,
"Bennett, Best and Jacobson (India)": 1,
"Bolton, Sanchez and Rodgers (Turkey)": 1,
"Boyd, Berg and Sampson (Namibia)": 1,
"Boyd, Turner and Byrd (Pakistan)": 1,
"Brown PLC (India)": 1,
"Brown, Estrada and Riggs (Ukraine)": 1,
"Brown, Jackson and Simpson (Tuvalu)": 1,
"Brown, Torres and Bautista (Bangladesh)": 1,
"Bruce, Gutierrez and Thompson (China)": 1,
"Bryan-James (Italy)": 1,
"Bryan-Jones (Algeria)": 1,
"Bryant-Stark (Portugal)": 1,
"Buchanan Group (Korea, Republic of)": 1,
"Calderon-Montgomery (Italy)": 1,
"Cantu-Ferguson (Brazil)": 1,
"Carlson Inc (Brazil)": 1,
"Carr, Smith and Mayo (China)": 1,
"Carr, Smith and Webb (Mozambique)": 1,
"Carroll, Nguyen and Martin (Slovakia)": 1,
"Carter Group (Cuba)": 1,
"Carter, Webb and Bush (Tanzania, United Republic of)": 1,
"Cervantes, Wagner and Jackson (Argentina)": 1,
"Chavez-Price (Belgium)": 1,
"Church Inc (Ukraine)": 1,
"Clarke-Brown (Austria)": 1,
"Cochran-Delacruz (Colombia)": 1,
"Cohen, Bell and Rodriguez (India)": 1,
"Coleman LLC (Brazil)": 1,
"Collins and Sons (United States)": 1,
"Collins, Martin and Lane (Ukraine)": 1,
"Collins-Hensley (Germany)": 1,
"Cook Group (India)": 1,
"Cook LLC (Morocco)": 1,
"Cooper and Sons (Switzerland)": 1,
"Cooper, Walker and Perez (Canada)": 1,
"Cortez Group (United States)": 1,
"Curtis, Doyle and Singleton (Canada)": 1,
"Curtis, Perkins and Sims (United States)": 1,
"Daniels Group (Antigua and Barbuda)": 1,
"Davidson, Rosales and Stewart (Italy)": 1,
"Davis Ltd (Belarus)": 1,
"Davis-Wagner (Spain)": 1,
"Douglas Inc (United Kingdom)": 1,
"Doyle, King and Thompson (Colombia)": 1,
"Drake Ltd (Honduras)": 1,
"Duran, Mueller and Payne (China)": 1,
"Estes, Johnston and Richardson (Czechia)": 1,
"Evans, Park and James (China)": 1,
"Fernandez-Roberts (United States)": 1,
"Ferrell-Dixon (Cameroon)": 1,
"Figueroa, Ibarra and Jackson (Russian Federation)": 1,
"Fleming Inc (Spain)": 1,
"Fletcher, Pierce and Navarro (France)": 1,
"Flores PLC (United States)": 1,
"Ford, Martinez and Gutierrez (India)": 1,
"Fox-Delacruz (Spain)": 1,
"Fuentes Inc (United States)": 1,
"Garcia Ltd (Malaysia)": 1,
"Garcia-Roberts (Netherlands)": 1,
"Garrison, Williams and Johnson (Iraq)": 1,
"Gentry-Gross (Bolivia, Plurinational State of)": 1,
"Gibson-Jackson (North Macedonia)": 1,
"Gomez Inc (United Kingdom)": 1,
"Goodman-Chapman (United States)": 1,
"Grant-Nelson (Australia)": 1,
"Green and Sons (Algeria)": 1,
"Green-Crawford (Brazil)": 1,
"Gregory PLC (Mexico)": 1,
"Griffin, Smith and Smith (United States)": 1,
"Griffith-Stout (United Kingdom)": 1,
"Gross, Frey and Mcmahon (Philippines)": 1,
"Guerrero, Sutton and Lucas (United States)": 1,
"Hall-Hodges (Japan)": 1,
"Hardy, Bauer and Martinez (Cuba)": 1,
"Harper PLC (India)": 1,
"Harris, Graves and Gonzalez (Turkey)": 1,
"Harris, Wright and Morales (Japan)": 1,
"Harris-Cunningham (France)": 1,
"Harris-Waller (Venezuela, Bolivarian Republic of)": 1,
"Harrison PLC (Argentina)": 1,
"Hensley-Porter (Indonesia)": 1,
"Hernandez, Jenkins and Luna (United States)": 1,
"Hernandez, Mayer and Jones (Cambodia)": 1,
"Hill-Jones (France)": 1,
"Hines-Allen (South Africa)": 1,
"Hodges-Johnson (United States)": 1,
"Horton, Sims and Pacheco (United States)": 1,
"Howell-Meyer (Korea, Republic of)": 1,
"Huang, Guerrero and Hurst (Japan)": 1,
"Hubbard Ltd (China)": 1,
"Hubbard-Holmes (Japan)": 1,
"Huerta, Clark and Johnson (Spain)": 1,
"Hutchinson-Lane (India)": 1,
"Ibarra and Sons (United States)": 1,
"Jackson, Chan and Rivera (United Kingdom)": 1,
"James-Wright (France)": 1,
"Jimenez PLC (India)": 1,
"Johnson, Khan and Oconnell (Japan)": 1,
"Johnson-Carroll (China)": 1,
"Jones Group (Egypt)": 1,
"Jones PLC (Philippines)": 1,
"Jones-Martinez (Palestine, State of)": 1,
"Jordan, James and Bradley (France)": 1,
"Kerr LLC (Spain)": 1,
"Kidd, Mcdaniel and Russell (Finland)": 1,
"King-Johnson (Iran, Islamic Republic of)": 1,
"Knight PLC (India)": 1,
"Larsen-Martinez (Germany)": 1,
"Larson, Lambert and Gay (China)": 1,
"Lee and Sons (Brazil)": 1,
"Lee, Pearson and Gates (Japan)": 1,
"Li-Gonzalez (Philippines)": 1,
"Little, Dunlap and Nelson (Kiribati)": 1,
"Long-Sullivan (Netherlands)": 1,
"Lopez, Goodman and Miller (Brazil)": 1,
"Lucas and Sons (United States)": 1,
"Lynch LLC (Egypt)": 1,
"Lynch-Ramirez (Thailand)": 1,
"Maldonado Inc (Ukraine)": 1,
"Manning, Hodges and Mckenzie (Belgium)": 1,
"Marsh, Cunningham and Hill (France)": 1,
"Marshall PLC (Belgium)": 1,
"Martin and Sons (Spain)": 1,
"Martin and Sons (United States)": 1,
"Martin-Mcbride (China)": 1,
"Martinez LLC (United States)": 1,
"Martinez and Sons (Brazil)": 1,
"Martinez and Sons (Mexico)": 1,
"Maxwell Inc (India)": 1,
"May, Ruiz and Butler (Turkey)": 1,
"Mayo, Aguirre and Ryan (Brazil)": 1,
"Mccarthy-Galloway (Brazil)": 1,
"Mcdaniel, Dean and Delgado (India)": 1,
"Mclaughlin-Hawkins (Philippines)": 1,
"Mcpherson Ltd (Ukraine)": 1,
"Mendoza, Moore and Thomas (Mozambique)": 1,
"Meyer, Floyd and Jackson (Germany)": 1,
"Meyer, Marquez and Mckenzie (China)": 1,
"Miller, Green and Scott (Hungary)": 1,
"Moran, Martin and Freeman (United States)": 1,
"Moreno Group (United States)": 1,
"Morgan, Brown and Martin (Germany)": 1,
"Morgan-Leonard (Romania)": 1,
"Morris, Cain and Boone (Spain)": 1,
"Myers-Brown (Pakistan)": 1,
"Neal LLC (United Kingdom)": 1,
"Nelson, Cruz and Bush (Tunisia)": 1,
"Newton Inc (Germany)": 1,
"Nguyen-Cruz (South Africa)": 1,
"Nguyen-Peters (China)": 1,
"Nichols Inc (Peru)": 1,
"Nichols-Davis (Ukraine)": 1,
"Odom-Lawrence (India)": 1,
"Odonnell-Williams (Angola)": 1,
"Olson LLC (Brazil)": 1,
"Page, Hernandez and Ayala (United States)": 1,
"Parker-Lawrence (Pakistan)": 1,
"Peck, Tucker and Patterson (Colombia)": 1,
"Perkins, Garza and Cochran (Indonesia)": 1,
"Peterson Ltd (Germany)": 1,
"Peterson, Norton and Preston (Ghana)": 1,
"Peterson-Rose (United States)": 1,
"Petty, Hamilton and Solomon (Germany)": 1,
"Phillips, Love and Smith (Venezuela, Bolivarian Republic of)": 1,
"Pollard LLC (China)": 1,
"Poole, Coleman and Shea (Colombia)": 1,
"Powell-Nguyen (United Kingdom)": 1,
"Reese-Williams (Italy)": 1,
"Reyes, Taylor and Ramirez (United States)": 1,
"Rich, Powell and Ward (Brazil)": 1,
"Richardson Inc (Japan)": 1,
"Riley, Barrett and Mccullough (Pakistan)": 1,
"Rivera Group (Philippines)": 1,
"Rodriguez LLC (Netherlands)": 1,
"Rodriguez, Estrada and Kim (Kazakhstan)": 1,
"Rodriguez, Schmidt and Hodge (Russian Federation)": 1,
"Rodriguez-Mcdonald (India)": 1,
"Rodriguez-Warren (Russian Federation)": 1,
"Romero-Nguyen (Spain)": 1,
"Ross-Brooks (Japan)": 1,
"Rowland, Todd and Whitaker (Spain)": 1,
"Russell, Mcclain and Larson (United States)": 1,
"Salinas-Kelly (China)": 1,
"Sanchez-Mcdonald (India)": 1,
"Santana LLC (Somalia)": 1,
"Santiago-Gardner (Bangladesh)": 1,
"Schroeder and Sons (South Africa)": 1,
"Scott, Frazier and Cooper (Germany)": 1,
"Shaffer PLC (China)": 1,
"Simmons, Cox and Craig (Russian Federation)": 1,
"Singh Inc (Russian Federation)": 1,
"Smith LLC (Poland)": 1,
"Smith and Sons (Central African Republic)": 1,
"Smith-Cobb (United States)": 1,
"Smith-Williamson (Estonia)": 1,
"Snyder, Robinson and Brown (United Kingdom)": 1,
"Stevens LLC (Korea, Republic of)": 1,
"Stevens Ltd (Peru)": 1,
"Stevens PLC (Ukraine)": 1,
"Stewart PLC (India)": 1,
"Stewart-Woodard (India)": 1,
"Swanson-Kennedy (China)": 1,
"Taylor, Obrien and Delacruz (Poland)": 1,
"Thomas-Jenkins (Bangladesh)": 1,
"Thompson Ltd (China)": 1,
"Thompson Ltd (India)": 1,
"Thornton, Cook and Estrada (United States)": 1,
"Todd-Mcneil (Japan)": 1,
"Turner and Sons (Nigeria)": 1,
"Turner, Hall and Jimenez (South Africa)": 1,
"Vincent LLC (United States)": 1,
"Wagner Group (Italy)": 1,
"Wagner-Ramirez (Ireland)": 1,
"Washington-Villanueva (China)": 1,
"Watkins Group (Russian Federation)": 1,
"White and Sons (North Macedonia)": 1,
"White, Lewis and Evans (Poland)": 1,
"White, Wong and Trevino (Germany)": 1,
"White-Nash (Pakistan)": 1,
"Williams, Bailey and Martinez (Philippines)": 1,
"Williamson-Green (Brazil)": 1,
"Williamson-Young (India)": 1,
"Wilson, Kim and Dorsey (Brazil)": 1,
"Wilson-Callahan (France)": 1,
"Wright Inc (United States)": 1,
"Zamora, Adams and Koch (France)": 1,
"23933f2a-5407-45d9-8bbb-ec36287a1425": 1,
"445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"12566cfa-500d-4e07-8117-e0bf16d7fb8c": 1,
"0058fc5e-e9e8-46eb-ac6d-673e436a5d7a": 1,
"6268ab7c-e25c-44ff-8431-e631679623b5": 1,
"f26204e2-83cc-4526-a8f0-d4c86f295774": 1,
"267680ea-eafe-4d40-a3c6-4807c0d195b1": 1,
"816e4baa-8158-4e2a-8ff4-c9f969998389": 1,
"7608b763-1e52-4ad9-94b0-d574af19612c": 1,
"8d98799f-d657-4acf-9ca6-9b90420ff681": 1,
"46bae099-f191-415a-aefa-3cab4b0e8c2e": 1,
"3f0439ac-320f-4d70-b9a4-2fef9281ff49": 1,
"a1a85cfc-109a-47fe-91a2-632334d35f44": 1,
"06d152e4-f062-46da-b6be-750b192a5a4b": 1,
"63ab664f-80d7-46e1-97cb-39a4f713f937": 1,
"79274f67-b225-49fa-ad8c-fb20560cb1d5": 1,
"8518fe84-b0e0-40c5-9a86-351b91eb3828": 1,
"27f8059f-fe10-4a39-aa68-d66210c9cc59": 1,
"a2a17a94-b064-4682-86ba-1c933616568f": 1,
"0ca3c664-7fb2-446a-b5c6-73fe140c4f02": 1,
"f76eb805-4d84-4b4b-9aa3-95c287be41d0": 1,
"847abdb2-44de-41ba-a4ec-235dc4f4a617": 1,
"4f22034e-f299-442a-a1e3-3d9dc974ed8f": 1,
"d396349e-7772-49c3-bcdf-0afbeae658fa": 1,
"63168792-6134-48e8-a709-8e3cc0d5811c": 1,
"6259c66a-0eec-4f7f-b4a4-a0c2be80461e": 1,
"33da751a-1358-4530-b0e5-e3b9a509e952": 1,
"7f0c3d05-f16c-44c0-b9f4-5ff9d2892270": 1,
"b9dfb874-fb5d-4d34-8a13-e4f1395f3c6e": 1,
"169db3fc-b253-465a-ba91-33f3617a9313": 1,
"1b032f32-5734-44da-8758-554ad059b03e": 1,
"66558286-cf29-4320-80a9-de2c12aa2f3c": 1,
"6746c17d-5e49-47bc-82a1-90ac0c7aa01c": 1,
"feeda1ce-d6af-42b2-b6ff-7516ba39ad6c": 1,
"2731aa23-7ea4-4661-b79b-6f0d4d17d5b3": 1,
"fcdf3268-b0f0-4e2b-8fbd-6008cb4a6d0e": 1,
"f3de43d3-4bd7-4641-be54-2db60238aa14": 1,
"248fa1c7-dd1e-41fe-931a-9f00777ee0fe": 1,
"2805bfc6-fe9f-49fc-90ba-d4c779a38af2": 1,
"7f696243-08d9-458c-8041-e114a223b897": 1,
"c7727eb2-7951-47e3-9021-df78e52c2d35": 1,
"95881d4c-8788-46b1-948f-8b359464556d": 1,
"66cdfd7b-f68e-40d1-b9dc-0dd54c50b6a1": 1,
"fbfe40db-81e4-4b35-93d5-a996307a266e": 1,
"f80817bf-7010-48c7-a3be-b015b09309d0": 1,
"12417d4e-b119-46a1-8c47-a560c2d103dd": 1,
"6463b573-32bd-4bc5-b2dc-c8e9a96965ba": 1,
"25e44a18-cb4f-48aa-bb6a-c05189268df6": 1,
"afa65b2a-f046-47f4-b352-97b579c77c21": 1,
"a0f25cc7-1407-452e-98e2-8fa5083d4041": 1,
"13dabe70-36c5-4a87-bc13-15664eda25a9": 1,
"a6f1f4bd-bdd5-4a35-b683-2aee89aa8ed3": 1,
"d0f56bf6-b7f2-4032-be8f-95269c626667": 1,
"2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"36060220-55ab-4726-9b30-30de76c56344": 1,
"b2c1bb54-0977-4eb6-9635-f44843578083": 1,
"05b5a686-c821-41c4-bc2c-b66d35bac1d8": 1,
"dff64a17-e085-4289-9196-a1e7ae8b0c22": 1,
"0817f6f5-8011-4c46-aeab-ba89def6df14": 1,
"caeb974d-5803-4419-b316-2245f15f73d4": 1,
"b8b7794e-329e-4bdc-9fcb-5ddfe9b71248": 1,
"42a20063-bd30-49d3-8506-ceac4ceb2d9e": 1,
"cccd3023-1267-4fe6-9fbe-2441662cbb46": 1,
"534df54e-82c6-430e-ad50-d80a3a745e11": 1,
"034022f5-5327-45c2-aaff-524b1be2fbd5": 1,
"b9ed885f-282e-4836-bede-f1dc9f9f5c41": 1,
"29c1b979-da61-4df4-ae3d-a2e303ea4444": 1,
"183cf105-b1a6-42ee-b8a9-002709f1b582": 1,
"29cf8eca-50be-460e-9816-5ae505fc9491": 1,
"e68696c9-d9e7-4d2b-b467-d923c91ce47b": 1,
"2451f479-fe10-4322-a8c9-3f4f21f39779": 1,
"9484418b-c487-4050-9094-050f3bab0817": 1,
"9e95d78d-7f95-4752-9e1f-d522e67e63d7": 1,
"22b67f9e-45e9-449e-8269-a31bd550324a": 1,
"b5028bba-a927-45d7-9032-ee90825311c5": 1,
"cfe8ae59-a7a8-4772-8bd5-bbd6991af811": 1,
"238c3f06-3708-4b59-8617-f94611d6f3a3": 1,
"e157b0e5-1085-4999-83a0-02a46d7a8994": 1,
"30dc6bac-5604-4e78-a48d-eed66f4d4dc8": 1,
"cd395f35-74dc-4858-8bb9-5fdf0add00ee": 1,
"266084c2-dcbc-406b-8371-9adcbc81521a": 1,
"297508c6-6074-4625-8dec-7bab342010a1": 1,
"4b796fba-c152-4137-b01d-fce80aef6e3c": 1,
"784f7f15-1a8c-43f5-923c-de0beb82f32f": 1,
"11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"d2a60059-73f4-4fae-9a4a-0ab93f5203eb": 1,
"3a9702b1-ea92-4fd3-871c-9108ef23921b": 1,
"9fdd4db4-fed8-4e24-ba3c-8bbe6c499ec7": 1,
"88964aa2-4b9a-4427-8232-6c2ea65a851f": 1,
"7c4b3772-ee27-4915-8166-359d068db153": 1,
"671512dd-f11c-41c7-845d-1a00ae9f40c4": 1,
"07335cfb-9bbc-4be5-b546-bdd8af104e7e": 1,
"dd4262b0-805f-49f8-94b0-12dcadea9e73": 1,
"4f66d217-8106-4b87-922b-fbe6e8d6d699": 1,
"2617dc37-a7c6-4c6c-b89d-4e4f367f3d78": 1,
"f9bfd642-7152-407c-8158-d53fbc55f45b": 1,
"fbc53ab7-1c1e-41c8-afe2-44b405858cda": 1,
"1ee8f22a-1460-4875-b1a8-89d7cb2607d6": 1,
"9093f9c5-0f56-40d7-b129-c13135c46a14": 1,
"a04a193e-3025-4ae3-aec0-4a464ccd95a9": 1,
"cb43b726-1b2f-44dd-b960-18b361c7288e": 1,
"d0f6eeee-24cc-4a72-9331-d0ebbb83643b": 1,
"78ecdd96-9fd7-46ca-9174-f4170ce51eff": 1,
"092bb1b2-b39f-4521-9c21-c853db9d9a09": 1,
"49231eda-bbab-475b-aa59-47e6c8c81166": 1,
"9b333a39-4f8b-4f38-8bc8-3aea5aa24cd8": 1,
"532fc460-676f-4727-b5b2-6d3771db9ba1": 1,
"8486f6f9-18fe-440e-b3ed-9be6cc7dbaeb": 1,
"d66c8d06-9bac-4663-94a5-ef971423f2ce": 1,
"0c327a40-c6d8-44da-ba2d-e84f924c5208": 1,
"7ce25e4c-5894-4e77-ada2-d2bb434fdae9": 1,
"8a148e6d-972c-4135-930a-c6d9ea6957fd": 1,
"a167cc0e-4bd5-4831-b9e7-8fef7705d61b": 1,
"dafc3247-7fb3-406b-976c-9e656e9a6b45": 1,
"9a27c6be-84c6-4fe8-a671-d9d6a5ec7f6a": 1,
"22b9733f-4b49-4e82-82b9-d4f87d2b5916": 1,
"1e0eae5f-25ae-4ef9-807e-4ce162fa2934": 1,
"9da10220-7964-4a7a-a1ea-571a63cc483d": 1,
"6de163f7-8aa2-434a-a210-78fea02e490c": 1,
"1b447fbd-a0fe-4385-8141-ab5aa43fbedb": 1,
"2a78338a-084a-4595-88ec-98f141e653f7": 1,
"40a29030-eccd-43f8-974b-ef788e2d3f00": 1,
"2b70d47e-fa6a-4329-8112-22287096bc44": 1,
"57f3326a-e53b-4cb6-9b32-658df4cc11a4": 1,
"3f49ac31-7bb0-4a52-8798-548b5cdb9451": 1,
"6b6e148d-449f-4e88-808d-cdf9cdc9bba3": 1,
"6ca36744-76bd-47bd-b4fd-6319ed8c87c7": 1,
"0d183bba-b1df-4c41-be10-c0896378b406": 1,
"88745cef-2133-4d0c-a1de-00fa0740eb26": 1,
"06034b22-8e1b-435f-902e-88739f77d86a": 1,
"47c86e10-e667-4725-bbe3-ac372da0b472": 1,
"e27932a5-487a-4eca-9f9a-d82d5e5c467b": 1,
"ce5caf26-49fb-4813-812b-4675c58b4164": 1,
"acc9fdfb-2811-4b87-8231-7168c70e7497": 1,
"91be13e0-b467-48d9-8ff7-cbed652b49cb": 1,
"a10b61e6-8288-499d-bd8c-d89b9625fb1f": 1,
"f0feb132-7033-41f2-99e2-fdb8834302ec": 1,
"ee3143c4-d3eb-4457-b884-651cac99ee9d": 1,
"aed0f6a6-37b1-4359-a136-cc011522ca85": 1,
"64902ce8-7950-458e-bcee-5df3cabc7972": 1,
"701e751f-51dc-482f-86d5-544b4af40076": 1,
"d7f501f6-e595-473c-90fc-89933505411e": 1,
"84101fbf-6743-43d4-ba46-a35b6a4456ee": 1,
"6d5eddf9-7c6f-4a88-8aba-2ef65267d78b": 1,
"17c52e07-d5ce-4cfd-87cf-5ac7e3554c0c": 1,
"a35a7e67-e729-455a-9dbc-1bf661456179": 1,
"67db6571-5c2f-4c52-9d0b-1584a74bb116": 1,
"518d3d05-716c-483f-9ed0-03c4e81e683c": 1,
"0301f65d-2290-456b-a3f7-b2096a632198": 1,
"f8337d39-2d97-423a-9f94-35a45ee9ade6": 1,
"f494b5db-7627-4a97-809e-8e8f9d92fb51": 1,
"6b879d25-7222-419e-8f1a-d9c9ceda2600": 1,
"93760e27-ee36-44a9-960f-cb1ccdd336c7": 1,
"cd24daf1-7f42-48a1-a2f2-74127303eaee": 1,
"2fd79a0c-24b5-4361-8b5b-df720d2c7eac": 1,
"2f7172a0-e935-4dfc-98a6-b48dcec0ad18": 1,
"ae3e7157-5d50-464c-9b47-e14e1b30ce4c": 1,
"fb607751-7ff0-4cea-8e23-d22b4b1c67ad": 1,
"cba23738-b63d-4845-a168-1fd1fc6082aa": 1,
"47528cbf-c41b-4897-b917-6f4c1394fe1f": 1,
"cd18146d-c073-4d58-97b4-ac079baa9b65": 1,
"199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"9bd9e5d6-1726-4bd6-8765-be37a59f5d93": 1,
"35f7b6ea-9412-41f4-9652-8e419db45ce8": 1,
"d42974b3-923e-4f26-9bfa-1176e0073791": 1,
"cb74384a-d91a-4ce8-9266-44a578c2b505": 1,
"83983274-a805-4fcd-a909-1c2e14651637": 1,
"89dbd72a-3118-4fdf-bdf4-671c351a4b66": 1,
"82869f9c-fa06-45cb-922a-00675cde9676": 1,
"114d6a02-02d8-4038-97a3-fd39a9701f79": 1,
"d615c5f3-9db3-4bea-bbf3-0d42edf45c2d": 1,
"f7c5fad9-9f0c-4206-a338-e162bfe54de1": 1,
"8f607810-ca93-4274-9c27-d0a8dcba7c4a": 1,
"29fa5aeb-0830-4490-abed-20aaed11e786": 1,
"cc8fb083-225e-4d29-960d-5d74b02adeda": 1,
"b508d6ec-f430-4496-9c08-bd54f1541023": 1,
"93e3958e-3e49-4cb3-8ab2-2c2bae697be5": 1,
"e9e1b979-df68-4c17-99a4-64dfee7f1926": 1,
"1f275c2a-8e37-4032-a54e-86b99ec56351": 1,
"db1a07bc-c946-4ddd-8f47-b836c2f35281": 1,
"b7f007d8-137c-4d3f-9ceb-03326f71a6c9": 1,
"bd9aec71-4218-45ce-b6c6-d076ad07f8cd": 1,
"3a54413c-eb58-4ce0-a538-383fd9c79ba9": 1,
"d7ca1d2e-6b21-4c0c-821a-c4e8d5a3c65c": 1,
"45d529da-5989-484a-a60d-acba0442a929": 1,
"f19beb89-6c1f-45e9-8864-8a832bf17a55": 1,
"f78ea3cf-fe86-4b17-ba41-96dd934e043e": 1,
"3dc28ff8-fb6c-46fc-9fa6-5b12826cedc3": 1,
"5f36c064-46dd-4351-b0e8-9cb2c76bfbab": 1,
"de70a51b-3263-411b-9820-d7c21676e4d6": 1,
"3ad032a1-2e9f-4629-93c7-0ee0b5bb0e25": 1,
"ebbcad78-26fa-4d33-95ca-84decc4209a4": 1,
"ea372457-5016-4c1d-a8fc-9d84d6a1138d": 1,
"65131e0d-addc-41f9-a33f-e9f3b7f00566": 1,
"a8d712db-e0d5-45ab-a8cc-c752ad53f8e6": 1,
"a28a6f2f-a549-4a38-98ac-6eaeff8472ce": 1,
"79614820-e391-46f2-8ab9-c5022ad154d8": 1,
"ac3591e8-16d9-4c35-a73e-7ee8466155c6": 1,
"92524340-7cee-4873-8d5a-1b3e607d0da7": 1,
"e39aa402-6c12-4c0e-a638-c572784d0e78": 1,
"f118463c-1952-4db0-b089-99dbd89ff9d9": 1,
"e9d8bb44-d19d-4453-8db2-d6d656f411be": 1,
"3288e7a5-6b1b-482e-8c95-3265f948ae03": 1,
"42f054a5-0aba-4b02-b68a-851130c639fc": 1,
"2318f317-967e-4282-aceb-c17a6349f86e": 1,
"f2db56ae-0856-4a72-a5a1-497f97e728e5": 1,
"a6367485-a91c-41dc-9e18-8939ef990b5b": 1,
"7273d4f8-9c3a-4279-a18c-bb0f425bc8eb": 1,
"bdd38a8e-1976-4f90-ad0b-fb5e7932fd03": 1,
"a6815a96-329d-414e-89fa-27619179f857": 1,
"fab306a0-9ab2-4834-949a-58804bddc9a4": 1,
"e18d93fc-f1db-4ac7-b138-e158c6fb2e69": 1,
"d5b857ce-34b9-4bad-9018-216dbe06258c": 1,
"8943ee5e-5f73-4765-85cd-0c2c934f8877": 1,
"bf300186-9235-481d-be21-15c8e216dcf1": 1,
"d541c0b3-1e4b-4521-9f57-d5be820d4cbc": 1,
"3c198782-cb13-4253-aefc-f48aa8ded00a": 1,
"fd5556a6-46fc-4d68-846b-e543ce6f4ec9": 1,
"373cc68d-3c51-43d9-878a-36aa0aeb86c6": 1,
"db55e5ad-918e-42a0-97b4-1f496f9574dd": 1,
"79126b93-df5a-4170-b80e-546a837605f3": 1,
"9c9d9974-bea3-4bf9-882e-c16a80b17e84": 1,
"15bdf688-23a7-4f52-be5c-fe82bba7add7": 1,
"fdd83431-425f-4291-b8e4-f08805b6b89d": 1,
"a29b2c3f-4db3-4f4d-a947-5f512d615a1d": 1,
"d0c9f303-04ac-44b3-9cbc-afed50b7a260": 1,
"aaaa3f68-318a-4d8d-b080-79490e9e9dfa": 1,
"f7a4c865-f6d4-4896-bc48-e5ec6b2bf283": 1,
"ba01e204-e74e-4f87-bc55-1a43c099f199": 1,
"854314d4-9505-4765-b22a-a2ff53549b0b": 1,
"ab8fb795-35cd-42c4-827d-6fd907d6b81d": 1,
"9c71665d-ca2e-44e3-b9ba-f1e47dec6dfe": 1,
"888698ef-ad70-4022-9624-4dc111f56c01": 1,
"625a4b1a-07b2-4ed1-a197-cc5fd96d110e": 1,
"b66c44e8-057e-4267-8a38-29324107705f": 1,
"23be71fa-4280-4114-9750-025c224be098": 1,
"7478aeec-1a1e-4d96-95ff-05d5b3a5522b": 1,
"4d849ba4-b932-4ffc-8b52-61a704dddf0b": 1,
"816202d7-9e53-402c-94a2-fb21b0e37c0e": 1,
"da35429e-b1b6-4780-9fcc-f1b17b40d4e3": 1,
"7d33e910-5889-4f75-bd2b-193ec2434d0f": 1,
"dc1364ba-300b-4fcb-949a-4cd90afee69b": 1,
"c39c750f-2398-4f5a-a389-2c200e84c45b": 1,
"658f838d-0e84-4f36-978c-95602545977c": 1,
"7c930e8b-b9f3-450a-856b-5e03c6b3965e": 1,
"f1067c74-aa84-4a06-9fbd-16f914be2e65": 1,
"San Leandro": 1,
"Kriens": 1,
"Morogoro": 1,
"Mondlo": 1,
"Perd\u00f5es": 1,
"Sa\u00efda": 1,
"Taquara": 1,
"Payson": 1,
"Bundibugyo": 1,
"Paracho de Verduzco": 1,
"Chicago Heights": 1,
"Kuopio": 1,
"Songyang": 1,
"Sambrial": 1,
"South El Monte": 1,
"Ho": 1,
"Erie": 1,
"S\u01a1n T\u00e2y": 1,
"Dubna": 1,
"South Euclid": 1,
"Ch\u0101kia": 1,
"D\u00fczce": 1,
"Walvis Bay": 1,
"Kamoke": 1,
"Ranchi": 1,
"Chernivtsi": 1,
"Funafuti": 1,
"Kishorganj": 1,
"Shiyan": 1,
"Palmi": 1,
"Bir el Djir": 1,
"Linda-a-Velha": 1,
"Jeongeup": 1,
"Gallarate": 1,
"Tom\u00e9 A\u00e7u": 1,
"Cangu\u00e7u": 1,
"Nanmen": 1,
"Macia": 1,
"Doln\u00fd Kub\u00edn": 1,
"Uni\u00f3n de Reyes": 1,
"Somanda": 1,
"Boedo": 1,
"Edegem": 1,
"Molodohvardiisk": 1,
"Stockerau": 1,
"Piedecuesta": 1,
"Dary\u0101pur": 1,
"Brumado": 1,
"Randolph": 1,
"Sievierodonetsk": 1,
"Marienberg": 1,
"Seondha": 1,
"Ahfir": 1,
"Carouge": 1,
"Surrey": 1,
"Hyattsville": 1,
"West Hill": 1,
"Norristown": 1,
"Saint John\u2019s": 1,
"Piombino": 1,
"Pinsk": 1,
"Bormujos": 1,
"Bellshill": 1,
"Dosquebradas": 1,
"El Para\u00edso": 1,
"Yushan": 1,
"Karvin\u00e1": 1,
"Kaiyuan": 1,
"Harlingen": 1,
"Akonolinga": 1,
"Smolensk": 1,
"Sant Pere de Ribes": 1,
"Saint-Michel-sur-Orge": 1,
"Long Beach": 1,
"Bhudgaon": 1,
"Chamber\u00ed": 1,
"North Bellmore": 1,
"Ampang": 1,
"Oisterwijk": 1,
"Kifr\u012b": 1,
"Sucre": 1,
"Ki\u010devo": 1,
"Huddersfield": 1,
"Johnston": 1,
"Malvern East": 1,
"Constantine": 1,
"Mairinque": 1,
"Mixquiahuala de Juarez": 1,
"Longview": 1,
"East Grinstead": 1,
"Malaybalay": 1,
"Eustis": 1,
"Togitsu": 1,
"Matanzas": 1,
"Tirupparangunram": 1,
"Siirt": 1,
"Nikk\u014d": 1,
"Toulouse": 1,
"Ciudad Bolivia": 1,
"Mercedes": 1,
"Probolinggo": 1,
"Matthews": 1,
"Krati\u00e9": 1,
"Choisy-le-Roi": 1,
"Bloemfontein": 1,
"Pasco": 1,
"East Hampton": 1,
"Seosan": 1,
"Honch\u014d": 1,
"Liufeng": 1,
"Kawanishi": 1,
"El Masnou": 1,
"Khardah": 1,
"Somerset": 1,
"Broxburn": 1,
"Villepinte": 1,
"Indore": 1,
"Namioka": 1,
"Suozhen": 1,
"Mallaw\u012b": 1,
"Aliaga": 1,
"D\u016br\u0101": 1,
"Saint-L\u00f4": 1,
"Monz\u00f3n": 1,
"Lahti": 1,
"Ajab Sh\u012br": 1,
"Deoli": 1,
"Ebersbach an der Fils": 1,
"Heishan": 1,
"Bandeirantes": 1,
"Hann\u014d": 1,
"Bais": 1,
"Tarawa": 1,
"Ridderkerk": 1,
"Coxim": 1,
"Mount Vernon": 1,
"Asy\u016b\u0163": 1,
"Nakhon Si Thammarat": 1,
"Yalta": 1,
"Marche-en-Famenne": 1,
"Allauch": 1,
"Uccle": 1,
"Bara\u00f1\u00e1in": 1,
"Wyoming": 1,
"Xinzhou": 1,
"West Whittier-Los Nietos": 1,
"Jandaia do Sul": 1,
"Gustavo Adolfo Madero": 1,
"Naraini": 1,
"Patnos": 1,
"Serrana": 1,
"Boa Vista": 1,
"M\u0101nvi": 1,
"Manolo Fortich": 1,
"Starokostyantyniv": 1,
"Ant\u00f3nio Enes": 1,
"Hemmingen": 1,
"Huimin": 1,
"Budapest XXIII. ker\u00fclet": 1,
"Murrieta": 1,
"Back Mountain": 1,
"Neuwied": 1,
"C\u00e2mpulung Moldovenesc": 1,
"Elche": 1,
"Dera Ghazi Khan": 1,
"Tooting": 1,
"Ben Arous": 1,
"Steilshoop": 1,
"Pinetown": 1,
"Huangshan": 1,
"Ferre\u00f1afe": 1,
"Ivano-Frankivsk": 1,
"Suri\u0101pet": 1,
"U\u00edge": 1,
"Cataguases": 1,
"Moorpark": 1,
"Bhit Shah": 1,
"Manizales": 1,
"Pangkalan Brandan": 1,
"Schwalbach": 1,
"Berekum": 1,
"Battle Creek": 1,
"B\u00fchl": 1,
"Punta de Mata": 1,
"Xinyingpan": 1,
"Bucaramanga": 1,
"Keynsham": 1,
"Avezzano": 1,
"Holt": 1,
"Arma\u00e7\u00e3o de B\u00fazios": 1,
"Minamirinkan": 1,
"Ghauspur": 1,
"Mabalacat City": 1,
"Breda": 1,
"Embi": 1,
"Tutayev": 1,
"Chharra": 1,
"Nikol\u2019skoye": 1,
"Orihuela": 1,
"Okunoya": 1,
"el Camp de l'Arpa del Clot": 1,
"Hartford": 1,
"Yicheng": 1,
"L\u0101dwa": 1,
"Ceerigaabo": 1,
"R\u0101ipur": 1,
"Wolmaransstad": 1,
"Sankt Ingbert": 1,
"Malingshan": 1,
"Kasimov": 1,
"Lesosibirsk": 1,
"Bielsko-Biala": 1,
"Bambari": 1,
"Sikeston": 1,
"Narva": 1,
"Warrington": 1,
"Gyeongsan-si": 1,
"Chiclayo": 1,
"Pershotravensk": 1,
"Rishra": 1,
"\u0100doni": 1,
"Zhabei": 1,
"Olecko": 1,
"Mukt\u0101g\u0101cha": 1,
"Yufengshan": 1,
"Krishnar\u0101jpet": 1,
"Jamestown": 1,
"Fukagawa": 1,
"Umuahia": 1,
"Empangeni": 1,
"Cypress": 1,
"Greystones": 1,
"Fuji": 1,
"Krasnoturinsk": 1,
"Strumica": 1,
"\u015arem": 1,
"H\u00fcckelhoven": 1,
"Larkana": 1,
"Carigara": 1,
"Nova Granada": 1,
"B\u0101nka": 1,
"Barra do Pira\u00ed": 1,
"Le Camas": 1,
"Laramie": 1,
"Wattrelos": 1,
"United States": 1,
"Switzerland": 1,
"Tanzania, United Republic of": 1,
"South Africa": 1,
"Brazil": 1,
"Algeria": 1,
"Uganda": 1,
"Mexico": 1,
"Finland": 1,
"China": 1,
"Pakistan": 1,
"Ghana": 1,
"Viet Nam": 1,
"Russian Federation": 1,
"India": 1,
"Turkey": 1,
"Namibia": 1,
"Ukraine": 1,
"Tuvalu": 1,
"Bangladesh": 1,
"Italy": 1,
"Portugal": 1,
"Korea, Republic of": 1,
"Mozambique": 1,
"Slovakia": 1,
"Cuba": 1,
"Argentina": 1,
"Belgium": 1,
"Austria": 1,
"Colombia": 1,
"Germany": 1,
"Morocco": 1,
"Canada": 1,
"Antigua and Barbuda": 1,
"Belarus": 1,
"Spain": 1,
"United Kingdom": 1,
"Honduras": 1,
"Czechia": 1,
"Cameroon": 1,
"France": 1,
"Malaysia": 1,
"Netherlands": 1,
"Iraq": 1,
"Bolivia, Plurinational State of": 1,
"North Macedonia": 1,
"Australia": 1,
"Philippines": 1,
"Japan": 1,
"Venezuela, Bolivarian Republic of": 1,
"Indonesia": 1,
"Cambodia": 1,
"Egypt": 1,
"Palestine, State of": 1,
"Iran, Islamic Republic of": 1,
"Kiribati": 1,
"Thailand": 1,
"Hungary": 1,
"Romania": 1,
"Tunisia": 1,
"Peru": 1,
"Angola": 1,
"Kazakhstan": 1,
"Somalia": 1,
"Poland": 1,
"Central African Republic": 1,
"Estonia": 1,
"Nigeria": 1,
"Ireland": 1,
"US": 1,
"CH": 1,
"TZ": 1,
"ZA": 1,
"BR": 1,
"DZ": 1,
"UG": 1,
"MX": 1,
"FI": 1,
"CN": 1,
"PK": 1,
"GH": 1,
"VN": 1,
"RU": 1,
"IN": 1,
"TR": 1,
"NA": 1,
"UA": 1,
"TV": 1,
"BD": 1,
"IT": 1,
"PT": 1,
"KR": 1,
"MZ": 1,
"SK": 1,
"CU": 1,
"AR": 1,
"BE": 1,
"AT": 1,
"CO": 1,
"DE": 1,
"MA": 1,
"CA": 1,
"AG": 1,
"BY": 1,
"ES": 1,
"GB": 1,
"HN": 1,
"CZ": 1,
"CM": 1,
"FR": 1,
"MY": 1,
"NL": 1,
"IQ": 1,
"BO": 1,
"MK": 1,
"AU": 1,
"PH": 1,
"JP": 1,
"VE": 1,
"ID": 1,
"KH": 1,
"EG": 1,
"PS": 1,
"IR": 1,
"KI": 1,
"TH": 1,
"HU": 1,
"RO": 1,
"TN": 1,
"PE": 1,
"AO": 1,
"KZ": 1,
"SO": 1,
"PL": 1,
"CF": 1,
"EE": 1,
"NG": 1,
"IE": 1,
"http://dbpedia.org/resource/United_States": 1,
"http://dbpedia.org/resource/Switzerland": 1,
"http://dbpedia.org/resource/Tanzania": 1,
"http://dbpedia.org/resource/South_Africa": 1,
"http://dbpedia.org/resource/Brazil": 1,
"http://dbpedia.org/resource/Algeria": 1,
"http://dbpedia.org/resource/Uganda": 1,
"http://dbpedia.org/resource/Mexico": 1,
"http://dbpedia.org/resource/Finland": 1,
"http://dbpedia.org/resource/China": 1,
"http://dbpedia.org/resource/Pakistan": 1,
"http://dbpedia.org/resource/Ghana": 1,
"http://dbpedia.org/resource/Vietnam": 1,
"http://dbpedia.org/resource/Russia": 1,
"http://dbpedia.org/resource/India": 1,
"http://dbpedia.org/resource/Turkey": 1,
"http://dbpedia.org/resource/Namibia": 1,
"http://dbpedia.org/resource/Tuvalu": 1,
"http://dbpedia.org/resource/Bangladesh": 1,
"http://dbpedia.org/resource/Italy": 1,
"http://dbpedia.org/resource/Portugal": 1,
"http://dbpedia.org/resource/South_Korea": 1,
"http://dbpedia.org/resource/Mozambique": 1,
"http://dbpedia.org/resource/Slovakia": 1,
"http://dbpedia.org/resource/Cuba": 1,
"http://dbpedia.org/resource/Argentina": 1,
"http://dbpedia.org/resource/Austria": 1,
"http://dbpedia.org/resource/Colombia": 1,
"http://dbpedia.org/resource/Germany": 1,
"http://dbpedia.org/resource/Morocco": 1,
"http://dbpedia.org/resource/Canada": 1,
"http://dbpedia.org/resource/Antigua_and_Barbuda": 1,
"http://dbpedia.org/resource/Belarus": 1,
"http://dbpedia.org/resource/United_Kingdom": 1,
"http://dbpedia.org/resource/Honduras": 1,
"http://dbpedia.org/resource/Czech_Republic": 1,
"http://dbpedia.org/resource/Cameroon": 1,
"http://dbpedia.org/resource/France": 1,
"http://dbpedia.org/resource/Kingdom_of_the_Netherlands": 1,
"http://dbpedia.org/resource/Iraq": 1,
"http://dbpedia.org/resource/Bolivia": 1,
"http://dbpedia.org/resource/Australia": 1,
"http://dbpedia.org/resource/Philippines": 1,
"http://dbpedia.org/resource/Japan": 1,
"http://dbpedia.org/resource/Venezuela": 1,
"http://dbpedia.org/resource/Indonesia": 1,
"http://dbpedia.org/resource/Cambodia": 1,
"http://dbpedia.org/resource/Egypt": 1,
"http://dbpedia.org/resource/Iran": 1,
"http://dbpedia.org/resource/Kiribati": 1,
"http://dbpedia.org/resource/Thailand": 1,
"http://dbpedia.org/resource/Hungary": 1,
"http://dbpedia.org/resource/Romania": 1,
"http://dbpedia.org/resource/Tunisia": 1,
"http://dbpedia.org/resource/Peru": 1,
"http://dbpedia.org/resource/Angola": 1,
"http://dbpedia.org/resource/Kazakhstan": 1,
"http://dbpedia.org/resource/Somalia": 1,
"http://dbpedia.org/resource/Poland": 1,
"http://dbpedia.org/resource/Central_African_Republic": 1,
"http://dbpedia.org/resource/Estonia": 1,
"http://dbpedia.org/resource/Nigeria": 1,
"http://dbpedia.org/resource/Republic_of_Ireland": 1
}
{
"set_P": 0.3234797297297297,
"set_recall": 0.6050552922590837,
"set_F": 0.42157402311502473
}
ck26:35-en
For each product, could you list
the other products it's compatible
with and show the price differences
between them?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?prod ?compatible (?prodAmount - ?compatibleAmount AS ?priceDiff)
WHERE {
?prodClass rdfs:subClassOf* pv:Product .
?prod a ?prodClass ;
pv:compatibleProduct ?compatible .
?prod pv:price/pv:amount ?prodAmount ;
pv:price/pv:currency "EUR" .
?compatible pv:price/pv:amount ?compatibleAmount ;
pv:price/pv:currency "EUR" .
}
{
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"2.57": 1,
"0.08": 1,
"-4.43": 1,
"-4.56": 1,
"-0.16": 1,
"-3.88": 1,
"-3.59": 1,
"-1.1": 1,
"-1.66": 1,
"-4.69": 1,
"-1.48": 1,
"-1.0": 1,
"-1.93": 1,
"0.79": 1,
"-3.75": 1,
"3.22": 1,
"-1.57": 1,
"-1.92": 1,
"0.1": 1,
"-0.08": 1,
"1.59": 1,
"3.15": 1,
"1.78": 1,
"3.5": 1,
"-2.12": 1,
"2.13": 1,
"1.6": 1,
"-3.83": 1,
"1.14": 1,
"0.07": 1,
"-0.41": 1,
"-0.37": 1,
"2.02": 1,
"-1.17": 1,
"-2.38": 1,
"-2.79": 1,
"0.28": 1,
"-1.41": 1,
"0.47": 1,
"0.03": 1,
"-0.34": 1,
"1.28": 1,
"-0.6": 1,
"-0.73": 1,
"3.88": 1,
"2.21": 1,
"0.25": 1,
"-1.38": 1,
"1.95": 1,
"-3.23": 1,
"0.19": 1,
"3.12": 1,
"0.59": 1,
"-0.11": 1,
"5.19": 1,
"1.69": 1,
"0.18": 1,
"0.94": 1,
"-0.52": 1,
"0.72": 1,
"3.68": 1,
"0.86": 1,
"3.19": 1,
"-1.06": 1,
"0.48": 1,
"3.42": 1,
"4.73": 1,
"3.1": 1,
"1.51": 1,
"5.24": 1,
"1.36": 1,
"4.6": 1,
"1.32": 1,
"-4.8": 1,
"0.57": 1,
"-0.46": 1,
"-2.33": 1,
"-0.18": 1,
"-0.12": 1,
"-5.07": 1,
"-3.25": 1,
"-1.03": 1,
"-0.9": 1,
"1.57": 1,
"2.2": 1,
"0.4": 1,
"0.34": 1,
"5.07": 1,
"1.82": 1,
"-3.44": 1,
"-2.21": 1,
"-0.28": 1,
"-1.33": 1,
"-2.66": 1,
"2.0": 1,
"4.62": 1,
"1.02": 1,
"-2.78": 1,
"3.29": 1,
"-1.36": 1,
"4.15": 1,
"3.24": 1,
"-4.19": 1,
"-3.31": 1,
"0.85": 1,
"3.79": 1,
"-4.29": 1,
"-0.56": 1,
"1.63": 1,
"-1.65": 1,
"2.92": 1,
"1.24": 1,
"4.07": 1,
"-0.98": 1,
"1.94": 1,
"5.3": 1,
"-3.37": 1,
"1.03": 1,
"-0.92": 1,
"-1.87": 1,
"-0.26": 1,
"0.46": 1,
"0.68": 1,
"-2.45": 1,
"1.15": 1,
"-2.8": 1,
"0.52": 1,
"2.09": 1,
"-0.91": 1,
"-2.89": 1,
"-2.02": 1,
"-2.42": 1,
"0.35": 1,
"1.49": 1,
"-0.47": 1,
"4.99": 1,
"-1.95": 1,
"2.24": 1,
"-2.81": 1,
"-0.29": 1,
"1.33": 1,
"-0.25": 1,
"-2.77": 1,
"-1.31": 1,
"-3.57": 1,
"-1.28": 1,
"-2.9": 1,
"-4.07": 1,
"-0.71": 1,
"-3.01": 1,
"0.04": 1,
"0.8": 1,
"-2.35": 1,
"-2.7": 1,
"-5.53": 1,
"-4.06": 1,
"-3.81": 1,
"-5.11": 1,
"-2.09": 1,
"0.3": 1,
"2.56": 1,
"-1.74": 1,
"5.67": 1,
"4.5": 1,
"-0.99": 1,
"0.84": 1,
"3.55": 1,
"1.65": 1,
"2.94": 1,
"3.37": 1,
"0.36": 1,
"-2.01": 1,
"-2.98": 1,
"0.14": 1,
"1.88": 1,
"-1.32": 1,
"0.23": 1,
"4.09": 1,
"3.07": 1,
"-0.3": 1,
"-1.98": 1,
"-0.23": 1,
"-1.42": 1,
"-1.19": 1,
"-4.15": 1,
"-4.11": 1,
"0.88": 1,
"-1.08": 1,
"-2.41": 1,
"-0.1": 1,
"-1.14": 1,
"-1.07": 1,
"-4.54": 1,
"-0.79": 1,
"-4.97": 1,
"-1.94": 1,
"1.64": 1,
"1.45": 1,
"2.93": 1,
"-0.04": 1,
"2.27": 1,
"1.27": 1,
"0.42": 1,
"-0.58": 1,
"1.99": 1,
"-2.68": 1,
"-2.23": 1,
"2.32": 1,
"2.3": 1,
"0.56": 1,
"-0.95": 1,
"-1.13": 1,
"0.89": 1,
"-0.13": 1,
"2.1": 1,
"0.32": 1,
"-0.72": 1,
"2.23": 1,
"-0.33": 1,
"1.81": 1,
"-2.11": 1,
"-2.28": 1,
"-0.31": 1,
"-3.65": 1,
"-2.29": 1,
"-1.9": 1,
"1.48": 1,
"-0.2": 1,
"2.59": 1,
"3.66": 1,
"2.77": 1,
"-1.47": 1,
"-0.03": 1,
"-3.28": 1,
"-1.63": 1,
"-3.9": 1,
"-0.07": 1,
"1.07": 1,
"0.13": 1,
"-0.53": 1,
"-1.05": 1,
"0.53": 1,
"2.7": 1,
"2.41": 1,
"0.66": 1,
"-0.54": 1,
"3.21": 1,
"2.74": 1,
"1.89": 1,
"3.48": 1,
"-1.62": 1,
"-1.69": 1,
"-0.43": 1,
"3.97": 1,
"4.66": 1,
"2.66": 1,
"3.86": 1,
"-1.72": 1,
"1.39": 1,
"1.91": 1,
"1.56": 1,
"-1.51": 1,
"2.46": 1,
"-0.51": 1,
"0.87": 1,
"1.76": 1,
"1.97": 1,
"-5.1": 1,
"-1.82": 1,
"-3.86": 1,
"4.46": 1,
"0.71": 1,
"4.8": 1,
"2.6": 1,
"2.78": 1,
"-3.24": 1,
"-3.07": 1,
"-4.6": 1,
"-0.38": 1,
"0.01": 1,
"1.3": 1,
"-0.42": 1,
"0.41": 1,
"-0.76": 1,
"-2.83": 1,
"-3.6": 1,
"0.76": 1,
"1.31": 1,
"-1.67": 1,
"-1.04": 1,
"-3.99": 1,
"-0.74": 1,
"1.66": 1,
"1.08": 1,
"0.91": 1,
"-4.62": 1,
"-1.2": 1,
"0.95": 1,
"-1.27": 1,
"-4.17": 1,
"-1.76": 1,
"-2.15": 1,
"1.17": 1,
"2.17": 1,
"-0.86": 1,
"-2.6": 1,
"-0.68": 1,
"1.58": 1,
"0.96": 1,
"2.08": 1,
"-0.05": 1,
"2.36": 1,
"-1.8": 1,
"-2.3": 1,
"0.2": 1,
"-1.96": 1,
"2.8": 1,
"2.95": 1,
"0.75": 1,
"-2.03": 1,
"-0.94": 1,
"-1.46": 1,
"-0.22": 1,
"2.18": 1,
"-0.21": 1,
"-0.06": 1,
"3.84": 1,
"-4.08": 1,
"-2.59": 1,
"-2.76": 1,
"1.46": 1,
"-2.74": 1,
"4.04": 1,
"2.31": 1,
"1.7": 1,
"5.1": 1,
"0.12": 1,
"1.9": 1,
"-3.63": 1,
"-4.02": 1,
"-5.21": 1,
"-4.26": 1,
"-5.6": 1,
"-5.69": 1,
"0.11": 1,
"4.17": 1,
"4.38": 1,
"0.67": 1,
"4.63": 1,
"0.5": 1,
"-1.49": 1,
"-1.12": 1,
"-0.96": 1,
"2.38": 1,
"3.59": 1,
"-4.38": 1,
"0.06": 1,
"-1.97": 1,
"-3.51": 1,
"-0.85": 1,
"3.35": 1,
"0.21": 1,
"2.39": 1,
"3.01": 1,
"-2.08": 1,
"3.6": 1,
"-1.02": 1,
"-0.61": 1,
"-0.57": 1,
"-0.39": 1,
"-0.01": 1,
"4.02": 1,
"-3.49": 1,
"-3.85": 1,
"5.75": 1,
"0.99": 1,
"1.29": 1,
"1.72": 1,
"1.37": 1,
"-1.29": 1,
"-0.59": 1,
"-2.64": 1,
"-3.97": 1,
"1.74": 1,
"5.71": 1,
"5.21": 1,
"-2.56": 1,
"5.37": 1,
"2.52": 1,
"1.13": 1,
"3.23": 1,
"-1.23": 1,
"1.18": 1,
"-1.18": 1,
"-3.34": 1,
"-2.2": 1,
"-1.44": 1,
"-1.81": 1,
"-3.92": 1,
"0.54": 1,
"4.14": 1,
"-0.45": 1,
"-0.63": 1,
"-1.56": 1,
"0.69": 1,
"-2.84": 1,
"-0.97": 1,
"-1.99": 1,
"2.96": 1,
"0.29": 1,
"-3.84": 1,
"2.84": 1,
"3.61": 1,
"2.01": 1,
"0.73": 1,
"0.98": 1,
"-4.89": 1,
"-3.35": 1,
"3.65": 1,
"4.28": 1,
"-3.66": 1,
"2.15": 1,
"0.43": 1,
"3.56": 1,
"1.1": 1,
"2.29": 1,
"1.38": 1,
"4.4": 1,
"-0.36": 1,
"2.58": 1,
"0.16": 1,
"2.69": 1,
"2.55": 1,
"2.34": 1,
"0.02": 1,
"-1.4": 1,
"1.26": 1,
"-2.47": 1,
"-3.19": 1,
"0.49": 1,
"2.44": 1,
"-0.27": 1,
"1.93": 1,
"2.65": 1,
"0.92": 1,
"0.38": 1,
"-0.48": 1,
"-1.54": 1,
"0.81": 1,
"4.39": 1,
"-3.12": 1,
"4.23": 1,
"0.74": 1,
"-2.44": 1,
"-2.71": 1,
"-3.16": 1,
"-3.77": 1,
"-3.4": 1,
"-2.34": 1,
"-1.24": 1,
"-1.15": 1,
"-1.7": 1,
"-2.04": 1,
"0.05": 1,
"3.08": 1,
"-2.27": 1,
"-1.3": 1,
"-2.95": 1,
"3.76": 1,
"0.63": 1,
"-1.73": 1,
"1.67": 1,
"-4.33": 1,
"-3.8": 1,
"-3.33": 1,
"-4.66": 1,
"-2.0": 1,
"1.98": 1,
"3.03": 1,
"3.2": 1,
"4.91": 1,
"0.0": 1,
"1.96": 1,
"1.21": 1,
"-3.42": 1,
"-0.19": 1,
"-0.65": 1,
"-1.91": 1,
"-0.87": 1,
"1.42": 1,
"0.93": 1,
"1.09": 1,
"2.97": 1,
"-4.0": 1,
"-0.88": 1,
"3.69": 1,
"-2.1": 1,
"3.92": 1,
"4.21": 1,
"2.11": 1,
"-4.93": 1,
"-1.26": 1,
"4.49": 1,
"3.52": 1,
"1.53": 1,
"1.23": 1,
"-1.85": 1,
"1.05": 1,
"1.73": 1,
"1.4": 1,
"-2.49": 1,
"-4.73": 1,
"-3.22": 1,
"-0.8": 1,
"-2.13": 1,
"-1.16": 1,
"3.82": 1,
"3.33": 1,
"1.19": 1,
"0.22": 1,
"-3.3": 1,
"0.24": 1,
"2.04": 1,
"3.75": 1,
"4.29": 1,
"5.46": 1,
"1.8": 1,
"1.41": 1,
"4.93": 1,
"5.34": 1,
"1.22": 1,
"-2.18": 1,
"-5.31": 1,
"3.3": 1,
"-1.75": 1,
"-3.48": 1,
"-2.92": 1,
"0.39": 1,
"5.69": 1,
"-0.67": 1,
"3.96": 1,
"2.71": 1,
"0.27": 1,
"1.54": 1,
"2.16": 1,
"3.11": 1,
"3.31": 1,
"4.06": 1,
"1.75": 1,
"-0.17": 1,
"2.06": 1,
"-2.94": 1,
"-2.58": 1,
"-3.38": 1,
"-1.43": 1,
"-1.09": 1,
"2.45": 1,
"-3.82": 1,
"-2.36": 1,
"1.43": 1,
"0.83": 1,
"-2.43": 1,
"-0.81": 1,
"-1.64": 1,
"2.68": 1,
"0.45": 1,
"3.05": 1,
"-3.69": 1,
"0.31": 1,
"0.51": 1,
"2.79": 1,
"0.37": 1,
"5.43": 1,
"2.12": 1,
"1.85": 1,
"-1.58": 1,
"-3.5": 1,
"3.93": 1,
"1.11": 1,
"-5.26": 1,
"-2.69": 1,
"0.77": 1,
"4.36": 1,
"-1.39": 1,
"4.0": 1,
"1.2": 1,
"5.6": 1,
"3.63": 1,
"1.16": 1,
"2.47": 1,
"-1.88": 1,
"0.61": 1,
"-0.66": 1,
"-2.16": 1,
"2.89": 1,
"-3.09": 1,
"-3.79": 1,
"-2.91": 1,
"-4.28": 1,
"-1.34": 1,
"-3.68": 1,
"0.17": 1,
"3.34": 1,
"5.31": 1,
"-5.05": 1,
"-4.21": 1,
"-2.24": 1,
"-1.55": 1,
"2.05": 1,
"3.57": 1,
"-3.46": 1,
"-1.6": 1,
"0.9": 1,
"3.77": 1,
"-1.89": 1,
"0.58": 1,
"4.96": 1,
"-3.29": 1,
"-2.4": 1,
"-4.5": 1,
"3.09": 1,
"3.16": 1,
"2.9": 1,
"3.46": 1,
"3.7": 1,
"2.81": 1,
"-1.5": 1,
"1.87": 1,
"2.33": 1,
"-2.93": 1,
"2.83": 1,
"4.34": 1,
"-3.76": 1,
"1.12": 1,
"-3.05": 1,
"0.97": 1,
"-2.39": 1,
"-4.12": 1,
"-4.96": 1,
"-4.49": 1,
"-2.32": 1,
"-3.2": 1,
"-3.11": 1,
"4.33": 1,
"4.9": 1,
"-0.93": 1,
"0.15": 1,
"-0.4": 1,
"-3.7": 1,
"-0.89": 1,
"-1.53": 1,
"-3.52": 1,
"4.08": 1,
"-1.86": 1,
"-4.46": 1,
"-3.27": 1,
"-5.37": 1,
"-2.46": 1,
"4.84": 1,
"2.49": 1,
"1.04": 1,
"3.28": 1,
"-3.03": 1,
"-4.84": 1,
"-3.61": 1,
"-0.77": 1,
"1.35": 1,
"-2.31": 1,
"4.11": 1,
"-2.96": 1,
"-0.49": 1,
"3.83": 1,
"-3.32": 1,
"4.54": 1,
"-3.15": 1,
"0.6": 1,
"-0.78": 1,
"-0.69": 1,
"-0.14": 1,
"-0.35": 1,
"-0.7": 1,
"-0.75": 1,
"-4.14": 1,
"-5.43": 1,
"-2.55": 1,
"1.34": 1,
"2.14": 1,
"3.81": 1,
"3.44": 1,
"-4.59": 1,
"-4.36": 1,
"-5.19": 1,
"-1.59": 1,
"5.57": 1,
"-5.33": 1,
"1.62": 1,
"-4.4": 1,
"-2.52": 1,
"-0.82": 1,
"-3.56": 1,
"-5.0": 1,
"-2.17": 1,
"-4.7": 1,
"1.52": 1,
"-4.63": 1,
"-3.96": 1,
"0.26": 1,
"4.22": 1,
"4.69": 1,
"4.76": 1,
"4.26": 1,
"-0.09": 1,
"2.03": 1,
"-0.84": 1,
"1.68": 1,
"-1.83": 1,
"-2.06": 1,
"-1.11": 1,
"-2.05": 1,
"-2.48": 1,
"-5.58": 1,
"-3.04": 1,
"4.59": 1,
"0.7": 1,
"-0.15": 1,
"-2.65": 1,
"-1.37": 1,
"-5.24": 1,
"-4.9": 1,
"0.78": 1,
"-3.14": 1,
"-1.45": 1,
"-1.68": 1,
"3.4": 1,
"1.55": 1,
"0.62": 1,
"3.32": 1,
"-4.34": 1,
"-1.78": 1,
"2.4": 1,
"-0.24": 1,
"2.98": 1,
"-4.75": 1,
"0.33": 1,
"2.35": 1,
"5.33": 1,
"5.58": 1,
"5.53": 1,
"1.47": 1,
"-4.64": 1,
"-4.51": 1,
"-1.21": 1,
"-5.46": 1,
"-5.61": 1,
"-0.5": 1,
"-1.35": 1,
"3.14": 1,
"3.51": 1,
"0.65": 1,
"-2.85": 1,
"-3.95": 1,
"-2.97": 1,
"3.49": 1,
"-0.83": 1,
"3.95": 1,
"-4.91": 1,
"3.8": 1,
"2.64": 1,
"-4.23": 1,
"3.47": 1,
"-2.14": 1,
"2.82": 1,
"2.28": 1,
"2.91": 1,
"-3.53": 1,
"2.43": 1,
"2.48": 1,
"-2.57": 1,
"-3.08": 1,
"2.85": 1,
"4.12": 1,
"3.85": 1,
"-4.39": 1,
"-1.22": 1,
"0.09": 1,
"-2.54": 1,
"3.38": 1,
"2.54": 1,
"4.56": 1,
"4.64": 1,
"-0.02": 1,
"4.75": 1,
"-3.55": 1,
"-1.52": 1,
"-2.82": 1,
"-4.22": 1,
"3.04": 1,
"1.92": 1,
"-5.67": 1,
"1.5": 1,
"3.53": 1,
"-3.93": 1,
"-5.34": 1,
"-4.04": 1,
"2.42": 1,
"1.06": 1,
"5.26": 1,
"5.05": 1,
"4.19": 1,
"-3.21": 1,
"1.83": 1,
"-5.3": 1,
"3.9": 1,
"4.97": 1,
"3.25": 1,
"-4.09": 1,
"3.27": 1,
"3.99": 1,
"-4.99": 1,
"1.0": 1,
"4.89": 1,
"4.43": 1,
"4.51": 1,
"4.7": 1,
"2.76": 1,
"5.61": 1,
"1.86": 1,
"5.11": 1,
"-3.47": 1,
"0.82": 1,
"5.0": 1,
"-3.1": 1,
"-5.57": 1,
"1.44": 1,
"-0.32": 1,
"-5.71": 1,
"-5.75": 1,
"-4.76": 1,
"-0.62": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?prod ?prodLabel ?other ?otherLabel ?prodAmt ?otherAmt ?currency ?priceDiff WHERE {
?prod pv:compatibleProduct ?other .

OPTIONAL { ?prod rdfs:label ?pLab0 }
OPTIONAL { ?prod pv:name ?pName0 }
BIND(COALESCE(?pLab0, ?pName0, STR(?prod)) AS ?prodLabel)

OPTIONAL { ?other rdfs:label ?oLab0 }
OPTIONAL { ?other pv:name ?oName0 }
BIND(COALESCE(?oLab0, ?oName0, STR(?other)) AS ?otherLabel)

OPTIONAL {
?prod pv:price ?pp1 .
?pp1 pv:amount ?prodAmt .
?pp1 pv:currency ?currency1 .
}
OPTIONAL {
?other pv:price ?pp2 .
?pp2 pv:amount ?otherAmt .
?pp2 pv:currency ?currency2 .
}

BIND(COALESCE(?currency1, ?currency2) AS ?currency)

OPTIONAL {
?prod pv:price ?pp1x . ?pp1x pv:amount ?prodAmt . ?pp1x pv:currency ?currency1x .
?other pv:price ?pp2x . ?pp2x pv:amount ?otherAmt . ?pp2x pv:currency ?currency2x .
FILTER(?currency1x = ?currency2x)
BIND((?otherAmt - ?prodAmt) AS ?priceDiff)
}
}
ORDER BY ?prod ?other
{
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"A145-1240844 - Bipolar-junction Coil Compensator Transducer": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"A181-1118563 - Compensator Switch": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"A315-1730287 - Network Dipole": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A391-9508821 - Oscillator Compensator": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"A529-2906246 - Sensor Crystal": 1,
"A560-7347187 - Oscillator Driver": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"A599-2465791 - Driver Memristor": 1,
"A607-3251492 - Bipolar-junction Transistor Compensator": 1,
"A617-7075018 - Crystal Switch": 1,
"A628-8869626 - Inductor Gauge Oscillator": 1,
"A688-6056899 - Multiplexer Inductor": 1,
"A739-4780210 - Memristor Driver Strain": 1,
"A750-6901242 - Film Resistor Memristor Meter": 1,
"A755-9228475 - Resistor Driver": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"A828-3713433 - Multiplexer Breaker": 1,
"A837-2549775 - LCD Gauge": 1,
"A932-9527078 - Ceramic Multiplexer Potentiometer Gauge": 1,
"A964-7949458 - Bipolar-junction Encoder Transducer": 1,
"A981-3634031 - Driver Memristor": 1,
"A994-9085459 - LCD Compensator": 1,
"A998-9941987 - Flow Compensator": 1,
"B120-9942467 - Coil Driver": 1,
"B131-7597100 - LCD Sensor Transducer": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"B161-8326597 - Inductor Potentiometer": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"B232-9941304 - Ceramic Rheostat Compensator": 1,
"B286-1369879 - Flow Coil Meter": 1,
"B308-8130581 - Memristor Breaker": 1,
"B365-4394675 - Flow Gauge Resonator Breaker": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B429-3694560 - Network Switch": 1,
"B436-6020212 - Potentiometer Crystal": 1,
"B488-6957957 - Strain Capacitor": 1,
"B507-9536014 - LCD Network": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B541-8783084 - Flow Potentiometer Gauge": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"B633-4277974 - Multiplexer Strain": 1,
"B646-2108570 - Dipole Transducer": 1,
"B688-8088841 - Log-periodic Crystal Rheostat Encoder": 1,
"B693-5414825 - Planck Transformer Transistor Capacitor": 1,
"B818-8738213 - Crystal Capacitor": 1,
"B820-6334766 - LCD Strain Capacitor": 1,
"B825-7596233 - Resistor Compensator": 1,
"B888-3582334 - Aluminum Potentiometer Crystal": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"B937-9245602 - Driver Compensator": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"C182-2689274 - Potentiometer Driver": 1,
"C200-5363446 - Network Transducer": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"C247-3833661 - Encoder Transformer": 1,
"C371-9169438 - Polymer Transducer Meter": 1,
"C375-1115425 - Polymer Inductor Gauge Rheostat": 1,
"C390-4121800 - Sensor Strain": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"C431-5986267 - Transformer Meter": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"C527-6179790 - LCD Oscillator Sensor": 1,
"C551-8482722 - Planck Transducer": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"C622-9716605 - Oscillator Transducer": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"C633-6541408 - Field-effect Potentiometer Transformer Switch": 1,
"C697-6765940 - Network Driver": 1,
"C699-1385746 - Resistor Driver Breaker": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"C770-9751514 - Transistor Resonator Breaker": 1,
"C799-8367143 - Coil Strain Meter": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"C831-2580759 - Warp": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"C844-8161134 - Crystal Compensator": 1,
"C845-4085909 - Flow Network Strain": 1,
"C916-8310851 - Bipolar-junction Oscillator Transformer": 1,
"C917-9516418 - LCD Coil": 1,
"C970-6304679 - Ceramic Coil Rheostat": 1,
"C977-9932879 - Memristor Encoder": 1,
"D160-4387774 - Gauge Transformer": 1,
"D194-9594371 - Sensor Gauge Transistor": 1,
"D215-3449390 - Gauge Crystal": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"D243-3238752 - Log-periodic Transistor Encoder Compensator": 1,
"D331-6211280 - LCD Coil Transistor": 1,
"D334-6681399 - Resistor Inductor Gauge": 1,
"D371-6210252 - Memristor Capacitor Transformer": 1,
"D381-6342696 - Inductor": 1,
"D400-2425852 - Sensor Crystal": 1,
"D483-7794770 - Memristor Gauge": 1,
"D516-5106885 - Driver Rheostat Capacitor": 1,
"D518-3930277 - Sensor Resonator": 1,
"D519-3521758 - Sensor Driver Resonator": 1,
"D525-4805979 - Compensator Transducer": 1,
"D544-9061559 - Rheostat Capacitor Meter": 1,
"D548-3561584 - Potentiometer Gauge Compensator": 1,
"D599-6113892 - Aluminum Multiplexer Coil Strain": 1,
"D603-1225899 - Field-effect Memristor Resonator Transducer": 1,
"D605-8095260 - Network Inductor": 1,
"D642-3058791 - Polymer LCD Dipole Switch": 1,
"D679-1940878 - LCD Potentiometer Transducer": 1,
"D729-5737042 - Coil Resistor Warp": 1,
"D762-3837218 - Inductor Capacitor Switch": 1,
"D844-3535311 - Resistor Gauge Encoder": 1,
"D903-5325470 - Flow Crystal Rheostat": 1,
"D973-4134519 - Aluminum Network Transducer": 1,
"E172-8066897 - Driver Compensator": 1,
"E187-6115721 - LCD Inductor Transducer": 1,
"E189-1255687 - LCD Potentiometer Breaker": 1,
"E246-3200290 - Field-effect Network Rheostat": 1,
"E267-7496794 - Crystal Rheostat": 1,
"E296-9034321 - Heisenberg Inductor Breaker Encoder": 1,
"E358-6492536 - Resistor Crystal": 1,
"E365-4375068 - Strain Compensator": 1,
"E373-8515317 - Field-effect Resistor Resonator": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E416-7318916 - Dipole Crystal": 1,
"E424-4700158 - Rheostat Compensator Meter": 1,
"E469-1218832 - Dipole Crystal": 1,
"E471-9316820 - Bipolar-junction Coil Dipole Transformer": 1,
"E495-3503010 - Dipole Resonator Transformer": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"E529-9160800 - Network Inductor": 1,
"E558-1962104 - Planck Breaker Compensator": 1,
"E563-8448172 - Warp Capacitor Meter": 1,
"E576-3538706 - Encoder Breaker": 1,
"E585-3605747 - Resistor Dipole": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"E617-6594892 - Field-effect Driver Strain Compensator": 1,
"E652-6887116 - Gauge Compensator": 1,
"E661-6880042 - Crystal Rheostat Breaker": 1,
"E737-8373948 - Oscillator Inductor": 1,
"E793-4560979 - Capacitor Resonator Compensator": 1,
"E812-9665212 - Bipolar-junction LCD Potentiometer Encoder": 1,
"E813-9861759 - Ceramic Memristor Warp": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"E829-2591611 - Memristor Compensator": 1,
"E835-1316991 - Resistor Breaker": 1,
"E868-5063965 - Coil Compensator": 1,
"E882-2235305 - Phase Multiplexer Network Warp": 1,
"E917-4866901 - Capacitor Warp": 1,
"E938-3071637 - LCD Dipole": 1,
"E952-1325145 - Driver Gauge": 1,
"E958-8187096 - Multiplexer Resistor Driver": 1,
"F126-7002599 - Log-periodic Oscillator Transistor": 1,
"F146-1429118 - Flow Gauge Rheostat Encoder": 1,
"F179-4094930 - Bipolar-junction Sensor Crystal": 1,
"F198-1414890 - Crystal Transformer": 1,
"F204-7999856 - Meter Warp": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"F264-7752472 - Resonator Switch": 1,
"F266-5876962 - Multiplexer Transistor": 1,
"F344-7012314 - Switch Encoder Transducer": 1,
"F383-6450755 - Strain Encoder": 1,
"F388-7030185 - Oscillator Transistor Transducer": 1,
"F442-1761220 - Aluminum Oscillator Transistor Strain": 1,
"F496-3982542 - Resonator Rheostat Breaker": 1,
"F553-8518538 - Aluminum Sensor Capacitor": 1,
"F565-7076382 - Dipole Resonator Transducer": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"F661-8988230 - Warp Transistor Meter": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"F708-2915261 - Crystal Resonator": 1,
"F735-3322876 - Planck Potentiometer Capacitor": 1,
"F773-4598178 - Transistor Breaker Switch": 1,
"F779-9528637 - Phase Sensor Transistor": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"F800-9858235 - Field-effect Gauge Transistor": 1,
"F812-7003324 - Rheostat Compensator": 1,
"F969-8946081 - Inductor Rheostat": 1,
"G144-5498082 - Multiplexer Transistor Transformer": 1,
"G144-7255154 - Dipole Rheostat Capacitor": 1,
"G179-6566342 - Resistor Rheostat Meter": 1,
"G205-5318100 - LCD Gauge": 1,
"G226-1299624 - Multiplexer Crystal Transformer": 1,
"G249-4926490 - Film Network Crystal": 1,
"G251-8414984 - Coil Rheostat": 1,
"G261-8681976 - Multiplexer Oscillator Inductor": 1,
"G272-3422671 - Resistor Sensor": 1,
"G333-6105148 - Planck Oscillator Encoder Transducer": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"G378-7132339 - Resistor Dipole": 1,
"G403-4566802 - LCD Resonator Warp": 1,
"G420-6271055 - Potentiometer Driver": 1,
"G439-8153345 - Memristor Driver Breaker": 1,
"G444-8036184 - Network Memristor Breaker": 1,
"G451-8179125 - Phase Transistor Warp": 1,
"G494-2537921 - Coil Encoder Switch": 1,
"G556-4971578 - Flow Coil Memristor Breaker": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"G625-4620445 - Log-periodic Driver Compensator": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"G826-1197003 - Heisenberg LCD Oscillator Breaker": 1,
"G858-9670227 - Network Transducer": 1,
"G881-8555057 - Flow Dipole Meter Warp": 1,
"G934-5417476 - Aluminum Multiplexer Memristor Transformer": 1,
"G966-6452177 - Coil Driver Resonator": 1,
"H156-2424615 - Polymer Driver Transistor Breaker": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"H236-9180061 - Oscillator Dipole Capacitor": 1,
"H244-4330589 - LCD Strain": 1,
"H252-2977732 - Field-effect Oscillator Switch Transducer": 1,
"H288-7210201 - Log-periodic Memristor Meter": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"H388-1193255 - Resonator Rheostat": 1,
"H439-1697643 - Log-periodic LCD Gauge": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"H491-2171849 - Multiplexer Meter": 1,
"H502-2553729 - Flow Resistor Inductor Transformer": 1,
"H510-3094779 - Resonator Transformer": 1,
"H538-7285000 - Breaker Meter": 1,
"H569-9184293 - Inductor Rheostat Breaker": 1,
"H577-3512936 - Film Coil Crystal Strain": 1,
"H598-5149929 - Transistor Rheostat": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"H631-9376983 - Aluminum Network Oscillator Capacitor": 1,
"H641-1089353 - Log-periodic Potentiometer Resonator": 1,
"H642-6966395 - Polymer Strain Rheostat": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"H660-8942410 - Sensor Warp": 1,
"H664-9736043 - Log-periodic Potentiometer Resonator": 1,
"H690-4065164 - Heisenberg Oscillator Memristor Meter": 1,
"H745-5284103 - Gauge Breaker Compensator": 1,
"H747-8053953 - Resonator Meter": 1,
"H752-8461936 - Network LCD": 1,
"H754-2495350 - Crystal Breaker": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"H956-3958783 - Aluminum Resistor Transistor Transformer": 1,
"H958-9648652 - Potentiometer Crystal Warp": 1,
"H962-4715431 - Phase Dipole Transformer": 1,
"I199-7642085 - Coil Strain": 1,
"I241-8776317 - Strain Compensator": 1,
"I242-5347848 - Compensator Warp": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"I272-3912947 - Ceramic Inductor Resonator": 1,
"I311-9589498 - Coil LCD Capacitor": 1,
"I314-5607546 - Polymer Resistor Dipole Gauge": 1,
"I334-4449270 - Resistor Dipole Gauge": 1,
"I409-8215134 - Film LCD Transducer": 1,
"I468-8034393 - Network Rheostat": 1,
"I479-8852507 - Sensor Memristor Strain": 1,
"I482-3778442 - Dipole Rheostat Compensator": 1,
"I532-1549244 - Resonator Encoder": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"I625-9097378 - Coil Compensator": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"I679-1230971 - Memristor Compensator": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"I771-2451857 - Potentiometer Breaker Oscillator": 1,
"I884-8763759 - Ceramic Inductor Breaker": 1,
"I892-8435352 - Heisenberg LCD Driver": 1,
"I904-2574215 - Coil Encoder": 1,
"I965-1821441 - Multiplexer Resistor": 1,
"I966-3317124 - Dipole Breaker Transducer": 1,
"J129-5121523 - Inductor Driver Transducer": 1,
"J154-2269983 - Capacitor Compensator": 1,
"J164-5917711 - Film Multiplexer Crystal Rheostat": 1,
"J178-5863159 - Crystal Transducer": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"J209-5198739 - Phase Memristor Capacitor": 1,
"J225-9158499 - Resistor Rheostat Capacitor": 1,
"J234-3498557 - Inductor Driver Breaker": 1,
"J259-5185660 - Memristor Encoder": 1,
"J370-9195708 - Multiplexer Potentiometer Compensator": 1,
"J391-2253339 - Heisenberg LCD Resonator": 1,
"J420-5667802 - Ceramic Inductor Crystal Transformer": 1,
"J437-7431991 - Potentiometer Crystal": 1,
"J470-3164222 - Multiplexer Memristor Rheostat": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"J505-2473322 - Coil Rheostat Transducer": 1,
"J518-7067023 - Phase Oscillator Strain": 1,
"J519-7020928 - Driver Transducer": 1,
"J544-6748850 - LCD Compensator": 1,
"J555-1586043 - Transformer Inductor Encoder": 1,
"J571-5923698 - Multiplexer Resistor": 1,
"J575-3390923 - Phase Coil Capacitor Transducer": 1,
"J625-3464908 - Sensor Crystal Warp": 1,
"J628-3649699 - Breaker Meter": 1,
"J671-5760255 - Driver Crystal": 1,
"J720-4179367 - Phase Sensor Crystal": 1,
"J734-1368842 - Inductor Gauge Meter": 1,
"J769-7213127 - Planck Multiplexer Driver Transistor": 1,
"J781-8212433 - Oscillator Meter": 1,
"J785-9314350 - Inductor Crystal Oscillator": 1,
"J820-7132026 - Polymer Inductor": 1,
"J824-5227925 - Strain Switch": 1,
"J824-9483042 - Dipole Resonator Breaker": 1,
"J826-7793079 - Coil Potentiometer Memristor": 1,
"J856-1304399 - Resistor Transducer": 1,
"J859-3337215 - Inductor Memristor": 1,
"J872-7568181 - Encoder Breaker": 1,
"J878-7667870 - LCD Crystal": 1,
"J986-8306638 - Phase Multiplexer Crystal Transducer": 1,
"J998-8511305 - Resonator Transformer": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"K167-1377420 - Coil Potentiometer Transducer": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"K242-3459162 - Resistor Warp": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"K313-8452822 - Heisenberg Crystal Transformer": 1,
"K334-8882985 - Network Resonator Encoder": 1,
"K367-1320550 - Strain Encoder": 1,
"K375-1173149 - Inductor Breaker": 1,
"K411-1729714 - Driver Gauge": 1,
"K473-9950981 - Coil Compensator": 1,
"K479-8347265 - Phase Resistor Memristor Meter": 1,
"K542-2074800 - Coil Encoder": 1,
"K559-3177627 - Rheostat Transformer Warp": 1,
"K630-6895992 - LCD Gauge Switch": 1,
"K636-3664460 - Memristor Capacitor": 1,
"K651-4147885 - LCD Crystal": 1,
"K662-1238230 - Memristor Transistor Compensator": 1,
"K671-7410535 - Driver Rheostat": 1,
"K689-4865625 - Log-periodic Multiplexer Dipole Transducer": 1,
"K739-4867689 - Multiplexer Resonator Compensator": 1,
"K764-8378288 - Aluminum Resistor Warp": 1,
"K832-2729798 - Resistor Potentiometer Oscillator": 1,
"K845-4116844 - Breaker Encoder Transducer": 1,
"K850-3410875 - Transducer Gauge Switch": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"K926-9334427 - LCD Encoder Compensator": 1,
"K995-8098017 - Resonator Meter": 1,
"L103-3316729 - Multiplexer Potentiometer": 1,
"L128-5499058 - Field-effect Multiplexer Potentiometer": 1,
"L173-2699667 - Coil LCD": 1,
"L189-7913415 - Oscillator Warp": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"L262-1109442 - Polymer Inductor Rheostat Breaker": 1,
"L275-4377274 - Inductor Transformer": 1,
"L316-4863597 - Potentiometer Inductor": 1,
"L365-6842646 - Driver Transducer": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"L485-8083934 - Inductor Warp Switch": 1,
"L536-5185541 - Coil Gauge": 1,
"L557-1467804 - Phase Resistor Transistor Strain": 1,
"L569-8145670 - Capacitor Transistor Compensator": 1,
"L586-5133830 - Multiplexer Dipole": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"L612-4428366 - Resonator Rheostat": 1,
"L619-5092078 - Crystal Resonator Transformer": 1,
"L691-1489542 - Phase Multiplexer Driver Capacitor": 1,
"L741-9253790 - LCD Strain": 1,
"L747-7633290 - Resistor Sensor Encoder": 1,
"L760-6079543 - Resistor Breaker": 1,
"L781-7008508 - Bipolar-junction Multiplexer Inductor Transformer": 1,
"L787-2053792 - Potentiometer Rheostat Compensator": 1,
"L792-8374906 - Sensor Memristor Meter": 1,
"L805-3283253 - Coil Compensator Warp": 1,
"L816-8238278 - Inductor": 1,
"L822-2103281 - Polymer Encoder Switch": 1,
"L855-9772914 - Phase Breaker Encoder": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"L940-7353182 - Resonator Warp": 1,
"L984-7886943 - Resistor Oscillator": 1,
"M128-9664568 - Sensor Rheostat Breaker": 1,
"M175-2087039 - Film Oscillator": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"M206-5050706 - Resistor Transducer": 1,
"M244-7026376 - Coil Compensator": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"M313-3585673 - Heisenberg Memristor Rheostat Transducer": 1,
"M323-1526287 - Encoder Meter": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"M361-5073440 - Film Transformer Transducer": 1,
"M367-8246717 - Potentiometer Gauge Warp": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"M449-5231838 - Transistor Crystal": 1,
"M521-8491113 - Multiplexer Coil Resonator": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"M558-2275045 - Sensor Switch": 1,
"M605-5951566 - Rheostat Transformer": 1,
"M627-4661911 - Phase Memristor Driver": 1,
"M645-5460777 - Log-periodic Multiplexer Rheostat": 1,
"M650-3458375 - Heisenberg Network Strain Encoder": 1,
"M650-8586992 - Memristor Gauge": 1,
"M662-6209836 - Resistor Potentiometer Meter": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"M703-4614993 - Coil Potentiometer Transducer": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"M750-1800450 - Crystal Encoder": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"M774-4843227 - Breaker Transducer": 1,
"M805-4248390 - Polymer Inductor Crystal Capacitor": 1,
"M812-1436368 - Bipolar-junction Crystal Rheostat": 1,
"M827-2856044 - Driver Warp": 1,
"M885-1885470 - Field-effect Transistor Crystal Switch": 1,
"M914-2979544 - Log-periodic Oscillator Sensor": 1,
"M974-1997588 - Potentiometer Dipole": 1,
"M986-2342719 - Resistor Memristor": 1,
"N105-3985051 - Multiplexer Resistor": 1,
"N137-2655981 - Inductor Compensator": 1,
"N153-4376308 - Aluminum Inductor Breaker": 1,
"N180-3300253 - Encoder Transducer": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"N237-3608803 - Flow Capacitor Meter": 1,
"N243-4639047 - Aluminum Resistor Meter": 1,
"N269-8309461 - LCD Potentiometer Warp": 1,
"N317-6012752 - Oscillator Driver Sensor": 1,
"N324-6810821 - Aluminum Rheostat Transformer Warp": 1,
"N324-9642439 - Driver Warp": 1,
"N366-8062929 - Network Oscillator Strain": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"N411-3014396 - Network Compensator": 1,
"N451-2350273 - Network Strain Meter": 1,
"N462-6714196 - Gauge Encoder": 1,
"N480-3487616 - Resonator Transformer": 1,
"N558-1730215 - Flow Coil Dipole Strain": 1,
"N560-4369045 - Resistor Compensator": 1,
"N568-8608034 - Coil Oscillator Switch": 1,
"N573-1498086 - Dipole Transformer": 1,
"N583-9253059 - Dipole Breaker": 1,
"N589-9719896 - Sensor Transformer": 1,
"N654-6497636 - Coil Transformer Compensator": 1,
"N664-8476091 - Rheostat Encoder": 1,
"N687-2334901 - Potentiometer Transducer": 1,
"N694-7625752 - Field-effect Resistor Sensor": 1,
"N704-3896920 - Strain Encoder": 1,
"N733-1946687 - LCD Encoder": 1,
"N744-5971232 - Coil Strain": 1,
"N773-8807466 - Multiplexer Switch": 1,
"N778-8753186 - Planck Multiplexer Transformer Warp": 1,
"N823-7028680 - LCD Potentiometer Switch": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"N869-4606944 - Film Memristor Compensator": 1,
"N879-4735381 - Multiplexer Inductor Crystal": 1,
"N881-4812973 - Meter": 1,
"N892-9855685 - Crystal Strain Capacitor": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"N982-3577798 - Network Transformer": 1,
"N998-2489600 - Bipolar-junction Strain": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"O204-4321819 - Field-effect Resistor Potentiometer Rheostat": 1,
"O212-8971793 - Strain Meter": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"O270-3409076 - Flow Network Dipole Warp": 1,
"O311-4466005 - Coil Inductor": 1,
"O475-7125508 - Multiplexer Oscillator Coil": 1,
"O489-4154201 - Potentiometer Transistor Compensator": 1,
"O491-3823912 - LCD Sensor": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"O502-4324008 - Sensor Transistor Encoder": 1,
"O531-4282131 - Multiplexer": 1,
"O537-7333259 - Oscillator Transformer": 1,
"O553-6585255 - Resistor Encoder Breaker": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"O626-4153303 - Driver Memristor": 1,
"O636-3428529 - Resonator Strain Meter": 1,
"O662-4012383 - Resistor Crystal Encoder": 1,
"O712-3456018 - Log-periodic Compensator": 1,
"O727-5999075 - Field-effect Transistor Rheostat Breaker": 1,
"O748-4307356 - LCD Inductor Oscillator": 1,
"O761-2575092 - Switch Transformer Transducer": 1,
"O856-7652159 - Coil Gauge Strain": 1,
"O857-5463957 - Transistor Compensator": 1,
"O875-5580798 - Heisenberg LCD Network Memristor": 1,
"O906-8511345 - Ceramic Inductor Transistor": 1,
"O944-9764063 - Inductor Memristor Resonator": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"P162-1457428 - Polymer Coil Capacitor Warp": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"P228-7323906 - Bipolar-junction Network Inductor Oscillator": 1,
"P253-1288849 - Dipole Compensator": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"P323-7286189 - Sensor Encoder Warp": 1,
"P360-3533771 - Aluminum Transducer Capacitor Switch": 1,
"P360-3765415 - LCD Dipole": 1,
"P385-1200138 - Potentiometer Resonator": 1,
"P393-8310950 - Multiplexer Crystal Switch": 1,
"P453-8155326 - Encoder Breaker": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"P494-3529490 - Ceramic Crystal Switch": 1,
"P516-8211068 - Film Multiplexer Rheostat Warp": 1,
"P528-2149873 - Encoder Compensator": 1,
"P602-5728865 - Phase Compensator Capacitor Switch": 1,
"P708-1537318 - Bipolar-junction Network Strain": 1,
"P717-5835879 - Rheostat Transformer": 1,
"P729-6290809 - Heisenberg Driver Resonator Transducer": 1,
"P774-3681449 - Resonator Switch": 1,
"P785-3702584 - Log-periodic Multiplexer Potentiometer Memristor": 1,
"P787-7863897 - Switch Transducer": 1,
"P870-6495639 - Inductor Transistor Warp": 1,
"P901-7842562 - Dipole Transistor Strain": 1,
"P903-7514284 - Dipole Capacitor": 1,
"P913-2073572 - Network Dipole Rheostat": 1,
"P925-8919074 - Inductor Switch": 1,
"P957-8177638 - Multiplexer Dipole Transducer": 1,
"P965-2818538 - Warp Compensator Transducer": 1,
"P966-3555304 - Planck Dipole Rheostat Breaker": 1,
"P982-4384687 - Oscillator Sensor Resonator": 1,
"P983-2994865 - Log-periodic Sensor Switch Transducer": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"Q176-6210359 - Oscillator Transistor Crystal": 1,
"Q187-2944814 - Multiplexer Potentiometer LCD": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"Q210-8168184 - Network Multiplexer": 1,
"Q223-1316238 - Dipole Inductor Switch": 1,
"Q245-9575444 - Inductor Driver Encoder": 1,
"Q248-7597886 - Oscillator Strain": 1,
"Q263-2186291 - Sensor Crystal": 1,
"Q316-9683240 - Multiplexer Transistor": 1,
"Q353-5311148 - Ceramic Compensator Breaker Transducer": 1,
"Q476-3668478 - LCD Crystal Resonator": 1,
"Q493-2919102 - Oscillator Capacitor": 1,
"Q516-8248086 - Transducer Switch": 1,
"Q546-7014038 - Field-effect Memristor Rheostat": 1,
"Q594-6895704 - LCD Network": 1,
"Q661-7217088 - Crystal Rheostat": 1,
"Q672-2667601 - Multiplexer Resonator": 1,
"Q694-8417409 - Sensor Crystal": 1,
"Q696-9337626 - Ceramic Coil Breaker": 1,
"Q751-8742744 - Inductor Resonator": 1,
"Q774-7287508 - Flow Potentiometer Crystal Rheostat": 1,
"Q852-7359409 - Ceramic Network Rheostat": 1,
"Q861-1618446 - Bipolar-junction Driver Crystal": 1,
"Q881-7871943 - Oscillator Resonator Compensator": 1,
"Q890-8785073 - Film Dipole Rheostat": 1,
"Q891-1871898 - Coil LCD": 1,
"Q951-7651773 - Coil Compensator": 1,
"Q980-7885274 - Heisenberg Strain Capacitor": 1,
"Q992-9818584 - Flow Oscillator Inductor Compensator": 1,
"R112-2955867 - Oscillator Encoder Compensator": 1,
"R135-6598379 - Capacitor Meter": 1,
"R181-9365849 - Log-periodic LCD Transformer": 1,
"R187-6602262 - Film Resistor Crystal Encoder": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"R231-2442628 - Transformer Transducer": 1,
"R287-3749176 - Log-periodic Memristor Encoder": 1,
"R298-1578179 - Gauge Strain Breaker": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"R338-2935955 - Film Multiplexer Breaker": 1,
"R383-8831143 - Flow Potentiometer Resonator": 1,
"R389-4348258 - Network Gauge": 1,
"R414-3098561 - Multiplexer Meter": 1,
"R454-6248815 - LCD Sensor Network": 1,
"R490-4226805 - Coil Resonator LCD": 1,
"R524-4869682 - Planck Multiplexer Inductor": 1,
"R586-3728998 - Gauge Breaker": 1,
"R591-4930195 - Multiplexer Resonator Transformer": 1,
"R599-8820686 - Film Sensor Dipole": 1,
"R645-9208510 - Memristor Breaker": 1,
"R658-8902629 - Strain Meter": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"R725-9753976 - Coil Resistor Encoder": 1,
"R771-3893828 - Multiplexer LCD Transducer": 1,
"R774-3816629 - Log-periodic Encoder Transducer": 1,
"R786-6586508 - Coil LCD Rheostat": 1,
"R860-6284767 - Oscillator Compensator Warp": 1,
"R862-8479315 - Aluminum Transducer Rheostat Warp": 1,
"R902-1645052 - Film Network Gauge Compensator": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"R944-4832283 - Phase Memristor Strain": 1,
"R946-7112528 - Sensor Breaker": 1,
"S100-7238368 - Sensor Potentiometer": 1,
"S113-2439377 - LCD Potentiometer": 1,
"S174-1960652 - Ceramic Resonator Rheostat": 1,
"S176-7294665 - Planck Gauge Compensator": 1,
"S212-6028302 - Rheostat Encoder": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"S271-9518696 - Crystal Encoder": 1,
"S314-3937138 - Heisenberg Memristor Breaker Switch": 1,
"S388-7116324 - Polymer Inductor Transistor Oscillator": 1,
"S424-4152456 - Potentiometer": 1,
"S429-3352092 - Dipole Switch": 1,
"S439-3814007 - LCD Coil Strain": 1,
"S450-5654221 - Multiplexer Transistor": 1,
"S531-7887299 - Transistor Switch": 1,
"S649-2935217 - LCD Inductor Memristor": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"S840-8753783 - Polymer Multiplexer Sensor": 1,
"S841-8644004 - Flow Sensor Transistor Encoder": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"S877-1860797 - Driver Transistor": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"T119-8723477 - Driver Crystal": 1,
"T124-5609647 - Network Compensator": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"T161-7769514 - Network Breaker Capacitor": 1,
"T230-5902294 - LCD Resistor": 1,
"T274-5886301 - Coil Gauge Transformer": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"T294-9722443 - Heisenberg LCD Crystal Resonator": 1,
"T319-6530857 - Sensor Transducer": 1,
"T341-6404509 - LCD Transducer Meter": 1,
"T348-1607769 - LCD Resistor Sensor": 1,
"T504-8448784 - Flow Potentiometer Gauge Oscillator": 1,
"T586-1678071 - Resistor Transistor Capacitor": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"T608-9573692 - Coil Resonator": 1,
"T721-4459242 - Coil Compensator": 1,
"T725-1852362 - Field-effect Multiplexer Potentiometer": 1,
"T732-3194846 - Film Oscillator Rheostat Transformer": 1,
"T782-3734983 - Dipole Transformer": 1,
"T792-4232124 - Encoder": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"T805-4210259 - Heisenberg Network Oscillator Strain": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"T808-9704137 - Gauge Encoder Breaker": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"T814-8858070 - Multiplexer Transistor": 1,
"T831-2675171 - Planck Coil Oscillator": 1,
"T872-6914723 - Resistor Oscillator": 1,
"T914-4676603 - Crystal Rheostat Meter": 1,
"T941-8766844 - Planck Inductor Gauge Resonator": 1,
"T958-2055544 - Bipolar-junction Network Transformer": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"U217-4742599 - Transistor Transducer": 1,
"U229-5087557 - Log-periodic Sensor Inductor Transistor": 1,
"U281-1671869 - Dipole Transformer Meter": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"U333-8518360 - Driver Switch Transducer": 1,
"U341-6920661 - Capacitor Transducer": 1,
"U360-2815908 - Potentiometer Rheostat": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"U389-9635839 - Multiplexer Switch": 1,
"U489-9025040 - Compensator Warp": 1,
"U501-5365139 - Sensor Transformer Compensator": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"U573-1229465 - Potentiometer Transformer Oscillator": 1,
"U614-3483402 - Sensor Compensator Transducer": 1,
"U619-9969216 - Coil Inductor Transistor": 1,
"U623-2779596 - Multiplexer LCD Switch": 1,
"U651-8669022 - Heisenberg Inductor Rheostat Transformer": 1,
"U681-7406159 - Film Driver Switch": 1,
"U714-9883090 - Aluminum Multiplexer LCD Capacitor": 1,
"U723-8910149 - Memristor Gauge Transformer": 1,
"U733-5722614 - Network Breaker Compensator": 1,
"U743-1581581 - Memristor Driver Strain": 1,
"U772-6050161 - Resonator Encoder Warp": 1,
"U827-2294099 - Potentiometer Inductor Warp": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"U836-7709298 - Driver Switch Transducer": 1,
"U861-6382993 - Compensator Meter": 1,
"U889-6360502 - Encoder Capacitor Compensator": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"U958-4696127 - Memristor Compensator Meter": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"U990-5234138 - LCD Inductor": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"V156-6277722 - Multiplexer Resistor Transducer": 1,
"V178-8820348 - LCD Inductor": 1,
"V285-7238338 - LCD Inductor": 1,
"V382-3883746 - Network Dipole Warp": 1,
"V404-9975399 - Resonator Transformer": 1,
"V421-9533599 - Network Switch": 1,
"V436-9027098 - Polymer Gauge Crystal": 1,
"V437-5667353 - Sensor Driver Strain": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"V488-1866672 - Log-periodic Rheostat Strain Transducer": 1,
"V509-7873455 - LCD Potentiometer Transformer": 1,
"V519-6173906 - Inductor Memristor Breaker": 1,
"V571-2893837 - Network Driver": 1,
"V600-6144297 - Driver Transducer": 1,
"V610-4162567 - Breaker Encoder": 1,
"V645-2413888 - Log-periodic Oscillator Transistor Rheostat": 1,
"V654-5789502 - Polymer Resistor Memristor Strain": 1,
"V673-7881809 - Heisenberg Resistor Resonator Compensator": 1,
"V759-7427700 - LCD Dipole Resonator": 1,
"V876-7098157 - Potentiometer Transistor": 1,
"V881-4674578 - Planck Dipole Driver Crystal": 1,
"V887-9194738 - Gauge Meter Transducer": 1,
"V892-8476786 - Encoder Meter": 1,
"V940-2277346 - Aluminum Oscillator Potentiometer Encoder": 1,
"V999-1676345 - Potentiometer Switch Warp": 1,
"W156-1748173 - Crystal Rheostat Warp": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"W220-5347961 - Ceramic Coil Oscillator Breaker": 1,
"W295-9452529 - Sensor Encoder": 1,
"W344-5163065 - Heisenberg Capacitor Transducer": 1,
"W358-5750223 - Coil Warp": 1,
"W434-6067873 - Network Encoder": 1,
"W436-5301120 - Encoder Transducer": 1,
"W457-2405463 - LCD Gauge Warp": 1,
"W493-4799721 - Network Warp": 1,
"W501-5990901 - Film Memristor Resonator Compensator": 1,
"W521-8006606 - Flow Memristor Transistor Compensator": 1,
"W529-7595129 - Film LCD Strain": 1,
"W579-1877166 - Polymer Oscillator Potentiometer Meter": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"W658-9979899 - Multiplexer Switch": 1,
"W661-3032609 - LCD Inductor Oscillator": 1,
"W686-1387652 - Oscillator Breaker": 1,
"W697-5712939 - Transformer Capacitor": 1,
"W726-4190110 - Ceramic Multiplexer Transistor LCD": 1,
"W769-8151254 - Field-effect LCD Multiplexer Capacitor": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"W780-8057984 - Planck Transformer Compensator": 1,
"W821-9428247 - Dipole Memristor Encoder": 1,
"W846-7438265 - Resistor Memristor Capacitor": 1,
"W847-4354260 - Aluminum Resistor Gauge": 1,
"W872-7508740 - Gauge Rheostat": 1,
"W892-1983772 - Log-periodic Coil Sensor Transducer": 1,
"W903-2104201 - Bipolar-junction Encoder Compensator": 1,
"W981-1196694 - Multiplexer Memristor Breaker": 1,
"W985-1612943 - Aluminum Switch": 1,
"W986-7950553 - Field-effect Memristor Resonator Compensator": 1,
"W988-3702091 - Inductor Rheostat Warp": 1,
"W988-9267091 - Transistor Strain": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"X215-2461803 - Crystal Capacitor": 1,
"X230-3586307 - LCD Network": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"X235-5406274 - Sensor Transducer": 1,
"X283-7840276 - Planck Sensor Dipole Capacitor": 1,
"X324-6249454 - Breaker Meter": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"X375-4984404 - Multiplexer Transistor": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"X480-1491345 - LCD Gauge Crystal": 1,
"X502-7135246 - Heisenberg Resonator Rheostat Transducer": 1,
"X504-5674380 - Ceramic Memristor Resonator Compensator": 1,
"X634-4382180 - Inductor Driver Potentiometer": 1,
"X643-1063819 - Dipole Compensator": 1,
"X716-6172862 - Coil Resonator": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"X874-7370643 - Network Resistor": 1,
"X897-7676293 - Coil Potentiometer Strain": 1,
"X946-6308579 - Field-effect Resistor Encoder": 1,
"X954-5873970 - Bipolar-junction Oscillator Memristor Sensor": 1,
"X989-6385984 - Sensor Encoder Transformer": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"Y162-1430218 - Ceramic Dipole Memristor Breaker": 1,
"Y167-8599364 - Oscillator Meter": 1,
"Y191-7589606 - Gauge Breaker": 1,
"Y299-9772513 - Log-periodic Oscillator Transformer": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"Y372-1509836 - Oscillator Breaker": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"Y632-7948469 - Multiplexer Coil": 1,
"Y676-8284278 - Encoder Warp": 1,
"Y695-6135491 - Polymer Warp": 1,
"Y714-9954664 - Bipolar-junction Oscillator Gauge": 1,
"Y728-2083256 - Gauge Crystal Encoder": 1,
"Y728-5119478 - Sensor Crystal Transducer": 1,
"Y788-8477334 - Inductor Encoder Capacitor": 1,
"Y788-9882822 - Planck Multiplexer Capacitor": 1,
"Y863-3538159 - Multiplexer Rheostat": 1,
"Y884-3616085 - Phase Potentiometer Memristor Sensor": 1,
"Y889-4226936 - Coil Oscillator": 1,
"Y914-2603866 - Aluminum Strain Transformer": 1,
"Y920-5864778 - LCD Sensor Potentiometer": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"Y973-8480546 - Resistor Transistor Switch": 1,
"Y979-3662601 - Memristor Strain Switch": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"Z165-5413714 - Gauge Transducer": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"Z190-5822042 - Polymer Multiplexer Crystal Capacitor": 1,
"Z212-3451369 - Driver Strain": 1,
"Z222-5977620 - Transformer Switch": 1,
"Z249-1364492 - Meter Transducer": 1,
"Z254-1002324 - Transistor Crystal": 1,
"Z272-2955088 - Coil Sensor Resonator": 1,
"Z288-2722877 - Polymer Transistor Breaker Compensator": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"Z293-3675192 - Ceramic Potentiometer Gauge Encoder": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"Z373-9393076 - Resonator Transformer": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"Z439-5790785 - Log-periodic Network Meter Switch": 1,
"Z452-1805723 - Capacitor Switch": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"Z553-4314789 - Dipole Capacitor": 1,
"Z556-4824310 - Memristor Transistor Capacitor": 1,
"Z587-4413312 - Aluminum Dipole Sensor Capacitor": 1,
"Z604-4291151 - Log-periodic Oscillator Capacitor": 1,
"Z615-8618743 - Film Resistor Inductor Switch": 1,
"Z617-4660142 - Ceramic Potentiometer Compensator": 1,
"Z646-5864967 - Coil Encoder Switch": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"Z739-8572107 - Network Potentiometer Gauge": 1,
"Z768-8346288 - Coil Sensor Network": 1,
"Z775-8853334 - Aluminum Multiplexer Dipole": 1,
"Z848-4991684 - Multiplexer Dipole": 1,
"Z872-5435339 - Polymer Gauge Capacitor": 1,
"Z887-4941382 - Encoder Compensator": 1,
"Z889-8463159 - Resistor Inductor": 1,
"Z927-4746244 - Phase Resistor Transistor Meter": 1,
"Z980-8040792 - Inductor Transistor Oscillator": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"3.72": 1,
"1.27": 1,
"3.7": 1,
"0.06": 1,
"3.18": 1,
"3.03": 1,
"4.89": 1,
"1.77": 1,
"5.33": 1,
"0.49": 1,
"2.47": 1,
"0.52": 1,
"2.83": 1,
"3.67": 1,
"1.87": 1,
"2.79": 1,
"1.4": 1,
"1.28": 1,
"0.98": 1,
"2.54": 1,
"5.49": 1,
"4.15": 1,
"5.23": 1,
"4.14": 1,
"3.23": 1,
"1.48": 1,
"2.91": 1,
"5.55": 1,
"4.08": 1,
"5.29": 1,
"1.06": 1,
"5.96": 1,
"5.87": 1,
"5.68": 1,
"1.9": 1,
"0.69": 1,
"4.02": 1,
"2.5": 1,
"4.67": 1,
"3.59": 1,
"1.76": 1,
"5.15": 1,
"0.54": 1,
"0.76": 1,
"1.99": 1,
"1.14": 1,
"3.47": 1,
"5.09": 1,
"2.45": 1,
"5.85": 1,
"4.5": 1,
"5.46": 1,
"3.6": 1,
"4.53": 1,
"2.16": 1,
"0.4": 1,
"2.34": 1,
"5.99": 1,
"4.55": 1,
"0.12": 1,
"3.44": 1,
"2.27": 1,
"1.63": 1,
"5.75": 1,
"4.77": 1,
"2.09": 1,
"4.88": 1,
"0.16": 1,
"2.22": 1,
"0.0": 1,
"1.79": 1,
"4.09": 1,
"3.36": 1,
"5.28": 1,
"5.22": 1,
"5.97": 1,
"2.73": 1,
"4.97": 1,
"2.28": 1,
"1.1": 1,
"4.28": 1,
"5.63": 1,
"2.9": 1,
"1.54": 1,
"1.71": 1,
"3.3": 1,
"1.62": 1,
"3.79": 1,
"5.51": 1,
"1.11": 1,
"2.0": 1,
"4.86": 1,
"2.19": 1,
"3.98": 1,
"0.77": 1,
"4.58": 1,
"2.12": 1,
"0.96": 1,
"2.92": 1,
"3.9": 1,
"0.61": 1,
"2.31": 1,
"1.01": 1,
"2.95": 1,
"5.52": 1,
"2.43": 1,
"0.9": 1,
"0.45": 1,
"5.24": 1,
"4.6": 1,
"5.61": 1,
"2.68": 1,
"2.18": 1,
"5.56": 1,
"0.8": 1,
"4.47": 1,
"1.8": 1,
"5.72": 1,
"2.66": 1,
"0.38": 1,
"3.83": 1,
"5.12": 1,
"5.78": 1,
"4.27": 1,
"1.09": 1,
"0.71": 1,
"4.38": 1,
"2.29": 1,
"2.6": 1,
"2.32": 1,
"4.21": 1,
"1.18": 1,
"2.35": 1,
"3.94": 1,
"5.26": 1,
"2.02": 1,
"0.42": 1,
"5.44": 1,
"1.07": 1,
"1.47": 1,
"2.96": 1,
"2.89": 1,
"0.11": 1,
"0.29": 1,
"3.25": 1,
"0.25": 1,
"0.1": 1,
"2.99": 1,
"5.83": 1,
"1.88": 1,
"4.23": 1,
"0.95": 1,
"3.29": 1,
"1.86": 1,
"1.73": 1,
"0.86": 1,
"3.54": 1,
"3.11": 1,
"5.9": 1,
"3.64": 1,
"2.44": 1,
"3.66": 1,
"4.62": 1,
"2.33": 1,
"5.54": 1,
"4.2": 1,
"1.82": 1,
"3.16": 1,
"5.84": 1,
"0.01": 1,
"4.32": 1,
"0.44": 1,
"2.21": 1,
"1.84": 1,
"3.76": 1,
"2.77": 1,
"3.61": 1,
"0.63": 1,
"3.53": 1,
"1.69": 1,
"5.11": 1,
"3.92": 1,
"3.86": 1,
"0.14": 1,
"2.84": 1,
"5.73": 1,
"0.81": 1,
"0.87": 1,
"3.96": 1,
"2.17": 1,
"5.36": 1,
"3.62": 1,
"3.89": 1,
"4.24": 1,
"5.02": 1,
"1.81": 1,
"0.23": 1,
"4.65": 1,
"4.57": 1,
"3.42": 1,
"4.75": 1,
"1.38": 1,
"0.5": 1,
"1.26": 1,
"3.39": 1,
"5.8": 1,
"5.06": 1,
"5.34": 1,
"2.46": 1,
"1.66": 1,
"0.6": 1,
"1.74": 1,
"1.13": 1,
"2.64": 1,
"4.19": 1,
"3.24": 1,
"4.85": 1,
"4.33": 1,
"4.82": 1,
"1.78": 1,
"3.87": 1,
"5.92": 1,
"4.54": 1,
"3.73": 1,
"2.76": 1,
"2.7": 1,
"3.32": 1,
"3.85": 1,
"4.4": 1,
"1.51": 1,
"0.75": 1,
"0.59": 1,
"2.93": 1,
"4.99": 1,
"0.15": 1,
"3.26": 1,
"0.94": 1,
"2.58": 1,
"2.88": 1,
"5.59": 1,
"1.22": 1,
"4.01": 1,
"0.41": 1,
"4.05": 1,
"3.09": 1,
"4.25": 1,
"2.56": 1,
"3.06": 1,
"4.83": 1,
"1.58": 1,
"1.44": 1,
"2.14": 1,
"0.64": 1,
"1.64": 1,
"3.82": 1,
"5.1": 1,
"3.13": 1,
"2.13": 1,
"3.69": 1,
"0.51": 1,
"4.44": 1,
"5.95": 1,
"0.31": 1,
"1.23": 1,
"1.7": 1,
"5.91": 1,
"0.78": 1,
"4.22": 1,
"2.85": 1,
"3.08": 1,
"4.9": 1,
"3.77": 1,
"4.81": 1,
"1.49": 1,
"5.13": 1,
"2.8": 1,
"3.21": 1,
"5.19": 1,
"5.82": 1,
"0.18": 1,
"1.02": 1,
"0.56": 1,
"3.22": 1,
"4.18": 1,
"5.04": 1,
"2.04": 1,
"5.05": 1,
"5.5": 1,
"5.66": 1,
"5.07": 1,
"3.41": 1,
"2.94": 1,
"2.53": 1,
"1.3": 1,
"1.32": 1,
"2.03": 1,
"2.87": 1,
"4.34": 1,
"3.38": 1,
"5.6": 1,
"1.83": 1,
"0.39": 1,
"1.35": 1,
"4.1": 1,
"0.26": 1,
"2.98": 1,
"3.71": 1,
"3.4": 1,
"5.7": 1,
"1.59": 1,
"0.79": 1,
"2.61": 1,
"5.53": 1,
"0.57": 1,
"2.65": 1,
"5.77": 1,
"3.88": 1,
"0.55": 1,
"1.6": 1,
"3.78": 1,
"1.15": 1,
"1.67": 1,
"5.86": 1,
"3.93": 1,
"5.42": 1,
"2.05": 1,
"3.1": 1,
"4.37": 1,
"0.84": 1,
"4.0": 1,
"3.07": 1,
"3.17": 1,
"4.45": 1,
"0.37": 1,
"0.74": 1,
"5.38": 1,
"1.08": 1,
"1.39": 1,
"1.0": 1,
"1.43": 1,
"1.72": 1,
"0.43": 1,
"0.72": 1,
"5.31": 1,
"5.71": 1,
"4.07": 1,
"3.31": 1,
"2.55": 1,
"1.19": 1,
"5.64": 1,
"4.49": 1,
"2.11": 1,
"3.02": 1,
"5.41": 1,
"2.48": 1,
"0.22": 1,
"2.72": 1,
"3.74": 1,
"5.93": 1,
"2.67": 1,
"3.2": 1,
"2.4": 1,
"1.42": 1,
"4.35": 1,
"3.04": 1,
"4.78": 1,
"3.5": 1,
"3.81": 1,
"0.89": 1,
"4.46": 1,
"0.65": 1,
"2.86": 1,
"0.28": 1,
"0.48": 1,
"4.16": 1,
"5.14": 1,
"1.96": 1,
"0.36": 1,
"0.08": 1,
"3.95": 1,
"4.52": 1,
"5.37": 1,
"3.05": 1,
"2.07": 1,
"1.37": 1,
"1.41": 1,
"5.74": 1,
"2.1": 1,
"1.03": 1,
"5.21": 1,
"2.26": 1,
"3.51": 1,
"5.76": 1,
"1.45": 1,
"0.73": 1,
"0.04": 1,
"0.27": 1,
"1.16": 1,
"2.01": 1,
"0.47": 1,
"2.82": 1,
"4.03": 1,
"2.39": 1,
"1.52": 1,
"4.17": 1,
"2.3": 1,
"3.68": 1,
"1.97": 1,
"4.26": 1,
"2.24": 1,
"5.81": 1,
"0.85": 1,
"2.63": 1,
"0.19": 1,
"2.97": 1,
"4.59": 1,
"5.69": 1,
"0.3": 1,
"0.02": 1,
"0.17": 1,
"0.53": 1,
"3.57": 1,
"5.32": 1,
"4.66": 1,
"5.27": 1,
"5.65": 1,
"5.67": 1,
"3.0": 1,
"4.56": 1,
"1.94": 1,
"1.85": 1,
"4.11": 1,
"2.59": 1,
"1.36": 1,
"3.14": 1,
"1.68": 1,
"4.31": 1,
"5.57": 1,
"0.2": 1,
"4.94": 1,
"4.12": 1,
"0.82": 1,
"1.25": 1,
"5.45": 1,
"4.29": 1,
"3.37": 1,
"2.23": 1,
"1.92": 1,
"EUR": 1,
"-3.66": 1,
"1.95": 1,
"-0.72": 1,
"-1.04": 1,
"-1.93": 1,
"-0.29": 1,
"-0.28": 1,
"-1.27": 1,
"-4.4": 1,
"-3.83": 1,
"-2.0": 1,
"-1.5": 1,
"-3.37": 1,
"1.93": 1,
"-1.58": 1,
"-3.84": 1,
"-1.17": 1,
"-3.08": 1,
"-1.81": 1,
"-0.69": 1,
"2.74": 1,
"-2.29": 1,
"-1.1": 1,
"-1.38": 1,
"0.34": 1,
"-3.88": 1,
"-3.49": 1,
"0.21": 1,
"-2.6": 1,
"-1.46": 1,
"-1.57": 1,
"-0.03": 1,
"-4.84": 1,
"-4.06": 1,
"4.36": 1,
"-3.32": 1,
"-0.38": 1,
"-0.39": 1,
"-0.68": 1,
"-0.65": 1,
"-2.8": 1,
"-2.94": 1,
"-0.36": 1,
"-1.65": 1,
"-5.37": 1,
"-0.71": 1,
"1.24": 1,
"-2.12": 1,
"-3.6": 1,
"3.97": 1,
"-0.93": 1,
"-0.91": 1,
"1.98": 1,
"-2.28": 1,
"-2.91": 1,
"1.53": 1,
"-2.96": 1,
"-0.04": 1,
"-4.15": 1,
"-0.43": 1,
"-0.02": 1,
"0.91": 1,
"-0.06": 1,
"-3.5": 1,
"1.33": 1,
"-0.52": 1,
"-2.09": 1,
"-2.41": 1,
"-0.05": 1,
"-3.93": 1,
"-1.39": 1,
"3.01": 1,
"-3.46": 1,
"-1.91": 1,
"-3.19": 1,
"-3.22": 1,
"-1.59": 1,
"-1.56": 1,
"-2.13": 1,
"-0.07": 1,
"-1.14": 1,
"-3.76": 1,
"-1.63": 1,
"-0.32": 1,
"-0.85": 1,
"-1.7": 1,
"0.99": 1,
"-4.69": 1,
"-1.0": 1,
"0.93": 1,
"0.68": 1,
"-0.67": 1,
"-4.63": 1,
"1.31": 1,
"3.33": 1,
"2.49": 1,
"-0.8": 1,
"-0.45": 1,
"-2.68": 1,
"-3.05": 1,
"-3.52": 1,
"-4.49": 1,
"-2.18": 1,
"-3.09": 1,
"-3.16": 1,
"3.63": 1,
"-1.9": 1,
"-1.72": 1,
"-5.11": 1,
"-1.85": 1,
"-1.3": 1,
"-0.1": 1,
"-2.24": 1,
"-2.57": 1,
"-0.5": 1,
"1.12": 1,
"-1.94": 1,
"-2.42": 1,
"0.46": 1,
"-1.19": 1,
"-0.88": 1,
"2.15": 1,
"3.34": 1,
"-3.31": 1,
"-2.71": 1,
"-0.97": 1,
"-2.1": 1,
"-0.79": 1,
"-3.21": 1,
"0.07": 1,
"-1.07": 1,
"-5.75": 1,
"-0.99": 1,
"4.93": 1,
"-0.61": 1,
"-0.19": 1,
"-0.86": 1,
"-0.9": 1,
"-1.8": 1,
"-4.62": 1,
"-5.46": 1,
"-0.3": 1,
"1.2": 1,
"3.8": 1,
"-4.14": 1,
"-1.69": 1,
"-0.41": 1,
"-2.7": 1,
"0.92": 1,
"-1.45": 1,
"2.08": 1,
"-0.35": 1,
"-1.98": 1,
"2.41": 1,
"2.36": 1,
"-5.3": 1,
"-0.11": 1,
"-0.42": 1,
"-0.21": 1,
"-0.08": 1,
"2.2": 1,
"-5.33": 1,
"-5.58": 1,
"2.38": 1,
"-1.67": 1,
"-0.63": 1,
"-2.52": 1,
"-3.33": 1,
"-0.22": 1,
"4.84": 1,
"-1.16": 1,
"2.52": 1,
"1.34": 1,
"-2.21": 1,
"0.67": 1,
"-3.96": 1,
"3.48": 1,
"-1.66": 1,
"0.33": 1,
"-2.45": 1,
"-3.69": 1,
"-2.92": 1,
"-2.34": 1,
"-1.76": 1,
"-1.97": 1,
"-1.31": 1,
"-4.43": 1,
"-4.51": 1,
"0.13": 1,
"0.09": 1,
"-2.03": 1,
"-5.21": 1,
"-0.47": 1,
"-1.96": 1,
"4.04": 1,
"3.28": 1,
"4.8": 1,
"-2.59": 1,
"-1.32": 1,
"-0.95": 1,
"-0.34": 1,
"-5.07": 1,
"-1.82": 1,
"-0.57": 1,
"4.69": 1,
"-0.87": 1,
"3.65": 1,
"0.03": 1,
"-0.54": 1,
"3.75": 1,
"1.57": 1,
"-1.89": 1,
"-2.65": 1,
"-5.6": 1,
"3.55": 1,
"1.65": 1,
"-2.46": 1,
"-2.56": 1,
"-5.43": 1,
"-1.02": 1,
"-1.99": 1,
"-0.76": 1,
"1.05": 1,
"-1.11": 1,
"-4.22": 1,
"-0.23": 1,
"-1.34": 1,
"-1.51": 1,
"4.96": 1,
"-1.18": 1,
"0.05": 1,
"-1.15": 1,
"-2.84": 1,
"-1.52": 1,
"-0.13": 1,
"1.91": 1,
"-1.28": 1,
"-3.42": 1,
"-4.73": 1,
"-3.1": 1,
"-3.4": 1,
"-1.03": 1,
"1.56": 1,
"5.3": 1,
"-2.06": 1,
"-1.08": 1,
"0.58": 1,
"-5.67": 1,
"-4.5": 1,
"-0.58": 1,
"-0.7": 1,
"4.76": 1,
"3.12": 1,
"-1.48": 1,
"-2.17": 1,
"-5.1": 1,
"-0.53": 1,
"-0.51": 1,
"-2.81": 1,
"-3.7": 1,
"-1.64": 1,
"1.04": 1,
"-1.22": 1,
"-4.39": 1,
"-0.82": 1,
"-3.04": 1,
"1.5": 1,
"-2.9": 1,
"-2.33": 1,
"-1.87": 1,
"-1.09": 1,
"-3.79": 1,
"1.17": 1,
"3.49": 1,
"-2.49": 1,
"-2.93": 1,
"-2.85": 1,
"-3.59": 1,
"-2.27": 1,
"-3.75": 1,
"-2.4": 1,
"0.97": 1,
"-0.98": 1,
"-0.12": 1,
"1.55": 1,
"-2.05": 1,
"-4.04": 1,
"-2.31": 1,
"-1.92": 1,
"-1.6": 1,
"0.66": 1,
"-0.26": 1,
"-3.57": 1,
"-2.16": 1,
"-3.34": 1,
"-2.11": 1,
"-1.33": 1,
"-1.78": 1,
"-3.15": 1,
"0.35": 1,
"-0.59": 1,
"-0.37": 1,
"4.63": 1,
"-0.01": 1,
"-3.47": 1,
"-3.28": 1,
"-3.29": 1,
"-3.24": 1,
"-0.33": 1,
"-2.78": 1,
"0.83": 1,
"-0.49": 1,
"1.29": 1,
"-4.6": 1,
"-4.17": 1,
"-4.38": 1,
"0.7": 1,
"2.69": 1,
"-1.36": 1,
"-4.76": 1,
"-4.26": 1,
"-3.85": 1,
"2.57": 1,
"-3.01": 1,
"-2.58": 1,
"-1.29": 1,
"-3.25": 1,
"3.19": 1,
"-3.3": 1,
"-2.15": 1,
"-3.68": 1,
"-0.48": 1,
"-2.44": 1,
"-2.74": 1,
"-2.95": 1,
"-2.23": 1,
"-2.02": 1,
"-4.21": 1,
"-0.92": 1,
"-0.81": 1,
"-1.05": 1,
"-1.41": 1,
"-2.97": 1,
"1.75": 1,
"2.78": 1,
"-3.97": 1,
"-2.69": 1,
"-2.55": 1,
"-3.86": 1,
"-1.35": 1,
"-2.83": 1,
"3.52": 1,
"-3.82": 1,
"-4.93": 1,
"-5.34": 1,
"2.06": 1,
"-0.56": 1,
"-3.48": 1,
"-3.92": 1,
"-3.2": 1,
"-2.77": 1,
"-1.24": 1,
"-4.34": 1,
"-1.55": 1,
"-0.62": 1,
"-2.39": 1,
"4.39": 1,
"-0.83": 1,
"-1.54": 1,
"-0.2": 1,
"-2.01": 1,
"-4.89": 1,
"-1.37": 1,
"-4.96": 1,
"-0.25": 1,
"-4.11": 1,
"-1.44": 1,
"-0.66": 1,
"-3.9": 1,
"-4.97": 1,
"3.56": 1,
"-3.65": 1,
"-0.4": 1,
"-4.08": 1,
"-1.88": 1,
"-2.3": 1,
"-4.33": 1,
"1.46": 1,
"-2.38": 1,
"-4.23": 1,
"-1.95": 1,
"-0.74": 1,
"-0.14": 1,
"-3.12": 1,
"-0.18": 1,
"-0.94": 1,
"-1.49": 1,
"4.91": 1,
"-3.07": 1,
"-4.09": 1,
"-2.79": 1,
"-0.09": 1,
"-1.73": 1,
"-4.9": 1,
"-4.8": 1,
"-3.23": 1,
"-1.74": 1,
"0.88": 1,
"-3.51": 1,
"-3.14": 1,
"-2.76": 1,
"-1.2": 1,
"3.35": 1,
"-0.84": 1,
"-2.36": 1,
"5.0": 1,
"-0.16": 1,
"-0.89": 1,
"-3.03": 1,
"-3.95": 1,
"-1.42": 1,
"2.81": 1,
"-0.17": 1,
"-1.53": 1,
"3.46": 1,
"4.43": 1,
"3.15": 1,
"-3.55": 1,
"-4.0": 1,
"-3.44": 1,
"-1.12": 1,
"-2.48": 1,
"-2.32": 1,
"-2.2": 1,
"-4.54": 1,
"-5.19": 1,
"-4.46": 1,
"-5.57": 1,
"-2.47": 1,
"-1.13": 1,
"-5.24": 1,
"2.42": 1,
"-1.4": 1,
"-0.46": 1,
"-2.35": 1,
"-1.62": 1,
"4.51": 1,
"4.64": 1,
"1.21": 1,
"-4.99": 1,
"-2.04": 1,
"3.84": 1,
"-1.23": 1,
"-0.24": 1,
"-3.38": 1,
"-2.98": 1,
"-2.54": 1,
"-4.7": 1,
"2.71": 1,
"-2.89": 1,
"-3.81": 1,
"-2.14": 1,
"3.27": 1,
"-1.06": 1,
"-3.56": 1,
"4.7": 1,
"-0.27": 1,
"-5.0": 1,
"-3.11": 1,
"-3.61": 1,
"-2.64": 1,
"-5.05": 1,
"-4.28": 1,
"-1.47": 1,
"-5.53": 1,
"-1.26": 1,
"-3.35": 1,
"4.06": 1,
"4.73": 1,
"-0.75": 1,
"3.99": 1,
"-3.8": 1,
"-2.08": 1,
"-2.66": 1,
"-4.66": 1,
"-4.91": 1,
"-3.27": 1,
"-3.99": 1,
"-1.86": 1,
"1.89": 1,
"0.24": 1,
"-4.07": 1,
"-5.26": 1,
"-0.78": 1,
"-2.82": 1,
"-5.71": 1,
"-0.31": 1,
"-1.83": 1,
"0.32": 1,
"-0.73": 1,
"5.43": 1,
"-4.56": 1,
"-4.64": 1,
"-4.75": 1,
"-4.02": 1,
"-5.61": 1,
"-2.43": 1,
"-4.29": 1,
"-5.31": 1,
"-4.12": 1,
"-1.75": 1,
"-4.59": 1,
"-1.21": 1,
"-0.15": 1,
"-1.43": 1,
"5.58": 1,
"-4.36": 1,
"-0.77": 1,
"-0.6": 1,
"-0.96": 1,
"-4.19": 1,
"-5.69": 1,
"-1.68": 1,
"-3.53": 1,
"-3.77": 1,
"-3.63": 1,
"0.62": 1
}
{
"set_P": 0.6354166666666666,
"set_recall": 1.0,
"set_F": 0.7770700636942676
}
ck26:35-de
Könnten Sie für jedes Produkt
auflisten, mit welchen anderen
Produkten es kompatibel ist, und
die Preisunterschiede zwischen
diesen Produkten anzeigen?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?prod ?compatible (?prodAmount - ?compatibleAmount AS ?priceDiff)
WHERE {
?prodClass rdfs:subClassOf* pv:Product .
?prod a ?prodClass ;
pv:compatibleProduct ?compatible .
?prod pv:price/pv:amount ?prodAmount ;
pv:price/pv:currency "EUR" .
?compatible pv:price/pv:amount ?compatibleAmount ;
pv:price/pv:currency "EUR" .
}
{
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"2.57": 1,
"0.08": 1,
"-4.43": 1,
"-4.56": 1,
"-0.16": 1,
"-3.88": 1,
"-3.59": 1,
"-1.1": 1,
"-1.66": 1,
"-4.69": 1,
"-1.48": 1,
"-1.0": 1,
"-1.93": 1,
"0.79": 1,
"-3.75": 1,
"3.22": 1,
"-1.57": 1,
"-1.92": 1,
"0.1": 1,
"-0.08": 1,
"1.59": 1,
"3.15": 1,
"1.78": 1,
"3.5": 1,
"-2.12": 1,
"2.13": 1,
"1.6": 1,
"-3.83": 1,
"1.14": 1,
"0.07": 1,
"-0.41": 1,
"-0.37": 1,
"2.02": 1,
"-1.17": 1,
"-2.38": 1,
"-2.79": 1,
"0.28": 1,
"-1.41": 1,
"0.47": 1,
"0.03": 1,
"-0.34": 1,
"1.28": 1,
"-0.6": 1,
"-0.73": 1,
"3.88": 1,
"2.21": 1,
"0.25": 1,
"-1.38": 1,
"1.95": 1,
"-3.23": 1,
"0.19": 1,
"3.12": 1,
"0.59": 1,
"-0.11": 1,
"5.19": 1,
"1.69": 1,
"0.18": 1,
"0.94": 1,
"-0.52": 1,
"0.72": 1,
"3.68": 1,
"0.86": 1,
"3.19": 1,
"-1.06": 1,
"0.48": 1,
"3.42": 1,
"4.73": 1,
"3.1": 1,
"1.51": 1,
"5.24": 1,
"1.36": 1,
"4.6": 1,
"1.32": 1,
"-4.8": 1,
"0.57": 1,
"-0.46": 1,
"-2.33": 1,
"-0.18": 1,
"-0.12": 1,
"-5.07": 1,
"-3.25": 1,
"-1.03": 1,
"-0.9": 1,
"1.57": 1,
"2.2": 1,
"0.4": 1,
"0.34": 1,
"5.07": 1,
"1.82": 1,
"-3.44": 1,
"-2.21": 1,
"-0.28": 1,
"-1.33": 1,
"-2.66": 1,
"2.0": 1,
"4.62": 1,
"1.02": 1,
"-2.78": 1,
"3.29": 1,
"-1.36": 1,
"4.15": 1,
"3.24": 1,
"-4.19": 1,
"-3.31": 1,
"0.85": 1,
"3.79": 1,
"-4.29": 1,
"-0.56": 1,
"1.63": 1,
"-1.65": 1,
"2.92": 1,
"1.24": 1,
"4.07": 1,
"-0.98": 1,
"1.94": 1,
"5.3": 1,
"-3.37": 1,
"1.03": 1,
"-0.92": 1,
"-1.87": 1,
"-0.26": 1,
"0.46": 1,
"0.68": 1,
"-2.45": 1,
"1.15": 1,
"-2.8": 1,
"0.52": 1,
"2.09": 1,
"-0.91": 1,
"-2.89": 1,
"-2.02": 1,
"-2.42": 1,
"0.35": 1,
"1.49": 1,
"-0.47": 1,
"4.99": 1,
"-1.95": 1,
"2.24": 1,
"-2.81": 1,
"-0.29": 1,
"1.33": 1,
"-0.25": 1,
"-2.77": 1,
"-1.31": 1,
"-3.57": 1,
"-1.28": 1,
"-2.9": 1,
"-4.07": 1,
"-0.71": 1,
"-3.01": 1,
"0.04": 1,
"0.8": 1,
"-2.35": 1,
"-2.7": 1,
"-5.53": 1,
"-4.06": 1,
"-3.81": 1,
"-5.11": 1,
"-2.09": 1,
"0.3": 1,
"2.56": 1,
"-1.74": 1,
"5.67": 1,
"4.5": 1,
"-0.99": 1,
"0.84": 1,
"3.55": 1,
"1.65": 1,
"2.94": 1,
"3.37": 1,
"0.36": 1,
"-2.01": 1,
"-2.98": 1,
"0.14": 1,
"1.88": 1,
"-1.32": 1,
"0.23": 1,
"4.09": 1,
"3.07": 1,
"-0.3": 1,
"-1.98": 1,
"-0.23": 1,
"-1.42": 1,
"-1.19": 1,
"-4.15": 1,
"-4.11": 1,
"0.88": 1,
"-1.08": 1,
"-2.41": 1,
"-0.1": 1,
"-1.14": 1,
"-1.07": 1,
"-4.54": 1,
"-0.79": 1,
"-4.97": 1,
"-1.94": 1,
"1.64": 1,
"1.45": 1,
"2.93": 1,
"-0.04": 1,
"2.27": 1,
"1.27": 1,
"0.42": 1,
"-0.58": 1,
"1.99": 1,
"-2.68": 1,
"-2.23": 1,
"2.32": 1,
"2.3": 1,
"0.56": 1,
"-0.95": 1,
"-1.13": 1,
"0.89": 1,
"-0.13": 1,
"2.1": 1,
"0.32": 1,
"-0.72": 1,
"2.23": 1,
"-0.33": 1,
"1.81": 1,
"-2.11": 1,
"-2.28": 1,
"-0.31": 1,
"-3.65": 1,
"-2.29": 1,
"-1.9": 1,
"1.48": 1,
"-0.2": 1,
"2.59": 1,
"3.66": 1,
"2.77": 1,
"-1.47": 1,
"-0.03": 1,
"-3.28": 1,
"-1.63": 1,
"-3.9": 1,
"-0.07": 1,
"1.07": 1,
"0.13": 1,
"-0.53": 1,
"-1.05": 1,
"0.53": 1,
"2.7": 1,
"2.41": 1,
"0.66": 1,
"-0.54": 1,
"3.21": 1,
"2.74": 1,
"1.89": 1,
"3.48": 1,
"-1.62": 1,
"-1.69": 1,
"-0.43": 1,
"3.97": 1,
"4.66": 1,
"2.66": 1,
"3.86": 1,
"-1.72": 1,
"1.39": 1,
"1.91": 1,
"1.56": 1,
"-1.51": 1,
"2.46": 1,
"-0.51": 1,
"0.87": 1,
"1.76": 1,
"1.97": 1,
"-5.1": 1,
"-1.82": 1,
"-3.86": 1,
"4.46": 1,
"0.71": 1,
"4.8": 1,
"2.6": 1,
"2.78": 1,
"-3.24": 1,
"-3.07": 1,
"-4.6": 1,
"-0.38": 1,
"0.01": 1,
"1.3": 1,
"-0.42": 1,
"0.41": 1,
"-0.76": 1,
"-2.83": 1,
"-3.6": 1,
"0.76": 1,
"1.31": 1,
"-1.67": 1,
"-1.04": 1,
"-3.99": 1,
"-0.74": 1,
"1.66": 1,
"1.08": 1,
"0.91": 1,
"-4.62": 1,
"-1.2": 1,
"0.95": 1,
"-1.27": 1,
"-4.17": 1,
"-1.76": 1,
"-2.15": 1,
"1.17": 1,
"2.17": 1,
"-0.86": 1,
"-2.6": 1,
"-0.68": 1,
"1.58": 1,
"0.96": 1,
"2.08": 1,
"-0.05": 1,
"2.36": 1,
"-1.8": 1,
"-2.3": 1,
"0.2": 1,
"-1.96": 1,
"2.8": 1,
"2.95": 1,
"0.75": 1,
"-2.03": 1,
"-0.94": 1,
"-1.46": 1,
"-0.22": 1,
"2.18": 1,
"-0.21": 1,
"-0.06": 1,
"3.84": 1,
"-4.08": 1,
"-2.59": 1,
"-2.76": 1,
"1.46": 1,
"-2.74": 1,
"4.04": 1,
"2.31": 1,
"1.7": 1,
"5.1": 1,
"0.12": 1,
"1.9": 1,
"-3.63": 1,
"-4.02": 1,
"-5.21": 1,
"-4.26": 1,
"-5.6": 1,
"-5.69": 1,
"0.11": 1,
"4.17": 1,
"4.38": 1,
"0.67": 1,
"4.63": 1,
"0.5": 1,
"-1.49": 1,
"-1.12": 1,
"-0.96": 1,
"2.38": 1,
"3.59": 1,
"-4.38": 1,
"0.06": 1,
"-1.97": 1,
"-3.51": 1,
"-0.85": 1,
"3.35": 1,
"0.21": 1,
"2.39": 1,
"3.01": 1,
"-2.08": 1,
"3.6": 1,
"-1.02": 1,
"-0.61": 1,
"-0.57": 1,
"-0.39": 1,
"-0.01": 1,
"4.02": 1,
"-3.49": 1,
"-3.85": 1,
"5.75": 1,
"0.99": 1,
"1.29": 1,
"1.72": 1,
"1.37": 1,
"-1.29": 1,
"-0.59": 1,
"-2.64": 1,
"-3.97": 1,
"1.74": 1,
"5.71": 1,
"5.21": 1,
"-2.56": 1,
"5.37": 1,
"2.52": 1,
"1.13": 1,
"3.23": 1,
"-1.23": 1,
"1.18": 1,
"-1.18": 1,
"-3.34": 1,
"-2.2": 1,
"-1.44": 1,
"-1.81": 1,
"-3.92": 1,
"0.54": 1,
"4.14": 1,
"-0.45": 1,
"-0.63": 1,
"-1.56": 1,
"0.69": 1,
"-2.84": 1,
"-0.97": 1,
"-1.99": 1,
"2.96": 1,
"0.29": 1,
"-3.84": 1,
"2.84": 1,
"3.61": 1,
"2.01": 1,
"0.73": 1,
"0.98": 1,
"-4.89": 1,
"-3.35": 1,
"3.65": 1,
"4.28": 1,
"-3.66": 1,
"2.15": 1,
"0.43": 1,
"3.56": 1,
"1.1": 1,
"2.29": 1,
"1.38": 1,
"4.4": 1,
"-0.36": 1,
"2.58": 1,
"0.16": 1,
"2.69": 1,
"2.55": 1,
"2.34": 1,
"0.02": 1,
"-1.4": 1,
"1.26": 1,
"-2.47": 1,
"-3.19": 1,
"0.49": 1,
"2.44": 1,
"-0.27": 1,
"1.93": 1,
"2.65": 1,
"0.92": 1,
"0.38": 1,
"-0.48": 1,
"-1.54": 1,
"0.81": 1,
"4.39": 1,
"-3.12": 1,
"4.23": 1,
"0.74": 1,
"-2.44": 1,
"-2.71": 1,
"-3.16": 1,
"-3.77": 1,
"-3.4": 1,
"-2.34": 1,
"-1.24": 1,
"-1.15": 1,
"-1.7": 1,
"-2.04": 1,
"0.05": 1,
"3.08": 1,
"-2.27": 1,
"-1.3": 1,
"-2.95": 1,
"3.76": 1,
"0.63": 1,
"-1.73": 1,
"1.67": 1,
"-4.33": 1,
"-3.8": 1,
"-3.33": 1,
"-4.66": 1,
"-2.0": 1,
"1.98": 1,
"3.03": 1,
"3.2": 1,
"4.91": 1,
"0.0": 1,
"1.96": 1,
"1.21": 1,
"-3.42": 1,
"-0.19": 1,
"-0.65": 1,
"-1.91": 1,
"-0.87": 1,
"1.42": 1,
"0.93": 1,
"1.09": 1,
"2.97": 1,
"-4.0": 1,
"-0.88": 1,
"3.69": 1,
"-2.1": 1,
"3.92": 1,
"4.21": 1,
"2.11": 1,
"-4.93": 1,
"-1.26": 1,
"4.49": 1,
"3.52": 1,
"1.53": 1,
"1.23": 1,
"-1.85": 1,
"1.05": 1,
"1.73": 1,
"1.4": 1,
"-2.49": 1,
"-4.73": 1,
"-3.22": 1,
"-0.8": 1,
"-2.13": 1,
"-1.16": 1,
"3.82": 1,
"3.33": 1,
"1.19": 1,
"0.22": 1,
"-3.3": 1,
"0.24": 1,
"2.04": 1,
"3.75": 1,
"4.29": 1,
"5.46": 1,
"1.8": 1,
"1.41": 1,
"4.93": 1,
"5.34": 1,
"1.22": 1,
"-2.18": 1,
"-5.31": 1,
"3.3": 1,
"-1.75": 1,
"-3.48": 1,
"-2.92": 1,
"0.39": 1,
"5.69": 1,
"-0.67": 1,
"3.96": 1,
"2.71": 1,
"0.27": 1,
"1.54": 1,
"2.16": 1,
"3.11": 1,
"3.31": 1,
"4.06": 1,
"1.75": 1,
"-0.17": 1,
"2.06": 1,
"-2.94": 1,
"-2.58": 1,
"-3.38": 1,
"-1.43": 1,
"-1.09": 1,
"2.45": 1,
"-3.82": 1,
"-2.36": 1,
"1.43": 1,
"0.83": 1,
"-2.43": 1,
"-0.81": 1,
"-1.64": 1,
"2.68": 1,
"0.45": 1,
"3.05": 1,
"-3.69": 1,
"0.31": 1,
"0.51": 1,
"2.79": 1,
"0.37": 1,
"5.43": 1,
"2.12": 1,
"1.85": 1,
"-1.58": 1,
"-3.5": 1,
"3.93": 1,
"1.11": 1,
"-5.26": 1,
"-2.69": 1,
"0.77": 1,
"4.36": 1,
"-1.39": 1,
"4.0": 1,
"1.2": 1,
"5.6": 1,
"3.63": 1,
"1.16": 1,
"2.47": 1,
"-1.88": 1,
"0.61": 1,
"-0.66": 1,
"-2.16": 1,
"2.89": 1,
"-3.09": 1,
"-3.79": 1,
"-2.91": 1,
"-4.28": 1,
"-1.34": 1,
"-3.68": 1,
"0.17": 1,
"3.34": 1,
"5.31": 1,
"-5.05": 1,
"-4.21": 1,
"-2.24": 1,
"-1.55": 1,
"2.05": 1,
"3.57": 1,
"-3.46": 1,
"-1.6": 1,
"0.9": 1,
"3.77": 1,
"-1.89": 1,
"0.58": 1,
"4.96": 1,
"-3.29": 1,
"-2.4": 1,
"-4.5": 1,
"3.09": 1,
"3.16": 1,
"2.9": 1,
"3.46": 1,
"3.7": 1,
"2.81": 1,
"-1.5": 1,
"1.87": 1,
"2.33": 1,
"-2.93": 1,
"2.83": 1,
"4.34": 1,
"-3.76": 1,
"1.12": 1,
"-3.05": 1,
"0.97": 1,
"-2.39": 1,
"-4.12": 1,
"-4.96": 1,
"-4.49": 1,
"-2.32": 1,
"-3.2": 1,
"-3.11": 1,
"4.33": 1,
"4.9": 1,
"-0.93": 1,
"0.15": 1,
"-0.4": 1,
"-3.7": 1,
"-0.89": 1,
"-1.53": 1,
"-3.52": 1,
"4.08": 1,
"-1.86": 1,
"-4.46": 1,
"-3.27": 1,
"-5.37": 1,
"-2.46": 1,
"4.84": 1,
"2.49": 1,
"1.04": 1,
"3.28": 1,
"-3.03": 1,
"-4.84": 1,
"-3.61": 1,
"-0.77": 1,
"1.35": 1,
"-2.31": 1,
"4.11": 1,
"-2.96": 1,
"-0.49": 1,
"3.83": 1,
"-3.32": 1,
"4.54": 1,
"-3.15": 1,
"0.6": 1,
"-0.78": 1,
"-0.69": 1,
"-0.14": 1,
"-0.35": 1,
"-0.7": 1,
"-0.75": 1,
"-4.14": 1,
"-5.43": 1,
"-2.55": 1,
"1.34": 1,
"2.14": 1,
"3.81": 1,
"3.44": 1,
"-4.59": 1,
"-4.36": 1,
"-5.19": 1,
"-1.59": 1,
"5.57": 1,
"-5.33": 1,
"1.62": 1,
"-4.4": 1,
"-2.52": 1,
"-0.82": 1,
"-3.56": 1,
"-5.0": 1,
"-2.17": 1,
"-4.7": 1,
"1.52": 1,
"-4.63": 1,
"-3.96": 1,
"0.26": 1,
"4.22": 1,
"4.69": 1,
"4.76": 1,
"4.26": 1,
"-0.09": 1,
"2.03": 1,
"-0.84": 1,
"1.68": 1,
"-1.83": 1,
"-2.06": 1,
"-1.11": 1,
"-2.05": 1,
"-2.48": 1,
"-5.58": 1,
"-3.04": 1,
"4.59": 1,
"0.7": 1,
"-0.15": 1,
"-2.65": 1,
"-1.37": 1,
"-5.24": 1,
"-4.9": 1,
"0.78": 1,
"-3.14": 1,
"-1.45": 1,
"-1.68": 1,
"3.4": 1,
"1.55": 1,
"0.62": 1,
"3.32": 1,
"-4.34": 1,
"-1.78": 1,
"2.4": 1,
"-0.24": 1,
"2.98": 1,
"-4.75": 1,
"0.33": 1,
"2.35": 1,
"5.33": 1,
"5.58": 1,
"5.53": 1,
"1.47": 1,
"-4.64": 1,
"-4.51": 1,
"-1.21": 1,
"-5.46": 1,
"-5.61": 1,
"-0.5": 1,
"-1.35": 1,
"3.14": 1,
"3.51": 1,
"0.65": 1,
"-2.85": 1,
"-3.95": 1,
"-2.97": 1,
"3.49": 1,
"-0.83": 1,
"3.95": 1,
"-4.91": 1,
"3.8": 1,
"2.64": 1,
"-4.23": 1,
"3.47": 1,
"-2.14": 1,
"2.82": 1,
"2.28": 1,
"2.91": 1,
"-3.53": 1,
"2.43": 1,
"2.48": 1,
"-2.57": 1,
"-3.08": 1,
"2.85": 1,
"4.12": 1,
"3.85": 1,
"-4.39": 1,
"-1.22": 1,
"0.09": 1,
"-2.54": 1,
"3.38": 1,
"2.54": 1,
"4.56": 1,
"4.64": 1,
"-0.02": 1,
"4.75": 1,
"-3.55": 1,
"-1.52": 1,
"-2.82": 1,
"-4.22": 1,
"3.04": 1,
"1.92": 1,
"-5.67": 1,
"1.5": 1,
"3.53": 1,
"-3.93": 1,
"-5.34": 1,
"-4.04": 1,
"2.42": 1,
"1.06": 1,
"5.26": 1,
"5.05": 1,
"4.19": 1,
"-3.21": 1,
"1.83": 1,
"-5.3": 1,
"3.9": 1,
"4.97": 1,
"3.25": 1,
"-4.09": 1,
"3.27": 1,
"3.99": 1,
"-4.99": 1,
"1.0": 1,
"4.89": 1,
"4.43": 1,
"4.51": 1,
"4.7": 1,
"2.76": 1,
"5.61": 1,
"1.86": 1,
"5.11": 1,
"-3.47": 1,
"0.82": 1,
"5.0": 1,
"-3.1": 1,
"-5.57": 1,
"1.44": 1,
"-0.32": 1,
"-5.71": 1,
"-5.75": 1,
"-4.76": 1,
"-0.62": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?product ?productLabel ?compatibleProduct ?compatibleProductLabel ?amount ?amountOther ?currency ?currencyOther ((?amount - ?amountOther) AS ?priceDiff) WHERE {
?product pv:compatibleProduct ?compatibleProduct .
FILTER(?product != ?compatibleProduct)

OPTIONAL {
?product pv:price ?priceNode .
?priceNode pv:amount ?amount .
OPTIONAL { ?priceNode pv:currency ?currency }
}
OPTIONAL {
?compatibleProduct pv:price ?priceNode2 .
?priceNode2 pv:amount ?amountOther .
OPTIONAL { ?priceNode2 pv:currency ?currencyOther }
}

OPTIONAL { ?product rdfs:label ?pLbl . }
OPTIONAL { ?product pv:name ?pName . }
BIND(COALESCE(?pLbl, ?pName, STR(?product)) AS ?productLabel)

OPTIONAL { ?compatibleProduct rdfs:label ?cLbl . }
OPTIONAL { ?compatibleProduct pv:name ?cName . }
BIND(COALESCE(?cLbl, ?cName, STR(?compatibleProduct)) AS ?compatibleProductLabel)
}
ORDER BY ?product ?compatibleProduct
{
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"A145-1240844 - Bipolar-junction Coil Compensator Transducer": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"A181-1118563 - Compensator Switch": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"A315-1730287 - Network Dipole": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A391-9508821 - Oscillator Compensator": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"A529-2906246 - Sensor Crystal": 1,
"A560-7347187 - Oscillator Driver": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"A599-2465791 - Driver Memristor": 1,
"A607-3251492 - Bipolar-junction Transistor Compensator": 1,
"A617-7075018 - Crystal Switch": 1,
"A628-8869626 - Inductor Gauge Oscillator": 1,
"A688-6056899 - Multiplexer Inductor": 1,
"A739-4780210 - Memristor Driver Strain": 1,
"A750-6901242 - Film Resistor Memristor Meter": 1,
"A755-9228475 - Resistor Driver": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"A828-3713433 - Multiplexer Breaker": 1,
"A837-2549775 - LCD Gauge": 1,
"A932-9527078 - Ceramic Multiplexer Potentiometer Gauge": 1,
"A964-7949458 - Bipolar-junction Encoder Transducer": 1,
"A981-3634031 - Driver Memristor": 1,
"A994-9085459 - LCD Compensator": 1,
"A998-9941987 - Flow Compensator": 1,
"B120-9942467 - Coil Driver": 1,
"B131-7597100 - LCD Sensor Transducer": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"B161-8326597 - Inductor Potentiometer": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"B232-9941304 - Ceramic Rheostat Compensator": 1,
"B286-1369879 - Flow Coil Meter": 1,
"B308-8130581 - Memristor Breaker": 1,
"B365-4394675 - Flow Gauge Resonator Breaker": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B429-3694560 - Network Switch": 1,
"B436-6020212 - Potentiometer Crystal": 1,
"B488-6957957 - Strain Capacitor": 1,
"B507-9536014 - LCD Network": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B541-8783084 - Flow Potentiometer Gauge": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"B633-4277974 - Multiplexer Strain": 1,
"B646-2108570 - Dipole Transducer": 1,
"B688-8088841 - Log-periodic Crystal Rheostat Encoder": 1,
"B693-5414825 - Planck Transformer Transistor Capacitor": 1,
"B818-8738213 - Crystal Capacitor": 1,
"B820-6334766 - LCD Strain Capacitor": 1,
"B825-7596233 - Resistor Compensator": 1,
"B888-3582334 - Aluminum Potentiometer Crystal": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"B937-9245602 - Driver Compensator": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"C182-2689274 - Potentiometer Driver": 1,
"C200-5363446 - Network Transducer": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"C247-3833661 - Encoder Transformer": 1,
"C371-9169438 - Polymer Transducer Meter": 1,
"C375-1115425 - Polymer Inductor Gauge Rheostat": 1,
"C390-4121800 - Sensor Strain": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"C431-5986267 - Transformer Meter": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"C527-6179790 - LCD Oscillator Sensor": 1,
"C551-8482722 - Planck Transducer": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"C622-9716605 - Oscillator Transducer": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"C633-6541408 - Field-effect Potentiometer Transformer Switch": 1,
"C697-6765940 - Network Driver": 1,
"C699-1385746 - Resistor Driver Breaker": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"C770-9751514 - Transistor Resonator Breaker": 1,
"C799-8367143 - Coil Strain Meter": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"C831-2580759 - Warp": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"C844-8161134 - Crystal Compensator": 1,
"C845-4085909 - Flow Network Strain": 1,
"C916-8310851 - Bipolar-junction Oscillator Transformer": 1,
"C917-9516418 - LCD Coil": 1,
"C970-6304679 - Ceramic Coil Rheostat": 1,
"C977-9932879 - Memristor Encoder": 1,
"D160-4387774 - Gauge Transformer": 1,
"D194-9594371 - Sensor Gauge Transistor": 1,
"D215-3449390 - Gauge Crystal": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"D243-3238752 - Log-periodic Transistor Encoder Compensator": 1,
"D331-6211280 - LCD Coil Transistor": 1,
"D334-6681399 - Resistor Inductor Gauge": 1,
"D371-6210252 - Memristor Capacitor Transformer": 1,
"D381-6342696 - Inductor": 1,
"D400-2425852 - Sensor Crystal": 1,
"D483-7794770 - Memristor Gauge": 1,
"D516-5106885 - Driver Rheostat Capacitor": 1,
"D518-3930277 - Sensor Resonator": 1,
"D519-3521758 - Sensor Driver Resonator": 1,
"D525-4805979 - Compensator Transducer": 1,
"D544-9061559 - Rheostat Capacitor Meter": 1,
"D548-3561584 - Potentiometer Gauge Compensator": 1,
"D599-6113892 - Aluminum Multiplexer Coil Strain": 1,
"D603-1225899 - Field-effect Memristor Resonator Transducer": 1,
"D605-8095260 - Network Inductor": 1,
"D642-3058791 - Polymer LCD Dipole Switch": 1,
"D679-1940878 - LCD Potentiometer Transducer": 1,
"D729-5737042 - Coil Resistor Warp": 1,
"D762-3837218 - Inductor Capacitor Switch": 1,
"D844-3535311 - Resistor Gauge Encoder": 1,
"D903-5325470 - Flow Crystal Rheostat": 1,
"D973-4134519 - Aluminum Network Transducer": 1,
"E172-8066897 - Driver Compensator": 1,
"E187-6115721 - LCD Inductor Transducer": 1,
"E189-1255687 - LCD Potentiometer Breaker": 1,
"E246-3200290 - Field-effect Network Rheostat": 1,
"E267-7496794 - Crystal Rheostat": 1,
"E296-9034321 - Heisenberg Inductor Breaker Encoder": 1,
"E358-6492536 - Resistor Crystal": 1,
"E365-4375068 - Strain Compensator": 1,
"E373-8515317 - Field-effect Resistor Resonator": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E416-7318916 - Dipole Crystal": 1,
"E424-4700158 - Rheostat Compensator Meter": 1,
"E469-1218832 - Dipole Crystal": 1,
"E471-9316820 - Bipolar-junction Coil Dipole Transformer": 1,
"E495-3503010 - Dipole Resonator Transformer": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"E529-9160800 - Network Inductor": 1,
"E558-1962104 - Planck Breaker Compensator": 1,
"E563-8448172 - Warp Capacitor Meter": 1,
"E576-3538706 - Encoder Breaker": 1,
"E585-3605747 - Resistor Dipole": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"E617-6594892 - Field-effect Driver Strain Compensator": 1,
"E652-6887116 - Gauge Compensator": 1,
"E661-6880042 - Crystal Rheostat Breaker": 1,
"E737-8373948 - Oscillator Inductor": 1,
"E793-4560979 - Capacitor Resonator Compensator": 1,
"E812-9665212 - Bipolar-junction LCD Potentiometer Encoder": 1,
"E813-9861759 - Ceramic Memristor Warp": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"E829-2591611 - Memristor Compensator": 1,
"E835-1316991 - Resistor Breaker": 1,
"E868-5063965 - Coil Compensator": 1,
"E882-2235305 - Phase Multiplexer Network Warp": 1,
"E917-4866901 - Capacitor Warp": 1,
"E938-3071637 - LCD Dipole": 1,
"E952-1325145 - Driver Gauge": 1,
"E958-8187096 - Multiplexer Resistor Driver": 1,
"F126-7002599 - Log-periodic Oscillator Transistor": 1,
"F146-1429118 - Flow Gauge Rheostat Encoder": 1,
"F179-4094930 - Bipolar-junction Sensor Crystal": 1,
"F198-1414890 - Crystal Transformer": 1,
"F204-7999856 - Meter Warp": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"F264-7752472 - Resonator Switch": 1,
"F266-5876962 - Multiplexer Transistor": 1,
"F344-7012314 - Switch Encoder Transducer": 1,
"F383-6450755 - Strain Encoder": 1,
"F388-7030185 - Oscillator Transistor Transducer": 1,
"F442-1761220 - Aluminum Oscillator Transistor Strain": 1,
"F496-3982542 - Resonator Rheostat Breaker": 1,
"F553-8518538 - Aluminum Sensor Capacitor": 1,
"F565-7076382 - Dipole Resonator Transducer": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"F661-8988230 - Warp Transistor Meter": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"F708-2915261 - Crystal Resonator": 1,
"F735-3322876 - Planck Potentiometer Capacitor": 1,
"F773-4598178 - Transistor Breaker Switch": 1,
"F779-9528637 - Phase Sensor Transistor": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"F800-9858235 - Field-effect Gauge Transistor": 1,
"F812-7003324 - Rheostat Compensator": 1,
"F969-8946081 - Inductor Rheostat": 1,
"G144-5498082 - Multiplexer Transistor Transformer": 1,
"G144-7255154 - Dipole Rheostat Capacitor": 1,
"G179-6566342 - Resistor Rheostat Meter": 1,
"G205-5318100 - LCD Gauge": 1,
"G226-1299624 - Multiplexer Crystal Transformer": 1,
"G249-4926490 - Film Network Crystal": 1,
"G251-8414984 - Coil Rheostat": 1,
"G261-8681976 - Multiplexer Oscillator Inductor": 1,
"G272-3422671 - Resistor Sensor": 1,
"G333-6105148 - Planck Oscillator Encoder Transducer": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"G378-7132339 - Resistor Dipole": 1,
"G403-4566802 - LCD Resonator Warp": 1,
"G420-6271055 - Potentiometer Driver": 1,
"G439-8153345 - Memristor Driver Breaker": 1,
"G444-8036184 - Network Memristor Breaker": 1,
"G451-8179125 - Phase Transistor Warp": 1,
"G494-2537921 - Coil Encoder Switch": 1,
"G556-4971578 - Flow Coil Memristor Breaker": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"G625-4620445 - Log-periodic Driver Compensator": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"G826-1197003 - Heisenberg LCD Oscillator Breaker": 1,
"G858-9670227 - Network Transducer": 1,
"G881-8555057 - Flow Dipole Meter Warp": 1,
"G934-5417476 - Aluminum Multiplexer Memristor Transformer": 1,
"G966-6452177 - Coil Driver Resonator": 1,
"H156-2424615 - Polymer Driver Transistor Breaker": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"H236-9180061 - Oscillator Dipole Capacitor": 1,
"H244-4330589 - LCD Strain": 1,
"H252-2977732 - Field-effect Oscillator Switch Transducer": 1,
"H288-7210201 - Log-periodic Memristor Meter": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"H388-1193255 - Resonator Rheostat": 1,
"H439-1697643 - Log-periodic LCD Gauge": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"H491-2171849 - Multiplexer Meter": 1,
"H502-2553729 - Flow Resistor Inductor Transformer": 1,
"H510-3094779 - Resonator Transformer": 1,
"H538-7285000 - Breaker Meter": 1,
"H569-9184293 - Inductor Rheostat Breaker": 1,
"H577-3512936 - Film Coil Crystal Strain": 1,
"H598-5149929 - Transistor Rheostat": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"H631-9376983 - Aluminum Network Oscillator Capacitor": 1,
"H641-1089353 - Log-periodic Potentiometer Resonator": 1,
"H642-6966395 - Polymer Strain Rheostat": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"H660-8942410 - Sensor Warp": 1,
"H664-9736043 - Log-periodic Potentiometer Resonator": 1,
"H690-4065164 - Heisenberg Oscillator Memristor Meter": 1,
"H745-5284103 - Gauge Breaker Compensator": 1,
"H747-8053953 - Resonator Meter": 1,
"H752-8461936 - Network LCD": 1,
"H754-2495350 - Crystal Breaker": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"H956-3958783 - Aluminum Resistor Transistor Transformer": 1,
"H958-9648652 - Potentiometer Crystal Warp": 1,
"H962-4715431 - Phase Dipole Transformer": 1,
"I199-7642085 - Coil Strain": 1,
"I241-8776317 - Strain Compensator": 1,
"I242-5347848 - Compensator Warp": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"I272-3912947 - Ceramic Inductor Resonator": 1,
"I311-9589498 - Coil LCD Capacitor": 1,
"I314-5607546 - Polymer Resistor Dipole Gauge": 1,
"I334-4449270 - Resistor Dipole Gauge": 1,
"I409-8215134 - Film LCD Transducer": 1,
"I468-8034393 - Network Rheostat": 1,
"I479-8852507 - Sensor Memristor Strain": 1,
"I482-3778442 - Dipole Rheostat Compensator": 1,
"I532-1549244 - Resonator Encoder": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"I625-9097378 - Coil Compensator": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"I679-1230971 - Memristor Compensator": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"I771-2451857 - Potentiometer Breaker Oscillator": 1,
"I884-8763759 - Ceramic Inductor Breaker": 1,
"I892-8435352 - Heisenberg LCD Driver": 1,
"I904-2574215 - Coil Encoder": 1,
"I965-1821441 - Multiplexer Resistor": 1,
"I966-3317124 - Dipole Breaker Transducer": 1,
"J129-5121523 - Inductor Driver Transducer": 1,
"J154-2269983 - Capacitor Compensator": 1,
"J164-5917711 - Film Multiplexer Crystal Rheostat": 1,
"J178-5863159 - Crystal Transducer": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"J209-5198739 - Phase Memristor Capacitor": 1,
"J225-9158499 - Resistor Rheostat Capacitor": 1,
"J234-3498557 - Inductor Driver Breaker": 1,
"J259-5185660 - Memristor Encoder": 1,
"J370-9195708 - Multiplexer Potentiometer Compensator": 1,
"J391-2253339 - Heisenberg LCD Resonator": 1,
"J420-5667802 - Ceramic Inductor Crystal Transformer": 1,
"J437-7431991 - Potentiometer Crystal": 1,
"J470-3164222 - Multiplexer Memristor Rheostat": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"J505-2473322 - Coil Rheostat Transducer": 1,
"J518-7067023 - Phase Oscillator Strain": 1,
"J519-7020928 - Driver Transducer": 1,
"J544-6748850 - LCD Compensator": 1,
"J555-1586043 - Transformer Inductor Encoder": 1,
"J571-5923698 - Multiplexer Resistor": 1,
"J575-3390923 - Phase Coil Capacitor Transducer": 1,
"J625-3464908 - Sensor Crystal Warp": 1,
"J628-3649699 - Breaker Meter": 1,
"J671-5760255 - Driver Crystal": 1,
"J720-4179367 - Phase Sensor Crystal": 1,
"J734-1368842 - Inductor Gauge Meter": 1,
"J769-7213127 - Planck Multiplexer Driver Transistor": 1,
"J781-8212433 - Oscillator Meter": 1,
"J785-9314350 - Inductor Crystal Oscillator": 1,
"J820-7132026 - Polymer Inductor": 1,
"J824-5227925 - Strain Switch": 1,
"J824-9483042 - Dipole Resonator Breaker": 1,
"J826-7793079 - Coil Potentiometer Memristor": 1,
"J856-1304399 - Resistor Transducer": 1,
"J859-3337215 - Inductor Memristor": 1,
"J872-7568181 - Encoder Breaker": 1,
"J878-7667870 - LCD Crystal": 1,
"J986-8306638 - Phase Multiplexer Crystal Transducer": 1,
"J998-8511305 - Resonator Transformer": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"K167-1377420 - Coil Potentiometer Transducer": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"K242-3459162 - Resistor Warp": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"K313-8452822 - Heisenberg Crystal Transformer": 1,
"K334-8882985 - Network Resonator Encoder": 1,
"K367-1320550 - Strain Encoder": 1,
"K375-1173149 - Inductor Breaker": 1,
"K411-1729714 - Driver Gauge": 1,
"K473-9950981 - Coil Compensator": 1,
"K479-8347265 - Phase Resistor Memristor Meter": 1,
"K542-2074800 - Coil Encoder": 1,
"K559-3177627 - Rheostat Transformer Warp": 1,
"K630-6895992 - LCD Gauge Switch": 1,
"K636-3664460 - Memristor Capacitor": 1,
"K651-4147885 - LCD Crystal": 1,
"K662-1238230 - Memristor Transistor Compensator": 1,
"K671-7410535 - Driver Rheostat": 1,
"K689-4865625 - Log-periodic Multiplexer Dipole Transducer": 1,
"K739-4867689 - Multiplexer Resonator Compensator": 1,
"K764-8378288 - Aluminum Resistor Warp": 1,
"K832-2729798 - Resistor Potentiometer Oscillator": 1,
"K845-4116844 - Breaker Encoder Transducer": 1,
"K850-3410875 - Transducer Gauge Switch": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"K926-9334427 - LCD Encoder Compensator": 1,
"K995-8098017 - Resonator Meter": 1,
"L103-3316729 - Multiplexer Potentiometer": 1,
"L128-5499058 - Field-effect Multiplexer Potentiometer": 1,
"L173-2699667 - Coil LCD": 1,
"L189-7913415 - Oscillator Warp": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"L262-1109442 - Polymer Inductor Rheostat Breaker": 1,
"L275-4377274 - Inductor Transformer": 1,
"L316-4863597 - Potentiometer Inductor": 1,
"L365-6842646 - Driver Transducer": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"L485-8083934 - Inductor Warp Switch": 1,
"L536-5185541 - Coil Gauge": 1,
"L557-1467804 - Phase Resistor Transistor Strain": 1,
"L569-8145670 - Capacitor Transistor Compensator": 1,
"L586-5133830 - Multiplexer Dipole": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"L612-4428366 - Resonator Rheostat": 1,
"L619-5092078 - Crystal Resonator Transformer": 1,
"L691-1489542 - Phase Multiplexer Driver Capacitor": 1,
"L741-9253790 - LCD Strain": 1,
"L747-7633290 - Resistor Sensor Encoder": 1,
"L760-6079543 - Resistor Breaker": 1,
"L781-7008508 - Bipolar-junction Multiplexer Inductor Transformer": 1,
"L787-2053792 - Potentiometer Rheostat Compensator": 1,
"L792-8374906 - Sensor Memristor Meter": 1,
"L805-3283253 - Coil Compensator Warp": 1,
"L816-8238278 - Inductor": 1,
"L822-2103281 - Polymer Encoder Switch": 1,
"L855-9772914 - Phase Breaker Encoder": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"L940-7353182 - Resonator Warp": 1,
"L984-7886943 - Resistor Oscillator": 1,
"M128-9664568 - Sensor Rheostat Breaker": 1,
"M175-2087039 - Film Oscillator": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"M206-5050706 - Resistor Transducer": 1,
"M244-7026376 - Coil Compensator": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"M313-3585673 - Heisenberg Memristor Rheostat Transducer": 1,
"M323-1526287 - Encoder Meter": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"M361-5073440 - Film Transformer Transducer": 1,
"M367-8246717 - Potentiometer Gauge Warp": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"M449-5231838 - Transistor Crystal": 1,
"M521-8491113 - Multiplexer Coil Resonator": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"M558-2275045 - Sensor Switch": 1,
"M605-5951566 - Rheostat Transformer": 1,
"M627-4661911 - Phase Memristor Driver": 1,
"M645-5460777 - Log-periodic Multiplexer Rheostat": 1,
"M650-3458375 - Heisenberg Network Strain Encoder": 1,
"M650-8586992 - Memristor Gauge": 1,
"M662-6209836 - Resistor Potentiometer Meter": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"M703-4614993 - Coil Potentiometer Transducer": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"M750-1800450 - Crystal Encoder": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"M774-4843227 - Breaker Transducer": 1,
"M805-4248390 - Polymer Inductor Crystal Capacitor": 1,
"M812-1436368 - Bipolar-junction Crystal Rheostat": 1,
"M827-2856044 - Driver Warp": 1,
"M885-1885470 - Field-effect Transistor Crystal Switch": 1,
"M914-2979544 - Log-periodic Oscillator Sensor": 1,
"M974-1997588 - Potentiometer Dipole": 1,
"M986-2342719 - Resistor Memristor": 1,
"N105-3985051 - Multiplexer Resistor": 1,
"N137-2655981 - Inductor Compensator": 1,
"N153-4376308 - Aluminum Inductor Breaker": 1,
"N180-3300253 - Encoder Transducer": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"N237-3608803 - Flow Capacitor Meter": 1,
"N243-4639047 - Aluminum Resistor Meter": 1,
"N269-8309461 - LCD Potentiometer Warp": 1,
"N317-6012752 - Oscillator Driver Sensor": 1,
"N324-6810821 - Aluminum Rheostat Transformer Warp": 1,
"N324-9642439 - Driver Warp": 1,
"N366-8062929 - Network Oscillator Strain": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"N411-3014396 - Network Compensator": 1,
"N451-2350273 - Network Strain Meter": 1,
"N462-6714196 - Gauge Encoder": 1,
"N480-3487616 - Resonator Transformer": 1,
"N558-1730215 - Flow Coil Dipole Strain": 1,
"N560-4369045 - Resistor Compensator": 1,
"N568-8608034 - Coil Oscillator Switch": 1,
"N573-1498086 - Dipole Transformer": 1,
"N583-9253059 - Dipole Breaker": 1,
"N589-9719896 - Sensor Transformer": 1,
"N654-6497636 - Coil Transformer Compensator": 1,
"N664-8476091 - Rheostat Encoder": 1,
"N687-2334901 - Potentiometer Transducer": 1,
"N694-7625752 - Field-effect Resistor Sensor": 1,
"N704-3896920 - Strain Encoder": 1,
"N733-1946687 - LCD Encoder": 1,
"N744-5971232 - Coil Strain": 1,
"N773-8807466 - Multiplexer Switch": 1,
"N778-8753186 - Planck Multiplexer Transformer Warp": 1,
"N823-7028680 - LCD Potentiometer Switch": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"N869-4606944 - Film Memristor Compensator": 1,
"N879-4735381 - Multiplexer Inductor Crystal": 1,
"N881-4812973 - Meter": 1,
"N892-9855685 - Crystal Strain Capacitor": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"N982-3577798 - Network Transformer": 1,
"N998-2489600 - Bipolar-junction Strain": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"O204-4321819 - Field-effect Resistor Potentiometer Rheostat": 1,
"O212-8971793 - Strain Meter": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"O270-3409076 - Flow Network Dipole Warp": 1,
"O311-4466005 - Coil Inductor": 1,
"O475-7125508 - Multiplexer Oscillator Coil": 1,
"O489-4154201 - Potentiometer Transistor Compensator": 1,
"O491-3823912 - LCD Sensor": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"O502-4324008 - Sensor Transistor Encoder": 1,
"O531-4282131 - Multiplexer": 1,
"O537-7333259 - Oscillator Transformer": 1,
"O553-6585255 - Resistor Encoder Breaker": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"O626-4153303 - Driver Memristor": 1,
"O636-3428529 - Resonator Strain Meter": 1,
"O662-4012383 - Resistor Crystal Encoder": 1,
"O712-3456018 - Log-periodic Compensator": 1,
"O727-5999075 - Field-effect Transistor Rheostat Breaker": 1,
"O748-4307356 - LCD Inductor Oscillator": 1,
"O761-2575092 - Switch Transformer Transducer": 1,
"O856-7652159 - Coil Gauge Strain": 1,
"O857-5463957 - Transistor Compensator": 1,
"O875-5580798 - Heisenberg LCD Network Memristor": 1,
"O906-8511345 - Ceramic Inductor Transistor": 1,
"O944-9764063 - Inductor Memristor Resonator": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"P162-1457428 - Polymer Coil Capacitor Warp": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"P228-7323906 - Bipolar-junction Network Inductor Oscillator": 1,
"P253-1288849 - Dipole Compensator": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"P323-7286189 - Sensor Encoder Warp": 1,
"P360-3533771 - Aluminum Transducer Capacitor Switch": 1,
"P360-3765415 - LCD Dipole": 1,
"P385-1200138 - Potentiometer Resonator": 1,
"P393-8310950 - Multiplexer Crystal Switch": 1,
"P453-8155326 - Encoder Breaker": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"P494-3529490 - Ceramic Crystal Switch": 1,
"P516-8211068 - Film Multiplexer Rheostat Warp": 1,
"P528-2149873 - Encoder Compensator": 1,
"P602-5728865 - Phase Compensator Capacitor Switch": 1,
"P708-1537318 - Bipolar-junction Network Strain": 1,
"P717-5835879 - Rheostat Transformer": 1,
"P729-6290809 - Heisenberg Driver Resonator Transducer": 1,
"P774-3681449 - Resonator Switch": 1,
"P785-3702584 - Log-periodic Multiplexer Potentiometer Memristor": 1,
"P787-7863897 - Switch Transducer": 1,
"P870-6495639 - Inductor Transistor Warp": 1,
"P901-7842562 - Dipole Transistor Strain": 1,
"P903-7514284 - Dipole Capacitor": 1,
"P913-2073572 - Network Dipole Rheostat": 1,
"P925-8919074 - Inductor Switch": 1,
"P957-8177638 - Multiplexer Dipole Transducer": 1,
"P965-2818538 - Warp Compensator Transducer": 1,
"P966-3555304 - Planck Dipole Rheostat Breaker": 1,
"P982-4384687 - Oscillator Sensor Resonator": 1,
"P983-2994865 - Log-periodic Sensor Switch Transducer": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"Q176-6210359 - Oscillator Transistor Crystal": 1,
"Q187-2944814 - Multiplexer Potentiometer LCD": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"Q210-8168184 - Network Multiplexer": 1,
"Q223-1316238 - Dipole Inductor Switch": 1,
"Q245-9575444 - Inductor Driver Encoder": 1,
"Q248-7597886 - Oscillator Strain": 1,
"Q263-2186291 - Sensor Crystal": 1,
"Q316-9683240 - Multiplexer Transistor": 1,
"Q353-5311148 - Ceramic Compensator Breaker Transducer": 1,
"Q476-3668478 - LCD Crystal Resonator": 1,
"Q493-2919102 - Oscillator Capacitor": 1,
"Q516-8248086 - Transducer Switch": 1,
"Q546-7014038 - Field-effect Memristor Rheostat": 1,
"Q594-6895704 - LCD Network": 1,
"Q661-7217088 - Crystal Rheostat": 1,
"Q672-2667601 - Multiplexer Resonator": 1,
"Q694-8417409 - Sensor Crystal": 1,
"Q696-9337626 - Ceramic Coil Breaker": 1,
"Q751-8742744 - Inductor Resonator": 1,
"Q774-7287508 - Flow Potentiometer Crystal Rheostat": 1,
"Q852-7359409 - Ceramic Network Rheostat": 1,
"Q861-1618446 - Bipolar-junction Driver Crystal": 1,
"Q881-7871943 - Oscillator Resonator Compensator": 1,
"Q890-8785073 - Film Dipole Rheostat": 1,
"Q891-1871898 - Coil LCD": 1,
"Q951-7651773 - Coil Compensator": 1,
"Q980-7885274 - Heisenberg Strain Capacitor": 1,
"Q992-9818584 - Flow Oscillator Inductor Compensator": 1,
"R112-2955867 - Oscillator Encoder Compensator": 1,
"R135-6598379 - Capacitor Meter": 1,
"R181-9365849 - Log-periodic LCD Transformer": 1,
"R187-6602262 - Film Resistor Crystal Encoder": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"R231-2442628 - Transformer Transducer": 1,
"R287-3749176 - Log-periodic Memristor Encoder": 1,
"R298-1578179 - Gauge Strain Breaker": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"R338-2935955 - Film Multiplexer Breaker": 1,
"R383-8831143 - Flow Potentiometer Resonator": 1,
"R389-4348258 - Network Gauge": 1,
"R414-3098561 - Multiplexer Meter": 1,
"R454-6248815 - LCD Sensor Network": 1,
"R490-4226805 - Coil Resonator LCD": 1,
"R524-4869682 - Planck Multiplexer Inductor": 1,
"R586-3728998 - Gauge Breaker": 1,
"R591-4930195 - Multiplexer Resonator Transformer": 1,
"R599-8820686 - Film Sensor Dipole": 1,
"R645-9208510 - Memristor Breaker": 1,
"R658-8902629 - Strain Meter": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"R725-9753976 - Coil Resistor Encoder": 1,
"R771-3893828 - Multiplexer LCD Transducer": 1,
"R774-3816629 - Log-periodic Encoder Transducer": 1,
"R786-6586508 - Coil LCD Rheostat": 1,
"R860-6284767 - Oscillator Compensator Warp": 1,
"R862-8479315 - Aluminum Transducer Rheostat Warp": 1,
"R902-1645052 - Film Network Gauge Compensator": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"R944-4832283 - Phase Memristor Strain": 1,
"R946-7112528 - Sensor Breaker": 1,
"S100-7238368 - Sensor Potentiometer": 1,
"S113-2439377 - LCD Potentiometer": 1,
"S174-1960652 - Ceramic Resonator Rheostat": 1,
"S176-7294665 - Planck Gauge Compensator": 1,
"S212-6028302 - Rheostat Encoder": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"S271-9518696 - Crystal Encoder": 1,
"S314-3937138 - Heisenberg Memristor Breaker Switch": 1,
"S388-7116324 - Polymer Inductor Transistor Oscillator": 1,
"S424-4152456 - Potentiometer": 1,
"S429-3352092 - Dipole Switch": 1,
"S439-3814007 - LCD Coil Strain": 1,
"S450-5654221 - Multiplexer Transistor": 1,
"S531-7887299 - Transistor Switch": 1,
"S649-2935217 - LCD Inductor Memristor": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"S840-8753783 - Polymer Multiplexer Sensor": 1,
"S841-8644004 - Flow Sensor Transistor Encoder": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"S877-1860797 - Driver Transistor": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"T119-8723477 - Driver Crystal": 1,
"T124-5609647 - Network Compensator": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"T161-7769514 - Network Breaker Capacitor": 1,
"T230-5902294 - LCD Resistor": 1,
"T274-5886301 - Coil Gauge Transformer": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"T294-9722443 - Heisenberg LCD Crystal Resonator": 1,
"T319-6530857 - Sensor Transducer": 1,
"T341-6404509 - LCD Transducer Meter": 1,
"T348-1607769 - LCD Resistor Sensor": 1,
"T504-8448784 - Flow Potentiometer Gauge Oscillator": 1,
"T586-1678071 - Resistor Transistor Capacitor": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"T608-9573692 - Coil Resonator": 1,
"T721-4459242 - Coil Compensator": 1,
"T725-1852362 - Field-effect Multiplexer Potentiometer": 1,
"T732-3194846 - Film Oscillator Rheostat Transformer": 1,
"T782-3734983 - Dipole Transformer": 1,
"T792-4232124 - Encoder": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"T805-4210259 - Heisenberg Network Oscillator Strain": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"T808-9704137 - Gauge Encoder Breaker": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"T814-8858070 - Multiplexer Transistor": 1,
"T831-2675171 - Planck Coil Oscillator": 1,
"T872-6914723 - Resistor Oscillator": 1,
"T914-4676603 - Crystal Rheostat Meter": 1,
"T941-8766844 - Planck Inductor Gauge Resonator": 1,
"T958-2055544 - Bipolar-junction Network Transformer": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"U217-4742599 - Transistor Transducer": 1,
"U229-5087557 - Log-periodic Sensor Inductor Transistor": 1,
"U281-1671869 - Dipole Transformer Meter": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"U333-8518360 - Driver Switch Transducer": 1,
"U341-6920661 - Capacitor Transducer": 1,
"U360-2815908 - Potentiometer Rheostat": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"U389-9635839 - Multiplexer Switch": 1,
"U489-9025040 - Compensator Warp": 1,
"U501-5365139 - Sensor Transformer Compensator": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"U573-1229465 - Potentiometer Transformer Oscillator": 1,
"U614-3483402 - Sensor Compensator Transducer": 1,
"U619-9969216 - Coil Inductor Transistor": 1,
"U623-2779596 - Multiplexer LCD Switch": 1,
"U651-8669022 - Heisenberg Inductor Rheostat Transformer": 1,
"U681-7406159 - Film Driver Switch": 1,
"U714-9883090 - Aluminum Multiplexer LCD Capacitor": 1,
"U723-8910149 - Memristor Gauge Transformer": 1,
"U733-5722614 - Network Breaker Compensator": 1,
"U743-1581581 - Memristor Driver Strain": 1,
"U772-6050161 - Resonator Encoder Warp": 1,
"U827-2294099 - Potentiometer Inductor Warp": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"U836-7709298 - Driver Switch Transducer": 1,
"U861-6382993 - Compensator Meter": 1,
"U889-6360502 - Encoder Capacitor Compensator": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"U958-4696127 - Memristor Compensator Meter": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"U990-5234138 - LCD Inductor": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"V156-6277722 - Multiplexer Resistor Transducer": 1,
"V178-8820348 - LCD Inductor": 1,
"V285-7238338 - LCD Inductor": 1,
"V382-3883746 - Network Dipole Warp": 1,
"V404-9975399 - Resonator Transformer": 1,
"V421-9533599 - Network Switch": 1,
"V436-9027098 - Polymer Gauge Crystal": 1,
"V437-5667353 - Sensor Driver Strain": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"V488-1866672 - Log-periodic Rheostat Strain Transducer": 1,
"V509-7873455 - LCD Potentiometer Transformer": 1,
"V519-6173906 - Inductor Memristor Breaker": 1,
"V571-2893837 - Network Driver": 1,
"V600-6144297 - Driver Transducer": 1,
"V610-4162567 - Breaker Encoder": 1,
"V645-2413888 - Log-periodic Oscillator Transistor Rheostat": 1,
"V654-5789502 - Polymer Resistor Memristor Strain": 1,
"V673-7881809 - Heisenberg Resistor Resonator Compensator": 1,
"V759-7427700 - LCD Dipole Resonator": 1,
"V876-7098157 - Potentiometer Transistor": 1,
"V881-4674578 - Planck Dipole Driver Crystal": 1,
"V887-9194738 - Gauge Meter Transducer": 1,
"V892-8476786 - Encoder Meter": 1,
"V940-2277346 - Aluminum Oscillator Potentiometer Encoder": 1,
"V999-1676345 - Potentiometer Switch Warp": 1,
"W156-1748173 - Crystal Rheostat Warp": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"W220-5347961 - Ceramic Coil Oscillator Breaker": 1,
"W295-9452529 - Sensor Encoder": 1,
"W344-5163065 - Heisenberg Capacitor Transducer": 1,
"W358-5750223 - Coil Warp": 1,
"W434-6067873 - Network Encoder": 1,
"W436-5301120 - Encoder Transducer": 1,
"W457-2405463 - LCD Gauge Warp": 1,
"W493-4799721 - Network Warp": 1,
"W501-5990901 - Film Memristor Resonator Compensator": 1,
"W521-8006606 - Flow Memristor Transistor Compensator": 1,
"W529-7595129 - Film LCD Strain": 1,
"W579-1877166 - Polymer Oscillator Potentiometer Meter": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"W658-9979899 - Multiplexer Switch": 1,
"W661-3032609 - LCD Inductor Oscillator": 1,
"W686-1387652 - Oscillator Breaker": 1,
"W697-5712939 - Transformer Capacitor": 1,
"W726-4190110 - Ceramic Multiplexer Transistor LCD": 1,
"W769-8151254 - Field-effect LCD Multiplexer Capacitor": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"W780-8057984 - Planck Transformer Compensator": 1,
"W821-9428247 - Dipole Memristor Encoder": 1,
"W846-7438265 - Resistor Memristor Capacitor": 1,
"W847-4354260 - Aluminum Resistor Gauge": 1,
"W872-7508740 - Gauge Rheostat": 1,
"W892-1983772 - Log-periodic Coil Sensor Transducer": 1,
"W903-2104201 - Bipolar-junction Encoder Compensator": 1,
"W981-1196694 - Multiplexer Memristor Breaker": 1,
"W985-1612943 - Aluminum Switch": 1,
"W986-7950553 - Field-effect Memristor Resonator Compensator": 1,
"W988-3702091 - Inductor Rheostat Warp": 1,
"W988-9267091 - Transistor Strain": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"X215-2461803 - Crystal Capacitor": 1,
"X230-3586307 - LCD Network": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"X235-5406274 - Sensor Transducer": 1,
"X283-7840276 - Planck Sensor Dipole Capacitor": 1,
"X324-6249454 - Breaker Meter": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"X375-4984404 - Multiplexer Transistor": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"X480-1491345 - LCD Gauge Crystal": 1,
"X502-7135246 - Heisenberg Resonator Rheostat Transducer": 1,
"X504-5674380 - Ceramic Memristor Resonator Compensator": 1,
"X634-4382180 - Inductor Driver Potentiometer": 1,
"X643-1063819 - Dipole Compensator": 1,
"X716-6172862 - Coil Resonator": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"X874-7370643 - Network Resistor": 1,
"X897-7676293 - Coil Potentiometer Strain": 1,
"X946-6308579 - Field-effect Resistor Encoder": 1,
"X954-5873970 - Bipolar-junction Oscillator Memristor Sensor": 1,
"X989-6385984 - Sensor Encoder Transformer": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"Y162-1430218 - Ceramic Dipole Memristor Breaker": 1,
"Y167-8599364 - Oscillator Meter": 1,
"Y191-7589606 - Gauge Breaker": 1,
"Y299-9772513 - Log-periodic Oscillator Transformer": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"Y372-1509836 - Oscillator Breaker": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"Y632-7948469 - Multiplexer Coil": 1,
"Y676-8284278 - Encoder Warp": 1,
"Y695-6135491 - Polymer Warp": 1,
"Y714-9954664 - Bipolar-junction Oscillator Gauge": 1,
"Y728-2083256 - Gauge Crystal Encoder": 1,
"Y728-5119478 - Sensor Crystal Transducer": 1,
"Y788-8477334 - Inductor Encoder Capacitor": 1,
"Y788-9882822 - Planck Multiplexer Capacitor": 1,
"Y863-3538159 - Multiplexer Rheostat": 1,
"Y884-3616085 - Phase Potentiometer Memristor Sensor": 1,
"Y889-4226936 - Coil Oscillator": 1,
"Y914-2603866 - Aluminum Strain Transformer": 1,
"Y920-5864778 - LCD Sensor Potentiometer": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"Y973-8480546 - Resistor Transistor Switch": 1,
"Y979-3662601 - Memristor Strain Switch": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"Z165-5413714 - Gauge Transducer": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"Z190-5822042 - Polymer Multiplexer Crystal Capacitor": 1,
"Z212-3451369 - Driver Strain": 1,
"Z222-5977620 - Transformer Switch": 1,
"Z249-1364492 - Meter Transducer": 1,
"Z254-1002324 - Transistor Crystal": 1,
"Z272-2955088 - Coil Sensor Resonator": 1,
"Z288-2722877 - Polymer Transistor Breaker Compensator": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"Z293-3675192 - Ceramic Potentiometer Gauge Encoder": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"Z373-9393076 - Resonator Transformer": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"Z439-5790785 - Log-periodic Network Meter Switch": 1,
"Z452-1805723 - Capacitor Switch": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"Z553-4314789 - Dipole Capacitor": 1,
"Z556-4824310 - Memristor Transistor Capacitor": 1,
"Z587-4413312 - Aluminum Dipole Sensor Capacitor": 1,
"Z604-4291151 - Log-periodic Oscillator Capacitor": 1,
"Z615-8618743 - Film Resistor Inductor Switch": 1,
"Z617-4660142 - Ceramic Potentiometer Compensator": 1,
"Z646-5864967 - Coil Encoder Switch": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"Z739-8572107 - Network Potentiometer Gauge": 1,
"Z768-8346288 - Coil Sensor Network": 1,
"Z775-8853334 - Aluminum Multiplexer Dipole": 1,
"Z848-4991684 - Multiplexer Dipole": 1,
"Z872-5435339 - Polymer Gauge Capacitor": 1,
"Z887-4941382 - Encoder Compensator": 1,
"Z889-8463159 - Resistor Inductor": 1,
"Z927-4746244 - Phase Resistor Transistor Meter": 1,
"Z980-8040792 - Inductor Transistor Oscillator": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"3.72": 1,
"1.27": 1,
"3.7": 1,
"0.06": 1,
"3.18": 1,
"3.03": 1,
"4.89": 1,
"1.77": 1,
"5.33": 1,
"0.49": 1,
"2.47": 1,
"0.52": 1,
"2.83": 1,
"3.67": 1,
"1.87": 1,
"2.79": 1,
"1.4": 1,
"1.28": 1,
"0.98": 1,
"2.54": 1,
"5.49": 1,
"4.15": 1,
"5.23": 1,
"4.14": 1,
"3.23": 1,
"1.48": 1,
"2.91": 1,
"5.55": 1,
"4.08": 1,
"5.29": 1,
"1.06": 1,
"5.96": 1,
"5.87": 1,
"5.68": 1,
"1.9": 1,
"0.69": 1,
"4.02": 1,
"2.5": 1,
"4.67": 1,
"3.59": 1,
"1.76": 1,
"5.15": 1,
"0.54": 1,
"0.76": 1,
"1.99": 1,
"1.14": 1,
"3.47": 1,
"5.09": 1,
"2.45": 1,
"5.85": 1,
"4.5": 1,
"5.46": 1,
"3.6": 1,
"4.53": 1,
"2.16": 1,
"0.4": 1,
"2.34": 1,
"5.99": 1,
"4.55": 1,
"0.12": 1,
"3.44": 1,
"2.27": 1,
"1.63": 1,
"5.75": 1,
"4.77": 1,
"2.09": 1,
"4.88": 1,
"0.16": 1,
"2.22": 1,
"0.0": 1,
"1.79": 1,
"4.09": 1,
"3.36": 1,
"5.28": 1,
"5.22": 1,
"5.97": 1,
"2.73": 1,
"4.97": 1,
"2.28": 1,
"1.1": 1,
"4.28": 1,
"5.63": 1,
"2.9": 1,
"1.54": 1,
"1.71": 1,
"3.3": 1,
"1.62": 1,
"3.79": 1,
"5.51": 1,
"1.11": 1,
"2.0": 1,
"4.86": 1,
"2.19": 1,
"3.98": 1,
"0.77": 1,
"4.58": 1,
"2.12": 1,
"0.96": 1,
"2.92": 1,
"3.9": 1,
"0.61": 1,
"2.31": 1,
"1.01": 1,
"2.95": 1,
"5.52": 1,
"2.43": 1,
"0.9": 1,
"0.45": 1,
"5.24": 1,
"4.6": 1,
"5.61": 1,
"2.68": 1,
"2.18": 1,
"5.56": 1,
"0.8": 1,
"4.47": 1,
"1.8": 1,
"5.72": 1,
"2.66": 1,
"0.38": 1,
"3.83": 1,
"5.12": 1,
"5.78": 1,
"4.27": 1,
"1.09": 1,
"0.71": 1,
"4.38": 1,
"2.29": 1,
"2.6": 1,
"2.32": 1,
"4.21": 1,
"1.18": 1,
"2.35": 1,
"3.94": 1,
"5.26": 1,
"2.02": 1,
"0.42": 1,
"5.44": 1,
"1.07": 1,
"1.47": 1,
"2.96": 1,
"2.89": 1,
"0.11": 1,
"0.29": 1,
"3.25": 1,
"0.25": 1,
"0.1": 1,
"2.99": 1,
"5.83": 1,
"1.88": 1,
"4.23": 1,
"0.95": 1,
"3.29": 1,
"1.86": 1,
"1.73": 1,
"0.86": 1,
"3.54": 1,
"3.11": 1,
"5.9": 1,
"3.64": 1,
"2.44": 1,
"3.66": 1,
"4.62": 1,
"2.33": 1,
"5.54": 1,
"4.2": 1,
"1.82": 1,
"3.16": 1,
"5.84": 1,
"0.01": 1,
"4.32": 1,
"0.44": 1,
"2.21": 1,
"1.84": 1,
"3.76": 1,
"2.77": 1,
"3.61": 1,
"0.63": 1,
"3.53": 1,
"1.69": 1,
"5.11": 1,
"3.92": 1,
"3.86": 1,
"0.14": 1,
"2.84": 1,
"5.73": 1,
"0.81": 1,
"0.87": 1,
"3.96": 1,
"2.17": 1,
"5.36": 1,
"3.62": 1,
"3.89": 1,
"4.24": 1,
"5.02": 1,
"1.81": 1,
"0.23": 1,
"4.65": 1,
"4.57": 1,
"3.42": 1,
"4.75": 1,
"1.38": 1,
"0.5": 1,
"1.26": 1,
"3.39": 1,
"5.8": 1,
"5.06": 1,
"5.34": 1,
"2.46": 1,
"1.66": 1,
"0.6": 1,
"1.74": 1,
"1.13": 1,
"2.64": 1,
"4.19": 1,
"3.24": 1,
"4.85": 1,
"4.33": 1,
"4.82": 1,
"1.78": 1,
"3.87": 1,
"5.92": 1,
"4.54": 1,
"3.73": 1,
"2.76": 1,
"2.7": 1,
"3.32": 1,
"3.85": 1,
"4.4": 1,
"1.51": 1,
"0.75": 1,
"0.59": 1,
"2.93": 1,
"4.99": 1,
"0.15": 1,
"3.26": 1,
"0.94": 1,
"2.58": 1,
"2.88": 1,
"5.59": 1,
"1.22": 1,
"4.01": 1,
"0.41": 1,
"4.05": 1,
"3.09": 1,
"4.25": 1,
"2.56": 1,
"3.06": 1,
"4.83": 1,
"1.58": 1,
"1.44": 1,
"2.14": 1,
"0.64": 1,
"1.64": 1,
"3.82": 1,
"5.1": 1,
"3.13": 1,
"2.13": 1,
"3.69": 1,
"0.51": 1,
"4.44": 1,
"5.95": 1,
"0.31": 1,
"1.23": 1,
"1.7": 1,
"5.91": 1,
"0.78": 1,
"4.22": 1,
"2.85": 1,
"3.08": 1,
"4.9": 1,
"3.77": 1,
"4.81": 1,
"1.49": 1,
"5.13": 1,
"2.8": 1,
"3.21": 1,
"5.19": 1,
"5.82": 1,
"0.18": 1,
"1.02": 1,
"0.56": 1,
"3.22": 1,
"4.18": 1,
"5.04": 1,
"2.04": 1,
"5.05": 1,
"5.5": 1,
"5.66": 1,
"5.07": 1,
"3.41": 1,
"2.94": 1,
"2.53": 1,
"1.3": 1,
"1.32": 1,
"2.03": 1,
"2.87": 1,
"4.34": 1,
"3.38": 1,
"5.6": 1,
"1.83": 1,
"0.39": 1,
"1.35": 1,
"4.1": 1,
"0.26": 1,
"2.98": 1,
"3.71": 1,
"3.4": 1,
"5.7": 1,
"1.59": 1,
"0.79": 1,
"2.61": 1,
"5.53": 1,
"0.57": 1,
"2.65": 1,
"5.77": 1,
"3.88": 1,
"0.55": 1,
"1.6": 1,
"3.78": 1,
"1.15": 1,
"1.67": 1,
"5.86": 1,
"3.93": 1,
"5.42": 1,
"2.05": 1,
"3.1": 1,
"4.37": 1,
"0.84": 1,
"4.0": 1,
"3.07": 1,
"3.17": 1,
"4.45": 1,
"0.37": 1,
"0.74": 1,
"5.38": 1,
"1.08": 1,
"1.39": 1,
"1.0": 1,
"1.43": 1,
"1.72": 1,
"0.43": 1,
"0.72": 1,
"5.31": 1,
"5.71": 1,
"4.07": 1,
"3.31": 1,
"2.55": 1,
"1.19": 1,
"5.64": 1,
"4.49": 1,
"2.11": 1,
"3.02": 1,
"5.41": 1,
"2.48": 1,
"0.22": 1,
"2.72": 1,
"3.74": 1,
"5.93": 1,
"2.67": 1,
"3.2": 1,
"2.4": 1,
"1.42": 1,
"4.35": 1,
"3.04": 1,
"4.78": 1,
"3.5": 1,
"3.81": 1,
"0.89": 1,
"4.46": 1,
"0.65": 1,
"2.86": 1,
"0.28": 1,
"0.48": 1,
"4.16": 1,
"5.14": 1,
"1.96": 1,
"0.36": 1,
"0.08": 1,
"3.95": 1,
"4.52": 1,
"5.37": 1,
"3.05": 1,
"2.07": 1,
"1.37": 1,
"1.41": 1,
"5.74": 1,
"2.1": 1,
"1.03": 1,
"5.21": 1,
"2.26": 1,
"3.51": 1,
"5.76": 1,
"1.45": 1,
"0.73": 1,
"0.04": 1,
"0.27": 1,
"1.16": 1,
"2.01": 1,
"0.47": 1,
"2.82": 1,
"4.03": 1,
"2.39": 1,
"1.52": 1,
"4.17": 1,
"2.3": 1,
"3.68": 1,
"1.97": 1,
"4.26": 1,
"2.24": 1,
"5.81": 1,
"0.85": 1,
"2.63": 1,
"0.19": 1,
"2.97": 1,
"4.59": 1,
"5.69": 1,
"0.3": 1,
"0.02": 1,
"0.17": 1,
"0.53": 1,
"3.57": 1,
"5.32": 1,
"4.66": 1,
"5.27": 1,
"5.65": 1,
"5.67": 1,
"3.0": 1,
"4.56": 1,
"1.94": 1,
"1.85": 1,
"4.11": 1,
"2.59": 1,
"1.36": 1,
"3.14": 1,
"1.68": 1,
"4.31": 1,
"5.57": 1,
"0.2": 1,
"4.94": 1,
"4.12": 1,
"0.82": 1,
"1.25": 1,
"5.45": 1,
"4.29": 1,
"3.37": 1,
"2.23": 1,
"1.92": 1,
"EUR": 1,
"-1.8": 1,
"-1.95": 1,
"1.04": 1,
"1.93": 1,
"-1.94": 1,
"1.5": 1,
"-1.93": 1,
"3.84": 1,
"-4.4": 1,
"-0.57": 1,
"-2.9": 1,
"-1.03": 1,
"-0.71": 1,
"-5.11": 1,
"-3.81": 1,
"1.17": 1,
"-1.07": 1,
"-2.11": 1,
"-2.74": 1,
"-2.1": 1,
"-3.23": 1,
"-2.23": 1,
"-1.69": 1,
"-1.28": 1,
"-0.34": 1,
"3.49": 1,
"-0.36": 1,
"-0.21": 1,
"1.46": 1,
"1.57": 1,
"-2.84": 1,
"-3.29": 1,
"0.03": 1,
"4.84": 1,
"-1.47": 1,
"4.06": 1,
"-0.37": 1,
"-2.24": 1,
"-0.76": 1,
"-3.59": 1,
"-4.36": 1,
"0.68": 1,
"1.65": 1,
"-2.3": 1,
"-3.21": 1,
"-4.21": 1,
"-1.24": 1,
"-1.02": 1,
"-4.9": 1,
"-3.97": 1,
"-5.24": 1,
"0.93": 1,
"0.91": 1,
"-1.98": 1,
"-1.37": 1,
"-1.27": 1,
"-0.38": 1,
"-1.53": 1,
"-4.23": 1,
"-3.4": 1,
"-3.77": 1,
"-4.0": 1,
"-1.81": 1,
"-0.95": 1,
"-0.91": 1,
"-1.33": 1,
"-2.66": 1,
"2.41": 1,
"-1.41": 1,
"0.05": 1,
"-3.37": 1,
"-0.43": 1,
"-3.01": 1,
"-1.72": 1,
"3.46": 1,
"1.91": 1,
"-1.51": 1,
"3.19": 1,
"1.56": 1,
"0.07": 1,
"-3.83": 1,
"-2.59": 1,
"-3.68": 1,
"-2.96": 1,
"-0.49": 1,
"-2.92": 1,
"-2.98": 1,
"-4.19": 1,
"0.32": 1,
"-0.99": 1,
"-4.02": 1,
"4.69": 1,
"-5.07": 1,
"-3.25": 1,
"-0.9": 1,
"-0.93": 1,
"-0.68": 1,
"0.67": 1,
"4.63": 1,
"-1.31": 1,
"-2.77": 1,
"-3.33": 1,
"-2.09": 1,
"-2.49": 1,
"-0.87": 1,
"3.52": 1,
"-3.63": 1,
"-4.14": 1,
"-4.28": 1,
"-4.59": 1,
"-0.26": 1,
"-1.92": 1,
"-0.12": 1,
"-3.04": 1,
"-1.35": 1,
"-0.18": 1,
"-0.86": 1,
"2.57": 1,
"-0.02": 1,
"-1.49": 1,
"-1.12": 1,
"-3.82": 1,
"2.42": 1,
"-0.59": 1,
"-3.92": 1,
"-0.46": 1,
"-0.89": 1,
"-2.02": 1,
"-2.14": 1,
"-1.08": 1,
"0.88": 1,
"-2.15": 1,
"-3.34": 1,
"-5.67": 1,
"2.71": 1,
"-3.22": 1,
"0.97": 1,
"-1.63": 1,
"-2.34": 1,
"-0.07": 1,
"-3.9": 1,
"0.99": 1,
"-4.93": 1,
"-1.36": 1,
"-2.56": 1,
"-1.59": 1,
"-4.62": 1,
"-1.2": 1,
"-2.0": 1,
"-3.8": 1,
"-4.66": 1,
"-0.45": 1,
"-0.11": 1,
"-0.92": 1,
"-0.54": 1,
"-2.08": 1,
"-2.94": 1,
"0.35": 1,
"1.98": 1,
"-2.41": 1,
"-2.36": 1,
"5.3": 1,
"-3.16": 1,
"-2.46": 1,
"-2.12": 1,
"-3.14": 1,
"-5.19": 1,
"0.21": 1,
"-2.2": 1,
"5.58": 1,
"-2.38": 1,
"-1.73": 1,
"-0.85": 1,
"2.52": 1,
"3.33": 1,
"-0.94": 1,
"-4.29": 1,
"-4.84": 1,
"-3.61": 1,
"-2.52": 1,
"-0.82": 1,
"-1.34": 1,
"-0.67": 1,
"-1.39": 1,
"-1.15": 1,
"-0.04": 1,
"-3.6": 1,
"-3.48": 1,
"-3.03": 1,
"-0.33": 1,
"-1.88": 1,
"-1.58": 1,
"-1.76": 1,
"-4.17": 1,
"-0.51": 1,
"1.31": 1,
"-2.13": 1,
"-0.53": 1,
"4.43": 1,
"4.51": 1,
"-0.13": 1,
"-0.08": 1,
"-0.09": 1,
"-0.69": 1,
"-4.04": 1,
"-3.28": 1,
"-2.29": 1,
"-4.15": 1,
"-3.57": 1,
"-4.8": 1,
"-0.81": 1,
"-1.18": 1,
"-3.38": 1,
"0.34": 1,
"-0.52": 1,
"-3.09": 1,
"-4.69": 1,
"-2.33": 1,
"-3.65": 1,
"-0.31": 1,
"-2.28": 1,
"-0.03": 1,
"-3.75": 1,
"-1.57": 1,
"1.89": 1,
"-1.97": 1,
"-4.38": 1,
"-3.51": 1,
"-1.9": 1,
"-0.2": 1,
"-0.63": 1,
"-3.55": 1,
"-0.56": 1,
"-1.65": 1,
"-0.5": 1,
"-1.99": 1,
"5.43": 1,
"-2.83": 1,
"-0.8": 1,
"-1.05": 1,
"-2.8": 1,
"-1.85": 1,
"1.34": 1,
"-1.86": 1,
"-4.46": 1,
"-3.32": 1,
"-2.93": 1,
"-2.16": 1,
"-2.95": 1,
"-4.96": 1,
"-0.05": 1,
"-1.48": 1,
"-2.45": 1,
"-2.6": 1,
"-2.31": 1,
"-1.14": 1,
"-3.47": 1,
"0.13": 1,
"-1.91": 1,
"-3.42": 1,
"4.73": 1,
"-0.25": 1,
"-0.98": 1,
"-1.56": 1,
"-5.3": 1,
"2.06": 1,
"-0.58": 1,
"0.58": 1,
"0.7": 1,
"-0.15": 1,
"-5.75": 1,
"-4.76": 1,
"-5.71": 1,
"-3.12": 1,
"2.81": 1,
"-1.04": 1,
"-2.32": 1,
"-4.5": 1,
"-4.75": 1,
"-2.18": 1,
"-3.2": 1,
"4.39": 1,
"-0.79": 1,
"-5.05": 1,
"-2.48": 1,
"-1.5": 1,
"-0.23": 1,
"-1.42": 1,
"-3.53": 1,
"-1.17": 1,
"-2.7": 1,
"-3.66": 1,
"-5.46": 1,
"-5.61": 1,
"-3.49": 1,
"-3.85": 1,
"2.49": 1,
"-1.1": 1,
"-3.44": 1,
"-0.41": 1,
"3.75": 1,
"-0.97": 1,
"-1.55": 1,
"-5.6": 1,
"-5.69": 1,
"4.04": 1,
"-1.11": 1,
"-0.66": 1,
"3.34": 1,
"-0.29": 1,
"1.33": 1,
"3.15": 1,
"-0.35": 1,
"-3.31": 1,
"-0.19": 1,
"-1.78": 1,
"-3.07": 1,
"-1.19": 1,
"-4.63": 1,
"-3.96": 1,
"3.28": 1,
"-1.32": 1,
"0.33": 1,
"2.78": 1,
"-2.21": 1,
"-3.3": 1,
"-0.61": 1,
"-0.83": 1,
"-3.08": 1,
"-2.58": 1,
"-1.29": 1,
"-1.26": 1,
"-0.7": 1,
"-2.69": 1,
"-0.14": 1,
"-1.23": 1,
"4.76": 1,
"-2.57": 1,
"3.01": 1,
"1.29": 1,
"-4.6": 1,
"-3.24": 1,
"-1.82": 1,
"-3.19": 1,
"2.15": 1,
"-1.06": 1,
"-0.72": 1,
"-0.27": 1,
"2.74": 1,
"-4.26": 1,
"-5.21": 1,
"-2.01": 1,
"-1.64": 1,
"-2.79": 1,
"-0.3": 1,
"0.92": 1,
"-0.48": 1,
"-1.54": 1,
"-1.52": 1,
"-0.4": 1,
"1.05": 1,
"-1.16": 1,
"-1.75": 1,
"-2.78": 1,
"3.97": 1,
"2.69": 1,
"-0.77": 1,
"-5.37": 1,
"-1.45": 1,
"-3.52": 1,
"4.93": 1,
"-2.06": 1,
"3.48": 1,
"-1.67": 1,
"-3.88": 1,
"-5.26": 1,
"-1.38": 1,
"-0.42": 1,
"-1.0": 1,
"-1.43": 1,
"1.24": 1,
"-1.62": 1,
"-0.1": 1,
"1.55": 1,
"0.62": 1,
"-4.39": 1,
"-0.96": 1,
"0.83": 1,
"-1.96": 1,
"4.96": 1,
"0.66": 1,
"-3.56": 1,
"-2.89": 1,
"3.65": 1,
"-1.4": 1,
"-1.46": 1,
"-5.1": 1,
"2.38": 1,
"1.95": 1,
"-2.55": 1,
"3.12": 1,
"-0.06": 1,
"-4.34": 1,
"-4.22": 1,
"-2.76": 1,
"-2.68": 1,
"-2.97": 1,
"-4.91": 1,
"-2.39": 1,
"-4.12": 1,
"0.09": 1,
"-0.16": 1,
"-0.28": 1,
"4.8": 1,
"-0.88": 1,
"-2.4": 1,
"1.2": 1,
"-4.89": 1,
"-3.35": 1,
"2.36": 1,
"-3.5": 1,
"-2.05": 1,
"-2.27": 1,
"-5.0": 1,
"-2.17": 1,
"-1.13": 1,
"-2.81": 1,
"-0.22": 1,
"-2.35": 1,
"-4.08": 1,
"-3.11": 1,
"-4.11": 1,
"-4.33": 1,
"-2.85": 1,
"-3.95": 1,
"1.53": 1,
"-3.46": 1,
"-1.74": 1,
"-4.43": 1,
"-4.56": 1,
"-3.15": 1,
"3.55": 1,
"-1.6": 1,
"1.12": 1,
"-0.39": 1,
"-0.01": 1,
"-1.3": 1,
"2.2": 1,
"-3.69": 1,
"-2.65": 1,
"-2.42": 1,
"0.46": 1,
"-4.07": 1,
"-1.44": 1,
"-2.43": 1,
"-4.51": 1,
"-4.64": 1,
"-1.21": 1,
"-0.47": 1,
"-3.84": 1,
"-2.64": 1,
"0.24": 1,
"-0.75": 1,
"-2.04": 1,
"4.7": 1,
"-1.66": 1,
"-5.31": 1,
"-2.47": 1,
"-2.44": 1,
"-2.71": 1,
"-4.97": 1,
"-4.54": 1,
"-0.74": 1,
"-1.68": 1,
"-0.17": 1,
"-3.27": 1,
"-5.57": 1,
"3.56": 1,
"-4.7": 1,
"5.0": 1,
"-0.65": 1,
"-1.09": 1,
"3.35": 1,
"-4.06": 1,
"-4.73": 1,
"-4.49": 1,
"-5.33": 1,
"-2.03": 1,
"-3.99": 1,
"3.8": 1,
"2.08": 1,
"-3.1": 1,
"4.91": 1,
"3.27": 1,
"3.99": 1,
"-1.87": 1,
"-0.73": 1,
"-0.6": 1,
"-1.89": 1,
"-0.24": 1,
"-3.7": 1,
"-1.22": 1,
"-5.53": 1,
"-0.32": 1,
"-5.43": 1,
"-4.99": 1,
"-2.82": 1,
"4.64": 1,
"1.75": 1,
"1.21": 1,
"-5.58": 1,
"4.36": 1,
"-2.54": 1,
"-3.86": 1,
"-1.7": 1,
"-0.78": 1,
"-4.09": 1,
"-3.76": 1,
"-2.91": 1,
"-3.79": 1,
"-0.84": 1,
"-1.83": 1,
"-3.05": 1,
"3.63": 1,
"-0.62": 1,
"-3.93": 1,
"-5.34": 1
}
{
"set_P": 0.6354166666666666,
"set_recall": 1.0,
"set_F": 0.7770700636942676
}
ck26:36-en
Which product area is most
relevant, and what are the top
three associated skills?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?cat ?name
WHERE {
?hw a pv:Hardware ;
pv:hasCategory ?cat .
?cat pv:name ?name .
}
GROUP BY ?cat ?name
ORDER BY DESC(COUNT(*))
LIMIT 3
{
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"http://ld.company.org/prod-instances/prod-cat-Crystal": 1,
"http://ld.company.org/prod-instances/prod-cat-LCD": 1,
"Compensator": 1,
"Crystal": 1,
"LCD": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?topCat ?topCatLabel ?skill ?skillLabel (COUNT(DISTINCT ?mgr) AS ?mgrCount) WHERE {
{
SELECT ?topCat (COUNT(DISTINCT ?prodForCat) AS ?prodCount) (SAMPLE(COALESCE(?lbl0,?name0,STR(?topCat))) AS ?topCatLabel) WHERE {
?prodForCat pv:hasCategory ?topCat .
OPTIONAL { ?topCat rdfs:label ?lbl0 }
OPTIONAL { ?topCat pv:name ?name0 }
} GROUP BY ?topCat
ORDER BY DESC(?prodCount)
LIMIT 1
}
?product pv:hasCategory ?topCat .
?product pv:hasProductManager ?mgr .
?mgr pv:areaOfExpertise ?skill .
OPTIONAL { ?skill rdfs:label ?sLbl }
OPTIONAL { ?skill pv:name ?sName }
BIND(COALESCE(?sLbl,?sName,STR(?skill)) AS ?skillLabel)
}
GROUP BY ?topCat ?topCatLabel ?skill ?skillLabel
ORDER BY DESC(?mgrCount)
LIMIT 3
{
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"Compensator": 1,
"http://ld.company.org/prod-instances/prod-cat-Coil": 1,
"http://ld.company.org/prod-instances/prod-cat-Warp": 1,
"Coil": 1,
"Warp": 1,
"10": 1,
"7": 1
}
{
"set_P": 0.25,
"set_recall": 0.3333333333333333,
"set_F": 0.28571428571428575
}
ck26:36-de
Welcher Produktbereich ist am
relevantesten, und welche sind die
drei wichtigsten damit verbundenen
Fähigkeiten?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?cat ?name
WHERE {
?hw a pv:Hardware ;
pv:hasCategory ?cat .
?cat pv:name ?name .
}
GROUP BY ?cat ?name
ORDER BY DESC(COUNT(*))
LIMIT 3
{
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"http://ld.company.org/prod-instances/prod-cat-Crystal": 1,
"http://ld.company.org/prod-instances/prod-cat-LCD": 1,
"Compensator": 1,
"Crystal": 1,
"LCD": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?category (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?category))) AS ?categoryLabel) ?skill (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?skill))) AS ?skillLabel) (COUNT(DISTINCT ?mgr) AS ?mgrCount)
WHERE {
{
SELECT ?category (COUNT(DISTINCT ?product) AS ?productCount)
WHERE { ?product pv:hasCategory ?category }
GROUP BY ?category
ORDER BY DESC(?productCount)
LIMIT 1
}
?product pv:hasCategory ?category ;
pv:hasProductManager ?mgr .
?mgr pv:areaOfExpertise ?skill .
}
GROUP BY ?category ?skill
ORDER BY DESC(?mgrCount)
LIMIT 3
{
"http://ld.company.org/prod-instances/prod-cat-Compensator": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"http://ld.company.org/prod-instances/prod-cat-Coil": 1,
"http://ld.company.org/prod-instances/prod-cat-Warp": 1,
"10": 1,
"7": 1
}
{
"set_P": 0.16666666666666666,
"set_recall": 0.16666666666666666,
"set_F": 0.16666666666666666
}
ck26:37-en
For each bill of materials, show
the count of parts and the total
material quantity, but display only
those BOMs with more than 600
items, sorted in descending order.
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?bom (COUNT(?part) AS ?partCount) (SUM(?qty) AS ?totalQty)
WHERE {
?bom a pv:BillOfMaterial ;
pv:hasBomPart ?part .
?part pv:quantity ?qty_ .
BIND(xsd:int(?qty_) AS ?qty)
}
GROUP BY ?bom
HAVING (SUM(?qty) > 600)
ORDER BY DESC(SUM(?qty))
{
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-15": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-19": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-4": 1,
"http://ld.company.org/prod-instances/bom-2": 1,
"12": 1,
"11": 1,
"15": 1,
"14": 1,
"13": 1,
"731": 1,
"694": 1,
"689": 1,
"681": 1,
"664": 1,
"647": 1,
"610": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?bom (SAMPLE(COALESCE(?lbl0,?name0,STR(?bom))) AS ?bomLabel) (COUNT(?bomPart) AS ?itemCount) (SUM(xsd:decimal(?qty)) AS ?totalQuantity) WHERE {
?bom pv:hasBomPart ?bomPart .
OPTIONAL { ?bom rdfs:label ?lbl0 }
OPTIONAL { ?bom pv:name ?name0 }
OPTIONAL { ?bomPart pv:hasPart ?part }
OPTIONAL { ?bomPart pv:quantity ?qty }
}
GROUP BY ?bom
HAVING (SUM(xsd:decimal(?qty)) > 600)
ORDER BY DESC(?totalQuantity)
{
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-15": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-19": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-4": 1,
"http://ld.company.org/prod-instances/bom-2": 1,
"MechaVolt Surge": 1,
"QuantMech Voyager": 1,
"TransElectro Voyager": 1,
"MechaScape IonDrive": 1,
"AeroVibe Matrix": 1,
"PulseCraft Vertex": 1,
"NexaCore Integrator": 1,
"12": 1,
"11": 1,
"15": 1,
"14": 1,
"13": 1,
"731.0": 1,
"694.0": 1,
"689.0": 1,
"681.0": 1,
"664.0": 1,
"647.0": 1,
"610.0": 1
}
{
"set_P": 0.46153846153846156,
"set_recall": 0.631578947368421,
"set_F": 0.5333333333333333,
"ndcg": 0.6921827501041263
}
ck26:37-de
Für jede Stückliste die Anzahl der
Teile und die Gesamtmaterialmenge
anzeigen, aber nur die Stücklisten
mit mehr als 600 Artikeln, sortiert
in absteigender Reihenfolge,
ausgeben.
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?bom (COUNT(?part) AS ?partCount) (SUM(?qty) AS ?totalQty)
WHERE {
?bom a pv:BillOfMaterial ;
pv:hasBomPart ?part .
?part pv:quantity ?qty_ .
BIND(xsd:int(?qty_) AS ?qty)
}
GROUP BY ?bom
HAVING (SUM(?qty) > 600)
ORDER BY DESC(SUM(?qty))
{
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-15": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-19": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-4": 1,
"http://ld.company.org/prod-instances/bom-2": 1,
"12": 1,
"11": 1,
"15": 1,
"14": 1,
"13": 1,
"731": 1,
"694": 1,
"689": 1,
"681": 1,
"664": 1,
"647": 1,
"610": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?bom (SAMPLE(COALESCE(?lbl0, ?name0, STR(?bom))) AS ?bomLabel) (COUNT(DISTINCT ?part) AS ?numParts) (SUM(xsd:decimal(?qty)) AS ?totalQuantity)
WHERE {
?bom rdf:type pv:BillOfMaterial .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?bomPart pv:quantity ?qty .
OPTIONAL { ?bom rdfs:label ?lbl0 }
OPTIONAL { ?bom pv:name ?name0 }
}
GROUP BY ?bom
HAVING (SUM(xsd:decimal(?qty)) > 600)
ORDER BY DESC(?numParts)
{
"http://ld.company.org/prod-instances/bom-19": 1,
"http://ld.company.org/prod-instances/bom-4": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-2": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-15": 1,
"MechaScape IonDrive": 1,
"PulseCraft Vertex": 1,
"AeroVibe Matrix": 1,
"NexaCore Integrator": 1,
"TransElectro Voyager": 1,
"MechaVolt Surge": 1,
"QuantMech Voyager": 1,
"15": 1,
"14": 1,
"13": 1,
"12": 1,
"11": 1,
"681.0": 1,
"647.0": 1,
"664.0": 1,
"610.0": 1,
"689.0": 1,
"731.0": 1,
"694.0": 1
}
{
"set_P": 0.46153846153846156,
"set_recall": 0.631578947368421,
"set_F": 0.5333333333333333,
"ndcg": 0.6921827501041263
}
ck26:38-en
Could you give me an updated
contact list that includes each
employee's name, email, phone
number, department, and direct
manager?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?email ?phone ?dept ?manager
WHERE {
?agentClass rdfs:subClassOf* pv:Agent .
?empl a ?agentClass ;
pv:name ?name .
OPTIONAL { ?empl pv:email ?email . }
OPTIONAL { ?empl pv:phone ?phone . }
OPTIONAL { ?empl pv:memberOf/pv:name ?dept . }
OPTIONAL { ?empl pv:hasManager/pv:name ?manager . }
}
{
"Ulrik Denzel": 1,
"Herr Haan Bader": 1,
"Arnelle Gerber": 1,
"Bert Blumstein": 1,
"Ratt Beyer": 1,
"Marius Fux": 1,
"Baldwin Guenther": 1,
"Wolfgang Martin": 1,
"Gretel Roth": 1,
"Corinna Ludwig": 1,
"Henny Foth": 1,
"Jarvis Jans": 1,
"Berlin Schulz": 1,
"Lili Geier": 1,
"Karen Brant": 1,
"Karch Moeller": 1,
"Kevin Feigenbaum": 1,
"Sabrina Geiger": 1,
"Emil Gotti": 1,
"Baldwin Dirksen": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Wanja Hoffmann": 1,
"Kristen Bauers": 1,
"Xochitl Aue": 1,
"Anamchara Foerstner": 1,
"Sabrina Bayer": 1,
"Frauke Faerber": 1,
"Herr Burgh Eichel": 1,
"Elisabeth Harman": 1,
"Erhard Fried": 1,
"Adolfina Hoch": 1,
"Dieterich Blau": 1,
"Sylvester Brant": 1,
"Miles Amsel": 1,
"Yanka Schreiber": 1,
"Lambert Faust": 1,
"Arendt Beitel": 1,
"Siglind Brinkerhoff": 1,
"Valda Everhart": 1,
"Minnie Kuehn": 1,
"Liese Adam": 1,
"Franziska Acker": 1,
"Manfred Foth": 1,
"Nadia Schubert": 1,
"Heinrich Hoch": 1,
"Sigmund Gros": 1,
"Dietlinde Boehme": 1,
"Waldtraud Kuttner": 1,
"Thomas Mueller": 1,
"Reiner Widmann": 1,
"Franz Kornhaeusel": 1,
"Elena Herzog": 1,
"Ulrik.Denzel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Marius.Fux@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Gretel.Roth@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Henny.Foth@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Lili.Geier@company.org": 1,
"Karen.Brant@company.org": 1,
"Karch.Moeller@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Emil.Gotti@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Erhard.Fried@company.org": 1,
"Adolfina.Hoch@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Miles.Amsel@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"Lambert.Faust@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Valda.Everhart@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Liese.Adam@company.org": 1,
"Franziska.Acker@company.org": 1,
"Manfred.Foth@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Dietlinde.Boehme@company.org": 1,
"Waldtraud.Kuttner@company.org": 1,
"Thomas.Mueller@company.org": 1,
"Reiner.Widmann@company.org": 1,
"Franz.Kornhaeusel@company.org": 1,
"Elena.Herzog@company.org": 1,
"(05126) 3204437": 1,
"(03586) 7240528": 1,
"+49-2117-55002657": 1,
"+49-73-917-19816": 1,
"+49-701-5973041": 1,
"+49-9456-94517553": 1,
"+49-1743-24836762": 1,
"(0686) 108701699": 1,
"(0322) 517636576": 1,
"(0938) 228702909": 1,
"(00530) 5040048": 1,
"+49-8295-77923757": 1,
"(0101) 854043584": 1,
"+49-6200-33069465": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-1083-38194095": 1,
"+49-360-5655698": 1,
"+49-82-534-91423": 1,
"(01356) 2318280": 1,
"+49-4278-55203507": 1,
"+49-400-5290537": 1,
"+49-109-5719002": 1,
"+49-2961-28181571": 1,
"(08514) 9139423": 1,
"+49-528-8615329": 1,
"(0673) 525930320": 1,
"+49-8763-66514379": 1,
"+49-4855-99936426": 1,
"+49-04-969-14255": 1,
"+49-551-5670308": 1,
"+49-6092-34516857": 1,
"(01908) 6892372": 1,
"+49-1805-80560374": 1,
"+49-4446-26033173": 1,
"(0916) 071777489": 1,
"(06582) 6550636": 1,
"(08798) 5416209": 1,
"+49-8200-38218301": 1,
"+49-408-8516878": 1,
"(02065) 4946239": 1,
"+49-7608-83268331": 1,
"Production": 1,
"Engineering": 1,
"Data Services": 1,
"Marketing": 1,
"Product Management": 1,
"Procurement": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?employee ?empLabel ?email ?phone ?department ?deptLabel ?manager ?mgrLabel WHERE {
{ ?employee pv:email ?email } UNION { ?employee pv:phone ?phone } UNION { ?employee pv:memberOf ?department } UNION { ?employee pv:hasManager ?manager } .

OPTIONAL { ?employee rdfs:label ?empLbl0. }
OPTIONAL { ?employee pv:name ?empName0. }
BIND(COALESCE(?empLbl0, ?empName0, STR(?employee)) AS ?empLabel)

OPTIONAL { ?employee pv:email ?email. }
OPTIONAL { ?employee pv:phone ?phone. }

OPTIONAL {
?employee pv:memberOf ?department.
OPTIONAL { ?department rdfs:label ?deptLbl0. }
BIND(COALESCE(?deptLbl0, STR(?department)) AS ?deptLabel)
}

OPTIONAL {
?employee pv:hasManager ?manager.
OPTIONAL { ?manager rdfs:label ?mgrLbl0. }
OPTIONAL { ?manager pv:name ?mgrName0. }
BIND(COALESCE(?mgrLbl0, ?mgrName0, STR(?manager)) AS ?mgrLabel)
}
} ORDER BY ?empLabel
{
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dietlinde.Boehme%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franz.Kornhaeusel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Reiner.Widmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Thomas.Mueller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"Adolfina Hoch": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Arnelle Gerber": 1,
"Baldwin Dirksen": 1,
"Baldwin Guenther": 1,
"Berlin Schulz": 1,
"Bert Blumstein": 1,
"Corinna Ludwig": 1,
"Dieterich Blau": 1,
"Dietlinde Boehme": 1,
"Elena Herzog": 1,
"Elisabeth Harman": 1,
"Emil Gotti": 1,
"Erhard Fried": 1,
"Franz Kornhaeusel": 1,
"Franziska Acker": 1,
"Frauke Faerber": 1,
"Gretel Roth": 1,
"Heinrich Hoch": 1,
"Henny Foth": 1,
"Herr Burgh Eichel": 1,
"Herr Haan Bader": 1,
"Jarvis Jans": 1,
"Karch Moeller": 1,
"Karen Brant": 1,
"Kevin Feigenbaum": 1,
"Kristen Bauers": 1,
"Lambert Faust": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Marius Fux": 1,
"Miles Amsel": 1,
"Minnie Kuehn": 1,
"Nadia Schubert": 1,
"Ratt Beyer": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Reiner Widmann": 1,
"Sabrina Bayer": 1,
"Sabrina Geiger": 1,
"Siglind Brinkerhoff": 1,
"Sigmund Gros": 1,
"Sylvester Brant": 1,
"Thomas Mueller": 1,
"Ulrik Denzel": 1,
"Valda Everhart": 1,
"Waldtraud Kuttner": 1,
"Wanja Hoffmann": 1,
"Wolfgang Martin": 1,
"Xochitl Aue": 1,
"Yanka Schreiber": 1,
"Adolfina.Hoch@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Dietlinde.Boehme@company.org": 1,
"Elena.Herzog@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Emil.Gotti@company.org": 1,
"Erhard.Fried@company.org": 1,
"Franz.Kornhaeusel@company.org": 1,
"Franziska.Acker@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Gretel.Roth@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Henny.Foth@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Karch.Moeller@company.org": 1,
"Karen.Brant@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Lambert.Faust@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"Marius.Fux@company.org": 1,
"Miles.Amsel@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Reiner.Widmann@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Thomas.Mueller@company.org": 1,
"Ulrik.Denzel@company.org": 1,
"Valda.Everhart@company.org": 1,
"Waldtraud.Kuttner@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"+49-109-5719002": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"(03586) 7240528": 1,
"+49-6200-33069465": 1,
"+49-1743-24836762": 1,
"+49-2961-28181571": 1,
"(06582) 6550636": 1,
"+49-7608-83268331": 1,
"+49-4278-55203507": 1,
"(0101) 854043584": 1,
"+49-400-5290537": 1,
"(02065) 4946239": 1,
"(01908) 6892372": 1,
"(01356) 2318280": 1,
"+49-9456-94517553": 1,
"+49-4446-26033173": 1,
"(0686) 108701699": 1,
"(05126) 3204437": 1,
"(0322) 517636576": 1,
"(00530) 5040048": 1,
"(0673) 525930320": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"+49-73-917-19816": 1,
"+49-528-8615329": 1,
"+49-551-5670308": 1,
"+49-1805-80560374": 1,
"+49-2117-55002657": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-408-8516878": 1,
"+49-82-534-91423": 1,
"+49-8295-77923757": 1,
"+49-4855-99936426": 1,
"(0916) 071777489": 1,
"(08514) 9139423": 1,
"+49-8200-38218301": 1,
"+49-04-969-14255": 1,
"(08798) 5416209": 1,
"+49-1083-38194095": 1,
"+49-701-5973041": 1,
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-41622": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-66469": 1,
"http://ld.company.org/prod-instances/dept-73191": 1,
"http://ld.company.org/prod-instances/dept-84279": 1,
"Product Management": 1,
"Data Services": 1,
"Marketing": 1,
"Production": 1,
"Engineering": 1,
"Procurement": 1
}
{
"set_P": 0.7230046948356808,
"set_recall": 1.0,
"set_F": 0.8392370572207084
}
ck26:38-de
Könnten Sie mir bitte eine
aktualisierte Kontaktliste zukommen
lassen, die den Namen, die E-Mail-
Adresse, die Telefonnummer, die
Abteilung und den direkten
Vorgesetzten jedes Mitarbeiters
enthält?
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?name ?email ?phone ?dept ?manager
WHERE {
?agentClass rdfs:subClassOf* pv:Agent .
?empl a ?agentClass ;
pv:name ?name .
OPTIONAL { ?empl pv:email ?email . }
OPTIONAL { ?empl pv:phone ?phone . }
OPTIONAL { ?empl pv:memberOf/pv:name ?dept . }
OPTIONAL { ?empl pv:hasManager/pv:name ?manager . }
}
{
"Ulrik Denzel": 1,
"Herr Haan Bader": 1,
"Arnelle Gerber": 1,
"Bert Blumstein": 1,
"Ratt Beyer": 1,
"Marius Fux": 1,
"Baldwin Guenther": 1,
"Wolfgang Martin": 1,
"Gretel Roth": 1,
"Corinna Ludwig": 1,
"Henny Foth": 1,
"Jarvis Jans": 1,
"Berlin Schulz": 1,
"Lili Geier": 1,
"Karen Brant": 1,
"Karch Moeller": 1,
"Kevin Feigenbaum": 1,
"Sabrina Geiger": 1,
"Emil Gotti": 1,
"Baldwin Dirksen": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Wanja Hoffmann": 1,
"Kristen Bauers": 1,
"Xochitl Aue": 1,
"Anamchara Foerstner": 1,
"Sabrina Bayer": 1,
"Frauke Faerber": 1,
"Herr Burgh Eichel": 1,
"Elisabeth Harman": 1,
"Erhard Fried": 1,
"Adolfina Hoch": 1,
"Dieterich Blau": 1,
"Sylvester Brant": 1,
"Miles Amsel": 1,
"Yanka Schreiber": 1,
"Lambert Faust": 1,
"Arendt Beitel": 1,
"Siglind Brinkerhoff": 1,
"Valda Everhart": 1,
"Minnie Kuehn": 1,
"Liese Adam": 1,
"Franziska Acker": 1,
"Manfred Foth": 1,
"Nadia Schubert": 1,
"Heinrich Hoch": 1,
"Sigmund Gros": 1,
"Dietlinde Boehme": 1,
"Waldtraud Kuttner": 1,
"Thomas Mueller": 1,
"Reiner Widmann": 1,
"Franz Kornhaeusel": 1,
"Elena Herzog": 1,
"Ulrik.Denzel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Marius.Fux@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Gretel.Roth@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Henny.Foth@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Lili.Geier@company.org": 1,
"Karen.Brant@company.org": 1,
"Karch.Moeller@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Emil.Gotti@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Erhard.Fried@company.org": 1,
"Adolfina.Hoch@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Miles.Amsel@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"Lambert.Faust@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Valda.Everhart@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Liese.Adam@company.org": 1,
"Franziska.Acker@company.org": 1,
"Manfred.Foth@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Dietlinde.Boehme@company.org": 1,
"Waldtraud.Kuttner@company.org": 1,
"Thomas.Mueller@company.org": 1,
"Reiner.Widmann@company.org": 1,
"Franz.Kornhaeusel@company.org": 1,
"Elena.Herzog@company.org": 1,
"(05126) 3204437": 1,
"(03586) 7240528": 1,
"+49-2117-55002657": 1,
"+49-73-917-19816": 1,
"+49-701-5973041": 1,
"+49-9456-94517553": 1,
"+49-1743-24836762": 1,
"(0686) 108701699": 1,
"(0322) 517636576": 1,
"(0938) 228702909": 1,
"(00530) 5040048": 1,
"+49-8295-77923757": 1,
"(0101) 854043584": 1,
"+49-6200-33069465": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-1083-38194095": 1,
"+49-360-5655698": 1,
"+49-82-534-91423": 1,
"(01356) 2318280": 1,
"+49-4278-55203507": 1,
"+49-400-5290537": 1,
"+49-109-5719002": 1,
"+49-2961-28181571": 1,
"(08514) 9139423": 1,
"+49-528-8615329": 1,
"(0673) 525930320": 1,
"+49-8763-66514379": 1,
"+49-4855-99936426": 1,
"+49-04-969-14255": 1,
"+49-551-5670308": 1,
"+49-6092-34516857": 1,
"(01908) 6892372": 1,
"+49-1805-80560374": 1,
"+49-4446-26033173": 1,
"(0916) 071777489": 1,
"(06582) 6550636": 1,
"(08798) 5416209": 1,
"+49-8200-38218301": 1,
"+49-408-8516878": 1,
"(02065) 4946239": 1,
"+49-7608-83268331": 1,
"Production": 1,
"Engineering": 1,
"Data Services": 1,
"Marketing": 1,
"Product Management": 1,
"Procurement": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?empl (SAMPLE(COALESCE(?lbl0,?name0,STR(?empl))) AS ?name) ?email ?phone ?department (SAMPLE(COALESCE(?deptLbl,?deptName,STR(?department))) AS ?departmentLabel) ?manager (SAMPLE(COALESCE(?mgrLbl,?mgrName,STR(?manager))) AS ?managerLabel)
WHERE {
?empl ?p ?o .
FILTER(STRSTARTS(STR(?empl), "http://ld.company.org/prod-instances/empl-"))
OPTIONAL { ?empl rdfs:label ?lbl0. }
OPTIONAL { ?empl pv:name ?name0. }
OPTIONAL { ?empl pv:email ?email. }
OPTIONAL { ?empl pv:phone ?phone. }
OPTIONAL { ?empl pv:memberOf ?department.
OPTIONAL { ?department rdfs:label ?deptLbl. }
OPTIONAL { ?department pv:name ?deptName. }
}
OPTIONAL { ?empl pv:hasManager ?manager.
OPTIONAL { ?manager rdfs:label ?mgrLbl. }
OPTIONAL { ?manager pv:name ?mgrName. }
}
}
GROUP BY ?empl ?email ?phone ?department ?manager
ORDER BY ?name
{
"http://ld.company.org/prod-instances/empl-Adolfina.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Anamchara.Foerstner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arendt.Beitel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Arnelle.Gerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Dirksen%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Baldwin.Guenther%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Berlin.Schulz%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Bert.Blumstein%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Corinna.Ludwig%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dieterich.Blau%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Dietlinde.Boehme%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elisabeth.Harman%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Emil.Gotti%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Erhard.Fried%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franz.Kornhaeusel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franziska.Acker%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Frauke.Faerber%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Gretel.Roth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Heinrich.Hoch%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Henny.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Burgh.Eichel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Herr.Haan.Bader%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Jarvis.Jans%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karch.Moeller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Karen.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kevin.Feigenbaum%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Kristen.Bauers%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lambert.Faust%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Liese.Adam%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Lili.Geier%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Manfred.Foth%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Marius.Fux%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Miles.Amsel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Minnie.Kuehn%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Nadia.Schubert%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Beyer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ratt.Hartmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Rebecca.Hall%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Reiner.Widmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Bayer%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sabrina.Geiger%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Siglind.Brinkerhoff%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sigmund.Gros%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Sylvester.Brant%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Thomas.Mueller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Ulrik.Denzel%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Valda.Everhart%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wanja.Hoffmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Wolfgang.Martin%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Xochitl.Aue%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Yanka.Schreiber%40company.org": 1,
"Adolfina Hoch": 1,
"Anamchara Foerstner": 1,
"Arendt Beitel": 1,
"Arnelle Gerber": 1,
"Baldwin Dirksen": 1,
"Baldwin Guenther": 1,
"Berlin Schulz": 1,
"Bert Blumstein": 1,
"Corinna Ludwig": 1,
"Dieterich Blau": 1,
"Dietlinde Boehme": 1,
"Elena Herzog": 1,
"Elisabeth Harman": 1,
"Emil Gotti": 1,
"Erhard Fried": 1,
"Franz Kornhaeusel": 1,
"Franziska Acker": 1,
"Frauke Faerber": 1,
"Gretel Roth": 1,
"Heinrich Hoch": 1,
"Henny Foth": 1,
"Herr Burgh Eichel": 1,
"Herr Haan Bader": 1,
"Jarvis Jans": 1,
"Karch Moeller": 1,
"Karen Brant": 1,
"Kevin Feigenbaum": 1,
"Kristen Bauers": 1,
"Lambert Faust": 1,
"Liese Adam": 1,
"Lili Geier": 1,
"Manfred Foth": 1,
"Marius Fux": 1,
"Miles Amsel": 1,
"Minnie Kuehn": 1,
"Nadia Schubert": 1,
"Ratt Beyer": 1,
"Ratt Hartmann": 1,
"Rebecca Hall": 1,
"Reiner Widmann": 1,
"Sabrina Bayer": 1,
"Sabrina Geiger": 1,
"Siglind Brinkerhoff": 1,
"Sigmund Gros": 1,
"Sylvester Brant": 1,
"Thomas Mueller": 1,
"Ulrik Denzel": 1,
"Valda Everhart": 1,
"Waldtraud Kuttner": 1,
"Wanja Hoffmann": 1,
"Wolfgang Martin": 1,
"Xochitl Aue": 1,
"Yanka Schreiber": 1,
"Adolfina.Hoch@company.org": 1,
"Anamchara.Foerstner@company.org": 1,
"Arendt.Beitel@company.org": 1,
"Arnelle.Gerber@company.org": 1,
"Baldwin.Dirksen@company.org": 1,
"Baldwin.Guenther@company.org": 1,
"Berlin.Schulz@company.org": 1,
"Bert.Blumstein@company.org": 1,
"Corinna.Ludwig@company.org": 1,
"Dieterich.Blau@company.org": 1,
"Dietlinde.Boehme@company.org": 1,
"Elena.Herzog@company.org": 1,
"Elisabeth.Harman@company.org": 1,
"Emil.Gotti@company.org": 1,
"Erhard.Fried@company.org": 1,
"Franz.Kornhaeusel@company.org": 1,
"Franziska.Acker@company.org": 1,
"Frauke.Faerber@company.org": 1,
"Gretel.Roth@company.org": 1,
"Heinrich.Hoch@company.org": 1,
"Henny.Foth@company.org": 1,
"Herr.Burgh.Eichel@company.org": 1,
"Herr.Haan.Bader@company.org": 1,
"Jarvis.Jans@company.org": 1,
"Karch.Moeller@company.org": 1,
"Karen.Brant@company.org": 1,
"Kevin.Feigenbaum@company.org": 1,
"Kristen.Bauers@company.org": 1,
"Lambert.Faust@company.org": 1,
"Liese.Adam@company.org": 1,
"Lili.Geier@company.org": 1,
"Manfred.Foth@company.org": 1,
"Marius.Fux@company.org": 1,
"Miles.Amsel@company.org": 1,
"Minnie.Kuehn@company.org": 1,
"Nadia.Schubert@company.org": 1,
"Ratt.Beyer@company.org": 1,
"Ratt.Hartmann@company.org": 1,
"Rebecca.Hall@company.org": 1,
"Reiner.Widmann@company.org": 1,
"Sabrina.Bayer@company.org": 1,
"Sabrina.Geiger@company.org": 1,
"Siglind.Brinkerhoff@company.org": 1,
"Sigmund.Gros@company.org": 1,
"Sylvester.Brant@company.org": 1,
"Thomas.Mueller@company.org": 1,
"Ulrik.Denzel@company.org": 1,
"Valda.Everhart@company.org": 1,
"Waldtraud.Kuttner@company.org": 1,
"Wanja.Hoffmann@company.org": 1,
"Wolfgang.Martin@company.org": 1,
"Xochitl.Aue@company.org": 1,
"Yanka.Schreiber@company.org": 1,
"+49-109-5719002": 1,
"+49-360-5655698": 1,
"+49-8763-66514379": 1,
"(03586) 7240528": 1,
"+49-6200-33069465": 1,
"+49-1743-24836762": 1,
"+49-2961-28181571": 1,
"(06582) 6550636": 1,
"+49-7608-83268331": 1,
"+49-4278-55203507": 1,
"(0101) 854043584": 1,
"+49-400-5290537": 1,
"(02065) 4946239": 1,
"(01908) 6892372": 1,
"(01356) 2318280": 1,
"+49-9456-94517553": 1,
"+49-4446-26033173": 1,
"(0686) 108701699": 1,
"(05126) 3204437": 1,
"(0322) 517636576": 1,
"(00530) 5040048": 1,
"(0673) 525930320": 1,
"+49-6092-34516857": 1,
"(0938) 228702909": 1,
"+49-73-917-19816": 1,
"+49-528-8615329": 1,
"+49-551-5670308": 1,
"+49-1805-80560374": 1,
"+49-2117-55002657": 1,
"(00636) 1323749": 1,
"+49-2776-10372538": 1,
"+49-408-8516878": 1,
"+49-82-534-91423": 1,
"+49-8295-77923757": 1,
"+49-4855-99936426": 1,
"(0916) 071777489": 1,
"(08514) 9139423": 1,
"+49-8200-38218301": 1,
"+49-04-969-14255": 1,
"(08798) 5416209": 1,
"+49-1083-38194095": 1,
"+49-701-5973041": 1,
"http://ld.company.org/prod-instances/dept-22183": 1,
"http://ld.company.org/prod-instances/dept-41622": 1,
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://ld.company.org/prod-instances/dept-66469": 1,
"http://ld.company.org/prod-instances/dept-73191": 1,
"http://ld.company.org/prod-instances/dept-84279": 1,
"Product Management": 1,
"Data Services": 1,
"Marketing": 1,
"Production": 1,
"Engineering": 1,
"Procurement": 1
}
{
"set_P": 0.7230046948356808,
"set_recall": 1.0,
"set_F": 0.8392370572207084
}
ck26:39-en
Can you list the dimensions of
hardware items that are wider than
they are tall and have a depth
under 50 mm?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?hw ?width ?height ?depth
WHERE {
?hw a pv:Hardware ;
pv:width_mm ?width ;
pv:height_mm ?height ;
pv:depth_mm ?depth .
FILTER (?width > ?height && ?depth < 50)
}
{
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-V787-2710358": 1,
"http://ld.company.org/prod-instances/hw-Y467-5818685": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-N607-6979614": 1,
"http://ld.company.org/prod-instances/hw-H487-6374164": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-T381-5661009": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-Q986-9996088": 1,
"http://ld.company.org/prod-instances/hw-V303-8717097": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-Y966-2972645": 1,
"http://ld.company.org/prod-instances/hw-A816-3021832": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-Y185-1184618": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-J653-7148856": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-F332-3707903": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-N819-5417282": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-H426-2605604": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-W232-7656495": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-M810-8954183": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-K288-9703549": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D975-3237312": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-T151-7042410": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-D146-5615241": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-K968-2682119": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-A464-7310986": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F818-8141054": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-I503-2217600": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-C794-6433363": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-X842-8356738": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-O203-5447809": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-R247-6538517": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-X407-9945990": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-J725-8697253": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-P395-9316579": 1,
"http://ld.company.org/prod-instances/hw-S871-7304748": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-C574-6212593": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-E465-6674831": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-N478-8857002": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-U367-8732482": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-E405-1045893": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-L371-9651048": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-E172-7848498": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-H402-6061531": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-D206-3028092": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-Q627-3868402": 1,
"http://ld.company.org/prod-instances/hw-Q523-3322183": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-F525-2265345": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-S418-2584457": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-D965-2729258": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-Y354-7075426": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-U318-1465198": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-H380-8298145": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-H197-3970480": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-S702-5472237": 1,
"http://ld.company.org/prod-instances/hw-Z518-1747933": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-H972-9616381": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"50": 1,
"75": 1,
"61": 1,
"70": 1,
"62": 1,
"71": 1,
"30": 1,
"44": 1,
"76": 1,
"74": 1,
"73": 1,
"68": 1,
"63": 1,
"45": 1,
"48": 1,
"58": 1,
"21": 1,
"51": 1,
"27": 1,
"46": 1,
"69": 1,
"77": 1,
"39": 1,
"53": 1,
"43": 1,
"40": 1,
"72": 1,
"20": 1,
"64": 1,
"49": 1,
"66": 1,
"78": 1,
"33": 1,
"79": 1,
"54": 1,
"80": 1,
"67": 1,
"23": 1,
"52": 1,
"56": 1,
"59": 1,
"22": 1,
"28": 1,
"36": 1,
"60": 1,
"42": 1,
"24": 1,
"38": 1,
"55": 1,
"65": 1,
"47": 1,
"19": 1,
"57": 1,
"25": 1,
"16": 1,
"31": 1,
"26": 1,
"41": 1,
"37": 1,
"34": 1,
"35": 1,
"17": 1,
"32": 1,
"14": 1,
"15": 1,
"12": 1,
"13": 1,
"29": 1,
"18": 1,
"11": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?hw ?label ?width ?height ?depth WHERE {
?hw rdf:type pv:Hardware .
?hw pv:width_mm ?width .
?hw pv:height_mm ?height .
?hw pv:depth_mm ?depth .
OPTIONAL { ?hw rdfs:label ?lbl0 }
OPTIONAL { ?hw pv:name ?name0 }
BIND(COALESCE(?lbl0,?name0,STR(?hw)) AS ?label)
FILTER(xsd:decimal(?width) > xsd:decimal(?height) && xsd:decimal(?depth) < 50)
}
ORDER BY DESC(?width)
{
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-D146-5615241": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-H487-6374164": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-K968-2682119": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-H197-3970480": 1,
"http://ld.company.org/prod-instances/hw-V787-2710358": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-O203-5447809": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-J725-8697253": 1,
"http://ld.company.org/prod-instances/hw-S871-7304748": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-H402-6061531": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-D965-2729258": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-V303-8717097": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-R247-6538517": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-J653-7148856": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-S702-5472237": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-D206-3028092": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-Q986-9996088": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-F818-8141054": 1,
"http://ld.company.org/prod-instances/hw-X407-9945990": 1,
"http://ld.company.org/prod-instances/hw-E465-6674831": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-L371-9651048": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-Z518-1747933": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-C794-6433363": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-U318-1465198": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-E172-7848498": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-U367-8732482": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-N819-5417282": 1,
"http://ld.company.org/prod-instances/hw-T151-7042410": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-E405-1045893": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-Q627-3868402": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-K288-9703549": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-Y354-7075426": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-S418-2584457": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-Q523-3322183": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-I503-2217600": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-Y966-2972645": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-N607-6979614": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-A464-7310986": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-F332-3707903": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-F525-2265345": 1,
"http://ld.company.org/prod-instances/hw-Y185-1184618": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-H972-9616381": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-N478-8857002": 1,
"http://ld.company.org/prod-instances/hw-D975-3237312": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-Y467-5818685": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-A816-3021832": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-P395-9316579": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-H380-8298145": 1,
"http://ld.company.org/prod-instances/hw-W232-7656495": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-X842-8356738": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-T381-5661009": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-H426-2605604": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-C574-6212593": 1,
"http://ld.company.org/prod-instances/hw-M810-8954183": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"P337-4636612 - Sensor Driver Crystal": 1,
"Y553-3929384 - Crystal Capacitor": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"P528-2149873 - Encoder Compensator": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"X223-5282026 - LCD Capacitor": 1,
"E737-8373948 - Oscillator Inductor": 1,
"F559-6763700 - Gauge Capacitor": 1,
"D817-8084362 - Multiplexer Resistor Compensator": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"Q568-8156489 - Gauge Capacitor Meter": 1,
"O537-7333259 - Oscillator Transformer": 1,
"G205-5318100 - LCD Gauge": 1,
"F708-2915261 - Crystal Resonator": 1,
"F424-2241578 - Strain Meter": 1,
"R410-7957011 - Planck Network Dipole": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"U990-5234138 - LCD Inductor": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"S590-1665348 - Heisenberg LCD Resonator Transformer": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"R389-4348258 - Network Gauge": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"V382-3883746 - Network Dipole Warp": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"R272-9406400 - Potentiometer Driver": 1,
"Q248-7597886 - Oscillator Strain": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"W872-7508740 - Gauge Rheostat": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"Q594-6895704 - LCD Network": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"E829-2591611 - Memristor Compensator": 1,
"Z358-9013730 - Flow Potentiometer Transistor": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"H676-3055632 - Film LCD Warp": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"D381-6342696 - Inductor": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"C898-2055295 - Sensor Potentiometer": 1,
"L748-3922794 - Phase Driver Switch": 1,
"A315-1730287 - Network Dipole": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"I571-8597034 - Transistor Compensator": 1,
"X324-6249454 - Breaker Meter": 1,
"T608-9573692 - Coil Resonator": 1,
"H491-2171849 - Multiplexer Meter": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"B825-7596233 - Resistor Compensator": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"W744-1785439 - Film Multiplexer Dipole Strain": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"U681-7406159 - Film Driver Switch": 1,
"P844-4114854 - Field-effect Strain Compensator": 1,
"D146-5615241 - LCD Gauge Transformer": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"P870-6495639 - Inductor Transistor Warp": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"H487-6374164 - Inductor Memristor": 1,
"W295-9452529 - Sensor Encoder": 1,
"K968-2682119 - Field-effect Inductor Oscillator Compensator": 1,
"R586-3728998 - Gauge Breaker": 1,
"Z615-8618743 - Film Resistor Inductor Switch": 1,
"N744-5971232 - Coil Strain": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"N411-3014396 - Network Compensator": 1,
"H197-3970480 - Coil Gauge Transformer": 1,
"V787-2710358 - Ceramic Sensor Encoder": 1,
"H502-2553729 - Flow Resistor Inductor Transformer": 1,
"K313-8452822 - Heisenberg Crystal Transformer": 1,
"N568-8608034 - Coil Oscillator Switch": 1,
"D334-6681399 - Resistor Inductor Gauge": 1,
"O761-2575092 - Switch Transformer Transducer": 1,
"K542-2074800 - Coil Encoder": 1,
"Z373-9393076 - Resonator Transformer": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"P162-1457428 - Polymer Coil Capacitor Warp": 1,
"G881-8555057 - Flow Dipole Meter Warp": 1,
"P453-8155326 - Encoder Breaker": 1,
"J734-1368842 - Inductor Gauge Meter": 1,
"L816-8238278 - Inductor": 1,
"E890-4143899 - Coil Crystal Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"L173-2699667 - Coil LCD": 1,
"O203-5447809 - Dipole Encoder Compensator": 1,
"M175-2087039 - Film Oscillator": 1,
"J725-8697253 - Resistor Inductor Switch": 1,
"S871-7304748 - Bipolar-junction Resonator Switch": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"N366-8062929 - Network Oscillator Strain": 1,
"Z927-4746244 - Phase Resistor Transistor Meter": 1,
"I314-5607546 - Polymer Resistor Dipole Gauge": 1,
"T230-5902294 - LCD Resistor": 1,
"K411-1729714 - Driver Gauge": 1,
"D483-7794770 - Memristor Gauge": 1,
"C970-6304679 - Ceramic Coil Rheostat": 1,
"E358-6492536 - Resistor Crystal": 1,
"H642-6966395 - Polymer Strain Rheostat": 1,
"H402-6061531 - Switch": 1,
"F969-8946081 - Inductor Rheostat": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"D525-4805979 - Compensator Transducer": 1,
"W892-1983772 - Log-periodic Coil Sensor Transducer": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"D642-3058791 - Polymer LCD Dipole Switch": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"I241-8776317 - Strain Compensator": 1,
"G950-4257402 - Transformer Transducer": 1,
"E172-8066897 - Driver Compensator": 1,
"P708-1537318 - Bipolar-junction Network Strain": 1,
"D965-2729258 - Film Sensor Switch": 1,
"T872-6914723 - Resistor Oscillator": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"R599-8820686 - Film Sensor Dipole": 1,
"V303-8717097 - Network": 1,
"Q210-8168184 - Network Multiplexer": 1,
"E585-3605747 - Resistor Dipole": 1,
"R524-4869682 - Planck Multiplexer Inductor": 1,
"M521-8491113 - Multiplexer Coil Resonator": 1,
"Z452-1805723 - Capacitor Switch": 1,
"K671-7410535 - Driver Rheostat": 1,
"R187-6602262 - Film Resistor Crystal Encoder": 1,
"W780-8057984 - Planck Transformer Compensator": 1,
"V654-5789502 - Polymer Resistor Memristor Strain": 1,
"N324-6810821 - Aluminum Rheostat Transformer Warp": 1,
"T119-8723477 - Driver Crystal": 1,
"R112-2955867 - Oscillator Encoder Compensator": 1,
"I272-3912947 - Ceramic Inductor Resonator": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"Y632-7948469 - Multiplexer Coil": 1,
"Y191-7589606 - Gauge Breaker": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B120-9942467 - Coil Driver": 1,
"L103-3316729 - Multiplexer Potentiometer": 1,
"L619-5092078 - Crystal Resonator Transformer": 1,
"R247-6538517 - Crystal Breaker": 1,
"U772-6050161 - Resonator Encoder Warp": 1,
"R725-9753976 - Coil Resistor Encoder": 1,
"G403-4566802 - LCD Resonator Warp": 1,
"S388-7116324 - Polymer Inductor Transistor Oscillator": 1,
"W903-2104201 - Bipolar-junction Encoder Compensator": 1,
"L792-8374906 - Sensor Memristor Meter": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"Q890-8785073 - Film Dipole Rheostat": 1,
"U623-2779596 - Multiplexer LCD Switch": 1,
"N664-8476091 - Rheostat Encoder": 1,
"J653-7148856 - Coil Transducer Warp": 1,
"M605-5951566 - Rheostat Transformer": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"W661-3032609 - LCD Inductor Oscillator": 1,
"W434-6067873 - Network Encoder": 1,
"U861-6382993 - Compensator Meter": 1,
"H510-3094779 - Resonator Transformer": 1,
"J820-7132026 - Polymer Inductor": 1,
"K832-2729798 - Resistor Potentiometer Oscillator": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"K689-4865625 - Log-periodic Multiplexer Dipole Transducer": 1,
"R946-7112528 - Sensor Breaker": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"S176-7294665 - Planck Gauge Compensator": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"E495-3503010 - Dipole Resonator Transformer": 1,
"T725-1852362 - Field-effect Multiplexer Potentiometer": 1,
"K636-3664460 - Memristor Capacitor": 1,
"D605-8095260 - Network Inductor": 1,
"S702-5472237 - Field-effect Driver Switch": 1,
"Z775-8853334 - Aluminum Multiplexer Dipole": 1,
"J129-5121523 - Inductor Driver Transducer": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"L822-2103281 - Polymer Encoder Switch": 1,
"N869-4606944 - Film Memristor Compensator": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"D206-3028092 - Resonator Compensator Switch": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"Y162-1430218 - Ceramic Dipole Memristor Breaker": 1,
"W436-5301120 - Encoder Transducer": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"Q546-7014038 - Field-effect Memristor Rheostat": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E882-2235305 - Phase Multiplexer Network Warp": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"E529-9160800 - Network Inductor": 1,
"M914-2979544 - Log-periodic Oscillator Sensor": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"U281-1671869 - Dipole Transformer Meter": 1,
"P982-4384687 - Oscillator Sensor Resonator": 1,
"V645-2413888 - Log-periodic Oscillator Transistor Rheostat": 1,
"B937-9245602 - Driver Compensator": 1,
"F779-9528637 - Phase Sensor Transistor": 1,
"Q986-9996088 - Planck Transistor Transformer": 1,
"T161-7769514 - Network Breaker Capacitor": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"N694-7625752 - Field-effect Resistor Sensor": 1,
"F818-8141054 - LCD Gauge": 1,
"X407-9945990 - Transistor Breaker": 1,
"E465-6674831 - Network Sensor Transistor": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"L371-9651048 - Inductor Sensor": 1,
"Z889-8463159 - Resistor Inductor": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"H236-9180061 - Oscillator Dipole Capacitor": 1,
"N733-1946687 - LCD Encoder": 1,
"Z190-5822042 - Polymer Multiplexer Crystal Capacitor": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"T814-8858070 - Multiplexer Transistor": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"C200-5363446 - Network Transducer": 1,
"Z165-5413714 - Gauge Transducer": 1,
"A981-3634031 - Driver Memristor": 1,
"O944-9764063 - Inductor Memristor Resonator": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"M627-4661911 - Phase Memristor Driver": 1,
"Q263-2186291 - Sensor Crystal": 1,
"N317-6012752 - Oscillator Driver Sensor": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"U389-9635839 - Multiplexer Switch": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"K630-6895992 - LCD Gauge Switch": 1,
"Z518-1747933 - Resonator Encoder Warp": 1,
"W579-1877166 - Polymer Oscillator Potentiometer Meter": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"C794-6433363 - Sensor Strain": 1,
"J625-3464908 - Sensor Crystal Warp": 1,
"N560-4369045 - Resistor Compensator": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"W457-2405463 - LCD Gauge Warp": 1,
"E563-8448172 - Warp Capacitor Meter": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"U318-1465198 - Aluminum Network Dipole Transducer": 1,
"C831-2580759 - Warp": 1,
"T721-4459242 - Coil Compensator": 1,
"R414-3098561 - Multiplexer Meter": 1,
"P903-7514284 - Dipole Capacitor": 1,
"E652-6887116 - Gauge Compensator": 1,
"N687-2334901 - Potentiometer Transducer": 1,
"F812-7003324 - Rheostat Compensator": 1,
"E172-7848498 - LCD Transducer": 1,
"E617-6594892 - Field-effect Driver Strain Compensator": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"S113-2439377 - LCD Potentiometer": 1,
"E576-3538706 - Encoder Breaker": 1,
"J259-5185660 - Memristor Encoder": 1,
"H690-4065164 - Heisenberg Oscillator Memristor Meter": 1,
"W821-9428247 - Dipole Memristor Encoder": 1,
"M244-7026376 - Coil Compensator": 1,
"X643-1063819 - Dipole Compensator": 1,
"U367-8732482 - Coil Sensor Potentiometer": 1,
"H288-7210201 - Log-periodic Memristor Meter": 1,
"C182-2689274 - Potentiometer Driver": 1,
"L316-4863597 - Potentiometer Inductor": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"K845-4116844 - Breaker Encoder Transducer": 1,
"G144-7255154 - Dipole Rheostat Capacitor": 1,
"J470-3164222 - Multiplexer Memristor Rheostat": 1,
"U501-5365139 - Sensor Transformer Compensator": 1,
"G251-8414984 - Coil Rheostat": 1,
"H660-8942410 - Sensor Warp": 1,
"Q881-7871943 - Oscillator Resonator Compensator": 1,
"F383-6450755 - Strain Encoder": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"E917-4866901 - Capacitor Warp": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"U958-4696127 - Memristor Compensator Meter": 1,
"N819-5417282 - Inductor Dipole": 1,
"T151-7042410 - Memristor Switch": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"B818-8738213 - Crystal Capacitor": 1,
"E405-1045893 - Polymer Sensor": 1,
"G272-3422671 - Resistor Sensor": 1,
"Q627-3868402 - Network Memristor": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"X504-5674380 - Ceramic Memristor Resonator Compensator": 1,
"L275-4377274 - Inductor Transformer": 1,
"P577-5587693 - Network Dipole Memristor": 1,
"M750-1800450 - Crystal Encoder": 1,
"I966-3317124 - Dipole Breaker Transducer": 1,
"H252-2977732 - Field-effect Oscillator Switch Transducer": 1,
"T124-5609647 - Network Compensator": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"W344-5163065 - Heisenberg Capacitor Transducer": 1,
"K651-4147885 - LCD Crystal": 1,
"H156-2424615 - Polymer Driver Transistor Breaker": 1,
"C799-8367143 - Coil Strain Meter": 1,
"U614-3483402 - Sensor Compensator Transducer": 1,
"P729-6290809 - Heisenberg Driver Resonator Transducer": 1,
"A994-9085459 - LCD Compensator": 1,
"H962-4715431 - Phase Dipole Transformer": 1,
"K288-9703549 - Sensor Rheostat": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"I468-8034393 - Network Rheostat": 1,
"B507-9536014 - LCD Network": 1,
"K334-8882985 - Network Resonator Encoder": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"R591-4930195 - Multiplexer Resonator Transformer": 1,
"D762-3837218 - Inductor Capacitor Switch": 1,
"Z212-3451369 - Driver Strain": 1,
"Y354-7075426 - Aluminum LCD Warp": 1,
"Y884-3616085 - Phase Potentiometer Memristor Sensor": 1,
"N704-3896920 - Strain Encoder": 1,
"X946-6308579 - Field-effect Resistor Encoder": 1,
"J998-8511305 - Resonator Transformer": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"B488-6957957 - Strain Capacitor": 1,
"E416-7318916 - Dipole Crystal": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"R383-8831143 - Flow Potentiometer Resonator": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"E267-7496794 - Crystal Rheostat": 1,
"S841-8644004 - Flow Sensor Transistor Encoder": 1,
"S418-2584457 - Bipolar-junction Dipole": 1,
"A837-2549775 - LCD Gauge": 1,
"Z254-1002324 - Transistor Crystal": 1,
"I904-2574215 - Coil Encoder": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"Q751-8742744 - Inductor Resonator": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"Q523-3322183 - Resistor Gauge Capacitor": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"N137-2655981 - Inductor Compensator": 1,
"Z249-1364492 - Meter Transducer": 1,
"Z587-4413312 - Aluminum Dipole Sensor Capacitor": 1,
"W986-7950553 - Field-effect Memristor Resonator Compensator": 1,
"X375-4984404 - Multiplexer Transistor": 1,
"L569-8145670 - Capacitor Transistor Compensator": 1,
"D400-2425852 - Sensor Crystal": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"Q774-7287508 - Flow Potentiometer Crystal Rheostat": 1,
"P385-1200138 - Potentiometer Resonator": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"F264-7752472 - Resonator Switch": 1,
"M206-5050706 - Resistor Transducer": 1,
"J519-7020928 - Driver Transducer": 1,
"V421-9533599 - Network Switch": 1,
"I503-2217600 - Aluminum Dipole Breaker": 1,
"X634-4382180 - Inductor Driver Potentiometer": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"Y676-8284278 - Encoder Warp": 1,
"S450-5654221 - Multiplexer Transistor": 1,
"N998-2489600 - Bipolar-junction Strain": 1,
"P717-5835879 - Rheostat Transformer": 1,
"Y966-2972645 - Field-effect Driver": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"Z980-8040792 - Inductor Transistor Oscillator": 1,
"A391-9508821 - Oscillator Compensator": 1,
"M812-1436368 - Bipolar-junction Crystal Rheostat": 1,
"Z617-4660142 - Ceramic Potentiometer Compensator": 1,
"H752-8461936 - Network LCD": 1,
"V892-8476786 - Encoder Meter": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"N607-6979614 - Rheostat Strain Meter": 1,
"R774-3816629 - Log-periodic Encoder Transducer": 1,
"A464-7310986 - Network Driver": 1,
"C551-8482722 - Planck Transducer": 1,
"H244-4330589 - LCD Strain": 1,
"H664-9736043 - Log-periodic Potentiometer Resonator": 1,
"L805-3283253 - Coil Compensator Warp": 1,
"H956-3958783 - Aluminum Resistor Transistor Transformer": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"Y167-8599364 - Oscillator Meter": 1,
"F332-3707903 - Gauge Breaker": 1,
"C845-4085909 - Flow Network Strain": 1,
"J986-8306638 - Phase Multiplexer Crystal Transducer": 1,
"C844-8161134 - Crystal Compensator": 1,
"F525-2265345 - Oscillator Driver": 1,
"Y185-1184618 - Gauge Compensator": 1,
"P228-7323906 - Bipolar-junction Network Inductor Oscillator": 1,
"W985-1612943 - Aluminum Switch": 1,
"O626-4153303 - Driver Memristor": 1,
"H747-8053953 - Resonator Meter": 1,
"J872-7568181 - Encoder Breaker": 1,
"R454-6248815 - LCD Sensor Network": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"Z872-5435339 - Polymer Gauge Capacitor": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"K780-7736227 - Driver Rheostat": 1,
"M827-2856044 - Driver Warp": 1,
"D844-3535311 - Resistor Gauge Encoder": 1,
"G625-4620445 - Log-periodic Driver Compensator": 1,
"L760-6079543 - Resistor Breaker": 1,
"X235-5406274 - Sensor Transducer": 1,
"S314-3937138 - Heisenberg Memristor Breaker Switch": 1,
"Y889-4226936 - Coil Oscillator": 1,
"H972-9616381 - Film Coil Inductor Transformer": 1,
"M986-2342719 - Resistor Memristor": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"I319-7938682 - Phase Network Transistor": 1,
"L984-7886943 - Resistor Oscillator": 1,
"N478-8857002 - Transformer Capacitor Breaker": 1,
"D975-3237312 - Planck Coil Memristor": 1,
"Y788-9882822 - Planck Multiplexer Capacitor": 1,
"J571-5923698 - Multiplexer Resistor": 1,
"Y467-5818685 - Memristor Compensator": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"M128-9664568 - Sensor Rheostat Breaker": 1,
"Q516-8248086 - Transducer Switch": 1,
"G378-7132339 - Resistor Dipole": 1,
"V571-2893837 - Network Driver": 1,
"J209-5198739 - Phase Memristor Capacitor": 1,
"A816-3021832 - Rheostat Breaker": 1,
"C697-6765940 - Network Driver": 1,
"I242-5347848 - Compensator Warp": 1,
"J391-2253339 - Heisenberg LCD Resonator": 1,
"H631-9376983 - Aluminum Network Oscillator Capacitor": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"Q992-9818584 - Flow Oscillator Inductor Compensator": 1,
"P323-7286189 - Sensor Encoder Warp": 1,
"P395-9316579 - Aluminum Multiplexer Oscillator Memristor": 1,
"O491-3823912 - LCD Sensor": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"C431-5986267 - Transformer Meter": 1,
"H380-8298145 - Flow Coil Switch": 1,
"W232-7656495 - Transistor Compensator Transducer": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"X842-8356738 - Aluminum Resistor Transformer": 1,
"W268-8954866 - Gauge Warp": 1,
"E938-3071637 - LCD Dipole": 1,
"T381-5661009 - Sensor Compensator": 1,
"N243-4639047 - Aluminum Resistor Meter": 1,
"H426-2605604 - Film Network Multiplexer Compensator": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"O787-2734023 - Aluminum Memristor Strain": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"H439-1697643 - Log-periodic LCD Gauge": 1,
"L781-7008508 - Bipolar-junction Multiplexer Inductor Transformer": 1,
"B567-3760235 - LCD Resonator": 1,
"F800-9858235 - Field-effect Gauge Transistor": 1,
"W501-5990901 - Film Memristor Resonator Compensator": 1,
"N480-3487616 - Resonator Transformer": 1,
"R774-2450170 - Log-periodic Network Warp": 1,
"C574-6212593 - Planck Network Memristor": 1,
"M810-8954183 - Aluminum Gauge Resonator": 1,
"80": 1,
"79": 1,
"78": 1,
"77": 1,
"76": 1,
"75": 1,
"74": 1,
"73": 1,
"72": 1,
"71": 1,
"70": 1,
"69": 1,
"68": 1,
"67": 1,
"66": 1,
"65": 1,
"64": 1,
"63": 1,
"62": 1,
"61": 1,
"60": 1,
"59": 1,
"58": 1,
"57": 1,
"56": 1,
"55": 1,
"54": 1,
"53": 1,
"52": 1,
"51": 1,
"50": 1,
"49": 1,
"48": 1,
"47": 1,
"46": 1,
"45": 1,
"44": 1,
"43": 1,
"42": 1,
"41": 1,
"40": 1,
"39": 1,
"38": 1,
"37": 1,
"36": 1,
"35": 1,
"34": 1,
"33": 1,
"32": 1,
"31": 1,
"30": 1,
"28": 1,
"27": 1,
"26": 1,
"25": 1,
"24": 1,
"23": 1,
"22": 1,
"21": 1,
"20": 1,
"19": 1,
"17": 1,
"16": 1,
"29": 1,
"15": 1,
"12": 1,
"14": 1,
"18": 1,
"13": 1,
"11": 1
}
{
"set_P": 0.5336538461538461,
"set_recall": 1.0,
"set_F": 0.6959247648902821
}
ck26:39-de
Können Sie die Abmessungen von
Hardware-Artikeln auflisten, die
breiter als hoch sind und eine
Tiefe von unter 50 mm haben?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?hw ?width ?height ?depth
WHERE {
?hw a pv:Hardware ;
pv:width_mm ?width ;
pv:height_mm ?height ;
pv:depth_mm ?depth .
FILTER (?width > ?height && ?depth < 50)
}
{
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-V787-2710358": 1,
"http://ld.company.org/prod-instances/hw-Y467-5818685": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-N607-6979614": 1,
"http://ld.company.org/prod-instances/hw-H487-6374164": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-T381-5661009": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-Q986-9996088": 1,
"http://ld.company.org/prod-instances/hw-V303-8717097": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-Y966-2972645": 1,
"http://ld.company.org/prod-instances/hw-A816-3021832": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-Y185-1184618": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-J653-7148856": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-F332-3707903": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-N819-5417282": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-H426-2605604": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-W232-7656495": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-M810-8954183": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-K288-9703549": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D975-3237312": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-T151-7042410": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-D146-5615241": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-K968-2682119": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-A464-7310986": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F818-8141054": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-I503-2217600": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-C794-6433363": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-X842-8356738": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-O203-5447809": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-R247-6538517": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-X407-9945990": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-J725-8697253": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-P395-9316579": 1,
"http://ld.company.org/prod-instances/hw-S871-7304748": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-C574-6212593": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-E465-6674831": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-N478-8857002": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-U367-8732482": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-E405-1045893": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-L371-9651048": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-E172-7848498": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-H402-6061531": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-D206-3028092": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-Q627-3868402": 1,
"http://ld.company.org/prod-instances/hw-Q523-3322183": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-F525-2265345": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-S418-2584457": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-D965-2729258": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-Y354-7075426": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-U318-1465198": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-H380-8298145": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-H197-3970480": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-S702-5472237": 1,
"http://ld.company.org/prod-instances/hw-Z518-1747933": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-H972-9616381": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"50": 1,
"75": 1,
"61": 1,
"70": 1,
"62": 1,
"71": 1,
"30": 1,
"44": 1,
"76": 1,
"74": 1,
"73": 1,
"68": 1,
"63": 1,
"45": 1,
"48": 1,
"58": 1,
"21": 1,
"51": 1,
"27": 1,
"46": 1,
"69": 1,
"77": 1,
"39": 1,
"53": 1,
"43": 1,
"40": 1,
"72": 1,
"20": 1,
"64": 1,
"49": 1,
"66": 1,
"78": 1,
"33": 1,
"79": 1,
"54": 1,
"80": 1,
"67": 1,
"23": 1,
"52": 1,
"56": 1,
"59": 1,
"22": 1,
"28": 1,
"36": 1,
"60": 1,
"42": 1,
"24": 1,
"38": 1,
"55": 1,
"65": 1,
"47": 1,
"19": 1,
"57": 1,
"25": 1,
"16": 1,
"31": 1,
"26": 1,
"41": 1,
"37": 1,
"34": 1,
"35": 1,
"17": 1,
"32": 1,
"14": 1,
"15": 1,
"12": 1,
"13": 1,
"29": 1,
"18": 1,
"11": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?item ?label ?width ?height ?depth WHERE {
?item rdf:type pv:Hardware .
?item pv:width_mm ?width .
?item pv:height_mm ?height .
?item pv:depth_mm ?depth .
OPTIONAL { ?item rdfs:label ?lbl }
OPTIONAL { ?item pv:name ?pname }
BIND(COALESCE(?lbl, ?pname, STR(?item)) AS ?label)
FILTER(?width > ?height && ?depth < 50)
}
ORDER BY ?label
{
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-A464-7310986": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-A816-3021832": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-C574-6212593": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-C794-6433363": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-D146-5615241": 1,
"http://ld.company.org/prod-instances/hw-D206-3028092": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-D965-2729258": 1,
"http://ld.company.org/prod-instances/hw-D975-3237312": 1,
"http://ld.company.org/prod-instances/hw-E172-7848498": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E405-1045893": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-E465-6674831": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-E890-4143899": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-F332-3707903": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-F525-2265345": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-F818-8141054": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-G950-4257402": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-H197-3970480": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-H380-8298145": 1,
"http://ld.company.org/prod-instances/hw-H402-6061531": 1,
"http://ld.company.org/prod-instances/hw-H426-2605604": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-H487-6374164": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-H972-9616381": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-I503-2217600": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-J653-7148856": 1,
"http://ld.company.org/prod-instances/hw-J725-8697253": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-K288-9703549": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-K968-2682119": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-L371-9651048": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-M810-8954183": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-N478-8857002": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-N607-6979614": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-N819-5417282": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-O203-5447809": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-O787-2734023": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-P395-9316579": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-Q523-3322183": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-Q627-3868402": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-Q986-9996088": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-R247-6538517": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S418-2584457": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-S702-5472237": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-S871-7304748": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T151-7042410": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-T381-5661009": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-U318-1465198": 1,
"http://ld.company.org/prod-instances/hw-U367-8732482": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-V303-8717097": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-V787-2710358": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-W232-7656495": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-X407-9945990": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-X842-8356738": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-Y185-1184618": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-Y354-7075426": 1,
"http://ld.company.org/prod-instances/hw-Y467-5818685": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Y966-2972645": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-Z518-1747933": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"A315-1730287 - Network Dipole": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A391-9508821 - Oscillator Compensator": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"A464-7310986 - Network Driver": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"A816-3021832 - Rheostat Breaker": 1,
"A837-2549775 - LCD Gauge": 1,
"A981-3634031 - Driver Memristor": 1,
"A994-9085459 - LCD Compensator": 1,
"B120-9942467 - Coil Driver": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B488-6957957 - Strain Capacitor": 1,
"B507-9536014 - LCD Network": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B567-3760235 - LCD Resonator": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"B818-8738213 - Crystal Capacitor": 1,
"B825-7596233 - Resistor Compensator": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"B937-9245602 - Driver Compensator": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"C182-2689274 - Potentiometer Driver": 1,
"C200-5363446 - Network Transducer": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"C431-5986267 - Transformer Meter": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"C551-8482722 - Planck Transducer": 1,
"C574-6212593 - Planck Network Memristor": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"C697-6765940 - Network Driver": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"C794-6433363 - Sensor Strain": 1,
"C799-8367143 - Coil Strain Meter": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"C831-2580759 - Warp": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"C844-8161134 - Crystal Compensator": 1,
"C845-4085909 - Flow Network Strain": 1,
"C898-2055295 - Sensor Potentiometer": 1,
"C970-6304679 - Ceramic Coil Rheostat": 1,
"D146-5615241 - LCD Gauge Transformer": 1,
"D206-3028092 - Resonator Compensator Switch": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"D334-6681399 - Resistor Inductor Gauge": 1,
"D381-6342696 - Inductor": 1,
"D400-2425852 - Sensor Crystal": 1,
"D483-7794770 - Memristor Gauge": 1,
"D525-4805979 - Compensator Transducer": 1,
"D605-8095260 - Network Inductor": 1,
"D642-3058791 - Polymer LCD Dipole Switch": 1,
"D762-3837218 - Inductor Capacitor Switch": 1,
"D817-8084362 - Multiplexer Resistor Compensator": 1,
"D844-3535311 - Resistor Gauge Encoder": 1,
"D965-2729258 - Film Sensor Switch": 1,
"D975-3237312 - Planck Coil Memristor": 1,
"E172-7848498 - LCD Transducer": 1,
"E172-8066897 - Driver Compensator": 1,
"E267-7496794 - Crystal Rheostat": 1,
"E358-6492536 - Resistor Crystal": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E405-1045893 - Polymer Sensor": 1,
"E416-7318916 - Dipole Crystal": 1,
"E465-6674831 - Network Sensor Transistor": 1,
"E495-3503010 - Dipole Resonator Transformer": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"E529-9160800 - Network Inductor": 1,
"E563-8448172 - Warp Capacitor Meter": 1,
"E576-3538706 - Encoder Breaker": 1,
"E585-3605747 - Resistor Dipole": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"E617-6594892 - Field-effect Driver Strain Compensator": 1,
"E652-6887116 - Gauge Compensator": 1,
"E737-8373948 - Oscillator Inductor": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"E829-2591611 - Memristor Compensator": 1,
"E882-2235305 - Phase Multiplexer Network Warp": 1,
"E890-4143899 - Coil Crystal Strain": 1,
"E917-4866901 - Capacitor Warp": 1,
"E938-3071637 - LCD Dipole": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"F264-7752472 - Resonator Switch": 1,
"F332-3707903 - Gauge Breaker": 1,
"F383-6450755 - Strain Encoder": 1,
"F424-2241578 - Strain Meter": 1,
"F525-2265345 - Oscillator Driver": 1,
"F559-6763700 - Gauge Capacitor": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"F708-2915261 - Crystal Resonator": 1,
"F779-9528637 - Phase Sensor Transistor": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"F800-9858235 - Field-effect Gauge Transistor": 1,
"F812-7003324 - Rheostat Compensator": 1,
"F818-8141054 - LCD Gauge": 1,
"F969-8946081 - Inductor Rheostat": 1,
"G144-7255154 - Dipole Rheostat Capacitor": 1,
"G205-5318100 - LCD Gauge": 1,
"G251-8414984 - Coil Rheostat": 1,
"G272-3422671 - Resistor Sensor": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"G378-7132339 - Resistor Dipole": 1,
"G403-4566802 - LCD Resonator Warp": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"G625-4620445 - Log-periodic Driver Compensator": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"G881-8555057 - Flow Dipole Meter Warp": 1,
"G950-4257402 - Transformer Transducer": 1,
"H156-2424615 - Polymer Driver Transistor Breaker": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"H197-3970480 - Coil Gauge Transformer": 1,
"H236-9180061 - Oscillator Dipole Capacitor": 1,
"H244-4330589 - LCD Strain": 1,
"H252-2977732 - Field-effect Oscillator Switch Transducer": 1,
"H288-7210201 - Log-periodic Memristor Meter": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"H380-8298145 - Flow Coil Switch": 1,
"H402-6061531 - Switch": 1,
"H426-2605604 - Film Network Multiplexer Compensator": 1,
"H439-1697643 - Log-periodic LCD Gauge": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"H487-6374164 - Inductor Memristor": 1,
"H491-2171849 - Multiplexer Meter": 1,
"H502-2553729 - Flow Resistor Inductor Transformer": 1,
"H510-3094779 - Resonator Transformer": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"H631-9376983 - Aluminum Network Oscillator Capacitor": 1,
"H642-6966395 - Polymer Strain Rheostat": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"H660-8942410 - Sensor Warp": 1,
"H664-9736043 - Log-periodic Potentiometer Resonator": 1,
"H676-3055632 - Film LCD Warp": 1,
"H690-4065164 - Heisenberg Oscillator Memristor Meter": 1,
"H747-8053953 - Resonator Meter": 1,
"H752-8461936 - Network LCD": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"H956-3958783 - Aluminum Resistor Transistor Transformer": 1,
"H962-4715431 - Phase Dipole Transformer": 1,
"H972-9616381 - Film Coil Inductor Transformer": 1,
"I241-8776317 - Strain Compensator": 1,
"I242-5347848 - Compensator Warp": 1,
"I272-3912947 - Ceramic Inductor Resonator": 1,
"I314-5607546 - Polymer Resistor Dipole Gauge": 1,
"I319-7938682 - Phase Network Transistor": 1,
"I468-8034393 - Network Rheostat": 1,
"I503-2217600 - Aluminum Dipole Breaker": 1,
"I571-8597034 - Transistor Compensator": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"I904-2574215 - Coil Encoder": 1,
"I966-3317124 - Dipole Breaker Transducer": 1,
"J129-5121523 - Inductor Driver Transducer": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"J209-5198739 - Phase Memristor Capacitor": 1,
"J259-5185660 - Memristor Encoder": 1,
"J391-2253339 - Heisenberg LCD Resonator": 1,
"J470-3164222 - Multiplexer Memristor Rheostat": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"J519-7020928 - Driver Transducer": 1,
"J571-5923698 - Multiplexer Resistor": 1,
"J625-3464908 - Sensor Crystal Warp": 1,
"J653-7148856 - Coil Transducer Warp": 1,
"J725-8697253 - Resistor Inductor Switch": 1,
"J734-1368842 - Inductor Gauge Meter": 1,
"J820-7132026 - Polymer Inductor": 1,
"J872-7568181 - Encoder Breaker": 1,
"J986-8306638 - Phase Multiplexer Crystal Transducer": 1,
"J998-8511305 - Resonator Transformer": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"K288-9703549 - Sensor Rheostat": 1,
"K313-8452822 - Heisenberg Crystal Transformer": 1,
"K334-8882985 - Network Resonator Encoder": 1,
"K411-1729714 - Driver Gauge": 1,
"K542-2074800 - Coil Encoder": 1,
"K630-6895992 - LCD Gauge Switch": 1,
"K636-3664460 - Memristor Capacitor": 1,
"K651-4147885 - LCD Crystal": 1,
"K671-7410535 - Driver Rheostat": 1,
"K689-4865625 - Log-periodic Multiplexer Dipole Transducer": 1,
"K780-7736227 - Driver Rheostat": 1,
"K832-2729798 - Resistor Potentiometer Oscillator": 1,
"K845-4116844 - Breaker Encoder Transducer": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"K968-2682119 - Field-effect Inductor Oscillator Compensator": 1,
"L103-3316729 - Multiplexer Potentiometer": 1,
"L173-2699667 - Coil LCD": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"L275-4377274 - Inductor Transformer": 1,
"L316-4863597 - Potentiometer Inductor": 1,
"L371-9651048 - Inductor Sensor": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"L569-8145670 - Capacitor Transistor Compensator": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"L619-5092078 - Crystal Resonator Transformer": 1,
"L748-3922794 - Phase Driver Switch": 1,
"L760-6079543 - Resistor Breaker": 1,
"L781-7008508 - Bipolar-junction Multiplexer Inductor Transformer": 1,
"L792-8374906 - Sensor Memristor Meter": 1,
"L805-3283253 - Coil Compensator Warp": 1,
"L816-8238278 - Inductor": 1,
"L822-2103281 - Polymer Encoder Switch": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"L984-7886943 - Resistor Oscillator": 1,
"M128-9664568 - Sensor Rheostat Breaker": 1,
"M175-2087039 - Film Oscillator": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"M206-5050706 - Resistor Transducer": 1,
"M244-7026376 - Coil Compensator": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"M521-8491113 - Multiplexer Coil Resonator": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"M605-5951566 - Rheostat Transformer": 1,
"M627-4661911 - Phase Memristor Driver": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"M750-1800450 - Crystal Encoder": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"M810-8954183 - Aluminum Gauge Resonator": 1,
"M812-1436368 - Bipolar-junction Crystal Rheostat": 1,
"M827-2856044 - Driver Warp": 1,
"M914-2979544 - Log-periodic Oscillator Sensor": 1,
"M986-2342719 - Resistor Memristor": 1,
"N137-2655981 - Inductor Compensator": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"N243-4639047 - Aluminum Resistor Meter": 1,
"N317-6012752 - Oscillator Driver Sensor": 1,
"N324-6810821 - Aluminum Rheostat Transformer Warp": 1,
"N366-8062929 - Network Oscillator Strain": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"N411-3014396 - Network Compensator": 1,
"N478-8857002 - Transformer Capacitor Breaker": 1,
"N480-3487616 - Resonator Transformer": 1,
"N560-4369045 - Resistor Compensator": 1,
"N568-8608034 - Coil Oscillator Switch": 1,
"N607-6979614 - Rheostat Strain Meter": 1,
"N664-8476091 - Rheostat Encoder": 1,
"N687-2334901 - Potentiometer Transducer": 1,
"N694-7625752 - Field-effect Resistor Sensor": 1,
"N704-3896920 - Strain Encoder": 1,
"N733-1946687 - LCD Encoder": 1,
"N744-5971232 - Coil Strain": 1,
"N819-5417282 - Inductor Dipole": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"N869-4606944 - Film Memristor Compensator": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"N998-2489600 - Bipolar-junction Strain": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"O203-5447809 - Dipole Encoder Compensator": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"O491-3823912 - LCD Sensor": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"O537-7333259 - Oscillator Transformer": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"O626-4153303 - Driver Memristor": 1,
"O761-2575092 - Switch Transformer Transducer": 1,
"O787-2734023 - Aluminum Memristor Strain": 1,
"O944-9764063 - Inductor Memristor Resonator": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"P162-1457428 - Polymer Coil Capacitor Warp": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"P228-7323906 - Bipolar-junction Network Inductor Oscillator": 1,
"P323-7286189 - Sensor Encoder Warp": 1,
"P337-4636612 - Sensor Driver Crystal": 1,
"P385-1200138 - Potentiometer Resonator": 1,
"P395-9316579 - Aluminum Multiplexer Oscillator Memristor": 1,
"P453-8155326 - Encoder Breaker": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"P528-2149873 - Encoder Compensator": 1,
"P577-5587693 - Network Dipole Memristor": 1,
"P708-1537318 - Bipolar-junction Network Strain": 1,
"P717-5835879 - Rheostat Transformer": 1,
"P729-6290809 - Heisenberg Driver Resonator Transducer": 1,
"P844-4114854 - Field-effect Strain Compensator": 1,
"P870-6495639 - Inductor Transistor Warp": 1,
"P903-7514284 - Dipole Capacitor": 1,
"P982-4384687 - Oscillator Sensor Resonator": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"Q210-8168184 - Network Multiplexer": 1,
"Q248-7597886 - Oscillator Strain": 1,
"Q263-2186291 - Sensor Crystal": 1,
"Q516-8248086 - Transducer Switch": 1,
"Q523-3322183 - Resistor Gauge Capacitor": 1,
"Q546-7014038 - Field-effect Memristor Rheostat": 1,
"Q568-8156489 - Gauge Capacitor Meter": 1,
"Q594-6895704 - LCD Network": 1,
"Q627-3868402 - Network Memristor": 1,
"Q751-8742744 - Inductor Resonator": 1,
"Q774-7287508 - Flow Potentiometer Crystal Rheostat": 1,
"Q881-7871943 - Oscillator Resonator Compensator": 1,
"Q890-8785073 - Film Dipole Rheostat": 1,
"Q986-9996088 - Planck Transistor Transformer": 1,
"Q992-9818584 - Flow Oscillator Inductor Compensator": 1,
"R112-2955867 - Oscillator Encoder Compensator": 1,
"R187-6602262 - Film Resistor Crystal Encoder": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"R247-6538517 - Crystal Breaker": 1,
"R272-9406400 - Potentiometer Driver": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"R383-8831143 - Flow Potentiometer Resonator": 1,
"R389-4348258 - Network Gauge": 1,
"R410-7957011 - Planck Network Dipole": 1,
"R414-3098561 - Multiplexer Meter": 1,
"R454-6248815 - LCD Sensor Network": 1,
"R524-4869682 - Planck Multiplexer Inductor": 1,
"R586-3728998 - Gauge Breaker": 1,
"R591-4930195 - Multiplexer Resonator Transformer": 1,
"R599-8820686 - Film Sensor Dipole": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"R725-9753976 - Coil Resistor Encoder": 1,
"R774-2450170 - Log-periodic Network Warp": 1,
"R774-3816629 - Log-periodic Encoder Transducer": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"R946-7112528 - Sensor Breaker": 1,
"S113-2439377 - LCD Potentiometer": 1,
"S176-7294665 - Planck Gauge Compensator": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"S314-3937138 - Heisenberg Memristor Breaker Switch": 1,
"S388-7116324 - Polymer Inductor Transistor Oscillator": 1,
"S418-2584457 - Bipolar-junction Dipole": 1,
"S450-5654221 - Multiplexer Transistor": 1,
"S590-1665348 - Heisenberg LCD Resonator Transformer": 1,
"S702-5472237 - Field-effect Driver Switch": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"S841-8644004 - Flow Sensor Transistor Encoder": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"S871-7304748 - Bipolar-junction Resonator Switch": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"T119-8723477 - Driver Crystal": 1,
"T124-5609647 - Network Compensator": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"T151-7042410 - Memristor Switch": 1,
"T161-7769514 - Network Breaker Capacitor": 1,
"T230-5902294 - LCD Resistor": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"T381-5661009 - Sensor Compensator": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"T608-9573692 - Coil Resonator": 1,
"T721-4459242 - Coil Compensator": 1,
"T725-1852362 - Field-effect Multiplexer Potentiometer": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"T814-8858070 - Multiplexer Transistor": 1,
"T872-6914723 - Resistor Oscillator": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"U281-1671869 - Dipole Transformer Meter": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"U318-1465198 - Aluminum Network Dipole Transducer": 1,
"U367-8732482 - Coil Sensor Potentiometer": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"U389-9635839 - Multiplexer Switch": 1,
"U501-5365139 - Sensor Transformer Compensator": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"U614-3483402 - Sensor Compensator Transducer": 1,
"U623-2779596 - Multiplexer LCD Switch": 1,
"U681-7406159 - Film Driver Switch": 1,
"U772-6050161 - Resonator Encoder Warp": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"U861-6382993 - Compensator Meter": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"U958-4696127 - Memristor Compensator Meter": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"U990-5234138 - LCD Inductor": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"V303-8717097 - Network": 1,
"V382-3883746 - Network Dipole Warp": 1,
"V421-9533599 - Network Switch": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"V571-2893837 - Network Driver": 1,
"V645-2413888 - Log-periodic Oscillator Transistor Rheostat": 1,
"V654-5789502 - Polymer Resistor Memristor Strain": 1,
"V787-2710358 - Ceramic Sensor Encoder": 1,
"V892-8476786 - Encoder Meter": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"W232-7656495 - Transistor Compensator Transducer": 1,
"W268-8954866 - Gauge Warp": 1,
"W295-9452529 - Sensor Encoder": 1,
"W344-5163065 - Heisenberg Capacitor Transducer": 1,
"W434-6067873 - Network Encoder": 1,
"W436-5301120 - Encoder Transducer": 1,
"W457-2405463 - LCD Gauge Warp": 1,
"W501-5990901 - Film Memristor Resonator Compensator": 1,
"W579-1877166 - Polymer Oscillator Potentiometer Meter": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"W661-3032609 - LCD Inductor Oscillator": 1,
"W744-1785439 - Film Multiplexer Dipole Strain": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"W780-8057984 - Planck Transformer Compensator": 1,
"W821-9428247 - Dipole Memristor Encoder": 1,
"W872-7508740 - Gauge Rheostat": 1,
"W892-1983772 - Log-periodic Coil Sensor Transducer": 1,
"W903-2104201 - Bipolar-junction Encoder Compensator": 1,
"W985-1612943 - Aluminum Switch": 1,
"W986-7950553 - Field-effect Memristor Resonator Compensator": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"X223-5282026 - LCD Capacitor": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"X235-5406274 - Sensor Transducer": 1,
"X324-6249454 - Breaker Meter": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"X375-4984404 - Multiplexer Transistor": 1,
"X407-9945990 - Transistor Breaker": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"X504-5674380 - Ceramic Memristor Resonator Compensator": 1,
"X634-4382180 - Inductor Driver Potentiometer": 1,
"X643-1063819 - Dipole Compensator": 1,
"X842-8356738 - Aluminum Resistor Transformer": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"X946-6308579 - Field-effect Resistor Encoder": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"Y162-1430218 - Ceramic Dipole Memristor Breaker": 1,
"Y167-8599364 - Oscillator Meter": 1,
"Y185-1184618 - Gauge Compensator": 1,
"Y191-7589606 - Gauge Breaker": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"Y354-7075426 - Aluminum LCD Warp": 1,
"Y467-5818685 - Memristor Compensator": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"Y553-3929384 - Crystal Capacitor": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"Y632-7948469 - Multiplexer Coil": 1,
"Y676-8284278 - Encoder Warp": 1,
"Y788-9882822 - Planck Multiplexer Capacitor": 1,
"Y884-3616085 - Phase Potentiometer Memristor Sensor": 1,
"Y889-4226936 - Coil Oscillator": 1,
"Y966-2972645 - Field-effect Driver": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"Z165-5413714 - Gauge Transducer": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"Z190-5822042 - Polymer Multiplexer Crystal Capacitor": 1,
"Z212-3451369 - Driver Strain": 1,
"Z249-1364492 - Meter Transducer": 1,
"Z254-1002324 - Transistor Crystal": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"Z358-9013730 - Flow Potentiometer Transistor": 1,
"Z373-9393076 - Resonator Transformer": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"Z452-1805723 - Capacitor Switch": 1,
"Z518-1747933 - Resonator Encoder Warp": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"Z587-4413312 - Aluminum Dipole Sensor Capacitor": 1,
"Z615-8618743 - Film Resistor Inductor Switch": 1,
"Z617-4660142 - Ceramic Potentiometer Compensator": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"Z775-8853334 - Aluminum Multiplexer Dipole": 1,
"Z872-5435339 - Polymer Gauge Capacitor": 1,
"Z889-8463159 - Resistor Inductor": 1,
"Z927-4746244 - Phase Resistor Transistor Meter": 1,
"Z980-8040792 - Inductor Transistor Oscillator": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"77": 1,
"46": 1,
"74": 1,
"62": 1,
"42": 1,
"65": 1,
"40": 1,
"57": 1,
"63": 1,
"28": 1,
"59": 1,
"49": 1,
"66": 1,
"52": 1,
"48": 1,
"75": 1,
"80": 1,
"20": 1,
"72": 1,
"45": 1,
"76": 1,
"68": 1,
"70": 1,
"54": 1,
"43": 1,
"44": 1,
"26": 1,
"79": 1,
"17": 1,
"61": 1,
"24": 1,
"50": 1,
"39": 1,
"69": 1,
"73": 1,
"71": 1,
"64": 1,
"36": 1,
"31": 1,
"56": 1,
"47": 1,
"22": 1,
"55": 1,
"67": 1,
"60": 1,
"53": 1,
"30": 1,
"35": 1,
"27": 1,
"51": 1,
"21": 1,
"37": 1,
"41": 1,
"34": 1,
"33": 1,
"78": 1,
"58": 1,
"16": 1,
"32": 1,
"19": 1,
"38": 1,
"23": 1,
"25": 1,
"15": 1,
"29": 1,
"12": 1,
"14": 1,
"13": 1,
"18": 1,
"11": 1
}
{
"set_P": 0.5336538461538461,
"set_recall": 1.0,
"set_F": 0.6959247648902821
}
ck26:40-en
Could you list the IDs and names of
hardware items that don't have an
active product manager?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?hw ?id ?name
WHERE {
?hw a pv:Hardware ;
pv:id ?id ;
pv:name ?name .
FILTER NOT EXISTS { ?hw pv:hasProductManager/pv:name [] . }
}
{
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-X620-7792033": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"L691-1489542": 1,
"E938-3071637": 1,
"R454-6248815": 1,
"C605-1105328": 1,
"N733-1946687": 1,
"B567-3760235": 1,
"N105-3985051": 1,
"O906-8511345": 1,
"Z358-9013730": 1,
"U489-9025040": 1,
"T941-8766844": 1,
"E952-1325145": 1,
"I319-7938682": 1,
"C799-8367143": 1,
"M645-5460777": 1,
"B523-5464510": 1,
"A595-2446575": 1,
"H609-2196524": 1,
"L592-1084147": 1,
"R774-2450170": 1,
"E815-1132509": 1,
"W295-9452529": 1,
"M323-1526287": 1,
"X620-7792033": 1,
"L557-1467804": 1,
"T802-5361374": 1,
"Z768-8346288": 1,
"L932-9433395": 1,
"U333-8518360": 1,
"E267-7496794": 1,
"T812-6060686": 1,
"U229-5087557": 1,
"A509-5571891": 1,
"T973-5442896": 1,
"N480-3487616": 1,
"F344-7012314": 1,
"E395-9906117": 1,
"P577-5587693": 1,
"I625-9097378": 1,
"R231-2442628": 1,
"K780-7736227": 1,
"P317-3419187": 1,
"X408-2200602": 1,
"L940-7353182": 1,
"W268-8954866": 1,
"X365-6429727": 1,
"O494-6195301": 1,
"T147-7011803": 1,
"Phase Multiplexer Driver Capacitor": 1,
"LCD Dipole": 1,
"LCD Sensor Network": 1,
"Log-periodic Gauge Compensator Meter": 1,
"LCD Encoder": 1,
"LCD Resonator": 1,
"Multiplexer Resistor": 1,
"Ceramic Inductor Transistor": 1,
"Flow Potentiometer Transistor": 1,
"Compensator Warp": 1,
"Planck Inductor Gauge Resonator": 1,
"Driver Gauge": 1,
"Phase Network Transistor": 1,
"Coil Strain Meter": 1,
"Log-periodic Multiplexer Rheostat": 1,
"Bipolar-junction Switch Transducer": 1,
"Sensor Driver Capacitor": 1,
"Planck Potentiometer Transformer": 1,
"Coil Potentiometer Compensator": 1,
"Log-periodic Network Warp": 1,
"Resistor Sensor Resonator": 1,
"Sensor Encoder": 1,
"Encoder Meter": 1,
"Ceramic Resistor Rheostat": 1,
"Phase Resistor Transistor Strain": 1,
"Gauge Breaker Switch": 1,
"Coil Sensor Network": 1,
"Dipole Inductor Crystal": 1,
"Driver Switch Transducer": 1,
"Crystal Rheostat": 1,
"Coil Gauge Strain": 1,
"Log-periodic Sensor Inductor Transistor": 1,
"Multiplexer Inductor": 1,
"Sensor Driver Transducer": 1,
"Resonator Transformer": 1,
"Switch Encoder Transducer": 1,
"Flow Inductor Crystal Encoder": 1,
"Network Dipole Memristor": 1,
"Coil Compensator": 1,
"Transformer Transducer": 1,
"Driver Rheostat": 1,
"Network Breaker Transducer": 1,
"Inductor Capacitor Meter": 1,
"Resonator Warp": 1,
"Gauge Warp": 1,
"Coil Inductor Multiplexer": 1,
"Capacitor Strain Breaker": 1,
"Oscillator Transistor Capacitor": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?product ?productId ?label WHERE {
?product rdf:type pv:Hardware .
OPTIONAL { ?product pv:id ?productId . }
OPTIONAL { ?product rdfs:label ?lbl0 . }
OPTIONAL { ?product pv:name ?name0 . }
BIND(COALESCE(?lbl0, ?name0, STR(?product)) AS ?label)
FILTER NOT EXISTS {
?product pv:hasProductManager ?mgr .
?mgr pv:email ?email .
}
}
ORDER BY ?label
{
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-X620-7792033": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"A509-5571891": 1,
"A595-2446575": 1,
"B523-5464510": 1,
"B567-3760235": 1,
"C605-1105328": 1,
"C799-8367143": 1,
"E267-7496794": 1,
"E395-9906117": 1,
"E815-1132509": 1,
"E938-3071637": 1,
"E952-1325145": 1,
"F344-7012314": 1,
"H609-2196524": 1,
"I319-7938682": 1,
"I625-9097378": 1,
"K780-7736227": 1,
"L557-1467804": 1,
"L592-1084147": 1,
"L691-1489542": 1,
"L932-9433395": 1,
"L940-7353182": 1,
"M323-1526287": 1,
"M645-5460777": 1,
"N105-3985051": 1,
"N480-3487616": 1,
"N733-1946687": 1,
"O494-6195301": 1,
"O906-8511345": 1,
"P317-3419187": 1,
"P577-5587693": 1,
"R231-2442628": 1,
"R454-6248815": 1,
"R774-2450170": 1,
"T147-7011803": 1,
"T802-5361374": 1,
"T812-6060686": 1,
"T941-8766844": 1,
"T973-5442896": 1,
"U229-5087557": 1,
"U333-8518360": 1,
"U489-9025040": 1,
"W268-8954866": 1,
"W295-9452529": 1,
"X365-6429727": 1,
"X408-2200602": 1,
"X620-7792033": 1,
"Z358-9013730": 1,
"Z768-8346288": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B567-3760235 - LCD Resonator": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C799-8367143 - Coil Strain Meter": 1,
"E267-7496794 - Crystal Rheostat": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"E938-3071637 - LCD Dipole": 1,
"E952-1325145 - Driver Gauge": 1,
"F344-7012314 - Switch Encoder Transducer": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"I319-7938682 - Phase Network Transistor": 1,
"I625-9097378 - Coil Compensator": 1,
"K780-7736227 - Driver Rheostat": 1,
"L557-1467804 - Phase Resistor Transistor Strain": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"L691-1489542 - Phase Multiplexer Driver Capacitor": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"L940-7353182 - Resonator Warp": 1,
"M323-1526287 - Encoder Meter": 1,
"M645-5460777 - Log-periodic Multiplexer Rheostat": 1,
"N105-3985051 - Multiplexer Resistor": 1,
"N480-3487616 - Resonator Transformer": 1,
"N733-1946687 - LCD Encoder": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"O906-8511345 - Ceramic Inductor Transistor": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"P577-5587693 - Network Dipole Memristor": 1,
"R231-2442628 - Transformer Transducer": 1,
"R454-6248815 - LCD Sensor Network": 1,
"R774-2450170 - Log-periodic Network Warp": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"T941-8766844 - Planck Inductor Gauge Resonator": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"U229-5087557 - Log-periodic Sensor Inductor Transistor": 1,
"U333-8518360 - Driver Switch Transducer": 1,
"U489-9025040 - Compensator Warp": 1,
"W268-8954866 - Gauge Warp": 1,
"W295-9452529 - Sensor Encoder": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"X620-7792033 - Ceramic Resistor Rheostat": 1,
"Z358-9013730 - Flow Potentiometer Transistor": 1,
"Z768-8346288 - Coil Sensor Network": 1
}
{
"set_P": 0.6666666666666666,
"set_recall": 0.6666666666666666,
"set_F": 0.6666666666666666
}
ck26:40-de
Könnten Sie die IDs und Namen der
Hardware-Artikel auflisten, die
keinen aktiven Produktmanager
haben?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?hw ?id ?name
WHERE {
?hw a pv:Hardware ;
pv:id ?id ;
pv:name ?name .
FILTER NOT EXISTS { ?hw pv:hasProductManager/pv:name [] . }
}
{
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-B567-3760235": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-I319-7938682": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-R774-2450170": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-X620-7792033": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-P577-5587693": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-K780-7736227": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-W268-8954866": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"L691-1489542": 1,
"E938-3071637": 1,
"R454-6248815": 1,
"C605-1105328": 1,
"N733-1946687": 1,
"B567-3760235": 1,
"N105-3985051": 1,
"O906-8511345": 1,
"Z358-9013730": 1,
"U489-9025040": 1,
"T941-8766844": 1,
"E952-1325145": 1,
"I319-7938682": 1,
"C799-8367143": 1,
"M645-5460777": 1,
"B523-5464510": 1,
"A595-2446575": 1,
"H609-2196524": 1,
"L592-1084147": 1,
"R774-2450170": 1,
"E815-1132509": 1,
"W295-9452529": 1,
"M323-1526287": 1,
"X620-7792033": 1,
"L557-1467804": 1,
"T802-5361374": 1,
"Z768-8346288": 1,
"L932-9433395": 1,
"U333-8518360": 1,
"E267-7496794": 1,
"T812-6060686": 1,
"U229-5087557": 1,
"A509-5571891": 1,
"T973-5442896": 1,
"N480-3487616": 1,
"F344-7012314": 1,
"E395-9906117": 1,
"P577-5587693": 1,
"I625-9097378": 1,
"R231-2442628": 1,
"K780-7736227": 1,
"P317-3419187": 1,
"X408-2200602": 1,
"L940-7353182": 1,
"W268-8954866": 1,
"X365-6429727": 1,
"O494-6195301": 1,
"T147-7011803": 1,
"Phase Multiplexer Driver Capacitor": 1,
"LCD Dipole": 1,
"LCD Sensor Network": 1,
"Log-periodic Gauge Compensator Meter": 1,
"LCD Encoder": 1,
"LCD Resonator": 1,
"Multiplexer Resistor": 1,
"Ceramic Inductor Transistor": 1,
"Flow Potentiometer Transistor": 1,
"Compensator Warp": 1,
"Planck Inductor Gauge Resonator": 1,
"Driver Gauge": 1,
"Phase Network Transistor": 1,
"Coil Strain Meter": 1,
"Log-periodic Multiplexer Rheostat": 1,
"Bipolar-junction Switch Transducer": 1,
"Sensor Driver Capacitor": 1,
"Planck Potentiometer Transformer": 1,
"Coil Potentiometer Compensator": 1,
"Log-periodic Network Warp": 1,
"Resistor Sensor Resonator": 1,
"Sensor Encoder": 1,
"Encoder Meter": 1,
"Ceramic Resistor Rheostat": 1,
"Phase Resistor Transistor Strain": 1,
"Gauge Breaker Switch": 1,
"Coil Sensor Network": 1,
"Dipole Inductor Crystal": 1,
"Driver Switch Transducer": 1,
"Crystal Rheostat": 1,
"Coil Gauge Strain": 1,
"Log-periodic Sensor Inductor Transistor": 1,
"Multiplexer Inductor": 1,
"Sensor Driver Transducer": 1,
"Resonator Transformer": 1,
"Switch Encoder Transducer": 1,
"Flow Inductor Crystal Encoder": 1,
"Network Dipole Memristor": 1,
"Coil Compensator": 1,
"Transformer Transducer": 1,
"Driver Rheostat": 1,
"Network Breaker Transducer": 1,
"Inductor Capacitor Meter": 1,
"Resonator Warp": 1,
"Gauge Warp": 1,
"Coil Inductor Multiplexer": 1,
"Capacitor Strain Breaker": 1,
"Oscillator Transistor Capacitor": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
ASK WHERE {
?p pv:hasCategory ?cat .
FILTER STRSTARTS(STR(?p), "http://ld.company.org/prod-instances/hw-")
FILTER NOT EXISTS { ?p pv:hasProductManager ?mgr }
}
{
"true": 0
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:41-en
What share of each manager's
overall team works in the same
department as the manager?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?m ?name (?deptTeam / ?fullteam * 100 AS ?pct)
WHERE {

?m pv:name ?name .

{ # full team
SELECT ?m (COUNT(*) AS ?fullteam) WHERE {
?e pv:hasManager ?m .
} GROUP BY ?m
}

{ # team in same dept
SELECT ?m (COUNT(*) AS ?deptTeam) WHERE {
?m pv:memberOf ?dept .
?e pv:hasManager ?m .
?e pv:memberOf ?dept .
} GROUP BY ?m
}
}
{
"http://ld.company.org/prod-instances/empl-Dietlinde.Boehme%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Thomas.Mueller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Reiner.Widmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franz.Kornhaeusel%40company.org": 1,
"Dietlinde Boehme": 1,
"Waldtraud Kuttner": 1,
"Thomas Mueller": 1,
"Reiner Widmann": 1,
"Elena Herzog": 1,
"Franz Kornhaeusel": 1,
"100.0": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?mgr (SAMPLE(COALESCE(?mgrLbl0,?mgrName0,STR(?mgr))) AS ?mgrLabel) ?mgrDept (SAMPLE(COALESCE(?deptLbl0,?deptName0,STR(?mgrDept))) AS ?deptLabel) (COUNT(DISTINCT ?emp) AS ?totalReports) (SUM(IF(BOUND(?empDept) && ?empDept = ?mgrDept, 1, 0)) AS ?sameDeptCount) (xsd:decimal(SUM(IF(BOUND(?empDept) && ?empDept = ?mgrDept, 1, 0))) / xsd:decimal(COUNT(DISTINCT ?emp)) AS ?share)
WHERE {
?emp pv:hasManager ?mgr .
OPTIONAL { ?mgr pv:memberOf ?mgrDept . }
OPTIONAL { ?emp pv:memberOf ?empDept . }
OPTIONAL { ?mgr rdfs:label ?mgrLbl0 . }
OPTIONAL { ?mgr pv:name ?mgrName0 . }
OPTIONAL { ?mgrDept rdfs:label ?deptLbl0 . }
OPTIONAL { ?mgrDept pv:name ?deptName0 . }
}
GROUP BY ?mgr ?mgrDept
HAVING (COUNT(DISTINCT ?emp) > 0)
ORDER BY DESC(?share)
{}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:41-de
Welcher Anteil der Teammitglieder
jedes Managers arbeitet in
derselben Abteilung wie der Manager
selbst?
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?m ?name (?deptTeam / ?fullteam * 100 AS ?pct)
WHERE {

?m pv:name ?name .

{ # full team
SELECT ?m (COUNT(*) AS ?fullteam) WHERE {
?e pv:hasManager ?m .
} GROUP BY ?m
}

{ # team in same dept
SELECT ?m (COUNT(*) AS ?deptTeam) WHERE {
?m pv:memberOf ?dept .
?e pv:hasManager ?m .
?e pv:memberOf ?dept .
} GROUP BY ?m
}
}
{
"http://ld.company.org/prod-instances/empl-Dietlinde.Boehme%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Waldtraud.Kuttner%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Thomas.Mueller%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Reiner.Widmann%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Elena.Herzog%40company.org": 1,
"http://ld.company.org/prod-instances/empl-Franz.Kornhaeusel%40company.org": 1,
"Dietlinde Boehme": 1,
"Waldtraud Kuttner": 1,
"Thomas Mueller": 1,
"Reiner Widmann": 1,
"Elena Herzog": 1,
"Franz Kornhaeusel": 1,
"100.0": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?mgr
(SAMPLE(COALESCE(?mgrLabel0, ?mgrName0, STR(?mgr))) AS ?mgrLabel)
?mgrDept
(SAMPLE(COALESCE(?deptLabel0, ?deptName0, STR(?mgrDept))) AS ?mgrDeptLabel)
(COUNT(DISTINCT ?member) AS ?teamSize)
(SUM(IF(?memDept = ?mgrDept, 1, 0)) AS ?sameDeptCount)
(xsd:decimal(SUM(IF(?memDept = ?mgrDept, 1, 0))) / xsd:decimal(COUNT(DISTINCT ?member)) AS ?fraction)
WHERE {
?member pv:hasManager ?mgr .
?member pv:memberOf ?memDept .
?mgr pv:memberOf ?mgrDept .

OPTIONAL { ?mgr rdfs:label ?mgrLabel0 }
OPTIONAL { ?mgr pv:name ?mgrName0 }
OPTIONAL { ?mgrDept rdfs:label ?deptLabel0 }
OPTIONAL { ?mgrDept pv:name ?deptName0 }
}
GROUP BY ?mgr ?mgrDept
HAVING (COUNT(DISTINCT ?member) > 0)
ORDER BY DESC(?fraction)
{}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:42-en
Which bill of materials has the
highest average unit cost for its
hardware components, and what is
that average?
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?bom (ROUND(AVG(?spst / ?sq) * 100) / 100 AS ?avgUnitCost)
WHERE {
{
SELECT ?bom (SUM(?partSubTotal) AS ?spst) (SUM(xsd:int(?quant)) AS ?sq)
WHERE {
?bom a pv:BillOfMaterial ;
pv:hasBomPart ?part .
?part pv:quantity ?quant .
?part pv:hasPart/pv:price/pv:amount ?amount .
?part pv:hasPart/pv:price/pv:currency "EUR" .
BIND(xsd:int(?quant) * ?amount AS ?partSubTotal)
}
GROUP BY ?bom
}
}
GROUP BY ?bom
ORDER BY DESC(ROUND(AVG(?spst / ?sq) * 100) / 100)
LIMIT 1
{
"http://ld.company.org/prod-instances/bom-8": 1,
"4.22": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?bom (SAMPLE(COALESCE(rdfs:label,pv:name,STR(?bom))) AS ?bomLabel) (AVG(DISTINCT ?amount) AS ?avgAmount) (SAMPLE(?cur) AS ?currency) (COUNT(DISTINCT ?part) AS ?hardwareCount)
WHERE {
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part rdf:type pv:Hardware .
?part pv:price ?priceRes .
?priceRes pv:amount ?amount .
OPTIONAL { ?priceRes pv:currency ?cur }
}
GROUP BY ?bom
HAVING (COUNT(DISTINCT ?part) > 0)
ORDER BY DESC(?avgAmount)
LIMIT 1
{
"http://ld.company.org/prod-instances/bom-8": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"4.0": 1,
"EUR": 1,
"5": 1
}
{
"set_P": 0.2,
"set_recall": 0.5,
"set_F": 0.28571428571428575
}
ck26:42-de
Welche Stückliste hat die höchsten
durchschnittlichen Stückkosten für
ihre Hardwarekomponenten, und wie
hoch sind diese durchschnittlichen
Kosten?
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX prodi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?bom (ROUND(AVG(?spst / ?sq) * 100) / 100 AS ?avgUnitCost)
WHERE {
{
SELECT ?bom (SUM(?partSubTotal) AS ?spst) (SUM(xsd:int(?quant)) AS ?sq)
WHERE {
?bom a pv:BillOfMaterial ;
pv:hasBomPart ?part .
?part pv:quantity ?quant .
?part pv:hasPart/pv:price/pv:amount ?amount .
?part pv:hasPart/pv:price/pv:currency "EUR" .
BIND(xsd:int(?quant) * ?amount AS ?partSubTotal)
}
GROUP BY ?bom
}
}
GROUP BY ?bom
ORDER BY DESC(ROUND(AVG(?spst / ?sq) * 100) / 100)
LIMIT 1
{
"http://ld.company.org/prod-instances/bom-8": 1,
"4.22": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?bom (SAMPLE(COALESCE(rdfs:label, pv:name, STR(?bom))) AS ?bomLabel) (AVG(?amount) AS ?avgUnitCost) WHERE {
?bom rdf:type pv:BillOfMaterial ;
pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part rdf:type pv:Hardware .
?part pv:price ?priceObj .
?priceObj pv:amount ?amount .
}
GROUP BY ?bom
ORDER BY DESC(?avgUnitCost)
LIMIT 1
{
"http://ld.company.org/prod-instances/bom-8": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"4.0": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 0.5,
"set_F": 0.4
}
ck26:43-en
Could you list any product
compatibility cycles—instances
where product A states it's
compatible with product B and
product B likewise lists product A
as compatible?
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?a ?b
WHERE {
?a pv:compatibleProduct ?b .
FILTER (STR(?a) < STR(?b))
}
{
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?a ?aLabel ?b ?bLabel WHERE {
?a pv:compatibleProduct ?b .
?b pv:compatibleProduct ?a .
FILTER(?a != ?b) .
FILTER(STR(?a) < STR(?b)) .
OPTIONAL { ?a rdfs:label ?a_lbl0 . }
OPTIONAL { ?a pv:name ?a_name0 . }
OPTIONAL { ?b rdfs:label ?b_lbl0 . }
OPTIONAL { ?b pv:name ?b_name0 . }
BIND(COALESCE(?a_lbl0, ?a_name0, STR(?a)) AS ?aLabel)
BIND(COALESCE(?b_lbl0, ?b_name0, STR(?b)) AS ?bLabel)
} ORDER BY ?aLabel ?bLabel
{
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"A145-1240844 - Bipolar-junction Coil Compensator Transducer": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"A181-1118563 - Compensator Switch": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"A315-1730287 - Network Dipole": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A391-9508821 - Oscillator Compensator": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"A529-2906246 - Sensor Crystal": 1,
"A560-7347187 - Oscillator Driver": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"A599-2465791 - Driver Memristor": 1,
"A607-3251492 - Bipolar-junction Transistor Compensator": 1,
"A617-7075018 - Crystal Switch": 1,
"A628-8869626 - Inductor Gauge Oscillator": 1,
"A688-6056899 - Multiplexer Inductor": 1,
"A739-4780210 - Memristor Driver Strain": 1,
"A750-6901242 - Film Resistor Memristor Meter": 1,
"A755-9228475 - Resistor Driver": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"A828-3713433 - Multiplexer Breaker": 1,
"A837-2549775 - LCD Gauge": 1,
"A932-9527078 - Ceramic Multiplexer Potentiometer Gauge": 1,
"A964-7949458 - Bipolar-junction Encoder Transducer": 1,
"A981-3634031 - Driver Memristor": 1,
"A994-9085459 - LCD Compensator": 1,
"A998-9941987 - Flow Compensator": 1,
"B120-9942467 - Coil Driver": 1,
"B131-7597100 - LCD Sensor Transducer": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"B161-8326597 - Inductor Potentiometer": 1,
"B232-9941304 - Ceramic Rheostat Compensator": 1,
"B286-1369879 - Flow Coil Meter": 1,
"B308-8130581 - Memristor Breaker": 1,
"B365-4394675 - Flow Gauge Resonator Breaker": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B429-3694560 - Network Switch": 1,
"B436-6020212 - Potentiometer Crystal": 1,
"B488-6957957 - Strain Capacitor": 1,
"B507-9536014 - LCD Network": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B541-8783084 - Flow Potentiometer Gauge": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"B633-4277974 - Multiplexer Strain": 1,
"B646-2108570 - Dipole Transducer": 1,
"B688-8088841 - Log-periodic Crystal Rheostat Encoder": 1,
"B693-5414825 - Planck Transformer Transistor Capacitor": 1,
"B818-8738213 - Crystal Capacitor": 1,
"B820-6334766 - LCD Strain Capacitor": 1,
"B825-7596233 - Resistor Compensator": 1,
"B888-3582334 - Aluminum Potentiometer Crystal": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"B937-9245602 - Driver Compensator": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"C182-2689274 - Potentiometer Driver": 1,
"C200-5363446 - Network Transducer": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"C247-3833661 - Encoder Transformer": 1,
"C371-9169438 - Polymer Transducer Meter": 1,
"C375-1115425 - Polymer Inductor Gauge Rheostat": 1,
"C390-4121800 - Sensor Strain": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"C431-5986267 - Transformer Meter": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"C527-6179790 - LCD Oscillator Sensor": 1,
"C551-8482722 - Planck Transducer": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"C622-9716605 - Oscillator Transducer": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"C633-6541408 - Field-effect Potentiometer Transformer Switch": 1,
"C697-6765940 - Network Driver": 1,
"C699-1385746 - Resistor Driver Breaker": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"C770-9751514 - Transistor Resonator Breaker": 1,
"C799-8367143 - Coil Strain Meter": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"C831-2580759 - Warp": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"C844-8161134 - Crystal Compensator": 1,
"C845-4085909 - Flow Network Strain": 1,
"C916-8310851 - Bipolar-junction Oscillator Transformer": 1,
"C917-9516418 - LCD Coil": 1,
"C970-6304679 - Ceramic Coil Rheostat": 1,
"C977-9932879 - Memristor Encoder": 1,
"D160-4387774 - Gauge Transformer": 1,
"D194-9594371 - Sensor Gauge Transistor": 1,
"D215-3449390 - Gauge Crystal": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"D243-3238752 - Log-periodic Transistor Encoder Compensator": 1,
"D331-6211280 - LCD Coil Transistor": 1,
"D334-6681399 - Resistor Inductor Gauge": 1,
"D371-6210252 - Memristor Capacitor Transformer": 1,
"D381-6342696 - Inductor": 1,
"D400-2425852 - Sensor Crystal": 1,
"D483-7794770 - Memristor Gauge": 1,
"D516-5106885 - Driver Rheostat Capacitor": 1,
"D518-3930277 - Sensor Resonator": 1,
"D519-3521758 - Sensor Driver Resonator": 1,
"D525-4805979 - Compensator Transducer": 1,
"D548-3561584 - Potentiometer Gauge Compensator": 1,
"D599-6113892 - Aluminum Multiplexer Coil Strain": 1,
"D603-1225899 - Field-effect Memristor Resonator Transducer": 1,
"D605-8095260 - Network Inductor": 1,
"D642-3058791 - Polymer LCD Dipole Switch": 1,
"D679-1940878 - LCD Potentiometer Transducer": 1,
"D729-5737042 - Coil Resistor Warp": 1,
"D762-3837218 - Inductor Capacitor Switch": 1,
"D844-3535311 - Resistor Gauge Encoder": 1,
"D903-5325470 - Flow Crystal Rheostat": 1,
"D973-4134519 - Aluminum Network Transducer": 1,
"E172-8066897 - Driver Compensator": 1,
"E187-6115721 - LCD Inductor Transducer": 1,
"E189-1255687 - LCD Potentiometer Breaker": 1,
"E246-3200290 - Field-effect Network Rheostat": 1,
"E267-7496794 - Crystal Rheostat": 1,
"E296-9034321 - Heisenberg Inductor Breaker Encoder": 1,
"E358-6492536 - Resistor Crystal": 1,
"E365-4375068 - Strain Compensator": 1,
"E373-8515317 - Field-effect Resistor Resonator": 1,
"E395-9906117 - Flow Inductor Crystal Encoder": 1,
"E416-7318916 - Dipole Crystal": 1,
"E424-4700158 - Rheostat Compensator Meter": 1,
"E469-1218832 - Dipole Crystal": 1,
"E471-9316820 - Bipolar-junction Coil Dipole Transformer": 1,
"E495-3503010 - Dipole Resonator Transformer": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"E529-9160800 - Network Inductor": 1,
"E558-1962104 - Planck Breaker Compensator": 1,
"E563-8448172 - Warp Capacitor Meter": 1,
"E576-3538706 - Encoder Breaker": 1,
"E585-3605747 - Resistor Dipole": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"E617-6594892 - Field-effect Driver Strain Compensator": 1,
"E652-6887116 - Gauge Compensator": 1,
"E661-6880042 - Crystal Rheostat Breaker": 1,
"E737-8373948 - Oscillator Inductor": 1,
"E793-4560979 - Capacitor Resonator Compensator": 1,
"E812-9665212 - Bipolar-junction LCD Potentiometer Encoder": 1,
"E813-9861759 - Ceramic Memristor Warp": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"E829-2591611 - Memristor Compensator": 1,
"E835-1316991 - Resistor Breaker": 1,
"E868-5063965 - Coil Compensator": 1,
"E882-2235305 - Phase Multiplexer Network Warp": 1,
"E917-4866901 - Capacitor Warp": 1,
"E938-3071637 - LCD Dipole": 1,
"E952-1325145 - Driver Gauge": 1,
"E958-8187096 - Multiplexer Resistor Driver": 1,
"F126-7002599 - Log-periodic Oscillator Transistor": 1,
"F146-1429118 - Flow Gauge Rheostat Encoder": 1,
"F179-4094930 - Bipolar-junction Sensor Crystal": 1,
"F198-1414890 - Crystal Transformer": 1,
"F204-7999856 - Meter Warp": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"F266-5876962 - Multiplexer Transistor": 1,
"F344-7012314 - Switch Encoder Transducer": 1,
"F383-6450755 - Strain Encoder": 1,
"F388-7030185 - Oscillator Transistor Transducer": 1,
"F442-1761220 - Aluminum Oscillator Transistor Strain": 1,
"F496-3982542 - Resonator Rheostat Breaker": 1,
"F553-8518538 - Aluminum Sensor Capacitor": 1,
"F565-7076382 - Dipole Resonator Transducer": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"F661-8988230 - Warp Transistor Meter": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"F708-2915261 - Crystal Resonator": 1,
"F735-3322876 - Planck Potentiometer Capacitor": 1,
"F773-4598178 - Transistor Breaker Switch": 1,
"F779-9528637 - Phase Sensor Transistor": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"F800-9858235 - Field-effect Gauge Transistor": 1,
"F812-7003324 - Rheostat Compensator": 1,
"F969-8946081 - Inductor Rheostat": 1,
"G144-5498082 - Multiplexer Transistor Transformer": 1,
"G144-7255154 - Dipole Rheostat Capacitor": 1,
"G179-6566342 - Resistor Rheostat Meter": 1,
"G205-5318100 - LCD Gauge": 1,
"G226-1299624 - Multiplexer Crystal Transformer": 1,
"G249-4926490 - Film Network Crystal": 1,
"G251-8414984 - Coil Rheostat": 1,
"G261-8681976 - Multiplexer Oscillator Inductor": 1,
"G272-3422671 - Resistor Sensor": 1,
"G333-6105148 - Planck Oscillator Encoder Transducer": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"G378-7132339 - Resistor Dipole": 1,
"G403-4566802 - LCD Resonator Warp": 1,
"G420-6271055 - Potentiometer Driver": 1,
"G439-8153345 - Memristor Driver Breaker": 1,
"G444-8036184 - Network Memristor Breaker": 1,
"G451-8179125 - Phase Transistor Warp": 1,
"G556-4971578 - Flow Coil Memristor Breaker": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"G625-4620445 - Log-periodic Driver Compensator": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"G826-1197003 - Heisenberg LCD Oscillator Breaker": 1,
"G858-9670227 - Network Transducer": 1,
"G881-8555057 - Flow Dipole Meter Warp": 1,
"G934-5417476 - Aluminum Multiplexer Memristor Transformer": 1,
"G966-6452177 - Coil Driver Resonator": 1,
"H156-2424615 - Polymer Driver Transistor Breaker": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"H236-9180061 - Oscillator Dipole Capacitor": 1,
"H244-4330589 - LCD Strain": 1,
"H252-2977732 - Field-effect Oscillator Switch Transducer": 1,
"H288-7210201 - Log-periodic Memristor Meter": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"H388-1193255 - Resonator Rheostat": 1,
"H482-4970770 - Transistor Rheostat Switch": 1,
"H491-2171849 - Multiplexer Meter": 1,
"H502-2553729 - Flow Resistor Inductor Transformer": 1,
"H569-9184293 - Inductor Rheostat Breaker": 1,
"H577-3512936 - Film Coil Crystal Strain": 1,
"H598-5149929 - Transistor Rheostat": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"H631-9376983 - Aluminum Network Oscillator Capacitor": 1,
"H641-1089353 - Log-periodic Potentiometer Resonator": 1,
"H642-6966395 - Polymer Strain Rheostat": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"H660-8942410 - Sensor Warp": 1,
"H664-9736043 - Log-periodic Potentiometer Resonator": 1,
"H690-4065164 - Heisenberg Oscillator Memristor Meter": 1,
"H745-5284103 - Gauge Breaker Compensator": 1,
"H747-8053953 - Resonator Meter": 1,
"H752-8461936 - Network LCD": 1,
"H754-2495350 - Crystal Breaker": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"H956-3958783 - Aluminum Resistor Transistor Transformer": 1,
"H962-4715431 - Phase Dipole Transformer": 1,
"I199-7642085 - Coil Strain": 1,
"I241-8776317 - Strain Compensator": 1,
"I242-5347848 - Compensator Warp": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"I272-3912947 - Ceramic Inductor Resonator": 1,
"I311-9589498 - Coil LCD Capacitor": 1,
"I334-4449270 - Resistor Dipole Gauge": 1,
"I409-8215134 - Film LCD Transducer": 1,
"I468-8034393 - Network Rheostat": 1,
"I482-3778442 - Dipole Rheostat Compensator": 1,
"I532-1549244 - Resonator Encoder": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"I625-9097378 - Coil Compensator": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"I679-1230971 - Memristor Compensator": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"I771-2451857 - Potentiometer Breaker Oscillator": 1,
"I884-8763759 - Ceramic Inductor Breaker": 1,
"I892-8435352 - Heisenberg LCD Driver": 1,
"I904-2574215 - Coil Encoder": 1,
"I965-1821441 - Multiplexer Resistor": 1,
"I966-3317124 - Dipole Breaker Transducer": 1,
"J129-5121523 - Inductor Driver Transducer": 1,
"J164-5917711 - Film Multiplexer Crystal Rheostat": 1,
"J178-7002767 - Flow LCD Transistor Transducer": 1,
"J209-5198739 - Phase Memristor Capacitor": 1,
"J234-3498557 - Inductor Driver Breaker": 1,
"J259-5185660 - Memristor Encoder": 1,
"J370-9195708 - Multiplexer Potentiometer Compensator": 1,
"J391-2253339 - Heisenberg LCD Resonator": 1,
"J437-7431991 - Potentiometer Crystal": 1,
"J470-3164222 - Multiplexer Memristor Rheostat": 1,
"J505-2473322 - Coil Rheostat Transducer": 1,
"J519-7020928 - Driver Transducer": 1,
"J544-6748850 - LCD Compensator": 1,
"J555-1586043 - Transformer Inductor Encoder": 1,
"J571-5923698 - Multiplexer Resistor": 1,
"J575-3390923 - Phase Coil Capacitor Transducer": 1,
"J625-3464908 - Sensor Crystal Warp": 1,
"J628-3649699 - Breaker Meter": 1,
"J720-4179367 - Phase Sensor Crystal": 1,
"J734-1368842 - Inductor Gauge Meter": 1,
"J769-7213127 - Planck Multiplexer Driver Transistor": 1,
"J781-8212433 - Oscillator Meter": 1,
"J785-9314350 - Inductor Crystal Oscillator": 1,
"J820-7132026 - Polymer Inductor": 1,
"J824-5227925 - Strain Switch": 1,
"J824-9483042 - Dipole Resonator Breaker": 1,
"J826-7793079 - Coil Potentiometer Memristor": 1,
"J856-1304399 - Resistor Transducer": 1,
"J878-7667870 - LCD Crystal": 1,
"J986-8306638 - Phase Multiplexer Crystal Transducer": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"K242-3459162 - Resistor Warp": 1,
"K313-8452822 - Heisenberg Crystal Transformer": 1,
"K334-8882985 - Network Resonator Encoder": 1,
"K367-1320550 - Strain Encoder": 1,
"K375-1173149 - Inductor Breaker": 1,
"K473-9950981 - Coil Compensator": 1,
"K479-8347265 - Phase Resistor Memristor Meter": 1,
"K542-2074800 - Coil Encoder": 1,
"K559-3177627 - Rheostat Transformer Warp": 1,
"K630-6895992 - LCD Gauge Switch": 1,
"K636-3664460 - Memristor Capacitor": 1,
"K651-4147885 - LCD Crystal": 1,
"K662-1238230 - Memristor Transistor Compensator": 1,
"K671-7410535 - Driver Rheostat": 1,
"K689-4865625 - Log-periodic Multiplexer Dipole Transducer": 1,
"K739-4867689 - Multiplexer Resonator Compensator": 1,
"K764-8378288 - Aluminum Resistor Warp": 1,
"K832-2729798 - Resistor Potentiometer Oscillator": 1,
"K845-4116844 - Breaker Encoder Transducer": 1,
"K850-3410875 - Transducer Gauge Switch": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"K926-9334427 - LCD Encoder Compensator": 1,
"K995-8098017 - Resonator Meter": 1,
"L128-5499058 - Field-effect Multiplexer Potentiometer": 1,
"L173-2699667 - Coil LCD": 1,
"L189-7913415 - Oscillator Warp": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"L262-1109442 - Polymer Inductor Rheostat Breaker": 1,
"L275-4377274 - Inductor Transformer": 1,
"L316-4863597 - Potentiometer Inductor": 1,
"L365-6842646 - Driver Transducer": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"L536-5185541 - Coil Gauge": 1,
"L557-1467804 - Phase Resistor Transistor Strain": 1,
"L569-8145670 - Capacitor Transistor Compensator": 1,
"L586-5133830 - Multiplexer Dipole": 1,
"L612-4428366 - Resonator Rheostat": 1,
"L619-5092078 - Crystal Resonator Transformer": 1,
"L691-1489542 - Phase Multiplexer Driver Capacitor": 1,
"L741-9253790 - LCD Strain": 1,
"L747-7633290 - Resistor Sensor Encoder": 1,
"L760-6079543 - Resistor Breaker": 1,
"L781-7008508 - Bipolar-junction Multiplexer Inductor Transformer": 1,
"L787-2053792 - Potentiometer Rheostat Compensator": 1,
"L792-8374906 - Sensor Memristor Meter": 1,
"L805-3283253 - Coil Compensator Warp": 1,
"L816-8238278 - Inductor": 1,
"L822-2103281 - Polymer Encoder Switch": 1,
"L855-9772914 - Phase Breaker Encoder": 1,
"L940-7353182 - Resonator Warp": 1,
"M128-9664568 - Sensor Rheostat Breaker": 1,
"M175-2087039 - Film Oscillator": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"M323-1526287 - Encoder Meter": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"M361-5073440 - Film Transformer Transducer": 1,
"M367-8246717 - Potentiometer Gauge Warp": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"M605-5951566 - Rheostat Transformer": 1,
"M627-4661911 - Phase Memristor Driver": 1,
"M645-5460777 - Log-periodic Multiplexer Rheostat": 1,
"M650-3458375 - Heisenberg Network Strain Encoder": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"M703-4614993 - Coil Potentiometer Transducer": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"M750-1800450 - Crystal Encoder": 1,
"M770-3602005 - Sensor Capacitor Breaker": 1,
"M774-4843227 - Breaker Transducer": 1,
"M805-4248390 - Polymer Inductor Crystal Capacitor": 1,
"M812-1436368 - Bipolar-junction Crystal Rheostat": 1,
"M827-2856044 - Driver Warp": 1,
"M885-1885470 - Field-effect Transistor Crystal Switch": 1,
"M914-2979544 - Log-periodic Oscillator Sensor": 1,
"M986-2342719 - Resistor Memristor": 1,
"N105-3985051 - Multiplexer Resistor": 1,
"N137-2655981 - Inductor Compensator": 1,
"N153-4376308 - Aluminum Inductor Breaker": 1,
"N180-3300253 - Encoder Transducer": 1,
"N269-8309461 - LCD Potentiometer Warp": 1,
"N317-6012752 - Oscillator Driver Sensor": 1,
"N324-9642439 - Driver Warp": 1,
"N366-8062929 - Network Oscillator Strain": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"N411-3014396 - Network Compensator": 1,
"N451-2350273 - Network Strain Meter": 1,
"N560-4369045 - Resistor Compensator": 1,
"N568-8608034 - Coil Oscillator Switch": 1,
"N583-9253059 - Dipole Breaker": 1,
"N654-6497636 - Coil Transformer Compensator": 1,
"N694-7625752 - Field-effect Resistor Sensor": 1,
"N704-3896920 - Strain Encoder": 1,
"N733-1946687 - LCD Encoder": 1,
"N744-5971232 - Coil Strain": 1,
"N773-8807466 - Multiplexer Switch": 1,
"N778-8753186 - Planck Multiplexer Transformer Warp": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"N869-4606944 - Film Memristor Compensator": 1,
"N879-4735381 - Multiplexer Inductor Crystal": 1,
"N881-4812973 - Meter": 1,
"N892-9855685 - Crystal Strain Capacitor": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"N982-3577798 - Network Transformer": 1,
"N998-2489600 - Bipolar-junction Strain": 1,
"O204-4321819 - Field-effect Resistor Potentiometer Rheostat": 1,
"O212-8971793 - Strain Meter": 1,
"O270-3409076 - Flow Network Dipole Warp": 1,
"O311-4466005 - Coil Inductor": 1,
"O475-7125508 - Multiplexer Oscillator Coil": 1,
"O491-3823912 - LCD Sensor": 1,
"O502-4324008 - Sensor Transistor Encoder": 1,
"O553-6585255 - Resistor Encoder Breaker": 1,
"O626-4153303 - Driver Memristor": 1,
"O636-3428529 - Resonator Strain Meter": 1,
"O662-4012383 - Resistor Crystal Encoder": 1,
"O727-5999075 - Field-effect Transistor Rheostat Breaker": 1,
"O748-4307356 - LCD Inductor Oscillator": 1,
"O857-5463957 - Transistor Compensator": 1,
"O875-5580798 - Heisenberg LCD Network Memristor": 1,
"O906-8511345 - Ceramic Inductor Transistor": 1,
"O944-9764063 - Inductor Memristor Resonator": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"P162-1457428 - Polymer Coil Capacitor Warp": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"P228-7323906 - Bipolar-junction Network Inductor Oscillator": 1,
"P253-1288849 - Dipole Compensator": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"P323-7286189 - Sensor Encoder Warp": 1,
"P360-3533771 - Aluminum Transducer Capacitor Switch": 1,
"P385-1200138 - Potentiometer Resonator": 1,
"P393-8310950 - Multiplexer Crystal Switch": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"P494-3529490 - Ceramic Crystal Switch": 1,
"P528-2149873 - Encoder Compensator": 1,
"P729-6290809 - Heisenberg Driver Resonator Transducer": 1,
"P774-3681449 - Resonator Switch": 1,
"P870-6495639 - Inductor Transistor Warp": 1,
"P903-7514284 - Dipole Capacitor": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"Q176-6210359 - Oscillator Transistor Crystal": 1,
"Q187-2944814 - Multiplexer Potentiometer LCD": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"Q210-8168184 - Network Multiplexer": 1,
"Q223-1316238 - Dipole Inductor Switch": 1,
"Q245-9575444 - Inductor Driver Encoder": 1,
"Q248-7597886 - Oscillator Strain": 1,
"Q493-2919102 - Oscillator Capacitor": 1,
"Q516-8248086 - Transducer Switch": 1,
"Q594-6895704 - LCD Network": 1,
"Q672-2667601 - Multiplexer Resonator": 1,
"Q696-9337626 - Ceramic Coil Breaker": 1,
"Q852-7359409 - Ceramic Network Rheostat": 1,
"Q881-7871943 - Oscillator Resonator Compensator": 1,
"Q951-7651773 - Coil Compensator": 1,
"Q980-7885274 - Heisenberg Strain Capacitor": 1,
"Q992-9818584 - Flow Oscillator Inductor Compensator": 1,
"R112-2955867 - Oscillator Encoder Compensator": 1,
"R135-6598379 - Capacitor Meter": 1,
"R187-6602262 - Film Resistor Crystal Encoder": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"R231-2442628 - Transformer Transducer": 1,
"R287-3749176 - Log-periodic Memristor Encoder": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"R338-2935955 - Film Multiplexer Breaker": 1,
"R383-8831143 - Flow Potentiometer Resonator": 1,
"R389-4348258 - Network Gauge": 1,
"R454-6248815 - LCD Sensor Network": 1,
"R490-4226805 - Coil Resonator LCD": 1,
"R524-4869682 - Planck Multiplexer Inductor": 1,
"R586-3728998 - Gauge Breaker": 1,
"R591-4930195 - Multiplexer Resonator Transformer": 1,
"R599-8820686 - Film Sensor Dipole": 1,
"R645-9208510 - Memristor Breaker": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"R725-9753976 - Coil Resistor Encoder": 1,
"R771-3893828 - Multiplexer LCD Transducer": 1,
"R786-6586508 - Coil LCD Rheostat": 1,
"R902-1645052 - Film Network Gauge Compensator": 1,
"R946-7112528 - Sensor Breaker": 1,
"S113-2439377 - LCD Potentiometer": 1,
"S174-1960652 - Ceramic Resonator Rheostat": 1,
"S176-7294665 - Planck Gauge Compensator": 1,
"S212-6028302 - Rheostat Encoder": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"S271-9518696 - Crystal Encoder": 1,
"S314-3937138 - Heisenberg Memristor Breaker Switch": 1,
"S388-7116324 - Polymer Inductor Transistor Oscillator": 1,
"S429-3352092 - Dipole Switch": 1,
"S450-5654221 - Multiplexer Transistor": 1,
"S531-7887299 - Transistor Switch": 1,
"S841-8644004 - Flow Sensor Transistor Encoder": 1,
"T119-8723477 - Driver Crystal": 1,
"T124-5609647 - Network Compensator": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"T294-9722443 - Heisenberg LCD Crystal Resonator": 1,
"T319-6530857 - Sensor Transducer": 1,
"T504-8448784 - Flow Potentiometer Gauge Oscillator": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"T721-4459242 - Coil Compensator": 1,
"T725-1852362 - Field-effect Multiplexer Potentiometer": 1,
"T802-5361374 - Gauge Breaker Switch": 1,
"T805-4210259 - Heisenberg Network Oscillator Strain": 1,
"T812-6060686 - Coil Gauge Strain": 1,
"T814-8858070 - Multiplexer Transistor": 1,
"T941-8766844 - Planck Inductor Gauge Resonator": 1,
"T958-2055544 - Bipolar-junction Network Transformer": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"U217-4742599 - Transistor Transducer": 1,
"U229-5087557 - Log-periodic Sensor Inductor Transistor": 1,
"U281-1671869 - Dipole Transformer Meter": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"U360-2815908 - Potentiometer Rheostat": 1,
"U389-9635839 - Multiplexer Switch": 1,
"U501-5365139 - Sensor Transformer Compensator": 1,
"U573-1229465 - Potentiometer Transformer Oscillator": 1,
"U614-3483402 - Sensor Compensator Transducer": 1,
"U623-2779596 - Multiplexer LCD Switch": 1,
"U651-8669022 - Heisenberg Inductor Rheostat Transformer": 1,
"U733-5722614 - Network Breaker Compensator": 1,
"U772-6050161 - Resonator Encoder Warp": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"U889-6360502 - Encoder Capacitor Compensator": 1,
"U958-4696127 - Memristor Compensator Meter": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"V156-6277722 - Multiplexer Resistor Transducer": 1,
"V178-8820348 - LCD Inductor": 1,
"V436-9027098 - Polymer Gauge Crystal": 1,
"V488-1866672 - Log-periodic Rheostat Strain Transducer": 1,
"V509-7873455 - LCD Potentiometer Transformer": 1,
"V519-6173906 - Inductor Memristor Breaker": 1,
"V673-7881809 - Heisenberg Resistor Resonator Compensator": 1,
"V876-7098157 - Potentiometer Transistor": 1,
"V940-2277346 - Aluminum Oscillator Potentiometer Encoder": 1,
"W156-1748173 - Crystal Rheostat Warp": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"W344-5163065 - Heisenberg Capacitor Transducer": 1,
"W457-2405463 - LCD Gauge Warp": 1,
"W529-7595129 - Film LCD Strain": 1,
"W658-9979899 - Multiplexer Switch": 1,
"W769-8151254 - Field-effect LCD Multiplexer Capacitor": 1,
"X230-3586307 - LCD Network": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"X283-7840276 - Planck Sensor Dipole Capacitor": 1,
"X874-7370643 - Network Resistor": 1,
"Y676-8284278 - Encoder Warp": 1,
"Y728-5119478 - Sensor Crystal Transducer": 1,
"Y788-8477334 - Inductor Encoder Capacitor": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"Z587-4413312 - Aluminum Dipole Sensor Capacitor": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"X235-5406274 - Sensor Transducer": 1,
"M558-2275045 - Sensor Switch": 1,
"Z439-5790785 - Log-periodic Network Meter Switch": 1,
"U990-5234138 - LCD Inductor": 1,
"W220-5347961 - Ceramic Coil Oscillator Breaker": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"I479-8852507 - Sensor Memristor Strain": 1,
"J671-5760255 - Driver Crystal": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"F264-7752472 - Resonator Switch": 1,
"K411-1729714 - Driver Gauge": 1,
"Q316-9683240 - Multiplexer Transistor": 1,
"U827-2294099 - Potentiometer Inductor Warp": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"U723-8910149 - Memristor Gauge Transformer": 1,
"U681-7406159 - Film Driver Switch": 1,
"J859-3337215 - Inductor Memristor": 1,
"R414-3098561 - Multiplexer Meter": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"W521-8006606 - Flow Memristor Transistor Compensator": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"P957-8177638 - Multiplexer Dipole Transducer": 1,
"Q263-2186291 - Sensor Crystal": 1,
"T230-5902294 - LCD Resistor": 1,
"G494-2537921 - Coil Encoder Switch": 1,
"M449-5231838 - Transistor Crystal": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"D544-9061559 - Rheostat Capacitor Meter": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"W493-4799721 - Network Warp": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"K167-1377420 - Coil Potentiometer Transducer": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"P360-3765415 - LCD Dipole": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"W981-1196694 - Multiplexer Memristor Breaker": 1,
"Z165-5413714 - Gauge Transducer": 1,
"M313-3585673 - Heisenberg Memristor Rheostat Transducer": 1,
"N462-6714196 - Gauge Encoder": 1,
"N823-7028680 - LCD Potentiometer Switch": 1,
"O712-3456018 - Log-periodic Compensator": 1,
"Z889-8463159 - Resistor Inductor": 1,
"U619-9969216 - Coil Inductor Transistor": 1,
"U743-1581581 - Memristor Driver Strain": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"T586-1678071 - Resistor Transistor Capacitor": 1,
"R860-6284767 - Oscillator Compensator Warp": 1,
"R658-8902629 - Strain Meter": 1,
"W846-7438265 - Resistor Memristor Capacitor": 1,
"Z739-8572107 - Network Potentiometer Gauge": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"Y728-2083256 - Gauge Crystal Encoder": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"W988-3702091 - Inductor Rheostat Warp": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"X897-7676293 - Coil Potentiometer Strain": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"Y714-9954664 - Bipolar-junction Oscillator Gauge": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"V881-4674578 - Planck Dipole Driver Crystal": 1,
"N589-9719896 - Sensor Transformer": 1,
"U333-8518360 - Driver Switch Transducer": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"Z768-8346288 - Coil Sensor Network": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"J178-5863159 - Crystal Transducer": 1,
"J998-8511305 - Resonator Transformer": 1,
"Q546-7014038 - Field-effect Memristor Rheostat": 1,
"J872-7568181 - Encoder Breaker": 1,
"N573-1498086 - Dipole Transformer": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"Q694-8417409 - Sensor Crystal": 1,
"Z373-9393076 - Resonator Transformer": 1,
"W821-9428247 - Dipole Memristor Encoder": 1,
"I314-5607546 - Polymer Resistor Dipole Gauge": 1,
"Y162-1430218 - Ceramic Dipole Memristor Breaker": 1,
"J420-5667802 - Ceramic Inductor Crystal Transformer": 1,
"Z272-2955088 - Coil Sensor Resonator": 1,
"V759-7427700 - LCD Dipole Resonator": 1,
"H510-3094779 - Resonator Transformer": 1,
"V654-5789502 - Polymer Resistor Memristor Strain": 1,
"V600-6144297 - Driver Transducer": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"Z452-1805723 - Capacitor Switch": 1,
"V421-9533599 - Network Switch": 1,
"X480-1491345 - LCD Gauge Crystal": 1,
"O489-4154201 - Potentiometer Transistor Compensator": 1,
"T808-9704137 - Gauge Encoder Breaker": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"Q751-8742744 - Inductor Resonator": 1,
"Z190-5822042 - Polymer Multiplexer Crystal Capacitor": 1,
"Q774-7287508 - Flow Potentiometer Crystal Rheostat": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"U489-9025040 - Compensator Warp": 1,
"W892-1983772 - Log-periodic Coil Sensor Transducer": 1,
"Y299-9772513 - Log-periodic Oscillator Transformer": 1,
"N243-4639047 - Aluminum Resistor Meter": 1,
"T161-7769514 - Network Breaker Capacitor": 1,
"W436-5301120 - Encoder Transducer": 1,
"M244-7026376 - Coil Compensator": 1,
"J154-2269983 - Capacitor Compensator": 1,
"H958-9648652 - Potentiometer Crystal Warp": 1,
"Q890-8785073 - Film Dipole Rheostat": 1,
"W661-3032609 - LCD Inductor Oscillator": 1,
"S649-2935217 - LCD Inductor Memristor": 1,
"W847-4354260 - Aluminum Resistor Gauge": 1,
"Q353-5311148 - Ceramic Compensator Breaker Transducer": 1,
"J225-9158499 - Resistor Rheostat Capacitor": 1,
"H439-1697643 - Log-periodic LCD Gauge": 1,
"W903-2104201 - Bipolar-junction Encoder Compensator": 1,
"V437-5667353 - Sensor Driver Strain": 1,
"L485-8083934 - Inductor Warp Switch": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"Z848-4991684 - Multiplexer Dipole": 1,
"N664-8476091 - Rheostat Encoder": 1,
"W726-4190110 - Ceramic Multiplexer Transistor LCD": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"U861-6382993 - Compensator Meter": 1,
"Z553-4314789 - Dipole Capacitor": 1,
"Z980-8040792 - Inductor Transistor Oscillator": 1,
"W988-9267091 - Transistor Strain": 1,
"Q476-3668478 - LCD Crystal Resonator": 1,
"N324-6810821 - Aluminum Rheostat Transformer Warp": 1,
"P966-3555304 - Planck Dipole Rheostat Breaker": 1,
"V645-2413888 - Log-periodic Oscillator Transistor Rheostat": 1,
"R181-9365849 - Log-periodic LCD Transformer": 1,
"P708-1537318 - Bipolar-junction Network Strain": 1,
"O856-7652159 - Coil Gauge Strain": 1,
"P717-5835879 - Rheostat Transformer": 1,
"P983-2994865 - Log-periodic Sensor Switch Transducer": 1,
"M206-5050706 - Resistor Transducer": 1,
"Y979-3662601 - Memristor Strain Switch": 1,
"N558-1730215 - Flow Coil Dipole Strain": 1,
"P925-8919074 - Inductor Switch": 1,
"O531-4282131 - Multiplexer": 1,
"O537-7333259 - Oscillator Transformer": 1,
"M521-8491113 - Multiplexer Coil Resonator": 1,
"V610-4162567 - Breaker Encoder": 1,
"J518-7067023 - Phase Oscillator Strain": 1,
"Y863-3538159 - Multiplexer Rheostat": 1,
"H538-7285000 - Breaker Meter": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"Z293-3675192 - Ceramic Potentiometer Gauge Encoder": 1,
"N237-3608803 - Flow Capacitor Meter": 1,
"P516-8211068 - Film Multiplexer Rheostat Warp": 1,
"Z646-5864967 - Coil Encoder Switch": 1,
"X954-5873970 - Bipolar-junction Oscillator Memristor Sensor": 1,
"M974-1997588 - Potentiometer Dipole": 1,
"W986-7950553 - Field-effect Memristor Resonator Compensator": 1,
"P965-2818538 - Warp Compensator Transducer": 1,
"V404-9975399 - Resonator Transformer": 1,
"L984-7886943 - Resistor Oscillator": 1,
"Z617-4660142 - Ceramic Potentiometer Compensator": 1,
"X504-5674380 - Ceramic Memristor Resonator Compensator": 1,
"Z887-4941382 - Encoder Compensator": 1,
"T341-6404509 - LCD Transducer Meter": 1,
"P982-4384687 - Oscillator Sensor Resonator": 1,
"P785-3702584 - Log-periodic Multiplexer Potentiometer Memristor": 1,
"R774-3816629 - Log-periodic Encoder Transducer": 1,
"T831-2675171 - Planck Coil Oscillator": 1,
"Z212-3451369 - Driver Strain": 1,
"P787-7863897 - Switch Transducer": 1,
"W501-5990901 - Film Memristor Resonator Compensator": 1,
"P602-5728865 - Phase Compensator Capacitor Switch": 1,
"Q891-1871898 - Coil LCD": 1,
"Q861-1618446 - Bipolar-junction Driver Crystal": 1,
"Z775-8853334 - Aluminum Multiplexer Dipole": 1,
"U714-9883090 - Aluminum Multiplexer LCD Capacitor": 1,
"Y884-3616085 - Phase Potentiometer Memristor Sensor": 1,
"Z927-4746244 - Phase Resistor Transistor Meter": 1,
"T732-3194846 - Film Oscillator Rheostat Transformer": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"M650-8586992 - Memristor Gauge": 1,
"W872-7508740 - Gauge Rheostat": 1,
"S840-8753783 - Polymer Multiplexer Sensor": 1,
"V999-1676345 - Potentiometer Switch Warp": 1,
"W985-1612943 - Aluminum Switch": 1,
"X502-7135246 - Heisenberg Resonator Rheostat Transducer": 1,
"L103-3316729 - Multiplexer Potentiometer": 1,
"M662-6209836 - Resistor Potentiometer Meter": 1,
"P453-8155326 - Encoder Breaker": 1,
"V285-7238338 - LCD Inductor": 1,
"X989-6385984 - Sensor Encoder Transformer": 1,
"N687-2334901 - Potentiometer Transducer": 1,
"S877-1860797 - Driver Transistor": 1,
"X716-6172862 - Coil Resonator": 1,
"Y914-2603866 - Aluminum Strain Transformer": 1,
"N480-3487616 - Resonator Transformer": 1,
"Y889-4226936 - Coil Oscillator": 1,
"Z615-8618743 - Film Resistor Inductor Switch": 1,
"U836-7709298 - Driver Switch Transducer": 1,
"R298-1578179 - Gauge Strain Breaker": 1,
"T782-3734983 - Dipole Transformer": 1,
"Y973-8480546 - Resistor Transistor Switch": 1,
"W434-6067873 - Network Encoder": 1,
"T608-9573692 - Coil Resonator": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"S439-3814007 - LCD Coil Strain": 1,
"Z254-1002324 - Transistor Crystal": 1,
"T348-1607769 - LCD Resistor Sensor": 1,
"W686-1387652 - Oscillator Breaker": 1,
"V887-9194738 - Gauge Meter Transducer": 1,
"R862-8479315 - Aluminum Transducer Rheostat Warp": 1,
"W780-8057984 - Planck Transformer Compensator": 1,
"V892-8476786 - Encoder Meter": 1,
"O761-2575092 - Switch Transformer Transducer": 1,
"R944-4832283 - Phase Memristor Strain": 1,
"W579-1877166 - Polymer Oscillator Potentiometer Meter": 1,
"Y167-8599364 - Oscillator Meter": 1,
"V571-2893837 - Network Driver": 1,
"Z249-1364492 - Meter Transducer": 1,
"P913-2073572 - Network Dipole Rheostat": 1,
"T872-6914723 - Resistor Oscillator": 1,
"Y372-1509836 - Oscillator Breaker": 1,
"U341-6920661 - Capacitor Transducer": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"P901-7842562 - Dipole Transistor Strain": 1,
"Z288-2722877 - Polymer Transistor Breaker Compensator": 1,
"T792-4232124 - Encoder": 1,
"S100-7238368 - Sensor Potentiometer": 1,
"Y695-6135491 - Polymer Warp": 1,
"X215-2461803 - Crystal Capacitor": 1,
"S424-4152456 - Potentiometer": 1,
"Q661-7217088 - Crystal Rheostat": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"W697-5712939 - Transformer Capacitor": 1,
"T914-4676603 - Crystal Rheostat Meter": 1,
"Y788-9882822 - Planck Multiplexer Capacitor": 1,
"V382-3883746 - Network Dipole Warp": 1,
"Y632-7948469 - Multiplexer Coil": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"Z222-5977620 - Transformer Switch": 1,
"X324-6249454 - Breaker Meter": 1,
"T274-5886301 - Coil Gauge Transformer": 1,
"W176-3285571 - Log-periodic Oscillator Breaker": 1,
"Z556-4824310 - Memristor Transistor Capacitor": 1,
"X634-4382180 - Inductor Driver Potentiometer": 1,
"W295-9452529 - Sensor Encoder": 1,
"X375-4984404 - Multiplexer Transistor": 1,
"X643-1063819 - Dipole Compensator": 1,
"W358-5750223 - Coil Warp": 1,
"Y191-7589606 - Gauge Breaker": 1,
"Y920-5864778 - LCD Sensor Potentiometer": 1,
"X946-6308579 - Field-effect Resistor Encoder": 1,
"Z604-4291151 - Log-periodic Oscillator Capacitor": 1,
"Z872-5435339 - Polymer Gauge Capacitor": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:43-de
Könnten Sie Beispiele für
Produktkompatibilitätszyklen nennen
- Fälle, in denen Produkt A angibt,
dass es mit Produkt B kompatibel
ist, und Produkt B wiederum Produkt
A als kompatibel auflistet?
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?a ?b
WHERE {
?a pv:compatibleProduct ?b .
FILTER (STR(?a) < STR(?b))
}
{
"http://ld.company.org/prod-instances/hw-C977-9932879": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-H690-4065164": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-J370-9195708": 1,
"http://ld.company.org/prod-instances/hw-I482-3778442": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-W156-1748173": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-J544-6748850": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-N568-8608034": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-Q516-8248086": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-Q187-2944814": 1,
"http://ld.company.org/prod-instances/hw-C845-4085909": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-N778-8753186": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-I771-2451857": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-L128-5499058": 1,
"http://ld.company.org/prod-instances/hw-J555-1586043": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-I468-8034393": 1,
"http://ld.company.org/prod-instances/hw-E585-3605747": 1,
"http://ld.company.org/prod-instances/hw-G251-8414984": 1,
"http://ld.company.org/prod-instances/hw-L612-4428366": 1,
"http://ld.company.org/prod-instances/hw-E938-3071637": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-K473-9950981": 1,
"http://ld.company.org/prod-instances/hw-R135-6598379": 1,
"http://ld.company.org/prod-instances/hw-R454-6248815": 1,
"http://ld.company.org/prod-instances/hw-U360-2815908": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-P228-7323906": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-D762-3837218": 1,
"http://ld.company.org/prod-instances/hw-H502-2553729": 1,
"http://ld.company.org/prod-instances/hw-O662-4012383": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-N733-1946687": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-L275-4377274": 1,
"http://ld.company.org/prod-instances/hw-N773-8807466": 1,
"http://ld.company.org/prod-instances/hw-K662-1238230": 1,
"http://ld.company.org/prod-instances/hw-I272-3912947": 1,
"http://ld.company.org/prod-instances/hw-D334-6681399": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-H664-9736043": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K334-8882985": 1,
"http://ld.company.org/prod-instances/hw-N881-4812973": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-M914-2979544": 1,
"http://ld.company.org/prod-instances/hw-N105-3985051": 1,
"http://ld.company.org/prod-instances/hw-K689-4865625": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-F735-3322876": 1,
"http://ld.company.org/prod-instances/hw-G144-7255154": 1,
"http://ld.company.org/prod-instances/hw-M128-9664568": 1,
"http://ld.company.org/prod-instances/hw-E416-7318916": 1,
"http://ld.company.org/prod-instances/hw-M812-1436368": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-T941-8766844": 1,
"http://ld.company.org/prod-instances/hw-H641-1089353": 1,
"http://ld.company.org/prod-instances/hw-E296-9034321": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-O626-4153303": 1,
"http://ld.company.org/prod-instances/hw-M650-3458375": 1,
"http://ld.company.org/prod-instances/hw-F779-9528637": 1,
"http://ld.company.org/prod-instances/hw-L536-5185541": 1,
"http://ld.company.org/prod-instances/hw-P253-1288849": 1,
"http://ld.company.org/prod-instances/hw-D519-3521758": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-G261-8681976": 1,
"http://ld.company.org/prod-instances/hw-L792-8374906": 1,
"http://ld.company.org/prod-instances/hw-G179-6566342": 1,
"http://ld.company.org/prod-instances/hw-E958-8187096": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-F812-7003324": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-M805-4248390": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-M627-4661911": 1,
"http://ld.company.org/prod-instances/hw-U614-3483402": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-H660-8942410": 1,
"http://ld.company.org/prod-instances/hw-D844-3535311": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-E952-1325145": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-K542-2074800": 1,
"http://ld.company.org/prod-instances/hw-U573-1229465": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-N654-6497636": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-R725-9753976": 1,
"http://ld.company.org/prod-instances/hw-P323-7286189": 1,
"http://ld.company.org/prod-instances/hw-N583-9253059": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-J164-5917711": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-H631-9376983": 1,
"http://ld.company.org/prod-instances/hw-G403-4566802": 1,
"http://ld.company.org/prod-instances/hw-I965-1821441": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-K479-8347265": 1,
"http://ld.company.org/prod-instances/hw-J129-5121523": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-J769-7213127": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-D194-9594371": 1,
"http://ld.company.org/prod-instances/hw-M175-2087039": 1,
"http://ld.company.org/prod-instances/hw-G144-5498082": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-E246-3200290": 1,
"http://ld.company.org/prod-instances/hw-N451-2350273": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-S388-7116324": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-D599-6113892": 1,
"http://ld.company.org/prod-instances/hw-H288-7210201": 1,
"http://ld.company.org/prod-instances/hw-R383-8831143": 1,
"http://ld.company.org/prod-instances/hw-O212-8971793": 1,
"http://ld.company.org/prod-instances/hw-D642-3058791": 1,
"http://ld.company.org/prod-instances/hw-J734-1368842": 1,
"http://ld.company.org/prod-instances/hw-U281-1671869": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-J824-9483042": 1,
"http://ld.company.org/prod-instances/hw-N411-3014396": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-G881-8555057": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-H388-1193255": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-W658-9979899": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-O636-3428529": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Z587-4413312": 1,
"http://ld.company.org/prod-instances/hw-G625-4620445": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-E652-6887116": 1,
"http://ld.company.org/prod-instances/hw-L189-7913415": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-M774-4843227": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-K845-4116844": 1,
"http://ld.company.org/prod-instances/hw-H956-3958783": 1,
"http://ld.company.org/prod-instances/hw-I199-7642085": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-K739-4867689": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-E813-9861759": 1,
"http://ld.company.org/prod-instances/hw-N137-2655981": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-U217-4742599": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-Y728-5119478": 1,
"http://ld.company.org/prod-instances/hw-E529-9160800": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-U889-6360502": 1,
"http://ld.company.org/prod-instances/hw-F204-7999856": 1,
"http://ld.company.org/prod-instances/hw-S113-2439377": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-P162-1457428": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-K926-9334427": 1,
"http://ld.company.org/prod-instances/hw-R591-4930195": 1,
"http://ld.company.org/prod-instances/hw-L816-8238278": 1,
"http://ld.company.org/prod-instances/hw-D371-6210252": 1,
"http://ld.company.org/prod-instances/hw-J781-8212433": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-M703-4614993": 1,
"http://ld.company.org/prod-instances/hw-P494-3529490": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-Q696-9337626": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-G444-8036184": 1,
"http://ld.company.org/prod-instances/hw-E563-8448172": 1,
"http://ld.company.org/prod-instances/hw-J625-3464908": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-H752-8461936": 1,
"http://ld.company.org/prod-instances/hw-O491-3823912": 1,
"http://ld.company.org/prod-instances/hw-R645-9208510": 1,
"http://ld.company.org/prod-instances/hw-K995-8098017": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-Q951-7651773": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-Q672-2667601": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-I892-8435352": 1,
"http://ld.company.org/prod-instances/hw-F565-7076382": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-E835-1316991": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-L760-6079543": 1,
"http://ld.company.org/prod-instances/hw-M323-1526287": 1,
"http://ld.company.org/prod-instances/hw-Q980-7885274": 1,
"http://ld.company.org/prod-instances/hw-K671-7410535": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-V876-7098157": 1,
"http://ld.company.org/prod-instances/hw-H642-6966395": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-E469-1218832": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-G333-6105148": 1,
"http://ld.company.org/prod-instances/hw-L557-1467804": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-T802-5361374": 1,
"http://ld.company.org/prod-instances/hw-F969-8946081": 1,
"http://ld.company.org/prod-instances/hw-E358-6492536": 1,
"http://ld.company.org/prod-instances/hw-E471-9316820": 1,
"http://ld.company.org/prod-instances/hw-N869-4606944": 1,
"http://ld.company.org/prod-instances/hw-E617-6594892": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-L173-2699667": 1,
"http://ld.company.org/prod-instances/hw-J575-3390923": 1,
"http://ld.company.org/prod-instances/hw-G934-5417476": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-S314-3937138": 1,
"http://ld.company.org/prod-instances/hw-M770-3602005": 1,
"http://ld.company.org/prod-instances/hw-P385-1200138": 1,
"http://ld.company.org/prod-instances/hw-J234-3498557": 1,
"http://ld.company.org/prod-instances/hw-X230-3586307": 1,
"http://ld.company.org/prod-instances/hw-F388-7030185": 1,
"http://ld.company.org/prod-instances/hw-O270-3409076": 1,
"http://ld.company.org/prod-instances/hw-I966-3317124": 1,
"http://ld.company.org/prod-instances/hw-N560-4369045": 1,
"http://ld.company.org/prod-instances/hw-J209-5198739": 1,
"http://ld.company.org/prod-instances/hw-K630-6895992": 1,
"http://ld.company.org/prod-instances/hw-K832-2729798": 1,
"http://ld.company.org/prod-instances/hw-S841-8644004": 1,
"http://ld.company.org/prod-instances/hw-P774-3681449": 1,
"http://ld.company.org/prod-instances/hw-O502-4324008": 1,
"http://ld.company.org/prod-instances/hw-W457-2405463": 1,
"http://ld.company.org/prod-instances/hw-O475-7125508": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-O553-6585255": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-S531-7887299": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-N180-3300253": 1,
"http://ld.company.org/prod-instances/hw-L781-7008508": 1,
"http://ld.company.org/prod-instances/hw-J820-7132026": 1,
"http://ld.company.org/prod-instances/hw-P903-7514284": 1,
"http://ld.company.org/prod-instances/hw-D518-3930277": 1,
"http://ld.company.org/prod-instances/hw-L619-5092078": 1,
"http://ld.company.org/prod-instances/hw-E187-6115721": 1,
"http://ld.company.org/prod-instances/hw-T319-6530857": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-G966-6452177": 1,
"http://ld.company.org/prod-instances/hw-Q223-1316238": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-X283-7840276": 1,
"http://ld.company.org/prod-instances/hw-P360-3533771": 1,
"http://ld.company.org/prod-instances/hw-E267-7496794": 1,
"http://ld.company.org/prod-instances/hw-M986-2342719": 1,
"http://ld.company.org/prod-instances/hw-N153-4376308": 1,
"http://ld.company.org/prod-instances/hw-S450-5654221": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-R771-3893828": 1,
"http://ld.company.org/prod-instances/hw-P393-8310950": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-H598-5149929": 1,
"http://ld.company.org/prod-instances/hw-M885-1885470": 1,
"http://ld.company.org/prod-instances/hw-G826-1197003": 1,
"http://ld.company.org/prod-instances/hw-S176-7294665": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-F442-1761220": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-T812-6060686": 1,
"http://ld.company.org/prod-instances/hw-U623-2779596": 1,
"http://ld.company.org/prod-instances/hw-R599-8820686": 1,
"http://ld.company.org/prod-instances/hw-U229-5087557": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-I532-1549244": 1,
"http://ld.company.org/prod-instances/hw-Q176-6210359": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-E373-8515317": 1,
"http://ld.company.org/prod-instances/hw-E917-4866901": 1,
"http://ld.company.org/prod-instances/hw-J785-9314350": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-R187-6602262": 1,
"http://ld.company.org/prod-instances/hw-N366-8062929": 1,
"http://ld.company.org/prod-instances/hw-F773-4598178": 1,
"http://ld.company.org/prod-instances/hw-D603-1225899": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-Y788-8477334": 1,
"http://ld.company.org/prod-instances/hw-L787-2053792": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-R338-2935955": 1,
"http://ld.company.org/prod-instances/hw-N694-7625752": 1,
"http://ld.company.org/prod-instances/hw-G226-1299624": 1,
"http://ld.company.org/prod-instances/hw-O857-5463957": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-S429-3352092": 1,
"http://ld.company.org/prod-instances/hw-D400-2425852": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-Q245-9575444": 1,
"http://ld.company.org/prod-instances/hw-H156-2424615": 1,
"http://ld.company.org/prod-instances/hw-U501-5365139": 1,
"http://ld.company.org/prod-instances/hw-Q992-9818584": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-J391-2253339": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-O748-4307356": 1,
"http://ld.company.org/prod-instances/hw-I334-4449270": 1,
"http://ld.company.org/prod-instances/hw-S174-1960652": 1,
"http://ld.company.org/prod-instances/hw-V436-9027098": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-J824-5227925": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-T805-4210259": 1,
"http://ld.company.org/prod-instances/hw-G556-4971578": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-J826-7793079": 1,
"http://ld.company.org/prod-instances/hw-Q881-7871943": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-F198-1414890": 1,
"http://ld.company.org/prod-instances/hw-N317-6012752": 1,
"http://ld.company.org/prod-instances/hw-X874-7370643": 1,
"http://ld.company.org/prod-instances/hw-J178-7002767": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-C916-8310851": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-H569-9184293": 1,
"http://ld.company.org/prod-instances/hw-F800-9858235": 1,
"http://ld.company.org/prod-instances/hw-L569-8145670": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-L586-5133830": 1,
"http://ld.company.org/prod-instances/hw-E172-8066897": 1,
"http://ld.company.org/prod-instances/hw-L316-4863597": 1,
"http://ld.company.org/prod-instances/hw-R902-1645052": 1,
"http://ld.company.org/prod-instances/hw-I311-9589498": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-L855-9772914": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-J519-7020928": 1,
"http://ld.company.org/prod-instances/hw-F344-7012314": 1,
"http://ld.company.org/prod-instances/hw-J437-7431991": 1,
"http://ld.company.org/prod-instances/hw-I904-2574215": 1,
"http://ld.company.org/prod-instances/hw-F179-4094930": 1,
"http://ld.company.org/prod-instances/hw-L747-7633290": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-E189-1255687": 1,
"http://ld.company.org/prod-instances/hw-H747-8053953": 1,
"http://ld.company.org/prod-instances/hw-E395-9906117": 1,
"http://ld.company.org/prod-instances/hw-W769-8151254": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-U389-9635839": 1,
"http://ld.company.org/prod-instances/hw-E495-3503010": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-R112-2955867": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-G272-3422671": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-D516-5106885": 1,
"http://ld.company.org/prod-instances/hw-J628-3649699": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-M361-5073440": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-U733-5722614": 1,
"http://ld.company.org/prod-instances/hw-O944-9764063": 1,
"http://ld.company.org/prod-instances/hw-N704-3896920": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-U651-8669022": 1,
"http://ld.company.org/prod-instances/hw-J571-5923698": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-F496-3982542": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-E882-2235305": 1,
"http://ld.company.org/prod-instances/hw-V519-6173906": 1,
"http://ld.company.org/prod-instances/hw-O204-4321819": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-I409-8215134": 1,
"http://ld.company.org/prod-instances/hw-W529-7595129": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-I884-8763759": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-L822-2103281": 1,
"http://ld.company.org/prod-instances/hw-U772-6050161": 1,
"http://ld.company.org/prod-instances/hw-O311-4466005": 1,
"http://ld.company.org/prod-instances/hw-C970-6304679": 1,
"http://ld.company.org/prod-instances/hw-J470-3164222": 1,
"http://ld.company.org/prod-instances/hw-V509-7873455": 1,
"http://ld.company.org/prod-instances/hw-N892-9855685": 1,
"http://ld.company.org/prod-instances/hw-R490-4226805": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-E576-3538706": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-J986-8306638": 1,
"http://ld.company.org/prod-instances/hw-W344-5163065": 1,
"http://ld.company.org/prod-instances/hw-G378-7132339": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-T725-1852362": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-G249-4926490": 1,
"http://ld.company.org/prod-instances/hw-L741-9253790": 1,
"http://ld.company.org/prod-instances/hw-K850-3410875": 1,
"http://ld.company.org/prod-instances/hw-N998-2489600": 1,
"http://ld.company.org/prod-instances/hw-H962-4715431": 1,
"http://ld.company.org/prod-instances/hw-U958-4696127": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-R946-7112528": 1,
"http://ld.company.org/prod-instances/hw-I242-5347848": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-F266-5876962": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-S271-9518696": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-T119-8723477": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-V940-2277346": 1,
"http://ld.company.org/prod-instances/hw-H482-4970770": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-E424-4700158": 1,
"http://ld.company.org/prod-instances/hw-V673-7881809": 1,
"http://ld.company.org/prod-instances/hw-L940-7353182": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-H754-2495350": 1,
"http://ld.company.org/prod-instances/hw-P729-6290809": 1,
"http://ld.company.org/prod-instances/hw-Q493-2919102": 1,
"http://ld.company.org/prod-instances/hw-R524-4869682": 1,
"http://ld.company.org/prod-instances/hw-M827-2856044": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-D483-7794770": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-F146-1429118": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-R586-3728998": 1,
"http://ld.company.org/prod-instances/hw-T124-5609647": 1,
"http://ld.company.org/prod-instances/hw-H236-9180061": 1,
"http://ld.company.org/prod-instances/hw-D160-4387774": 1,
"http://ld.company.org/prod-instances/hw-T504-8448784": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-V178-8820348": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-H252-2977732": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-N744-5971232": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-D605-8095260": 1,
"http://ld.company.org/prod-instances/hw-K764-8378288": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-S212-6028302": 1,
"http://ld.company.org/prod-instances/hw-M605-5951566": 1,
"http://ld.company.org/prod-instances/hw-K313-8452822": 1,
"http://ld.company.org/prod-instances/hw-H577-3512936": 1,
"http://ld.company.org/prod-instances/hw-G439-8153345": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-T814-8858070": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-J872-7568181": 1,
"http://ld.company.org/prod-instances/hw-W903-2104201": 1,
"http://ld.company.org/prod-instances/hw-O761-2575092": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-P602-5728865": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-X480-1491345": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-U714-9883090": 1,
"http://ld.company.org/prod-instances/hw-Y863-3538159": 1,
"http://ld.company.org/prod-instances/hw-W661-3032609": 1,
"http://ld.company.org/prod-instances/hw-T808-9704137": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-S424-4152456": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-P785-3702584": 1,
"http://ld.company.org/prod-instances/hw-M662-6209836": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-P717-5835879": 1,
"http://ld.company.org/prod-instances/hw-O856-7652159": 1,
"http://ld.company.org/prod-instances/hw-Q751-8742744": 1,
"http://ld.company.org/prod-instances/hw-H439-1697643": 1,
"http://ld.company.org/prod-instances/hw-S649-2935217": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-W697-5712939": 1,
"http://ld.company.org/prod-instances/hw-V437-5667353": 1,
"http://ld.company.org/prod-instances/hw-V999-1676345": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-V421-9533599": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-Z293-3675192": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-V610-4162567": 1,
"http://ld.company.org/prod-instances/hw-Q661-7217088": 1,
"http://ld.company.org/prod-instances/hw-V285-7238338": 1,
"http://ld.company.org/prod-instances/hw-X989-6385984": 1,
"http://ld.company.org/prod-instances/hw-Z775-8853334": 1,
"http://ld.company.org/prod-instances/hw-Y979-3662601": 1,
"http://ld.company.org/prod-instances/hw-M650-8586992": 1,
"http://ld.company.org/prod-instances/hw-X504-5674380": 1,
"http://ld.company.org/prod-instances/hw-I314-5607546": 1,
"http://ld.company.org/prod-instances/hw-W986-7950553": 1,
"http://ld.company.org/prod-instances/hw-M974-1997588": 1,
"http://ld.company.org/prod-instances/hw-V404-9975399": 1,
"http://ld.company.org/prod-instances/hw-Z272-2955088": 1,
"http://ld.company.org/prod-instances/hw-V892-8476786": 1,
"http://ld.company.org/prod-instances/hw-H538-7285000": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-Z553-4314789": 1,
"http://ld.company.org/prod-instances/hw-P966-3555304": 1,
"http://ld.company.org/prod-instances/hw-R298-1578179": 1,
"http://ld.company.org/prod-instances/hw-X634-4382180": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-V571-2893837": 1,
"http://ld.company.org/prod-instances/hw-W434-6067873": 1,
"http://ld.company.org/prod-instances/hw-W988-9267091": 1,
"http://ld.company.org/prod-instances/hw-W892-1983772": 1,
"http://ld.company.org/prod-instances/hw-Z288-2722877": 1,
"http://ld.company.org/prod-instances/hw-H510-3094779": 1,
"http://ld.company.org/prod-instances/hw-Z980-8040792": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-V645-2413888": 1,
"http://ld.company.org/prod-instances/hw-N324-6810821": 1,
"http://ld.company.org/prod-instances/hw-R181-9365849": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-Q546-7014038": 1,
"http://ld.company.org/prod-instances/hw-X954-5873970": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-M521-8491113": 1,
"http://ld.company.org/prod-instances/hw-P901-7842562": 1,
"http://ld.company.org/prod-instances/hw-Z646-5864967": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-O489-4154201": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-T274-5886301": 1,
"http://ld.company.org/prod-instances/hw-T792-4232124": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-Z848-4991684": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-N237-3608803": 1,
"http://ld.company.org/prod-instances/hw-V759-7427700": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-V654-5789502": 1,
"http://ld.company.org/prod-instances/hw-Z212-3451369": 1,
"http://ld.company.org/prod-instances/hw-T782-3734983": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-W847-4354260": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-Y167-8599364": 1,
"http://ld.company.org/prod-instances/hw-Z452-1805723": 1,
"http://ld.company.org/prod-instances/hw-U489-9025040": 1,
"http://ld.company.org/prod-instances/hw-W821-9428247": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-Y889-4226936": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-Z249-1364492": 1,
"http://ld.company.org/prod-instances/hw-Z872-5435339": 1,
"http://ld.company.org/prod-instances/hw-J154-2269983": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-R774-3816629": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-Q476-3668478": 1,
"http://ld.company.org/prod-instances/hw-L984-7886943": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-R862-8479315": 1,
"http://ld.company.org/prod-instances/hw-S840-8753783": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-T161-7769514": 1,
"http://ld.company.org/prod-instances/hw-Y914-2603866": 1,
"http://ld.company.org/prod-instances/hw-T341-6404509": 1,
"http://ld.company.org/prod-instances/hw-L485-8083934": 1,
"http://ld.company.org/prod-instances/hw-W579-1877166": 1,
"http://ld.company.org/prod-instances/hw-U341-6920661": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-Z222-5977620": 1,
"http://ld.company.org/prod-instances/hw-Z615-8618743": 1,
"http://ld.company.org/prod-instances/hw-Y162-1430218": 1,
"http://ld.company.org/prod-instances/hw-T732-3194846": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T831-2675171": 1,
"http://ld.company.org/prod-instances/hw-Y884-3616085": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-N687-2334901": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-Y973-8480546": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-W726-4190110": 1,
"http://ld.company.org/prod-instances/hw-Y191-7589606": 1,
"http://ld.company.org/prod-instances/hw-W358-5750223": 1,
"http://ld.company.org/prod-instances/hw-Q353-5311148": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-Z927-4746244": 1,
"http://ld.company.org/prod-instances/hw-X215-2461803": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-X375-4984404": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-P983-2994865": 1,
"http://ld.company.org/prod-instances/hw-S877-1860797": 1,
"http://ld.company.org/prod-instances/hw-Z190-5822042": 1,
"http://ld.company.org/prod-instances/hw-U861-6382993": 1,
"http://ld.company.org/prod-instances/hw-M244-7026376": 1,
"http://ld.company.org/prod-instances/hw-O531-4282131": 1,
"http://ld.company.org/prod-instances/hw-W176-3285571": 1,
"http://ld.company.org/prod-instances/hw-W985-1612943": 1,
"http://ld.company.org/prod-instances/hw-S100-7238368": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-W501-5990901": 1,
"http://ld.company.org/prod-instances/hw-Z254-1002324": 1,
"http://ld.company.org/prod-instances/hw-Y920-5864778": 1,
"http://ld.company.org/prod-instances/hw-P516-8211068": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-Z556-4824310": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-V887-9194738": 1,
"http://ld.company.org/prod-instances/hw-N480-3487616": 1,
"http://ld.company.org/prod-instances/hw-X716-6172862": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-U836-7709298": 1,
"http://ld.company.org/prod-instances/hw-P965-2818538": 1,
"http://ld.company.org/prod-instances/hw-T348-1607769": 1,
"http://ld.company.org/prod-instances/hw-W686-1387652": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-P453-8155326": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-Z887-4941382": 1,
"http://ld.company.org/prod-instances/hw-W780-8057984": 1,
"http://ld.company.org/prod-instances/hw-Z373-9393076": 1,
"http://ld.company.org/prod-instances/hw-J225-9158499": 1,
"http://ld.company.org/prod-instances/hw-Q774-7287508": 1,
"http://ld.company.org/prod-instances/hw-T914-4676603": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-V600-6144297": 1,
"http://ld.company.org/prod-instances/hw-Z604-4291151": 1,
"http://ld.company.org/prod-instances/hw-Y788-9882822": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-Y372-1509836": 1,
"http://ld.company.org/prod-instances/hw-J420-5667802": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-Y299-9772513": 1,
"http://ld.company.org/prod-instances/hw-Q891-1871898": 1,
"http://ld.company.org/prod-instances/hw-Q890-8785073": 1,
"http://ld.company.org/prod-instances/hw-H958-9648652": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-S439-3814007": 1,
"http://ld.company.org/prod-instances/hw-L103-3316729": 1,
"http://ld.company.org/prod-instances/hw-T872-6914723": 1,
"http://ld.company.org/prod-instances/hw-N558-1730215": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-X946-6308579": 1,
"http://ld.company.org/prod-instances/hw-P787-7863897": 1,
"http://ld.company.org/prod-instances/hw-P913-2073572": 1,
"http://ld.company.org/prod-instances/hw-J998-8511305": 1,
"http://ld.company.org/prod-instances/hw-W295-9452529": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-N664-8476091": 1,
"http://ld.company.org/prod-instances/hw-Q861-1618446": 1,
"http://ld.company.org/prod-instances/hw-Y632-7948469": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-P982-4384687": 1,
"http://ld.company.org/prod-instances/hw-Y695-6135491": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-X643-1063819": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-W436-5301120": 1,
"http://ld.company.org/prod-instances/hw-M206-5050706": 1,
"http://ld.company.org/prod-instances/hw-P708-1537318": 1,
"http://ld.company.org/prod-instances/hw-X502-7135246": 1,
"http://ld.company.org/prod-instances/hw-R944-4832283": 1,
"http://ld.company.org/prod-instances/hw-Z617-4660142": 1,
"http://ld.company.org/prod-instances/hw-P925-8919074": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-Q694-8417409": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-N243-4639047": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-N573-1498086": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-J518-7067023": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?a ?b (SAMPLE(COALESCE(?aLabel0, ?aName0, STR(?a))) AS ?aLabel) (SAMPLE(COALESCE(?bLabel0, ?bName0, STR(?b))) AS ?bLabel)
WHERE {
?a pv:compatibleProduct ?b .
?b pv:compatibleProduct ?a .
FILTER(?a != ?b)
OPTIONAL { ?a rdfs:label ?aLabel0. }
OPTIONAL { ?a pv:name ?aName0. }
OPTIONAL { ?b rdfs:label ?bLabel0. }
OPTIONAL { ?b pv:name ?bName0. }
}
GROUP BY ?a ?b
ORDER BY ?a ?b
LIMIT 200
{
"http://ld.company.org/prod-instances/hw-A145-1240844": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A181-1118563": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A243-3332548": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-A360-3041803": 1,
"http://ld.company.org/prod-instances/hw-A391-9508821": 1,
"http://ld.company.org/prod-instances/hw-A403-4549719": 1,
"http://ld.company.org/prod-instances/hw-A509-5571891": 1,
"http://ld.company.org/prod-instances/hw-A529-2906246": 1,
"http://ld.company.org/prod-instances/hw-A560-7347187": 1,
"http://ld.company.org/prod-instances/hw-A566-1562523": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-A599-2465791": 1,
"http://ld.company.org/prod-instances/hw-A607-3251492": 1,
"http://ld.company.org/prod-instances/hw-A617-7075018": 1,
"http://ld.company.org/prod-instances/hw-A628-8869626": 1,
"http://ld.company.org/prod-instances/hw-A688-6056899": 1,
"http://ld.company.org/prod-instances/hw-A739-4780210": 1,
"http://ld.company.org/prod-instances/hw-A750-6901242": 1,
"http://ld.company.org/prod-instances/hw-A755-9228475": 1,
"http://ld.company.org/prod-instances/hw-A769-5120124": 1,
"http://ld.company.org/prod-instances/hw-A828-3713433": 1,
"http://ld.company.org/prod-instances/hw-A837-2549775": 1,
"http://ld.company.org/prod-instances/hw-A932-9527078": 1,
"http://ld.company.org/prod-instances/hw-A964-7949458": 1,
"http://ld.company.org/prod-instances/hw-A981-3634031": 1,
"http://ld.company.org/prod-instances/hw-A994-9085459": 1,
"http://ld.company.org/prod-instances/hw-A998-9941987": 1,
"http://ld.company.org/prod-instances/hw-B120-9942467": 1,
"http://ld.company.org/prod-instances/hw-B131-7597100": 1,
"http://ld.company.org/prod-instances/hw-B143-5457756": 1,
"http://ld.company.org/prod-instances/hw-B150-4370781": 1,
"http://ld.company.org/prod-instances/hw-B161-8326597": 1,
"http://ld.company.org/prod-instances/hw-B187-7652875": 1,
"http://ld.company.org/prod-instances/hw-B232-9941304": 1,
"http://ld.company.org/prod-instances/hw-B286-1369879": 1,
"http://ld.company.org/prod-instances/hw-B308-8130581": 1,
"http://ld.company.org/prod-instances/hw-B365-4394675": 1,
"http://ld.company.org/prod-instances/hw-B387-9270009": 1,
"http://ld.company.org/prod-instances/hw-B429-3694560": 1,
"http://ld.company.org/prod-instances/hw-B436-6020212": 1,
"http://ld.company.org/prod-instances/hw-B488-6957957": 1,
"http://ld.company.org/prod-instances/hw-B507-9536014": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-B541-8783084": 1,
"http://ld.company.org/prod-instances/hw-B625-4480024": 1,
"http://ld.company.org/prod-instances/hw-B633-4277974": 1,
"http://ld.company.org/prod-instances/hw-B646-2108570": 1,
"http://ld.company.org/prod-instances/hw-B688-8088841": 1,
"http://ld.company.org/prod-instances/hw-B693-5414825": 1,
"http://ld.company.org/prod-instances/hw-B818-8738213": 1,
"http://ld.company.org/prod-instances/hw-B820-6334766": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-B888-3582334": 1,
"http://ld.company.org/prod-instances/hw-B888-7564557": 1,
"http://ld.company.org/prod-instances/hw-B918-9468392": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-B937-9245602": 1,
"http://ld.company.org/prod-instances/hw-C119-5354812": 1,
"http://ld.company.org/prod-instances/hw-C171-3616793": 1,
"http://ld.company.org/prod-instances/hw-C182-2689274": 1,
"http://ld.company.org/prod-instances/hw-C200-5363446": 1,
"http://ld.company.org/prod-instances/hw-C213-4995667": 1,
"http://ld.company.org/prod-instances/hw-C245-8365837": 1,
"http://ld.company.org/prod-instances/hw-C247-3833661": 1,
"http://ld.company.org/prod-instances/hw-C371-9169438": 1,
"http://ld.company.org/prod-instances/hw-C375-1115425": 1,
"http://ld.company.org/prod-instances/hw-C390-4121800": 1,
"http://ld.company.org/prod-instances/hw-C402-5072074": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-C431-5986267": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-C527-6179790": 1,
"http://ld.company.org/prod-instances/hw-C551-8482722": 1,
"http://ld.company.org/prod-instances/hw-C605-1105328": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-C622-9716605": 1,
"http://ld.company.org/prod-instances/hw-C625-4647902": 1,
"http://ld.company.org/prod-instances/hw-C633-6541408": 1,
"http://ld.company.org/prod-instances/hw-C697-6765940": 1,
"http://ld.company.org/prod-instances/hw-C699-1385746": 1,
"http://ld.company.org/prod-instances/hw-C710-5880579": 1,
"http://ld.company.org/prod-instances/hw-C770-9751514": 1,
"http://ld.company.org/prod-instances/hw-C799-8367143": 1,
"http://ld.company.org/prod-instances/hw-C800-3270129": 1,
"http://ld.company.org/prod-instances/hw-C831-2580759": 1,
"http://ld.company.org/prod-instances/hw-C836-5221890": 1,
"http://ld.company.org/prod-instances/hw-C844-8161134": 1,
"http://ld.company.org/prod-instances/hw-D729-5737042": 1,
"http://ld.company.org/prod-instances/hw-I625-9097378": 1,
"http://ld.company.org/prod-instances/hw-X204-1803083": 1,
"http://ld.company.org/prod-instances/hw-X235-5406274": 1,
"http://ld.company.org/prod-instances/hw-H745-5284103": 1,
"http://ld.company.org/prod-instances/hw-M558-2275045": 1,
"http://ld.company.org/prod-instances/hw-D215-3449390": 1,
"http://ld.company.org/prod-instances/hw-Z439-5790785": 1,
"http://ld.company.org/prod-instances/hw-F675-6890144": 1,
"http://ld.company.org/prod-instances/hw-G451-8179125": 1,
"http://ld.company.org/prod-instances/hw-I264-7314323": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-W220-5347961": 1,
"http://ld.company.org/prod-instances/hw-R302-4754313": 1,
"http://ld.company.org/prod-instances/hw-R930-5997475": 1,
"http://ld.company.org/prod-instances/hw-I479-8852507": 1,
"http://ld.company.org/prod-instances/hw-J671-5760255": 1,
"http://ld.company.org/prod-instances/hw-O875-5580798": 1,
"http://ld.company.org/prod-instances/hw-D243-3238752": 1,
"http://ld.company.org/prod-instances/hw-L592-1084147": 1,
"http://ld.company.org/prod-instances/hw-F264-7752472": 1,
"http://ld.company.org/prod-instances/hw-K411-1729714": 1,
"http://ld.company.org/prod-instances/hw-O906-8511345": 1,
"http://ld.company.org/prod-instances/hw-Q316-9683240": 1,
"http://ld.company.org/prod-instances/hw-U827-2294099": 1,
"http://ld.company.org/prod-instances/hw-F383-6450755": 1,
"http://ld.company.org/prod-instances/hw-K636-3664460": 1,
"http://ld.company.org/prod-instances/hw-N866-6363347": 1,
"http://ld.company.org/prod-instances/hw-O494-6195301": 1,
"http://ld.company.org/prod-instances/hw-U723-8910149": 1,
"http://ld.company.org/prod-instances/hw-F574-4728030": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-I679-1230971": 1,
"http://ld.company.org/prod-instances/hw-J859-3337215": 1,
"http://ld.company.org/prod-instances/hw-R414-3098561": 1,
"http://ld.company.org/prod-instances/hw-H244-4330589": 1,
"http://ld.company.org/prod-instances/hw-R228-5965688": 1,
"http://ld.company.org/prod-instances/hw-U379-6681071": 1,
"http://ld.company.org/prod-instances/hw-T291-4144066": 1,
"http://ld.company.org/prod-instances/hw-X365-6429727": 1,
"http://ld.company.org/prod-instances/hw-J856-1304399": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-T721-4459242": 1,
"http://ld.company.org/prod-instances/hw-W521-8006606": 1,
"http://ld.company.org/prod-instances/hw-M436-2993715": 1,
"http://ld.company.org/prod-instances/hw-C917-9516418": 1,
"http://ld.company.org/prod-instances/hw-G420-6271055": 1,
"http://ld.company.org/prod-instances/hw-L205-6345377": 1,
"http://ld.company.org/prod-instances/hw-Y616-2122188": 1,
"http://ld.company.org/prod-instances/hw-G858-9670227": 1,
"http://ld.company.org/prod-instances/hw-J505-2473322": 1,
"http://ld.company.org/prod-instances/hw-P957-8177638": 1,
"http://ld.company.org/prod-instances/hw-Q263-2186291": 1,
"http://ld.company.org/prod-instances/hw-T230-5902294": 1,
"http://ld.company.org/prod-instances/hw-G494-2537921": 1,
"http://ld.company.org/prod-instances/hw-J720-4179367": 1,
"http://ld.company.org/prod-instances/hw-J878-7667870": 1,
"http://ld.company.org/prod-instances/hw-M449-5231838": 1,
"http://ld.company.org/prod-instances/hw-L262-1109442": 1,
"http://ld.company.org/prod-instances/hw-Q852-7359409": 1,
"http://ld.company.org/prod-instances/hw-T806-6069877": 1,
"http://ld.company.org/prod-instances/hw-D544-9061559": 1,
"http://ld.company.org/prod-instances/hw-V485-9644250": 1,
"http://ld.company.org/prod-instances/hw-E502-4333702": 1,
"http://ld.company.org/prod-instances/hw-Y327-7144928": 1,
"http://ld.company.org/prod-instances/hw-M367-8246717": 1,
"http://ld.company.org/prod-instances/hw-W493-4799721": 1,
"http://ld.company.org/prod-instances/hw-O256-6180697": 1,
"http://ld.company.org/prod-instances/hw-Q210-8168184": 1,
"http://ld.company.org/prod-instances/hw-T958-2055544": 1,
"http://ld.company.org/prod-instances/hw-K167-1377420": 1,
"http://ld.company.org/prod-instances/hw-M750-1800450": 1,
"http://ld.company.org/prod-instances/hw-Z170-8513315": 1,
"http://ld.company.org/prod-instances/hw-T592-5377501": 1,
"http://ld.company.org/prod-instances/hw-Z288-2942538": 1,
"http://ld.company.org/prod-instances/hw-K651-4147885": 1,
"http://ld.company.org/prod-instances/hw-Z739-3332146": 1,
"http://ld.company.org/prod-instances/hw-D331-6211280": 1,
"http://ld.company.org/prod-instances/hw-J259-5185660": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-P360-3765415": 1,
"http://ld.company.org/prod-instances/hw-F251-2666285": 1,
"http://ld.company.org/prod-instances/hw-N269-8309461": 1,
"http://ld.company.org/prod-instances/hw-H374-8481414": 1,
"http://ld.company.org/prod-instances/hw-I241-8776317": 1,
"http://ld.company.org/prod-instances/hw-Z545-6121719": 1,
"http://ld.company.org/prod-instances/hw-W981-1196694": 1,
"http://ld.company.org/prod-instances/hw-D679-1940878": 1,
"http://ld.company.org/prod-instances/hw-P317-3419187": 1,
"http://ld.company.org/prod-instances/hw-Z165-5413714": 1,
"http://ld.company.org/prod-instances/hw-M313-3585673": 1,
"http://ld.company.org/prod-instances/hw-N462-6714196": 1,
"http://ld.company.org/prod-instances/hw-O727-5999075": 1,
"http://ld.company.org/prod-instances/hw-D903-5325470": 1,
"http://ld.company.org/prod-instances/hw-T294-9722443": 1,
"http://ld.company.org/prod-instances/hw-U833-1786284": 1,
"http://ld.company.org/prod-instances/hw-F611-6226129": 1,
"http://ld.company.org/prod-instances/hw-N823-7028680": 1,
"http://ld.company.org/prod-instances/hw-E365-4375068": 1,
"http://ld.company.org/prod-instances/hw-L374-3374767": 1,
"http://ld.company.org/prod-instances/hw-O712-3456018": 1,
"http://ld.company.org/prod-instances/hw-Z889-8463159": 1,
"http://ld.company.org/prod-instances/hw-E812-9665212": 1,
"http://ld.company.org/prod-instances/hw-U619-9969216": 1,
"http://ld.company.org/prod-instances/hw-H338-7439287": 1,
"http://ld.company.org/prod-instances/hw-H355-1126195": 1,
"http://ld.company.org/prod-instances/hw-K242-3459162": 1,
"http://ld.company.org/prod-instances/hw-U286-4664935": 1,
"http://ld.company.org/prod-instances/hw-U743-1581581": 1,
"http://ld.company.org/prod-instances/hw-X148-3354774": 1,
"http://ld.company.org/prod-instances/hw-T586-1678071": 1,
"http://ld.company.org/prod-instances/hw-D548-3561584": 1,
"http://ld.company.org/prod-instances/hw-M672-3016632": 1,
"http://ld.company.org/prod-instances/hw-R860-6284767": 1,
"http://ld.company.org/prod-instances/hw-F553-8518538": 1,
"http://ld.company.org/prod-instances/hw-K367-1320550": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-R658-8902629": 1,
"http://ld.company.org/prod-instances/hw-E868-5063965": 1,
"http://ld.company.org/prod-instances/hw-W846-7438265": 1,
"http://ld.company.org/prod-instances/hw-Z739-8572107": 1,
"http://ld.company.org/prod-instances/hw-D525-4805979": 1,
"http://ld.company.org/prod-instances/hw-S218-3305033": 1,
"http://ld.company.org/prod-instances/hw-Z143-3180282": 1,
"http://ld.company.org/prod-instances/hw-W615-3080767": 1,
"http://ld.company.org/prod-instances/hw-R287-3749176": 1,
"http://ld.company.org/prod-instances/hw-Y676-8284278": 1,
"http://ld.company.org/prod-instances/hw-Y728-2083256": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-W988-3702091": 1,
"http://ld.company.org/prod-instances/hw-M292-6646786": 1,
"http://ld.company.org/prod-instances/hw-K143-3113342": 1,
"http://ld.company.org/prod-instances/hw-R786-6586508": 1,
"http://ld.company.org/prod-instances/hw-X897-7676293": 1,
"http://ld.company.org/prod-instances/hw-L691-1489542": 1,
"http://ld.company.org/prod-instances/hw-N377-1619045": 1,
"http://ld.company.org/prod-instances/hw-H173-1200706": 1,
"http://ld.company.org/prod-instances/hw-E793-4560979": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-F126-7002599": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-V156-6277722": 1,
"http://ld.company.org/prod-instances/hw-V488-1866672": 1,
"http://ld.company.org/prod-instances/hw-Y714-9954664": 1,
"http://ld.company.org/prod-instances/hw-I696-9739398": 1,
"http://ld.company.org/prod-instances/hw-Z397-1183067": 1,
"http://ld.company.org/prod-instances/hw-K267-2045349": 1,
"http://ld.company.org/prod-instances/hw-R231-2442628": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-V881-4674578": 1,
"http://ld.company.org/prod-instances/hw-K559-3177627": 1,
"http://ld.company.org/prod-instances/hw-N589-9719896": 1,
"http://ld.company.org/prod-instances/hw-L365-6842646": 1,
"http://ld.company.org/prod-instances/hw-U333-8518360": 1,
"http://ld.company.org/prod-instances/hw-E558-1962104": 1,
"http://ld.company.org/prod-instances/hw-E661-6880042": 1,
"http://ld.company.org/prod-instances/hw-M645-5460777": 1,
"http://ld.company.org/prod-instances/hw-N879-4735381": 1,
"http://ld.company.org/prod-instances/hw-X408-2200602": 1,
"http://ld.company.org/prod-instances/hw-F661-8988230": 1,
"http://ld.company.org/prod-instances/hw-K375-1173149": 1,
"http://ld.company.org/prod-instances/hw-R675-2629492": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-Z768-8346288": 1,
"http://ld.company.org/prod-instances/hw-Z994-6661823": 1,
"http://ld.company.org/prod-instances/hw-D973-4134519": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"http://ld.company.org/prod-instances/hw-X863-5063447": 1,
"http://ld.company.org/prod-instances/hw-N324-9642439": 1,
"http://ld.company.org/prod-instances/hw-U169-4232721": 1,
"http://ld.company.org/prod-instances/hw-N982-3577798": 1,
"http://ld.company.org/prod-instances/hw-J178-5863159": 1,
"http://ld.company.org/prod-instances/hw-L805-3283253": 1,
"A145-1240844 - Bipolar-junction Coil Compensator Transducer": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"A181-1118563 - Compensator Switch": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A243-3332548 - Bipolar-junction Crystal Meter": 1,
"A315-1730287 - Network Dipole": 1,
"A360-3041803 - Inductor Transformer Warp": 1,
"A391-9508821 - Oscillator Compensator": 1,
"A403-4549719 - Flow Gauge Transformer": 1,
"A509-5571891 - Multiplexer Inductor": 1,
"A529-2906246 - Sensor Crystal": 1,
"A560-7347187 - Oscillator Driver": 1,
"A566-1562523 - Planck Dipole Sensor Warp": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"A599-2465791 - Driver Memristor": 1,
"A607-3251492 - Bipolar-junction Transistor Compensator": 1,
"A617-7075018 - Crystal Switch": 1,
"A628-8869626 - Inductor Gauge Oscillator": 1,
"A688-6056899 - Multiplexer Inductor": 1,
"A739-4780210 - Memristor Driver Strain": 1,
"A750-6901242 - Film Resistor Memristor Meter": 1,
"A755-9228475 - Resistor Driver": 1,
"A769-5120124 - Flow Memristor Gauge": 1,
"A828-3713433 - Multiplexer Breaker": 1,
"A837-2549775 - LCD Gauge": 1,
"A932-9527078 - Ceramic Multiplexer Potentiometer Gauge": 1,
"A964-7949458 - Bipolar-junction Encoder Transducer": 1,
"A981-3634031 - Driver Memristor": 1,
"A994-9085459 - LCD Compensator": 1,
"A998-9941987 - Flow Compensator": 1,
"B120-9942467 - Coil Driver": 1,
"B131-7597100 - LCD Sensor Transducer": 1,
"B143-5457756 - Flow Coil Resistor Capacitor": 1,
"B150-4370781 - Planck Coil Crystal Meter": 1,
"B161-8326597 - Inductor Potentiometer": 1,
"B187-7652875 - Driver Memristor Crystal": 1,
"B232-9941304 - Ceramic Rheostat Compensator": 1,
"B286-1369879 - Flow Coil Meter": 1,
"B308-8130581 - Memristor Breaker": 1,
"B365-4394675 - Flow Gauge Resonator Breaker": 1,
"B387-9270009 - Film Inductor Warp": 1,
"B429-3694560 - Network Switch": 1,
"B436-6020212 - Potentiometer Crystal": 1,
"B488-6957957 - Strain Capacitor": 1,
"B507-9536014 - LCD Network": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"B541-8783084 - Flow Potentiometer Gauge": 1,
"B625-4480024 - Sensor Resonator Compensator": 1,
"B633-4277974 - Multiplexer Strain": 1,
"B646-2108570 - Dipole Transducer": 1,
"B688-8088841 - Log-periodic Crystal Rheostat Encoder": 1,
"B693-5414825 - Planck Transformer Transistor Capacitor": 1,
"B818-8738213 - Crystal Capacitor": 1,
"B820-6334766 - LCD Strain Capacitor": 1,
"B825-7596233 - Resistor Compensator": 1,
"B888-3582334 - Aluminum Potentiometer Crystal": 1,
"B888-7564557 - Log-periodic Resistor Inductor Potentiometer": 1,
"B918-9468392 - Multiplexer Resistor Memristor": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"B937-9245602 - Driver Compensator": 1,
"C119-5354812 - Planck Sensor Strain": 1,
"C171-3616793 - Coil Resonator Capacitor": 1,
"C182-2689274 - Potentiometer Driver": 1,
"C200-5363446 - Network Transducer": 1,
"C213-4995667 - Potentiometer Crystal Encoder": 1,
"C245-8365837 - Potentiometer Resonator Encoder": 1,
"C247-3833661 - Encoder Transformer": 1,
"C371-9169438 - Polymer Transducer Meter": 1,
"C375-1115425 - Polymer Inductor Gauge Rheostat": 1,
"C390-4121800 - Sensor Strain": 1,
"C402-5072074 - Coil Inductor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"C431-5986267 - Transformer Meter": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"C527-6179790 - LCD Oscillator Sensor": 1,
"C551-8482722 - Planck Transducer": 1,
"C605-1105328 - Log-periodic Gauge Compensator Meter": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"C622-9716605 - Oscillator Transducer": 1,
"C625-4647902 - Heisenberg LCD Dipole Crystal": 1,
"C633-6541408 - Field-effect Potentiometer Transformer Switch": 1,
"C697-6765940 - Network Driver": 1,
"C699-1385746 - Resistor Driver Breaker": 1,
"C710-5880579 - Inductor Rheostat Capacitor": 1,
"C770-9751514 - Transistor Resonator Breaker": 1,
"C799-8367143 - Coil Strain Meter": 1,
"C800-3270129 - Network Potentiometer Encoder": 1,
"C831-2580759 - Warp": 1,
"C836-5221890 - Driver Rheostat Transformer": 1,
"C844-8161134 - Crystal Compensator": 1,
"D729-5737042 - Coil Resistor Warp": 1,
"I625-9097378 - Coil Compensator": 1,
"X204-1803083 - Crystal Strain Compensator": 1,
"X235-5406274 - Sensor Transducer": 1,
"H745-5284103 - Gauge Breaker Compensator": 1,
"M558-2275045 - Sensor Switch": 1,
"D215-3449390 - Gauge Crystal": 1,
"Z439-5790785 - Log-periodic Network Meter Switch": 1,
"F675-6890144 - Resistor Inductor Strain": 1,
"G451-8179125 - Phase Transistor Warp": 1,
"I264-7314323 - Film Inductor Memristor": 1,
"U990-5234138 - LCD Inductor": 1,
"W220-5347961 - Ceramic Coil Oscillator Breaker": 1,
"R302-4754313 - Aluminum Inductor Gauge Capacitor": 1,
"R930-5997475 - Coil Driver Capacitor": 1,
"I479-8852507 - Sensor Memristor Strain": 1,
"J671-5760255 - Driver Crystal": 1,
"O875-5580798 - Heisenberg LCD Network Memristor": 1,
"D243-3238752 - Log-periodic Transistor Encoder Compensator": 1,
"L592-1084147 - Coil Potentiometer Compensator": 1,
"F264-7752472 - Resonator Switch": 1,
"K411-1729714 - Driver Gauge": 1,
"O906-8511345 - Ceramic Inductor Transistor": 1,
"Q316-9683240 - Multiplexer Transistor": 1,
"U827-2294099 - Potentiometer Inductor Warp": 1,
"F383-6450755 - Strain Encoder": 1,
"K636-3664460 - Memristor Capacitor": 1,
"N866-6363347 - Polymer Memristor Resonator Capacitor": 1,
"O494-6195301 - Capacitor Strain Breaker": 1,
"U723-8910149 - Memristor Gauge Transformer": 1,
"F574-4728030 - Inductor Memristor Resonator": 1,
"U681-7406159 - Film Driver Switch": 1,
"I679-1230971 - Memristor Compensator": 1,
"J859-3337215 - Inductor Memristor": 1,
"R414-3098561 - Multiplexer Meter": 1,
"H244-4330589 - LCD Strain": 1,
"R228-5965688 - Field-effect LCD Gauge Transformer": 1,
"U379-6681071 - Heisenberg Coil Inductor LCD": 1,
"T291-4144066 - LCD Gauge Warp": 1,
"X365-6429727 - Coil Inductor Multiplexer": 1,
"J856-1304399 - Resistor Transducer": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"T721-4459242 - Coil Compensator": 1,
"W521-8006606 - Flow Memristor Transistor Compensator": 1,
"M436-2993715 - LCD Resonator Compensator": 1,
"C917-9516418 - LCD Coil": 1,
"G420-6271055 - Potentiometer Driver": 1,
"L205-6345377 - Planck Coil Potentiometer": 1,
"Y616-2122188 - Potentiometer Driver": 1,
"G858-9670227 - Network Transducer": 1,
"J505-2473322 - Coil Rheostat Transducer": 1,
"P957-8177638 - Multiplexer Dipole Transducer": 1,
"Q263-2186291 - Sensor Crystal": 1,
"T230-5902294 - LCD Resistor": 1,
"G494-2537921 - Coil Encoder Switch": 1,
"J720-4179367 - Phase Sensor Crystal": 1,
"J878-7667870 - LCD Crystal": 1,
"M449-5231838 - Transistor Crystal": 1,
"L262-1109442 - Polymer Inductor Rheostat Breaker": 1,
"Q852-7359409 - Ceramic Network Rheostat": 1,
"T806-6069877 - Planck Crystal Rheostat Switch": 1,
"D544-9061559 - Rheostat Capacitor Meter": 1,
"V485-9644250 - Polymer Network Oscillator Breaker": 1,
"E502-4333702 - Heisenberg Resistor Gauge Dipole": 1,
"Y327-7144928 - Planck Resonator LCD Strain": 1,
"M367-8246717 - Potentiometer Gauge Warp": 1,
"W493-4799721 - Network Warp": 1,
"O256-6180697 - Heisenberg Rheostat Switch": 1,
"Q210-8168184 - Network Multiplexer": 1,
"T958-2055544 - Bipolar-junction Network Transformer": 1,
"K167-1377420 - Coil Potentiometer Transducer": 1,
"M750-1800450 - Crystal Encoder": 1,
"Z170-8513315 - Sensor Crystal Resonator": 1,
"T592-5377501 - Field-effect Strain Capacitor": 1,
"Z288-2942538 - Network Dipole Capacitor": 1,
"K651-4147885 - LCD Crystal": 1,
"Z739-3332146 - Polymer LCD Transistor": 1,
"D331-6211280 - LCD Coil Transistor": 1,
"J259-5185660 - Memristor Encoder": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"P360-3765415 - LCD Dipole": 1,
"F251-2666285 - Bipolar-junction Strain Transducer": 1,
"N269-8309461 - LCD Potentiometer Warp": 1,
"H374-8481414 - Network Multiplexer Resonator": 1,
"I241-8776317 - Strain Compensator": 1,
"Z545-6121719 - LCD Sensor Breaker": 1,
"W981-1196694 - Multiplexer Memristor Breaker": 1,
"D679-1940878 - LCD Potentiometer Transducer": 1,
"P317-3419187 - Network Breaker Transducer": 1,
"Z165-5413714 - Gauge Transducer": 1,
"M313-3585673 - Heisenberg Memristor Rheostat Transducer": 1,
"N462-6714196 - Gauge Encoder": 1,
"O727-5999075 - Field-effect Transistor Rheostat Breaker": 1,
"D903-5325470 - Flow Crystal Rheostat": 1,
"T294-9722443 - Heisenberg LCD Crystal Resonator": 1,
"U833-1786284 - Oscillator Crystal Resonator": 1,
"F611-6226129 - Phase LCD Dipole": 1,
"N823-7028680 - LCD Potentiometer Switch": 1,
"E365-4375068 - Strain Compensator": 1,
"L374-3374767 - Resistor Potentiometer Strain": 1,
"O712-3456018 - Log-periodic Compensator": 1,
"Z889-8463159 - Resistor Inductor": 1,
"E812-9665212 - Bipolar-junction LCD Potentiometer Encoder": 1,
"U619-9969216 - Coil Inductor Transistor": 1,
"H338-7439287 - Field-effect Resistor Potentiometer Meter": 1,
"H355-1126195 - Polymer Memristor Meter": 1,
"K242-3459162 - Resistor Warp": 1,
"U286-4664935 - Multiplexer Memristor": 1,
"U743-1581581 - Memristor Driver Strain": 1,
"X148-3354774 - Multiplexer Compensator": 1,
"T586-1678071 - Resistor Transistor Capacitor": 1,
"D548-3561584 - Potentiometer Gauge Compensator": 1,
"M672-3016632 - Multiplexer Crystal Compensator": 1,
"R860-6284767 - Oscillator Compensator Warp": 1,
"F553-8518538 - Aluminum Sensor Capacitor": 1,
"K367-1320550 - Strain Encoder": 1,
"Q248-7597886 - Oscillator Strain": 1,
"R658-8902629 - Strain Meter": 1,
"E868-5063965 - Coil Compensator": 1,
"W846-7438265 - Resistor Memristor Capacitor": 1,
"Z739-8572107 - Network Potentiometer Gauge": 1,
"D525-4805979 - Compensator Transducer": 1,
"S218-3305033 - Phase Network Sensor Compensator": 1,
"Z143-3180282 - Multiplexer Sensor Encoder": 1,
"W615-3080767 - Resistor Resonator Switch": 1,
"R287-3749176 - Log-periodic Memristor Encoder": 1,
"Y676-8284278 - Encoder Warp": 1,
"Y728-2083256 - Gauge Crystal Encoder": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"W988-3702091 - Inductor Rheostat Warp": 1,
"M292-6646786 - Phase Sensor Crystal Capacitor": 1,
"K143-3113342 - Inductor Driver Breaker": 1,
"R786-6586508 - Coil LCD Rheostat": 1,
"X897-7676293 - Coil Potentiometer Strain": 1,
"L691-1489542 - Phase Multiplexer Driver Capacitor": 1,
"N377-1619045 - Capacitor Encoder Compensator": 1,
"H173-1200706 - Memristor Rheostat Transformer": 1,
"E793-4560979 - Capacitor Resonator Compensator": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"F126-7002599 - Log-periodic Oscillator Transistor": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"V156-6277722 - Multiplexer Resistor Transducer": 1,
"V488-1866672 - Log-periodic Rheostat Strain Transducer": 1,
"Y714-9954664 - Bipolar-junction Oscillator Gauge": 1,
"I696-9739398 - Breaker Resonator Encoder": 1,
"Z397-1183067 - Bipolar-junction Memristor Transistor Breaker": 1,
"K267-2045349 - Inductor Crystal Oscillator": 1,
"R231-2442628 - Transformer Transducer": 1,
"F708-2915261 - Crystal Resonator": 1,
"V881-4674578 - Planck Dipole Driver Crystal": 1,
"K559-3177627 - Rheostat Transformer Warp": 1,
"N589-9719896 - Sensor Transformer": 1,
"L365-6842646 - Driver Transducer": 1,
"U333-8518360 - Driver Switch Transducer": 1,
"E558-1962104 - Planck Breaker Compensator": 1,
"E661-6880042 - Crystal Rheostat Breaker": 1,
"M645-5460777 - Log-periodic Multiplexer Rheostat": 1,
"N879-4735381 - Multiplexer Inductor Crystal": 1,
"X408-2200602 - Inductor Capacitor Meter": 1,
"F661-8988230 - Warp Transistor Meter": 1,
"K375-1173149 - Inductor Breaker": 1,
"R675-2629492 - Sensor Breaker Warp": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"Z768-8346288 - Coil Sensor Network": 1,
"Z994-6661823 - Potentiometer Transducer Meter": 1,
"D973-4134519 - Aluminum Network Transducer": 1,
"X234-5007377 - Polymer Multiplexer Potentiometer Resistor": 1,
"X863-5063447 - Coil Potentiometer Transducer": 1,
"N324-9642439 - Driver Warp": 1,
"U169-4232721 - Driver Breaker Warp": 1,
"N982-3577798 - Network Transformer": 1,
"J178-5863159 - Crystal Transducer": 1,
"L805-3283253 - Coil Compensator Warp": 1
}
{
"set_P": 0.5,
"set_recall": 0.32673267326732675,
"set_F": 0.39520958083832336
}
ck26:44-en
Which hardware items fall within
the top 10% of widths, and what are
their IDs, names, and width
measurements?
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?id ?name ?width
WHERE {
{ # get min-max range
SELECT (MIN(?width) AS ?minW) (MAX(?width) AS ?maxW)
WHERE {
?hw a pv:Hardware ;
pv:width_mm ?width .
}
}

# get 90. percentile
BIND(?minW + (0.9 * (?maxW - ?minW)) AS ?pct90)

?hw a pv:Hardware ;
pv:id ?id ;
pv:name ?name ;
pv:width_mm ?width .

FILTER(?width >= ?pct90)
}
ORDER BY DESC(?width)
{
"C409-9349178": 1,
"Y553-3929384": 1,
"P337-4636612": 1,
"Y274-1029755": 1,
"M205-1376206": 1,
"U967-6553099": 1,
"M350-8985312": 1,
"B523-5464510": 1,
"F797-8658626": 1,
"N206-9059859": 1,
"F708-2915261": 1,
"F559-6763700": 1,
"P528-2149873": 1,
"K199-8327732": 1,
"H941-5264433": 1,
"O537-7333259": 1,
"D817-8084362": 1,
"F424-2241578": 1,
"R410-7957011": 1,
"X223-5282026": 1,
"C440-1370895": 1,
"Q568-8156489": 1,
"G625-3606813": 1,
"E737-8373948": 1,
"G205-5318100": 1,
"O194-8514321": 1,
"Y505-9919340": 1,
"S590-1665348": 1,
"U990-5234138": 1,
"P163-9337479": 1,
"I590-4406621": 1,
"U507-1853778": 1,
"M400-3382615": 1,
"R389-4348258": 1,
"A595-2446575": 1,
"A166-3766336": 1,
"V382-3883746": 1,
"H609-2196524": 1,
"E815-1132509": 1,
"W776-4360677": 1,
"J498-2858887": 1,
"Y580-9027193": 1,
"U955-7894277": 1,
"A225-1988393": 1,
"O952-1686669": 1,
"T973-5442896": 1,
"B926-8983325": 1,
"Q594-6895704": 1,
"W872-7508740": 1,
"Y968-9133870": 1,
"Q248-7597886": 1,
"G812-4734922": 1,
"J628-9483622": 1,
"E829-2591611": 1,
"L932-9433395": 1,
"O571-8892490": 1,
"Z358-9013730": 1,
"K898-8238720": 1,
"M721-8978045": 1,
"R272-9406400": 1,
"Y134-8040496": 1,
"I653-5994473": 1,
"R318-8770198": 1,
"S915-2398244": 1,
"N915-2423517": 1,
"C614-4108640": 1,
"G346-2864946": 1,
"P989-7962038": 1,
"D381-6342696": 1,
"E585-4643170": 1,
"Z319-4514647": 1,
"S839-8840069": 1,
"H973-6742173": 1,
"H676-3055632": 1,
"P472-9724615": 1,
"B519-3674576": 1,
"T147-7011803": 1,
"S859-8143033": 1,
"I571-8597034": 1,
"D237-6587630": 1,
"H267-1492366": 1,
"W744-1785439": 1,
"H491-2171849": 1,
"W177-1965331": 1,
"L748-3922794": 1,
"B825-7596233": 1,
"H660-6112027": 1,
"T608-9573692": 1,
"A315-1730287": 1,
"C898-2055295": 1,
"Z322-3336300": 1,
"X324-6249454": 1,
"Y440-4146454": 1,
"Multiplexer Rheostat Encoder": 1,
"Crystal Capacitor": 1,
"Sensor Driver Crystal": 1,
"Polymer Transistor Transformer": 1,
"Dipole Memristor Encoder": 1,
"Bipolar-junction Gauge Warp": 1,
"Oscillator Memristor Transistor": 1,
"Bipolar-junction Switch Transducer": 1,
"Multiplexer Gauge Crystal": 1,
"Polymer Memristor Capacitor": 1,
"Crystal Resonator": 1,
"Gauge Capacitor": 1,
"Encoder Compensator": 1,
"Phase Transistor Crystal": 1,
"Transformer Breaker Meter": 1,
"Oscillator Transformer": 1,
"Multiplexer Resistor Compensator": 1,
"Strain Meter": 1,
"Planck Network Dipole": 1,
"LCD Capacitor": 1,
"Potentiometer Capacitor": 1,
"Gauge Capacitor Meter": 1,
"Phase Multiplexer Inductor Crystal": 1,
"Oscillator Inductor": 1,
"LCD Gauge": 1,
"Aluminum Capacitor Warp": 1,
"Ceramic Capacitor Transformer Warp": 1,
"Heisenberg LCD Resonator Transformer": 1,
"LCD Inductor": 1,
"Transistor Encoder Compensator": 1,
"Heisenberg Coil Resistor Meter": 1,
"LCD Dipole Capacitor": 1,
"Field-effect Transistor Compensator": 1,
"Network Gauge": 1,
"Sensor Driver Capacitor": 1,
"Aluminum LCD Driver Gauge": 1,
"Network Dipole Warp": 1,
"Planck Potentiometer Transformer": 1,
"Resistor Sensor Resonator": 1,
"Field-effect Transducer Meter": 1,
"Bipolar-junction Oscillator Memristor Capacitor": 1,
"Bipolar-junction LCD Resistor": 1,
"Transducer Gauge Meter": 1,
"Field-effect Dipole Gauge": 1,
"LCD Resonator Breaker": 1,
"Sensor Driver Transducer": 1,
"Gauge Encoder Capacitor": 1,
"LCD Network": 1,
"Gauge Rheostat": 1,
"Oscillator Rheostat": 1,
"Oscillator Strain": 1,
"Heisenberg Network Potentiometer": 1,
"Field-effect Transistor Crystal": 1,
"Memristor Compensator": 1,
"Dipole Inductor Crystal": 1,
"Network Rheostat Transformer": 1,
"Flow Potentiometer Transistor": 1,
"Multiplexer Transformer": 1,
"LCD Memristor Warp": 1,
"Potentiometer Driver": 1,
"Oscillator Memristor": 1,
"Bipolar-junction Potentiometer Capacitor": 1,
"Flow Transistor Compensator Transducer": 1,
"Bipolar-junction Capacitor Crystal Breaker": 1,
"Aluminum Encoder Transformer Meter": 1,
"Log-periodic LCD Breaker": 1,
"LCD Strain Encoder": 1,
"Inductor": 1,
"LCD Memristor Rheostat": 1,
"Phase Resistor Breaker Oscillator": 1,
"Phase Resonator Meter": 1,
"Bipolar-junction Transistor Transformer": 1,
"Film LCD Warp": 1,
"Field-effect Potentiometer Resonator": 1,
"LCD Crystal Encoder": 1,
"Oscillator Transistor Capacitor": 1,
"Field-effect Breaker Strain Transformer": 1,
"Transistor Compensator": 1,
"Heisenberg Transformer Crystal Encoder": 1,
"Sensor Transducer": 1,
"Film Multiplexer Dipole Strain": 1,
"Multiplexer Meter": 1,
"Ceramic Coil Memristor Gauge": 1,
"Phase Driver Switch": 1,
"Resistor Compensator": 1,
"Network Multiplexer Encoder": 1,
"Coil Resonator": 1,
"Network Dipole": 1,
"Sensor Potentiometer": 1,
"Transducer Encoder Switch": 1,
"Breaker Meter": 1,
"Resistor Memristor": 1,
"80": 1,
"79": 1,
"78": 1,
"77": 1,
"76": 1,
"75": 1,
"74": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?hw ?pv_id ?label ?width WHERE {
?hw rdf:type pv:Hardware .
?hw pv:width_mm ?width .
OPTIONAL { ?hw pv:id ?pv_id . }
OPTIONAL { ?hw rdfs:label ?lbl0 . }
OPTIONAL { ?hw pv:name ?name0 . }
BIND(COALESCE(?lbl0, ?name0, ?pv_id, STR(?hw)) AS ?label)
}
ORDER BY DESC(xsd:decimal(?width))
LIMIT 100
{
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-Y274-1029755": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-J628-9483622": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-H973-6742173": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-Y440-4146454": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-H267-1492366": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-K296-6028981": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"P337-4636612": 1,
"Y274-1029755": 1,
"Y553-3929384": 1,
"M350-8985312": 1,
"N206-9059859": 1,
"U967-6553099": 1,
"B523-5464510": 1,
"F797-8658626": 1,
"M205-1376206": 1,
"C409-9349178": 1,
"P528-2149873": 1,
"K199-8327732": 1,
"H941-5264433": 1,
"G205-5318100": 1,
"E737-8373948": 1,
"C440-1370895": 1,
"F708-2915261": 1,
"O537-7333259": 1,
"Q568-8156489": 1,
"F559-6763700": 1,
"R410-7957011": 1,
"D817-8084362": 1,
"X223-5282026": 1,
"G625-3606813": 1,
"F424-2241578": 1,
"U990-5234138": 1,
"U507-1853778": 1,
"P163-9337479": 1,
"O194-8514321": 1,
"I590-4406621": 1,
"Y505-9919340": 1,
"S590-1665348": 1,
"A225-1988393": 1,
"A595-2446575": 1,
"H609-2196524": 1,
"R389-4348258": 1,
"W776-4360677": 1,
"E815-1132509": 1,
"M400-3382615": 1,
"Y580-9027193": 1,
"A166-3766336": 1,
"O952-1686669": 1,
"J498-2858887": 1,
"V382-3883746": 1,
"U955-7894277": 1,
"O571-8892490": 1,
"Z358-9013730": 1,
"I653-5994473": 1,
"Y968-9133870": 1,
"R318-8770198": 1,
"B926-8983325": 1,
"Y134-8040496": 1,
"J628-9483622": 1,
"S915-2398244": 1,
"W872-7508740": 1,
"Q248-7597886": 1,
"L932-9433395": 1,
"R272-9406400": 1,
"G812-4734922": 1,
"M721-8978045": 1,
"K898-8238720": 1,
"T973-5442896": 1,
"E829-2591611": 1,
"Q594-6895704": 1,
"N915-2423517": 1,
"Z319-4514647": 1,
"B519-3674576": 1,
"P989-7962038": 1,
"G346-2864946": 1,
"C614-4108640": 1,
"E585-4643170": 1,
"H973-6742173": 1,
"H676-3055632": 1,
"P472-9724615": 1,
"S839-8840069": 1,
"D381-6342696": 1,
"H491-2171849": 1,
"A315-1730287": 1,
"I571-8597034": 1,
"W177-1965331": 1,
"B825-7596233": 1,
"X324-6249454": 1,
"W744-1785439": 1,
"H660-6112027": 1,
"Y440-4146454": 1,
"C898-2055295": 1,
"S859-8143033": 1,
"H267-1492366": 1,
"Z322-3336300": 1,
"D237-6587630": 1,
"L748-3922794": 1,
"T608-9573692": 1,
"T147-7011803": 1,
"U681-7406159": 1,
"Q189-5857908": 1,
"U128-5766392": 1,
"V104-2082346": 1,
"K296-6028981": 1,
"P844-4114854": 1,
"M522-9124638": 1,
"P337-4636612 - Sensor Driver Crystal": 1,
"Y274-1029755 - Polymer Transistor Transformer": 1,
"Y553-3929384 - Crystal Capacitor": 1,
"M350-8985312 - Oscillator Memristor Transistor": 1,
"N206-9059859 - Polymer Memristor Capacitor": 1,
"U967-6553099 - Bipolar-junction Gauge Warp": 1,
"B523-5464510 - Bipolar-junction Switch Transducer": 1,
"F797-8658626 - Multiplexer Gauge Crystal": 1,
"M205-1376206 - Dipole Memristor Encoder": 1,
"C409-9349178 - Multiplexer Rheostat Encoder": 1,
"P528-2149873 - Encoder Compensator": 1,
"K199-8327732 - Phase Transistor Crystal": 1,
"H941-5264433 - Transformer Breaker Meter": 1,
"G205-5318100 - LCD Gauge": 1,
"E737-8373948 - Oscillator Inductor": 1,
"C440-1370895 - Potentiometer Capacitor": 1,
"F708-2915261 - Crystal Resonator": 1,
"O537-7333259 - Oscillator Transformer": 1,
"Q568-8156489 - Gauge Capacitor Meter": 1,
"F559-6763700 - Gauge Capacitor": 1,
"R410-7957011 - Planck Network Dipole": 1,
"D817-8084362 - Multiplexer Resistor Compensator": 1,
"X223-5282026 - LCD Capacitor": 1,
"G625-3606813 - Phase Multiplexer Inductor Crystal": 1,
"F424-2241578 - Strain Meter": 1,
"U990-5234138 - LCD Inductor": 1,
"U507-1853778 - LCD Dipole Capacitor": 1,
"P163-9337479 - Transistor Encoder Compensator": 1,
"O194-8514321 - Aluminum Capacitor Warp": 1,
"I590-4406621 - Heisenberg Coil Resistor Meter": 1,
"Y505-9919340 - Ceramic Capacitor Transformer Warp": 1,
"S590-1665348 - Heisenberg LCD Resonator Transformer": 1,
"A225-1988393 - Field-effect Dipole Gauge": 1,
"A595-2446575 - Sensor Driver Capacitor": 1,
"H609-2196524 - Planck Potentiometer Transformer": 1,
"R389-4348258 - Network Gauge": 1,
"W776-4360677 - Field-effect Transducer Meter": 1,
"E815-1132509 - Resistor Sensor Resonator": 1,
"M400-3382615 - Field-effect Transistor Compensator": 1,
"Y580-9027193 - Bipolar-junction LCD Resistor": 1,
"A166-3766336 - Aluminum LCD Driver Gauge": 1,
"O952-1686669 - LCD Resonator Breaker": 1,
"J498-2858887 - Bipolar-junction Oscillator Memristor Capacitor": 1,
"V382-3883746 - Network Dipole Warp": 1,
"U955-7894277 - Transducer Gauge Meter": 1,
"O571-8892490 - Network Rheostat Transformer": 1,
"Z358-9013730 - Flow Potentiometer Transistor": 1,
"I653-5994473 - Bipolar-junction Potentiometer Capacitor": 1,
"Y968-9133870 - Oscillator Rheostat": 1,
"R318-8770198 - Flow Transistor Compensator Transducer": 1,
"B926-8983325 - Gauge Encoder Capacitor": 1,
"Y134-8040496 - Oscillator Memristor": 1,
"J628-9483622 - Field-effect Transistor Crystal": 1,
"S915-2398244 - Bipolar-junction Capacitor Crystal Breaker": 1,
"W872-7508740 - Gauge Rheostat": 1,
"Q248-7597886 - Oscillator Strain": 1,
"L932-9433395 - Dipole Inductor Crystal": 1,
"R272-9406400 - Potentiometer Driver": 1,
"G812-4734922 - Heisenberg Network Potentiometer": 1,
"M721-8978045 - LCD Memristor Warp": 1,
"K898-8238720 - Multiplexer Transformer": 1,
"T973-5442896 - Sensor Driver Transducer": 1,
"E829-2591611 - Memristor Compensator": 1,
"Q594-6895704 - LCD Network": 1,
"N915-2423517 - Aluminum Encoder Transformer Meter": 1,
"Z319-4514647 - Phase Resistor Breaker Oscillator": 1,
"B519-3674576 - LCD Crystal Encoder": 1,
"P989-7962038 - Bipolar-junction LCD Resistor": 1,
"G346-2864946 - LCD Strain Encoder": 1,
"C614-4108640 - Log-periodic LCD Breaker": 1,
"E585-4643170 - LCD Memristor Rheostat": 1,
"H973-6742173 - Bipolar-junction Transistor Transformer": 1,
"H676-3055632 - Film LCD Warp": 1,
"P472-9724615 - Field-effect Potentiometer Resonator": 1,
"S839-8840069 - Phase Resonator Meter": 1,
"D381-6342696 - Inductor": 1,
"H491-2171849 - Multiplexer Meter": 1,
"A315-1730287 - Network Dipole": 1,
"I571-8597034 - Transistor Compensator": 1,
"W177-1965331 - Ceramic Coil Memristor Gauge": 1,
"B825-7596233 - Resistor Compensator": 1,
"X324-6249454 - Breaker Meter": 1,
"W744-1785439 - Film Multiplexer Dipole Strain": 1,
"H660-6112027 - Network Multiplexer Encoder": 1,
"Y440-4146454 - Resistor Memristor": 1,
"C898-2055295 - Sensor Potentiometer": 1,
"S859-8143033 - Field-effect Breaker Strain Transformer": 1,
"H267-1492366 - Sensor Transducer": 1,
"Z322-3336300 - Transducer Encoder Switch": 1,
"D237-6587630 - Heisenberg Transformer Crystal Encoder": 1,
"L748-3922794 - Phase Driver Switch": 1,
"T608-9573692 - Coil Resonator": 1,
"T147-7011803 - Oscillator Transistor Capacitor": 1,
"U681-7406159 - Film Driver Switch": 1,
"Q189-5857908 - Phase Multiplexer Crystal Warp": 1,
"U128-5766392 - Multiplexer Resistor": 1,
"V104-2082346 - Flow Dipole Transformer": 1,
"K296-6028981 - Inductor Strain": 1,
"P844-4114854 - Field-effect Strain Compensator": 1,
"M522-9124638 - Flow LCD Resistor Encoder": 1,
"80": 1,
"79": 1,
"78": 1,
"77": 1,
"76": 1,
"75": 1,
"74": 1,
"73": 1
}
{
"set_P": 0.3246753246753247,
"set_recall": 0.5208333333333334,
"set_F": 0.4
}
ck26:44-de
Welche Hardware-Komponenten gehören
zu den 10% mit der größten Breite,
und welche IDs, Namen und
Breitenmaße haben sie?
PREFIX pv: <http://ld.company.org/prod-vocab/>

SELECT ?id ?name ?width
WHERE {
{ # get min-max range
SELECT (MIN(?width) AS ?minW) (MAX(?width) AS ?maxW)
WHERE {
?hw a pv:Hardware ;
pv:width_mm ?width .
}
}

# get 90. percentile
BIND(?minW + (0.9 * (?maxW - ?minW)) AS ?pct90)

?hw a pv:Hardware ;
pv:id ?id ;
pv:name ?name ;
pv:width_mm ?width .

FILTER(?width >= ?pct90)
}
ORDER BY DESC(?width)
{
"C409-9349178": 1,
"Y553-3929384": 1,
"P337-4636612": 1,
"Y274-1029755": 1,
"M205-1376206": 1,
"U967-6553099": 1,
"M350-8985312": 1,
"B523-5464510": 1,
"F797-8658626": 1,
"N206-9059859": 1,
"F708-2915261": 1,
"F559-6763700": 1,
"P528-2149873": 1,
"K199-8327732": 1,
"H941-5264433": 1,
"O537-7333259": 1,
"D817-8084362": 1,
"F424-2241578": 1,
"R410-7957011": 1,
"X223-5282026": 1,
"C440-1370895": 1,
"Q568-8156489": 1,
"G625-3606813": 1,
"E737-8373948": 1,
"G205-5318100": 1,
"O194-8514321": 1,
"Y505-9919340": 1,
"S590-1665348": 1,
"U990-5234138": 1,
"P163-9337479": 1,
"I590-4406621": 1,
"U507-1853778": 1,
"M400-3382615": 1,
"R389-4348258": 1,
"A595-2446575": 1,
"A166-3766336": 1,
"V382-3883746": 1,
"H609-2196524": 1,
"E815-1132509": 1,
"W776-4360677": 1,
"J498-2858887": 1,
"Y580-9027193": 1,
"U955-7894277": 1,
"A225-1988393": 1,
"O952-1686669": 1,
"T973-5442896": 1,
"B926-8983325": 1,
"Q594-6895704": 1,
"W872-7508740": 1,
"Y968-9133870": 1,
"Q248-7597886": 1,
"G812-4734922": 1,
"J628-9483622": 1,
"E829-2591611": 1,
"L932-9433395": 1,
"O571-8892490": 1,
"Z358-9013730": 1,
"K898-8238720": 1,
"M721-8978045": 1,
"R272-9406400": 1,
"Y134-8040496": 1,
"I653-5994473": 1,
"R318-8770198": 1,
"S915-2398244": 1,
"N915-2423517": 1,
"C614-4108640": 1,
"G346-2864946": 1,
"P989-7962038": 1,
"D381-6342696": 1,
"E585-4643170": 1,
"Z319-4514647": 1,
"S839-8840069": 1,
"H973-6742173": 1,
"H676-3055632": 1,
"P472-9724615": 1,
"B519-3674576": 1,
"T147-7011803": 1,
"S859-8143033": 1,
"I571-8597034": 1,
"D237-6587630": 1,
"H267-1492366": 1,
"W744-1785439": 1,
"H491-2171849": 1,
"W177-1965331": 1,
"L748-3922794": 1,
"B825-7596233": 1,
"H660-6112027": 1,
"T608-9573692": 1,
"A315-1730287": 1,
"C898-2055295": 1,
"Z322-3336300": 1,
"X324-6249454": 1,
"Y440-4146454": 1,
"Multiplexer Rheostat Encoder": 1,
"Crystal Capacitor": 1,
"Sensor Driver Crystal": 1,
"Polymer Transistor Transformer": 1,
"Dipole Memristor Encoder": 1,
"Bipolar-junction Gauge Warp": 1,
"Oscillator Memristor Transistor": 1,
"Bipolar-junction Switch Transducer": 1,
"Multiplexer Gauge Crystal": 1,
"Polymer Memristor Capacitor": 1,
"Crystal Resonator": 1,
"Gauge Capacitor": 1,
"Encoder Compensator": 1,
"Phase Transistor Crystal": 1,
"Transformer Breaker Meter": 1,
"Oscillator Transformer": 1,
"Multiplexer Resistor Compensator": 1,
"Strain Meter": 1,
"Planck Network Dipole": 1,
"LCD Capacitor": 1,
"Potentiometer Capacitor": 1,
"Gauge Capacitor Meter": 1,
"Phase Multiplexer Inductor Crystal": 1,
"Oscillator Inductor": 1,
"LCD Gauge": 1,
"Aluminum Capacitor Warp": 1,
"Ceramic Capacitor Transformer Warp": 1,
"Heisenberg LCD Resonator Transformer": 1,
"LCD Inductor": 1,
"Transistor Encoder Compensator": 1,
"Heisenberg Coil Resistor Meter": 1,
"LCD Dipole Capacitor": 1,
"Field-effect Transistor Compensator": 1,
"Network Gauge": 1,
"Sensor Driver Capacitor": 1,
"Aluminum LCD Driver Gauge": 1,
"Network Dipole Warp": 1,
"Planck Potentiometer Transformer": 1,
"Resistor Sensor Resonator": 1,
"Field-effect Transducer Meter": 1,
"Bipolar-junction Oscillator Memristor Capacitor": 1,
"Bipolar-junction LCD Resistor": 1,
"Transducer Gauge Meter": 1,
"Field-effect Dipole Gauge": 1,
"LCD Resonator Breaker": 1,
"Sensor Driver Transducer": 1,
"Gauge Encoder Capacitor": 1,
"LCD Network": 1,
"Gauge Rheostat": 1,
"Oscillator Rheostat": 1,
"Oscillator Strain": 1,
"Heisenberg Network Potentiometer": 1,
"Field-effect Transistor Crystal": 1,
"Memristor Compensator": 1,
"Dipole Inductor Crystal": 1,
"Network Rheostat Transformer": 1,
"Flow Potentiometer Transistor": 1,
"Multiplexer Transformer": 1,
"LCD Memristor Warp": 1,
"Potentiometer Driver": 1,
"Oscillator Memristor": 1,
"Bipolar-junction Potentiometer Capacitor": 1,
"Flow Transistor Compensator Transducer": 1,
"Bipolar-junction Capacitor Crystal Breaker": 1,
"Aluminum Encoder Transformer Meter": 1,
"Log-periodic LCD Breaker": 1,
"LCD Strain Encoder": 1,
"Inductor": 1,
"LCD Memristor Rheostat": 1,
"Phase Resistor Breaker Oscillator": 1,
"Phase Resonator Meter": 1,
"Bipolar-junction Transistor Transformer": 1,
"Film LCD Warp": 1,
"Field-effect Potentiometer Resonator": 1,
"LCD Crystal Encoder": 1,
"Oscillator Transistor Capacitor": 1,
"Field-effect Breaker Strain Transformer": 1,
"Transistor Compensator": 1,
"Heisenberg Transformer Crystal Encoder": 1,
"Sensor Transducer": 1,
"Film Multiplexer Dipole Strain": 1,
"Multiplexer Meter": 1,
"Ceramic Coil Memristor Gauge": 1,
"Phase Driver Switch": 1,
"Resistor Compensator": 1,
"Network Multiplexer Encoder": 1,
"Coil Resonator": 1,
"Network Dipole": 1,
"Sensor Potentiometer": 1,
"Transducer Encoder Switch": 1,
"Breaker Meter": 1,
"Resistor Memristor": 1,
"80": 1,
"79": 1,
"78": 1,
"77": 1,
"76": 1,
"75": 1,
"74": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?product ?id ?name ?width WHERE {
{
SELECT (MAX(?wVal) AS ?threshold) WHERE {
{
SELECT (COUNT(DISTINCT ?p0) AS ?N) WHERE {
?p0 rdf:type pv:Hardware .
?p0 pv:width_mm ?w0 .
}
}
{
SELECT ?wVal (COUNT(DISTINCT ?p_ge) AS ?count_ge) WHERE {
?p_val rdf:type pv:Hardware .
?p_val pv:width_mm ?wVal .
?p_ge rdf:type pv:Hardware .
?p_ge pv:width_mm ?w2 .
FILTER(?w2 >= ?wVal)
} GROUP BY ?wVal
}
BIND(CEIL(?N * 0.1) AS ?K)
FILTER(?count_ge >= ?K)
}
}

?product rdf:type pv:Hardware .
?product pv:width_mm ?width .
FILTER(?width >= ?threshold)

OPTIONAL { ?product pv:id ?id }
OPTIONAL { ?product pv:name ?name }
OPTIONAL { ?product rdfs:label ?lbl }
} ORDER BY DESC(?width) ?product
{
"http://ld.company.org/prod-instances/hw-B523-5464510": 1,
"http://ld.company.org/prod-instances/hw-C409-9349178": 1,
"http://ld.company.org/prod-instances/hw-F797-8658626": 1,
"http://ld.company.org/prod-instances/hw-M205-1376206": 1,
"http://ld.company.org/prod-instances/hw-M350-8985312": 1,
"http://ld.company.org/prod-instances/hw-N206-9059859": 1,
"http://ld.company.org/prod-instances/hw-P337-4636612": 1,
"http://ld.company.org/prod-instances/hw-U967-6553099": 1,
"http://ld.company.org/prod-instances/hw-Y274-1029755": 1,
"http://ld.company.org/prod-instances/hw-Y553-3929384": 1,
"http://ld.company.org/prod-instances/hw-C440-1370895": 1,
"http://ld.company.org/prod-instances/hw-D817-8084362": 1,
"http://ld.company.org/prod-instances/hw-E737-8373948": 1,
"http://ld.company.org/prod-instances/hw-F424-2241578": 1,
"http://ld.company.org/prod-instances/hw-F559-6763700": 1,
"http://ld.company.org/prod-instances/hw-F708-2915261": 1,
"http://ld.company.org/prod-instances/hw-G205-5318100": 1,
"http://ld.company.org/prod-instances/hw-G625-3606813": 1,
"http://ld.company.org/prod-instances/hw-H941-5264433": 1,
"http://ld.company.org/prod-instances/hw-K199-8327732": 1,
"http://ld.company.org/prod-instances/hw-O537-7333259": 1,
"http://ld.company.org/prod-instances/hw-P528-2149873": 1,
"http://ld.company.org/prod-instances/hw-Q568-8156489": 1,
"http://ld.company.org/prod-instances/hw-R410-7957011": 1,
"http://ld.company.org/prod-instances/hw-X223-5282026": 1,
"http://ld.company.org/prod-instances/hw-I590-4406621": 1,
"http://ld.company.org/prod-instances/hw-O194-8514321": 1,
"http://ld.company.org/prod-instances/hw-P163-9337479": 1,
"http://ld.company.org/prod-instances/hw-S590-1665348": 1,
"http://ld.company.org/prod-instances/hw-U507-1853778": 1,
"http://ld.company.org/prod-instances/hw-U990-5234138": 1,
"http://ld.company.org/prod-instances/hw-Y505-9919340": 1,
"http://ld.company.org/prod-instances/hw-A166-3766336": 1,
"http://ld.company.org/prod-instances/hw-A225-1988393": 1,
"http://ld.company.org/prod-instances/hw-A595-2446575": 1,
"http://ld.company.org/prod-instances/hw-E815-1132509": 1,
"http://ld.company.org/prod-instances/hw-H609-2196524": 1,
"http://ld.company.org/prod-instances/hw-J498-2858887": 1,
"http://ld.company.org/prod-instances/hw-M400-3382615": 1,
"http://ld.company.org/prod-instances/hw-O952-1686669": 1,
"http://ld.company.org/prod-instances/hw-R389-4348258": 1,
"http://ld.company.org/prod-instances/hw-U955-7894277": 1,
"http://ld.company.org/prod-instances/hw-V382-3883746": 1,
"http://ld.company.org/prod-instances/hw-W776-4360677": 1,
"http://ld.company.org/prod-instances/hw-Y580-9027193": 1,
"http://ld.company.org/prod-instances/hw-B926-8983325": 1,
"http://ld.company.org/prod-instances/hw-E829-2591611": 1,
"http://ld.company.org/prod-instances/hw-G812-4734922": 1,
"http://ld.company.org/prod-instances/hw-I653-5994473": 1,
"http://ld.company.org/prod-instances/hw-J628-9483622": 1,
"http://ld.company.org/prod-instances/hw-K898-8238720": 1,
"http://ld.company.org/prod-instances/hw-L932-9433395": 1,
"http://ld.company.org/prod-instances/hw-M721-8978045": 1,
"http://ld.company.org/prod-instances/hw-O571-8892490": 1,
"http://ld.company.org/prod-instances/hw-Q248-7597886": 1,
"http://ld.company.org/prod-instances/hw-Q594-6895704": 1,
"http://ld.company.org/prod-instances/hw-R272-9406400": 1,
"http://ld.company.org/prod-instances/hw-R318-8770198": 1,
"http://ld.company.org/prod-instances/hw-S915-2398244": 1,
"http://ld.company.org/prod-instances/hw-T973-5442896": 1,
"http://ld.company.org/prod-instances/hw-W872-7508740": 1,
"http://ld.company.org/prod-instances/hw-Y134-8040496": 1,
"http://ld.company.org/prod-instances/hw-Y968-9133870": 1,
"http://ld.company.org/prod-instances/hw-Z358-9013730": 1,
"http://ld.company.org/prod-instances/hw-B519-3674576": 1,
"http://ld.company.org/prod-instances/hw-C614-4108640": 1,
"http://ld.company.org/prod-instances/hw-D381-6342696": 1,
"http://ld.company.org/prod-instances/hw-E585-4643170": 1,
"http://ld.company.org/prod-instances/hw-G346-2864946": 1,
"http://ld.company.org/prod-instances/hw-H676-3055632": 1,
"http://ld.company.org/prod-instances/hw-H973-6742173": 1,
"http://ld.company.org/prod-instances/hw-N915-2423517": 1,
"http://ld.company.org/prod-instances/hw-P472-9724615": 1,
"http://ld.company.org/prod-instances/hw-P989-7962038": 1,
"http://ld.company.org/prod-instances/hw-S839-8840069": 1,
"http://ld.company.org/prod-instances/hw-Z319-4514647": 1,
"http://ld.company.org/prod-instances/hw-A315-1730287": 1,
"http://ld.company.org/prod-instances/hw-B825-7596233": 1,
"http://ld.company.org/prod-instances/hw-C898-2055295": 1,
"http://ld.company.org/prod-instances/hw-D237-6587630": 1,
"http://ld.company.org/prod-instances/hw-H267-1492366": 1,
"http://ld.company.org/prod-instances/hw-H491-2171849": 1,
"http://ld.company.org/prod-instances/hw-H660-6112027": 1,
"http://ld.company.org/prod-instances/hw-I571-8597034": 1,
"http://ld.company.org/prod-instances/hw-L748-3922794": 1,
"http://ld.company.org/prod-instances/hw-S859-8143033": 1,
"http://ld.company.org/prod-instances/hw-T147-7011803": 1,
"http://ld.company.org/prod-instances/hw-T608-9573692": 1,
"http://ld.company.org/prod-instances/hw-W177-1965331": 1,
"http://ld.company.org/prod-instances/hw-W744-1785439": 1,
"http://ld.company.org/prod-instances/hw-X324-6249454": 1,
"http://ld.company.org/prod-instances/hw-Y440-4146454": 1,
"http://ld.company.org/prod-instances/hw-Z322-3336300": 1,
"http://ld.company.org/prod-instances/hw-D146-5615241": 1,
"http://ld.company.org/prod-instances/hw-K296-6028981": 1,
"http://ld.company.org/prod-instances/hw-M522-9124638": 1,
"http://ld.company.org/prod-instances/hw-P844-4114854": 1,
"http://ld.company.org/prod-instances/hw-P870-6495639": 1,
"http://ld.company.org/prod-instances/hw-Q189-5857908": 1,
"http://ld.company.org/prod-instances/hw-U128-5766392": 1,
"http://ld.company.org/prod-instances/hw-U681-7406159": 1,
"http://ld.company.org/prod-instances/hw-V104-2082346": 1,
"http://ld.company.org/prod-instances/hw-X234-5007377": 1,
"B523-5464510": 1,
"C409-9349178": 1,
"F797-8658626": 1,
"M205-1376206": 1,
"M350-8985312": 1,
"N206-9059859": 1,
"P337-4636612": 1,
"U967-6553099": 1,
"Y274-1029755": 1,
"Y553-3929384": 1,
"C440-1370895": 1,
"D817-8084362": 1,
"E737-8373948": 1,
"F424-2241578": 1,
"F559-6763700": 1,
"F708-2915261": 1,
"G205-5318100": 1,
"G625-3606813": 1,
"H941-5264433": 1,
"K199-8327732": 1,
"O537-7333259": 1,
"P528-2149873": 1,
"Q568-8156489": 1,
"R410-7957011": 1,
"X223-5282026": 1,
"I590-4406621": 1,
"O194-8514321": 1,
"P163-9337479": 1,
"S590-1665348": 1,
"U507-1853778": 1,
"U990-5234138": 1,
"Y505-9919340": 1,
"A166-3766336": 1,
"A225-1988393": 1,
"A595-2446575": 1,
"E815-1132509": 1,
"H609-2196524": 1,
"J498-2858887": 1,
"M400-3382615": 1,
"O952-1686669": 1,
"R389-4348258": 1,
"U955-7894277": 1,
"V382-3883746": 1,
"W776-4360677": 1,
"Y580-9027193": 1,
"B926-8983325": 1,
"E829-2591611": 1,
"G812-4734922": 1,
"I653-5994473": 1,
"J628-9483622": 1,
"K898-8238720": 1,
"L932-9433395": 1,
"M721-8978045": 1,
"O571-8892490": 1,
"Q248-7597886": 1,
"Q594-6895704": 1,
"R272-9406400": 1,
"R318-8770198": 1,
"S915-2398244": 1,
"T973-5442896": 1,
"W872-7508740": 1,
"Y134-8040496": 1,
"Y968-9133870": 1,
"Z358-9013730": 1,
"B519-3674576": 1,
"C614-4108640": 1,
"D381-6342696": 1,
"E585-4643170": 1,
"G346-2864946": 1,
"H676-3055632": 1,
"H973-6742173": 1,
"N915-2423517": 1,
"P472-9724615": 1,
"P989-7962038": 1,
"S839-8840069": 1,
"Z319-4514647": 1,
"A315-1730287": 1,
"B825-7596233": 1,
"C898-2055295": 1,
"D237-6587630": 1,
"H267-1492366": 1,
"H491-2171849": 1,
"H660-6112027": 1,
"I571-8597034": 1,
"L748-3922794": 1,
"S859-8143033": 1,
"T147-7011803": 1,
"T608-9573692": 1,
"W177-1965331": 1,
"W744-1785439": 1,
"X324-6249454": 1,
"Y440-4146454": 1,
"Z322-3336300": 1,
"D146-5615241": 1,
"K296-6028981": 1,
"M522-9124638": 1,
"P844-4114854": 1,
"P870-6495639": 1,
"Q189-5857908": 1,
"U128-5766392": 1,
"U681-7406159": 1,
"V104-2082346": 1,
"X234-5007377": 1,
"Bipolar-junction Switch Transducer": 1,
"Multiplexer Rheostat Encoder": 1,
"Multiplexer Gauge Crystal": 1,
"Dipole Memristor Encoder": 1,
"Oscillator Memristor Transistor": 1,
"Polymer Memristor Capacitor": 1,
"Sensor Driver Crystal": 1,
"Bipolar-junction Gauge Warp": 1,
"Polymer Transistor Transformer": 1,
"Crystal Capacitor": 1,
"Potentiometer Capacitor": 1,
"Multiplexer Resistor Compensator": 1,
"Oscillator Inductor": 1,
"Strain Meter": 1,
"Gauge Capacitor": 1,
"Crystal Resonator": 1,
"LCD Gauge": 1,
"Phase Multiplexer Inductor Crystal": 1,
"Transformer Breaker Meter": 1,
"Phase Transistor Crystal": 1,
"Oscillator Transformer": 1,
"Encoder Compensator": 1,
"Gauge Capacitor Meter": 1,
"Planck Network Dipole": 1,
"LCD Capacitor": 1,
"Heisenberg Coil Resistor Meter": 1,
"Aluminum Capacitor Warp": 1,
"Transistor Encoder Compensator": 1,
"Heisenberg LCD Resonator Transformer": 1,
"LCD Dipole Capacitor": 1,
"LCD Inductor": 1,
"Ceramic Capacitor Transformer Warp": 1,
"Aluminum LCD Driver Gauge": 1,
"Field-effect Dipole Gauge": 1,
"Sensor Driver Capacitor": 1,
"Resistor Sensor Resonator": 1,
"Planck Potentiometer Transformer": 1,
"Bipolar-junction Oscillator Memristor Capacitor": 1,
"Field-effect Transistor Compensator": 1,
"LCD Resonator Breaker": 1,
"Network Gauge": 1,
"Transducer Gauge Meter": 1,
"Network Dipole Warp": 1,
"Field-effect Transducer Meter": 1,
"Bipolar-junction LCD Resistor": 1,
"Gauge Encoder Capacitor": 1,
"Memristor Compensator": 1,
"Heisenberg Network Potentiometer": 1,
"Bipolar-junction Potentiometer Capacitor": 1,
"Field-effect Transistor Crystal": 1,
"Multiplexer Transformer": 1,
"Dipole Inductor Crystal": 1,
"LCD Memristor Warp": 1,
"Network Rheostat Transformer": 1,
"Oscillator Strain": 1,
"LCD Network": 1,
"Potentiometer Driver": 1,
"Flow Transistor Compensator Transducer": 1,
"Bipolar-junction Capacitor Crystal Breaker": 1,
"Sensor Driver Transducer": 1,
"Gauge Rheostat": 1,
"Oscillator Memristor": 1,
"Oscillator Rheostat": 1,
"Flow Potentiometer Transistor": 1,
"LCD Crystal Encoder": 1,
"Log-periodic LCD Breaker": 1,
"Inductor": 1,
"LCD Memristor Rheostat": 1,
"LCD Strain Encoder": 1,
"Film LCD Warp": 1,
"Bipolar-junction Transistor Transformer": 1,
"Aluminum Encoder Transformer Meter": 1,
"Field-effect Potentiometer Resonator": 1,
"Phase Resonator Meter": 1,
"Phase Resistor Breaker Oscillator": 1,
"Network Dipole": 1,
"Resistor Compensator": 1,
"Sensor Potentiometer": 1,
"Heisenberg Transformer Crystal Encoder": 1,
"Sensor Transducer": 1,
"Multiplexer Meter": 1,
"Network Multiplexer Encoder": 1,
"Transistor Compensator": 1,
"Phase Driver Switch": 1,
"Field-effect Breaker Strain Transformer": 1,
"Oscillator Transistor Capacitor": 1,
"Coil Resonator": 1,
"Ceramic Coil Memristor Gauge": 1,
"Film Multiplexer Dipole Strain": 1,
"Breaker Meter": 1,
"Resistor Memristor": 1,
"Transducer Encoder Switch": 1,
"LCD Gauge Transformer": 1,
"Inductor Strain": 1,
"Flow LCD Resistor Encoder": 1,
"Field-effect Strain Compensator": 1,
"Inductor Transistor Warp": 1,
"Phase Multiplexer Crystal Warp": 1,
"Multiplexer Resistor": 1,
"Film Driver Switch": 1,
"Flow Dipole Transformer": 1,
"Polymer Multiplexer Potentiometer Resistor": 1,
"80": 1,
"79": 1,
"78": 1,
"77": 1,
"76": 1,
"75": 1,
"74": 1,
"73": 1
}
{
"set_P": 0.6075949367088608,
"set_recall": 1.0,
"set_F": 0.7559055118110236
}
ck26:45-en
Which supplier provides the most
reliable inductors?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?hardware pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Inductor> .
?hardware pv:reliabilityIndex ?reliabilityIndex .
?hardware pv:hasSupplier ?result .
}
ORDER BY DESC(?reliabilityIndex)
LIMIT 1
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?supplier (SAMPLE(COALESCE(?lbl0,?name0,STR(?supplier))) AS ?supplierLabel) (AVG(?rel) AS ?avgReliability) (COUNT(DISTINCT ?product) AS ?productCount) WHERE {
?product pv:hasCategory pi:prod-cat-Inductor .
?product pv:hasSupplier ?supplier .
?product pv:reliabilityIndex ?rel .
OPTIONAL { ?supplier rdfs:label ?lbl0 }
OPTIONAL { ?supplier pv:name ?name0 }
} GROUP BY ?supplier
ORDER BY DESC(?avgReliability)
LIMIT 1
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"0.962": 1,
"1": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:45-de
Welcher Lieferant bietet die
zuverlässigsten Induktivitäten an?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?hardware pv:hasCategory <http://ld.company.org/prod-instances/prod-cat-Inductor> .
?hardware pv:reliabilityIndex ?reliabilityIndex .
?hardware pv:hasSupplier ?result .
}
ORDER BY DESC(?reliabilityIndex)
LIMIT 1
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?supplier (SAMPLE(COALESCE(rdfs:label, pv:name, STR(?supplier))) AS ?supplierLabel) (AVG(xsd:double(?reliability)) AS ?avgReliability) (COUNT(DISTINCT ?product) AS ?productCount) WHERE { ?product pv:hasCategory pi:prod-cat-Inductor . ?product pv:hasSupplier ?supplier . ?product pv:reliabilityIndex ?reliability . } GROUP BY ?supplier ORDER BY DESC(?avgReliability) LIMIT 1
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"9.62E-1": 1,
"1": 1
}
{
"set_P": 0.25,
"set_recall": 1.0,
"set_F": 0.4
}
ck26:46-en
Which five suppliers have the
highest average reliability across
their products?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result (AVG(?reliabilityIndex) AS ?averageReliabilityIndex)
WHERE
{
?hardware pv:reliabilityIndex ?reliabilityIndex .
?hardware pv:hasSupplier ?result .
}
GROUP BY ?result
ORDER BY DESC(?averageReliabilityIndex)
LIMIT 5
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"0.962": 1,
"0.951": 1,
"0.945": 1,
"0.942": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?supplier (SAMPLE(COALESCE(?sLbl,?sName,STR(?supplier))) AS ?supplierLabel) (AVG(xsd:double(?rel)) AS ?avgReliability)
WHERE {
?product pv:hasSupplier ?supplier .
?product pv:reliabilityIndex ?rel .
OPTIONAL { ?supplier rdfs:label ?sLbl . }
OPTIONAL { ?supplier pv:name ?sName . }
}
GROUP BY ?supplier
ORDER BY DESC(?avgReliability)
LIMIT 5
{
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"Cooper and Sons (Switzerland)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Grant-Nelson (Australia)": 1,
"Wagner-Ramirez (Ireland)": 1,
"Morgan, Brown and Martin (Germany)": 1,
"9.620000000000001E-1": 1,
"9.62E-1": 1,
"9.510000000000002E-1": 1,
"9.450000000000001E-1": 1,
"9.420000000000001E-1": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 0.5555555555555556,
"set_F": 0.4166666666666667
}
ck26:46-de
Welche fünf Lieferanten weisen die
höchste durchschnittliche
Zuverlässigkeit über ihre Produkte
hinweg auf?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result (AVG(?reliabilityIndex) AS ?averageReliabilityIndex)
WHERE
{
?hardware pv:reliabilityIndex ?reliabilityIndex .
?hardware pv:hasSupplier ?result .
}
GROUP BY ?result
ORDER BY DESC(?averageReliabilityIndex)
LIMIT 5
{
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"0.962": 1,
"0.951": 1,
"0.945": 1,
"0.942": 1
}
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT ?supplier (AVG(xsd:double(?rel)) AS ?avgReliability) (SAMPLE(COALESCE(?lbl0,?name0,STR(?supplier))) AS ?supplierLabel) (COUNT(DISTINCT ?product) AS ?productCount)
WHERE {
?product pv:hasSupplier ?supplier ;
pv:reliabilityIndex ?rel .
OPTIONAL { ?supplier rdfs:label ?lbl0 }
OPTIONAL { ?supplier pv:name ?name0 }
}
GROUP BY ?supplier
ORDER BY DESC(?avgReliability)
LIMIT 5
{
"http://ld.company.org/prod-instances/suppl-2a51afd9-a3de-45ee-8ada-b74203fed37b": 1,
"http://ld.company.org/prod-instances/suppl-445081d6-305c-4fb7-b89e-82c86969d4bd": 1,
"http://ld.company.org/prod-instances/suppl-11f1284a-d6f0-4822-b716-3e70d1fb91df": 1,
"http://ld.company.org/prod-instances/suppl-888698ef-ad70-4022-9624-4dc111f56c01": 1,
"http://ld.company.org/prod-instances/suppl-199401f4-32dd-46f1-b07f-aa38ce75bd07": 1,
"9.620000000000001E-1": 1,
"9.62E-1": 1,
"9.510000000000002E-1": 1,
"9.450000000000001E-1": 1,
"9.420000000000001E-1": 1,
"Cooper and Sons (Switzerland)": 1,
"Adkins, Lopez and Boyd (Switzerland)": 1,
"Grant-Nelson (Australia)": 1,
"Wagner-Ramirez (Ireland)": 1,
"Morgan, Brown and Martin (Germany)": 1,
"3": 1,
"4": 1,
"5": 1
}
{
"set_P": 0.2777777777777778,
"set_recall": 0.5555555555555556,
"set_F": 0.3703703703703704
}
ck26:47-en
Which countries supply the BOM
parts for our SkySync MechWave?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/bom-17> pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?product .
?product pv:hasSupplier ?supplier .
?supplier pv:country ?result
}
{
"http://dbpedia.org/resource/Slovakia": 1,
"http://dbpedia.org/resource/Belarus": 1,
"http://dbpedia.org/resource/Germany": 1,
"http://dbpedia.org/resource/Vietnam": 1,
"http://dbpedia.org/resource/Tanzania": 1,
"http://dbpedia.org/resource/Finland": 1,
"http://dbpedia.org/resource/Kingdom_of_the_Netherlands": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?country ?countryLabel WHERE {
pi:bom-17 pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part pv:hasSupplier ?supplier .
?supplier pv:country ?country .
OPTIONAL { ?country rdfs:label ?countryLabel }
} ORDER BY ?countryLabel
{
"http://dbpedia.org/resource/Slovakia": 1,
"http://dbpedia.org/resource/Belarus": 1,
"http://dbpedia.org/resource/Germany": 1,
"http://dbpedia.org/resource/Vietnam": 1,
"http://dbpedia.org/resource/Tanzania": 1,
"http://dbpedia.org/resource/Finland": 1,
"http://dbpedia.org/resource/Kingdom_of_the_Netherlands": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:47-de
Welche Länder liefern die
Komponenten für unser SkySync
MechWave?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
<http://ld.company.org/prod-instances/bom-17> pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?product .
?product pv:hasSupplier ?supplier .
?supplier pv:country ?result
}
{
"http://dbpedia.org/resource/Slovakia": 1,
"http://dbpedia.org/resource/Belarus": 1,
"http://dbpedia.org/resource/Germany": 1,
"http://dbpedia.org/resource/Vietnam": 1,
"http://dbpedia.org/resource/Tanzania": 1,
"http://dbpedia.org/resource/Finland": 1,
"http://dbpedia.org/resource/Kingdom_of_the_Netherlands": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?countryIri ?countryIriLabel ?countryLiteral ?countryCode WHERE {
pi:bom-17 pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part pv:hasSupplier ?supplier .
OPTIONAL { ?supplier pv:country ?countryIri .
OPTIONAL { ?countryIri rdfs:label ?countryIriLabel. } }
OPTIONAL { ?supplier pv:addressCountry ?countryLiteral. }
OPTIONAL { ?supplier pv:addressCountryCode ?countryCode. }
} ORDER BY ?countryLiteral ?countryIriLabel
{
"http://dbpedia.org/resource/Belarus": 1,
"http://dbpedia.org/resource/Finland": 1,
"http://dbpedia.org/resource/Germany": 1,
"http://dbpedia.org/resource/Kingdom_of_the_Netherlands": 1,
"http://dbpedia.org/resource/Slovakia": 1,
"http://dbpedia.org/resource/Tanzania": 1,
"http://dbpedia.org/resource/Vietnam": 1,
"Belarus": 1,
"Finland": 1,
"Germany": 1,
"Netherlands": 1,
"Slovakia": 1,
"Tanzania, United Republic of": 1,
"Viet Nam": 1,
"BY": 1,
"FI": 1,
"DE": 1,
"NL": 1,
"SK": 1,
"TZ": 1,
"VN": 1
}
{
"set_P": 0.3333333333333333,
"set_recall": 1.0,
"set_F": 0.5
}
ck26:48-en
Please list all BOMs that include
at least one part supplied by a
Polish vendor.
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result a pv:BillOfMaterial .
?result pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?product .
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/Poland> .
}
{
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?bom ?bomLabel WHERE {
?bom rdf:type pv:BillOfMaterial .
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/Poland> .
OPTIONAL { ?bom rdfs:label ?bomLabel }
} ORDER BY ?bom
{
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-6": 1,
"TransElectro Voyager": 1,
"AeroVibe Matrix": 1,
"MechaVolt Surge": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:48-de
Bitte listen Sie alle Stücklisten
auf, die mindestens ein Teil
enthalten, das von einem polnischen
Lieferanten bezogen wird.
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result
WHERE
{
?result a pv:BillOfMaterial .
?result pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?product .
?product pv:hasSupplier ?supplier .
?supplier pv:country <http://dbpedia.org/resource/Poland> .
}
{
"http://ld.company.org/prod-instances/bom-6": 1,
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?bom ?bomLabel WHERE {
?bom pv:hasBomPart ?bomPart .
?bomPart pv:hasPart ?part .
?part pv:hasSupplier ?supplier .
?supplier pv:country ?country .
OPTIONAL { ?bom rdfs:label ?bomLabel }
OPTIONAL { ?country rdfs:label ?countryLabel }
FILTER(
?country = <http://dbpedia.org/resource/Poland>
|| CONTAINS(LCASE(COALESCE(?countryLabel, "")), "poland")
|| CONTAINS(LCASE(STR(?country)), "poland")
)
} ORDER BY ?bom
{
"http://ld.company.org/prod-instances/bom-11": 1,
"http://ld.company.org/prod-instances/bom-12": 1,
"http://ld.company.org/prod-instances/bom-6": 1,
"TransElectro Voyager": 1,
"AeroVibe Matrix": 1,
"MechaVolt Surge": 1
}
{
"set_P": 0.5,
"set_recall": 1.0,
"set_F": 0.6666666666666666
}
ck26:49-en
How many suppliers can provide
alternative compatible products for
the K367 Strain Encoder?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT (COUNT(?supplier) AS ?result)
WHERE
{
<http://ld.company.org/prod-instances/hw-K367-1320550> pv:compatibleProduct ?alternative .
?alternative pv:hasSupplier ?supplier .
}
{
"6": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) AS ?count) WHERE {
VALUES ?k { pi:hw-K367-1320550 }
{ ?k pv:compatibleProduct ?alt } UNION { ?alt pv:compatibleProduct ?k }
FILTER(?alt != ?k)
?alt pv:hasSupplier ?supplier .
FILTER NOT EXISTS { ?k pv:hasSupplier ?supplier }
}
{
"6": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:49-de
Wie viele Lieferanten können
alternative, kompatible Produkte
für den K367-Dehnungsmesswandler
anbieten?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT (COUNT(?supplier) AS ?result)
WHERE
{
<http://ld.company.org/prod-instances/hw-K367-1320550> pv:compatibleProduct ?alternative .
?alternative pv:hasSupplier ?supplier .
}
{
"6": 1
}
PREFIX pi: <http://ld.company.org/prod-instances/>
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT (COUNT(DISTINCT ?supplier) AS ?supplierCount) WHERE {
BIND(pi:hw-K367-1320550 AS ?prod)
{ ?prod pv:compatibleProduct ?alt . }
UNION
{ ?alt pv:compatibleProduct ?prod . }
?alt pv:hasSupplier ?supplier .
}
{
"6": 1
}
{
"set_P": 1.0,
"set_recall": 1.0,
"set_F": 1.0
}
ck26:50-en
Which department is responsible for
the most products, and how many
products is that?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result (COUNT(?result) AS ?count)
WHERE
{
?result pv:responsibleFor ?product .
}
GROUP BY ?result
ORDER BY DESC(?count)
LIMIT 1
{
"http://ld.company.org/prod-instances/dept-85880": 1,
"12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?dept (SAMPLE(COALESCE(?lbl0,?name0,STR(?dept))) AS ?deptLabel) (COUNT(DISTINCT ?product) AS ?count)
WHERE {
?product pv:hasProductManager ?mgr .
?mgr pv:memberOf ?dept .
OPTIONAL { ?dept rdfs:label ?lbl0 }
OPTIONAL { ?dept pv:name ?name0 }
}
GROUP BY ?dept
ORDER BY DESC(?count)
LIMIT 1
{
"http://ld.company.org/prod-instances/dept-22183": 1,
"Product Management": 1,
"238": 1
}
{
"set_P": 0.0,
"set_recall": 0.0,
"set_F": 0.0
}
ck26:50-de
Welche Abteilung ist für die
meisten Produkte verantwortlich,
und wie viele Produkte sind das?
PREFIX pv: <http://ld.company.org/prod-vocab/>
SELECT DISTINCT ?result (COUNT(?result) AS ?count)
WHERE
{
?result pv:responsibleFor ?product .
}
GROUP BY ?result
ORDER BY DESC(?count)
LIMIT 1
{
"http://ld.company.org/prod-instances/dept-85880": 1,
"12": 1
}
PREFIX pv: <http://ld.company.org/prod-vocab/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?dept (SAMPLE(COALESCE(rdfs:label, pv:name, STR(?dept))) AS ?deptLabel) (COUNT(DISTINCT ?product) AS ?productCount) WHERE { ?dept pv:responsibleFor ?product . } GROUP BY ?dept ORDER BY DESC(?productCount) LIMIT 1
{
"http://ld.company.org/prod-instances/dept-85880": 1,
"http://www.w3.org/2000/01/rdf-schema#label": 1,
"12": 1
}
{
"set_P": 0.6666666666666666,
"set_recall": 1.0,
"set_F": 0.8
}