Citelab / index.html
SHEN1017's picture
Upload index.html
07bac6e verified
Raw
History Blame Contribute Delete
278 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pipeline Graph | Sliding Toys</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
* {
font-family: 'Contrail One', Arial, sans-serif;
box-sizing: border-box;
}
body {
background: #f5f7f9;
margin: 0;
padding: 20px;
color: #2c3e50;
}
input,
#message-box {
flex: 1;
background: #f8f9fa;
border: 2px solid #B5C4B8;
border-radius: 12px;
padding: 15px;
height: auto;
overflow: hidden;
}
#response-label {
margin-left: 50px;
}
#results-sent {
border: 1px solid #B5C4B8;
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
background: #fff;
box-shadow: 0 2px 6px rgba(175, 189, 188, 0.1);
}
textarea {
border: 1px solid #B5C4B8;
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
background: #fff;
box-shadow: 0 2px 6px rgba(175, 189, 188, 0.1);
}
#response {
width: 95%;
height: 40vh;
position: relative;
background: #f8f9fa;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 2px solid #B5C4B8;
padding: 20px;
overflow: auto;
}
select {
padding: 8px;
border: 1px solid #B5C4B8;
border-radius: 4px;
background: #fff;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
font-size: 16px;
}
.controlcontainer {
width: 95%;
margin: 20px auto;
position: relative;
}
.send-button,
.custom-button {
display: inline-block;
background-color: #76967d;
/* 按钮颜色 */
color: white;
/* 文字颜色 */
padding: 2px 4px;
/* 内边距 */
border-radius: 4px;
margin-left: 20px;
/* 圆角矩形 */
font-size: 14px;
cursor: pointer;
}
.send-button:hover,
.custom-button:hover {
background-color: #B5C4B8;
/* 悬停时的颜色 */
}
.container {
width: 95%;
height: 40vh;
margin: 20px auto;
position: relative;
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 2px solid #B5C4B8;
}
.title {
font: 24px/1.5 'Arial', sans-serif;
color: #6b7b8c;
text-align: center;
padding: 12px 0;
}
.node rect {
rx: 8px;
ry: 8px;
stroke-width: 1.5;
user-select: none;
/* 禁止选中文本 */
cursor: pointer;
}
.node text {
font: 12px sans-serif;
pointer-events: none;
text-anchor: middle;
dominant-baseline: central;
}
.link {
fill: none;
stroke-width: 2;
stroke-opacity: 0.6;
}
.linkUp {
fill: none;
stroke-width: 2;
stroke-opacity: 0.6;
}
.linkDown {
fill: none;
stroke-width: 2;
stroke-opacity: 0.6;
}
.tooltip {
position: absolute;
padding: 8px;
background: #fff9ec;
border: 1px solid #ffd8a8;
border-radius: 4px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
font: 12px/1.5 sans-serif;
color: #66512c;
}
.lower-container {
width: 95%;
height: 70vh;
margin: 20px auto;
display: flex;
gap: 20px;
}
.page-dots {
display: flex;
gap: 5px;
justify-content: center;
align-items: center;
user-select: none;
/* 禁止选中文本 */
cursor: pointer;
}
.page-dot,
.page-arrow-l,
.page-arrow-r {
user-select: none;
cursor: pointer;
}
#helper-container,
#response-container {
width: 95%;
margin: 20px auto;
display: flex;
gap: 20px;
flex-direction: column
}
.doc-panel,
.info-panel {
height: 70vh;
flex: 1;
background: #f8f9fa;
border: 2px solid #B5C4B8;
border-radius: 12px;
padding: 15px;
}
#helper-lower-container {
width: 95%;
flex-direction: row;
margin: 20px auto;
display: flex;
gap: 20px;
}
.node-lower-container {
height: 20vh;
width: 95%;
margin: 20px auto;
display: flex;
gap: 20px;
}
.node-info-panel {
overflow-y: auto;
flex: 1;
background: #f8f9fa;
border: 2px solid #B5C4B8;
border-radius: 12px;
padding: 15px;
}
#doc-list {
max-height: 80%;
overflow-y: auto;
}
.qa-box {
border-top: 2px solid #ecf0f1;
padding-top: 15px;
padding-bottom: 15px;
margin-bottom: 15px;
max-height: 70%;
overflow-y: auto;
}
.qa-question {
color: #2c3e50;
font-weight: 600;
margin-bottom: 12px;
max-height: 10%;
overflow-y: auto;
}
.qa-answer {
color: #34495e;
line-height: 1.6;
}
#api_key {
max-height: 10px;
width: 100%;
margin-bottom: 10px;
}
#output-box {
border-top: 2px solid #ecf0f1;
padding-top: 15px;
max-height: 50%;
overflow-y: auto;
}
.config-item,
.input-item,
.output-item {
border: 1px solid #B5C4B8;
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
background: #fff;
box-shadow: 0 2px 6px rgba(175, 189, 188, 0.1);
}
.doc-item {
border: 1px solid #B5C4B8;
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
background: #fff;
box-shadow: 0 2px 6px rgba(175, 189, 188, 0.1);
}
.color-display {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
margin-left: 20px;
margin-right: 20px;
width: 100px;
flex-shrink: 0;
}
#control_container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 15%;
}
.color-box {
width: 24px;
height: 24px;
border: 1px solid #ddd;
border-radius: 4px;
}
.value-display {
font-size: 0.9em;
min-width: 120px;
color: #666;
}
.sentence-box {
border: 1px solid #e0e7e9;
border-radius: 6px;
padding: 10px;
margin: 8px 0;
background: #f8fafb;
line-height: 1.5;
}
.output-line:hover {
background: #f0f0f0;
}
.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 10px;
bottom: 10px;
}
.output-line {
border-left: 3px solid #B5C4B8;
margin: 6px 0;
cursor: pointer;
padding: 8px 12px;
background: #fdfdfd;
border-radius: 4px;
}
.highlight-span {
cursor: pointer;
}
.highlight-span:hover {
filter: brightness(1.1);
}
.filter-slider {
margin-top: 15px;
width: 80%;
flex: 1;
display: none;
}
/* 模态框背景 */
.modal {
display: none;
/* 初始隐藏 */
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
/* 模态框内容 */
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 20px;
border-radius: 8px;
height: 75%;
width: 75%;
text-align: center;
overflow-y: auto;
}
/* 关闭按钮 */
.close {
cursor: pointer;
color: red;
font-size: 20px;
position: absolute;
top: 10px;
right: 15px;
}
.slider-header {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
font-size: 0.9em;
color: #666;
}
#threshold {
width: 100%;
height: 4px;
background: #ddd;
border-radius: 2px;
outline: none;
margin-right: 15%;
}
#threshold::-webkit-slider-thumb {
-webkit-appearance: none;
width: 16px;
height: 16px;
background: #ff4444;
border-radius: 50%;
cursor: pointer;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Contrail+One&display=swap" rel="stylesheet">
</head>
<body>
<div id="graph-container" class="container"></div>
<!-- <button id="refresh-btn">Refresh</button> -->
<div id="tooltip" class="tooltip" style="opacity:0"></div>
<div class="node-lower-container">
<div class="node-info-panel" id="config-panel">
CONFIGS
</div>
<div id="invisible-panel" class="node-info-panel">
INPUT
<div id="input-panel">
</div>
<div class="pagination">
<span class="page-arrow-l" id="prev-page" style="display:none;">&#9664;</span>
<div class="page-dots"> </div>
<span class="page-arrow-r" id="next-page" style="display:none;">&#9654;</span>
</div>
</div>
<div id="invisible-panel-2" class="node-info-panel">
OUTPUT
<div id="output-panel">
</div>
<div class="pagination">
<span class="page-arrow-l" id="o-prev-page" style="display:none;">&#9664;</span>
<div class="page-dots"> </div>
<span class="page-arrow-r" id="o-next-page" style="display:none;">&#9654;</span>
</div>
</div>
</div>
<div class="lower-container">
<div class="doc-panel">
<h2>📚 Documents</h2>
<div id="doc-list"></div>
</div>
<div class="info-panel">
<div class="qa-box">
<h3>📝 Question</h3>
<div id="current-question"></div>
<h3>📖 Answer</h3>
<div id="current-answer"></div>
<h3>🔍 Output</h3>
<div id="output-box" class="output-box"></div>
</div>
<div class="control-box">
<label>Result:
<select id="result-select" onchange="updateResult(this.value)">
<option value="0">Result 1</option>
<option value="1">Result 2</option>
</select>
</label>
<label style="margin-left:20px">Granularity:
<select id="granularity">
<option>Document-level</option>
<option>Span-level</option>
<option>Word-level</option>
</select>
</label>
<span class="send-button" id="send-to-helper">📤 Send to Assistant</span>
<span class="custom-button" id="custom">New +</span>
<div class="controlcontainer" id="control_container">
<div class="color-display">
<div class="value-display">Click to show value</div>
<div class="color-box"></div>
</div>
<div class="filter-slider" style="display:none">
<div class="slider-header">
<span>Filter Threshold: </span>
<span id="threshold-value">0.00</span>
</div>
<input type="range" id="threshold" min="0" max="1" step="0.01" value="0">
</div>
</div>
</div>
</div>
</div>
<!-- 模态框 -->
<div class="modal" id="myModal">
<div class="modal-content">
<span class="close">&times;</span>
<h2 id="edit-title"></h2>
<div id="config-info"></div>
</div>
</div>
<div id="helper-lower-container">
<div id="helper-container">
<h3>Assistant</h3>
<div id="message-box">
<span>🔑 API Key: </span><input type="password" id="api_key"
value="YOUR OPENAI KEY">
<br>
<span>Results: </span>
<div id="results-sent"></div>
<span>Your Specific Requirement</span>
<textarea rows="6" id="message"
placeholder="Given the pipeline, which is a directed graph described using nodes and edges, and the datapoint provided, please generate an answer explaining the issues leading to the poor performance of this datapoint. Additionally, provide some advice for improvement, either in the pipeline design or other relevant areas. Important: Only provide specific advice based on the information provided in the pipeline and datapoint, and give advice that can solve similar issues in the future. Do not provide general advice that is not directly related to the pipeline or datapoint."
style="min-height: 50px; resize: none; font-size: medium;width: 100%;"></textarea>
<br>
<span onclick="sendMessage()"
style="background-color: #B5C4B8; padding: 5px; border-radius: 4px; color: white; cursor: pointer;"
onmouseover="this.style.backgroundColor='#78907d'"
onmouseout="this.style.backgroundColor='#B5C4B8'">Send</span>
</div>
</div>
<div id="response-container">
<h3 id="response-label">Response</h3>
<div id="response"></div>
</div>
</div>
<div id="result-message" style="display: none;"></div>
<!-- style="display: none;" -->
<script>
const nodes = [{ "id": "input", "type": "input", "params": {} }, { "id": "output", "type": "output", "params": {} }, { "id": "gpt-3.5-turbo-[1]", "type": "Generator", "params": { "type": "Generator", "Model": "gpt-3.5-turbo", "Max Turn": 6, "Prompt": "In this task, you will be given a question, and you should generate a query to find relevent documents to help generating the answer. You may be given some sentences that have been generated as context, you should try to find documents that could support another claim other than sentences generated but still relevent to the question. You should only output a natural language sentence as query.Given the original question: Given the original question: {question}\n\n\nPrevious queries:\n\nPrevious queries:\n{prev}\n\n\n\nThe context is: The context is: {ans}\n\nPlease generate one query to help find relevent documents, making sure it is different from previous queries(if provided). your query is:\n" } }, { "id": "retriever-[4]", "type": "retriever", "params": { "type": "retriever", "Max Turn": 8, "Prompt": "{query}", "Mode": "parallel" } }, { "id": "gpt-3.5-turbo-[3]", "type": "Generator", "params": { "type": "Generator", "Model": "gpt-3.5-turbo", "Mode": "parallel", "Max Turn": 10, "Prompt": "Instruction: Write only a sentence as an accurate, engaging, and concise answer for the given question using only the provided search result. Use an unbiased and journalistic tone. If you are presented with a prefix of the paragraph, please write the next sentence, making sure it connect well with the preifx.\n\nQuestion:When did the us break away from england?\n\nDocument [1](Title:Decolonization of the Americas): and France has fully \"integrated\" most of its former colonies as fully constituent \"departments\" of France. The United States of America declared independence from Great Britain on July 2, 1776 (although the event is now commemorated on July 4, the date when the Declaration of Independence was officially adopted by Congress), in so doing becoming the first independent, foreign-recognized nation in the Americas and the first European colonial entity to break from its mother country. Britain formally acknowledged American independence in 1783 after its defeat in the American Revolutionary War. Although initially occupying only the land east of the Mississippi\n\nAnswer:The United States took the first step towards gaining independence from Great Britain when it declared independence from Great Britain on July 2, 1776 (although the event is now commemorated on July 4, 1776, the date when the Declaration of Independence was officially adopted by Congress).\n\n\nInstruction: Write only a sentence as an accurate, engaging, and concise answer for the given question using only the provided search result. Use an unbiased and journalistic tone. If you are presented with a prefix of the paragraph, please write the next sentence, making sure it connect well with the preifx.\n\nQuestion:Who played galen in planet of the apes?\n\nDocument [1](Title:Planet of the Apes (1968 film)): chimpanzees: animal psychologist Zira (Kim Hunter) and surgeon Galen (Wright King). While unable to speak as his throat wound is healing, called \"Bright Eyes\" by Zira and placed with one of the captive primitive humans he later names \"Nova\", Taylor observes the enhanced society of talking apes and in a strict caste system: the gorillas being the military police, hunters and workers; the orangutans overseeing the affairs of government, science, and religion; and intellectual chimpanzees being mostly scientists. While their society is a theocracy similar to the beginnings of the human Industrial Era, the apes consider the primitive humans as\n\nAnswer:In the 1968 film Planet of the Apes, Galen was played by Wright King.\nInstruction: Write only a sentence as an accurate, engaging, and concise answer for the given question using only the provided search result. Use an unbiased and journalistic tone. If you are presented with a prefix of the paragraph, please write the next sentence, making sure it connect well with the preifx.Question:Question:{question}\n\n\n\nPrefix:Prefix:{ans}\n\n\n\n{docs}\n\n\nAnswer:" } }, { "id": "evaluator-[2]", "type": "evaluator", "params": { "type": "evaluator", "Mode": "iterative", "Max Turn": 5 } }];
const modal = document.getElementById("myModal");
const closeBtn = document.querySelector(".close");
const edges = [{ "source": "input", "target": "gpt-3.5-turbo-[1]", "weight": 0 }, { "source": "evaluator-[2]", "target": "gpt-3.5-turbo-[1]", "weight": 0 }, { "source": "evaluator-[2]", "target": "output", "weight": 0 }, { "source": "gpt-3.5-turbo-[3]", "target": "evaluator-[2]", "weight": 0 }, { "source": "retriever-[4]", "target": "gpt-3.5-turbo-[3]", "weight": 0 }, { "source": "gpt-3.5-turbo-[1]", "target": "retriever-[4]", "weight": 0 }];
const colors = ['#B5C4B8', '#D3C0B6', '#A9B7C4', '#C4A9B7', '#B7C4A9'];
const container = d3.select("#graph-container");
const width = container.node().offsetWidth;
const height = container.node().offsetHeight;
currentInput = 0;
let currentGranularity = "Document-level";
let currentSimulation; // 保存当前模拟实例
let currentNodes = [...nodes]; // 初始数据副本
let currentEdges = [...edges]; // 初始数据副本
let currentSentenceIndex = null;
let currentDocValues = [];
let currentThreshold = 0;
const responseElement = document.getElementById('response');
const helperContainer = document.getElementById('helper-container');
responseElement.style.height = `${helperContainer.offsetHeight}px`;
d3.selectAll(".page-arrow-l").on("click", function () {
currentInput = currentInput - 1;
if (currentInput < 0) {
currentInput = 0;
}
d3.selectAll(".page-dots").selectAll(".page-dot")
.each(function (d, i) {
d3.select(this).style("color", i === currentInput ? "black" : "gray");
});
updateInputOutput(allResults[document.getElementById("result-select").value]);
});
d3.selectAll(".page-arrow-r").on("click", function () {
currentInput = currentInput + 1;
maxInput = currentLogs.length - 1;
if (currentInput > maxInput) {
currentInput = maxInput;
}
d3.selectAll(".page-dots").selectAll(".page-dot")
.each(function (d, i) {
d3.select(this).style("color", i === currentInput ? "black" : "gray");
});
updateInputOutput(allResults[document.getElementById("result-select").value]);
});
d3.select("#threshold").on("input", function () {
currentThreshold = parseFloat(this.value);
d3.select("#threshold-value").text(currentThreshold.toFixed(2));
applyThresholdFilter();
});
window.addEventListener("click", (e) => {
console.log(e.target);
if (e.target === modal) {
modal.style.display = "none";
}
});
// 点击关闭按钮隐藏模态框
closeBtn.addEventListener("click", () => {
modal.style.display = "none";
});
function applyThresholdFilter() {
d3.selectAll(".highlight-span").each(function () {
const rawValue = parseFloat(this.dataset.value);
const originalColor = this.dataset.originalColor;
const shouldShow = rawValue >= currentThreshold;
d3.select(this)
.style("background", shouldShow ? originalColor : "white")
.classed("filtered-out", !shouldShow)
.style("color", shouldShow ? (rawValue > 0.8 ? '#ffffff' : '#000000') : '#000000')
});
}
function handleSpanClick(event, rawValue) {
event.stopPropagation();
d3.select(".color-box")
.style("background", event.target.style.background)
.style("border-color", "#999");
d3.select(".value-display")
.text(`Value: ${rawValue.toFixed(4)}`)
.style("color", "#333");
}
function reset() {
fetch("/reset_pipeline", {
method: "POST",
headers: {
"Content-Type": "application/json"
}
}).then(response => {
if (response.ok) {
return response.json();
} else {
throw new Error("Failed to reset pipeline");
}
}).then(data => {
console.log(data.message);
}).catch(error => {
console.error("Error:", error);
alert("Error resetting pipeline");
});
}
function createGraph(nodes, edges) {
// 如果已有模拟实例则停止
if (currentSimulation) currentSimulation.stop();
const svg = container.html("").append("svg")
.attr("width", width)
.attr("height", height);
svg.selectAll("*").remove();
svg.append("defs").append("marker")
.attr("id", "arrow")
.attr("viewBox", "0 -5 10 10")
.attr("refX", 32)
.attr("markerWidth", 8)
.attr("markerHeight", 8)
.attr("orient", "auto")
.append("path")
.attr("d", "M0,-4L8,0L0,4")
.attr("fill", "#7E8A97");
svg.append("rect")
.attr("width", width - 2)
.attr("height", height - 2)
.attr("x", 1)
.attr("y", 1)
.attr("rx", 12)
.attr("ry", 12)
.attr("fill", "none")
.attr("stroke", "#B5C4B8")
.attr("stroke-width", 2)
.lower();
console.log(nodes);
console.log(Array.isArray(nodes));
currentSimulation = d3.forceSimulation(nodes)
.force("link", d3.forceLink(edges).id(d => d.id).distance(120))
.force("charge", d3.forceManyBody().strength(-400))
.force("collide", d3.forceCollide().radius(42))
.force("x", d3.forceX()
.x(d => {
if (d.id === 'input') return width * 0.1;
if (d.id === 'output') return width * 0.9;
return width / 2;
})
.strength(0.1))
.force("y", d3.forceY(height / 2).strength(0.05))
.force("center", null);
const link = svg.selectAll(".link")
.data(edges)
.enter().append("line")
.attr("class", "link")
.attr("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black")
.attr("marker-end", "url(#arrow)")
.style("stroke-dasharray", d => d.weight === 0 ? "4 4" : null)
.on("mouseover", function () {
d3.select(this).style("stroke", "lightgray");
})
.on("mouseout", function () {
d3.select(this).style("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black");
})
.on("click", function (event, d) {
editAndUpdate(`<deletedestination>${d.target.id}</deletedestination>`, d.source.id)
repaint()
});
const linkUp = svg.selectAll(".linkUp")
.data(edges.filter(d => {
console.log(nodes);
console.log(d.target.id);
console.log(d.target.params.Mode);
return d.target.params.Mode === "parallel" ;
}))
.enter().append("line")
.attr("class", "linkUp")
.attr("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black")
.attr("marker-end", "url(#arrow)")
.style("stroke-dasharray", d => d.weight === 0 ? "4 4" : null)
.on("mouseover", function () {
d3.select(this).style("stroke", "lightgray");
})
.on("mouseout", function () {
d3.select(this).style("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black");
})
.on("click", function (event, d) {
editAndUpdate(`<deletedestination>${d.target.id}</deletedestination>`, d.source.id)
repaint()
});
const linkDown = svg.selectAll(".linkDown")
.data(edges.filter(d => {
return d.target.params.Mode === "parallel" ;
}))
.enter().append("line")
.attr("class", "linkDown")
.attr("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black")
.attr("marker-end", "url(#arrow)")
.style("stroke-dasharray", d => d.weight === 0 ? "4 4" : null)
.on("mouseover", function () {
d3.select(this).style("stroke", "lightgray");
})
.on("mouseout", function () {
d3.select(this).style("stroke", d => d.weight === 1 ? "green" : d.weight === -1 ? "red" : "black");
})
.on("click", function (event, d) {
editAndUpdate(`<deletedestination>${d.target.id}</deletedestination>`, d.source.id)
repaint()
});
/*
d3.select("#graph-container").on("click", function () {
const currentResult = allResults[document.getElementById("result-select").value];
currentLogsAll = currentResult.log;
currentLogs = currentResult.log;
currentLogsIndices = currentLogs.map(l => currentLogsAll.indexOf(l));
d3.select("#config-panel")
.html("CONFIGS")
.selectAll(".config-item")
.data(nodes.map(node => [node.type, node.params.Model || "N/A"]))
.enter()
.append("div")
.classed("config-item", true)
.html(d => `<strong>${d[0]}</strong><div>${promptVis(d[1])}</div>`)
const pagination = d3.selectAll(".page-dots");
pagination.each(function () {
d3.select(this).html("")
.selectAll(".page-dot")
.data(d3.range(currentLogs.length))
.enter()
.append("div")
.classed("page-dot", true)
.classed("active", (d, i) => i === currentInput)
.html("&#9679;")
.style("color", (d, i) => i === currentInput ? "black" : "gray")
.on("click", (event, i) => {
console.log(i);
currentInput = i;
updateInputOutput(currentResult);
d3.selectAll(".page-dots").selectAll(".page-dot")
.each(function (d, i) {
d3.select(this).style("color", i === currentInput ? "black" : "gray");
});
});
});
updateInputOutput(currentResult);
});
*/
const node = svg.selectAll(".node")
.data(nodes)
.enter().append("g")
.attr("class", "node")
.call(d3.drag()
.on("start", dragstart)
.on("drag", dragging)
.on("end", dragend))
.on("mouseover", showTooltip)
.on("mouseout", hideTooltip)
.on("click", function (event, d) {
if (d.id === 'input') {
return;
}
if (d.id === 'output') {
return;
}
const currentResult = allResults[document.getElementById("result-select").value];
currentLogsAll = currentResult.log;
currentLogs = currentResult.log.filter(l => l.startsWith(d.id));
currentLogsIndices = currentLogs.map(l => currentLogsAll.indexOf(l));
const module_name = d.id
d3.select("#config-panel")
.html("CONFIGS")
.selectAll(".config-item")
.data(Object.entries(d.params))
.enter()
.append("div")
.classed("config-item", true)
.html(d => `<strong>${d[0]}</strong><div>${promptVis(d[1])}</div>`)
.on('mouseover', function () {
d3.select(this).style("background-color", "#f0f0f0");
})
.on('mouseout', function () {
d3.select(this).style("background-color", "white");
})
.on('click', function (event, d) {
d3.select("#myModal") // 选择模态框
.style("display", "block"); // 显示模态框
d3.select("#edit-title").text(d[0]);
getConfigForDisplay(module_name, d[0]).then(result => {
if (d[0].toLowerCase() === "prompt") {
template = result.prompt_info.template; // 正确解析 JSON 数据
components = result.prompt_info.components;
selfPrompt = result.self_info
console.log(components)
d3.select("#config-info")
.html("")
.append("div")
.classed("config-paragraph", true)
.style("border", "1px solid #ccc")
.attr("contenteditable", "true")
.style("padding", "10px")
.style("margin", "10px")
.style("border-radius", "5px")
.classed("config-paragraph", true)
.html(`<p>${template
.replace(/<([^<>]+)>/g, ' <span style="background-color: gray; border-radius: 5px; padding: 2px; color: white">$1</span> ')}</p>`
.replace(/\n/g, '<br>'));
d3.select("#config-info")
.append("div")
.style("border", "1px solid #ccc")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.attr("contenteditable", "true")
.classed("components-container", true)
.selectAll(".component-item")
.data(Object.entries(components))
.enter()
.append("div")
.classed("component-item", true)
.html(d => `
<div class="component-key" style="font-weight: bold; margin-bottom: 5px;"><span style="background-color: gray; border-radius: 5px; padding: 2px; color: white">${d[0]}</span></div>
<div class="component-value">${d[1].replace(/\n/g, '<br>')
.replace(/{([^<>]+)}/g, ' <span style="background-color: red; border-radius: 5px; padding: 2px; color: white">$1</span> ')}</div><br>
`);
d3.select("#config-info")
.append("div")
.style("border", "1px solid #ccc")
.attr("contenteditable", "true")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.classed("self-info-container", true)
.selectAll(".self-info-item")
.data(Object.entries(selfPrompt))
.enter()
.append("div")
.classed("self-info-item", true)
.html(d => `
<div class="component-key" style="font-weight: bold; margin-bottom: 5px;"><span style="background-color: red; border-radius: 5px; padding: 2px; color: white">${d[0]}</span></div>
<div class="component-value">${d[1].replace(/\n/g, '<br>')}</div><br>
`);
d3.select("#config-info")
.append("button")
.style("border", "1px solid #ccc")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.style("background-color", "#4CAF50")
.style("color", "white")
.style("cursor", "pointer")
.text("SAVE")
.on("click", (event, d) => {
const tem = document.querySelector(".config-paragraph").innerHTML;
const com = document.querySelector(".components-container").innerHTML;
const sel = document.querySelector(".self-info-container").innerHTML;
const combinedContent = tem + com + sel;
console.log(combinedContent);
modal.style.display = "none";
editAndUpdate(combinedContent, module_name)
repaint()
});
}
else if (d[0].toLowerCase() === "destination") {
d3.select("#config-info")
.html("")
.append("div")
.style("border", "1px solid #ccc")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.attr("contenteditable", "true")
.html(result.destination);
d3.select("#config-info")
.append("div")
.classed("change-to-container", true)
.html("<strong>Change to:</strong>")
.style("margin-top", "10px")
.style("padding", "10px")
.style("border", "1px solid #ccc")
.style("border-radius", "5px")
.style("background-color", "#f9f9f9")
.selectAll(".node-id-item")
.data(nodes.map(node => node.id))
.enter()
.append("div")
.classed("node-id-item", true)
.style("cursor", "pointer")
.style("margin", "5px 0")
.style("padding", "5px")
.style("border-radius", "3px")
.style("background-color", "#e0e0e0")
.style("transition", "background-color 0.3s")
.text(d => d)
.on("mouseover", function () {
d3.select(this).style("background-color", "#d0d0d0");
})
.on("mouseout", function () {
d3.select(this).style("background-color", "#e0e0e0");
})
.on("click", function (event, d) {
console.log(d);
const selectedNode = nodes.find(node => node.id === d);
currentParams = selectedNode.params
if (!selectedNode.params.Prompt) {
editAndUpdate('<destination>' + d + '</destination><prompt_key>None</prompt_key>', module_name)
repaint()
modal.style.display = "none";
return;
}
const promptKeys = selectedNode.params.Prompt.match(/{([^{}]+)}/g).map(key => key.replace(/[{}]/g, ''));
if (promptKeys.length === 0) {
console.log("No prompt keys found");
editAndUpdate('<destination>' + d + '</destination><prompt_key>None</prompt_key>', module_name)
repaint()
modal.style.display = "none";
} else {
d3.select("#config-info")
.append("div")
.classed("prompt-keys-container", true)
.html("<strong>Select Prompt Key:</strong>")
.style("margin-top", "10px")
.style("padding", "10px")
.style("border", "1px solid #ccc")
.style("border-radius", "5px")
.style("background-color", "#f9f9f9")
.selectAll(".prompt-key-item")
.data(["None", ...promptKeys])
.enter()
.append("div")
.classed("prompt-key-item", true)
.style("cursor", "pointer")
.style("margin", "5px 0")
.style("padding", "5px")
.style("border-radius", "3px")
.style("background-color", "#e0e0e0")
.style("transition", "background-color 0.3s")
.text(d => d)
.on("mouseover", function () {
d3.select(this).style("background-color", "#d0d0d0");
})
.on("mouseout", function () {
d3.select(this).style("background-color", "#e0e0e0");
})
.on("click", function (event, key) {
console.log(key);
editAndUpdate('<destination>' + d + '</destination><prompt_key>' + key + '</prompt_key>', module_name)
repaint()
modal.style.display = "none";
});
}
});
d3.select(".change-to-container")
.append("div")
.classed("new-node-item", true)
.style("cursor", "pointer")
.style("margin", "5px 0")
.style("padding", "5px")
.style("border-radius", "3px")
.style("background-color", "#e0e0e0")
.style("transition", "background-color 0.3s")
.text("New Node")
.on("mouseover", function () {
d3.select(this).style("background-color", "#d0d0d0");
})
.on("mouseout", function () {
d3.select(this).style("background-color", "#e0e0e0");
})
.on("click", function (event, d) {
d3.select("#config-info")
.append("div")
.classed("new-node-params", true)
.html(`
<label for="model_type">Model Type:</label>
<input type="text" id="model_type" name="model_type"><br>
<label for="model">Model:</label>
<input type="text" id="model" name="model"><br>
<label for="Prompt Key">Prompt Key</label>
<input type="text" id="key" name="Prompt Key"><br>
<button id="save-new-node">Save</button>
`);
d3.select("#save-new-node").on("click", function () {
const modelType = document.getElementById("model_type").value;
const model = document.getElementById("model").value;
const key = document.getElementById("key").value;
editAndUpdate(`<model_type>${modelType}</model_type><model>${model}</model><prompt_key>${key}</prompt_key>`, module_name)
repaint();
modal.style.display = "none";
});
});
}
else {
console.log(result);
d3.select("#config-info")
.html("")
.append("div")
.style("border", "1px solid #ccc")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.attr("contenteditable", "true")
.classed("config-item-edit", true)
.html(result);
d3.select("#config-info")
.append("button")
.style("border", "1px solid #ccc")
.style("padding", "10px")
.style("border-radius", "5px")
.style("margin", "10px")
.style("background-color", "#4CAF50")
.style("color", "white")
.style("cursor", "pointer")
.text("SAVE")
.on("click", (event, d) => {
const content = document.querySelector(".config-item-edit").innerHTML;
console.log(content);
modal.style.display = "none";
editAndUpdate('<to_head>' + content + '</to_head>', module_name)
repaint()
});
}
})
});
//.html(d => `<div class="config-text">${promptVis(d.Prompt).replace(/\n/g, '<br>')}</div>`)
const pagination = d3.selectAll(".page-dots");
console.log(currentLogs.length);
console.log(currentLogs);
pagination.each(function () {
d3.select(this).html("")
.selectAll(".page-dot")
.data(d3.range(currentLogs.length))
.enter()
.append("div")
.classed("page-dot", true)
.classed("active", (d, i) => i === currentInput)
.html("&#9679;")
.style("color", (d, i) => i === currentInput ? "black" : "gray")
.on("click", (event, i) => {
console.log(i);
currentInput = i;
updateInputOutput(currentResult);
d3.selectAll(".page-dots").selectAll(".page-dot")
.each(function (d, i) {
d3.select(this).style("color", i === currentInput ? "black" : "gray");
});
});
});
d3.selectAll(".page-arrow-l, .page-arrow-r")
.style("display", "block");
updateInputOutput(currentResult);
})
// 重启模拟
currentSimulation.nodes(nodes);
currentSimulation.force("link").links(edges);
currentSimulation.alpha(1).restart();
node.append("rect")
.attr("width", 80)
.attr("height", 36)
.attr("x", -40)
.attr("y", -18)
.attr("fill", d => colors[d.type.length % colors.length])
.attr("stroke", "#7E8A97");
node.append("text")
.text(d => d.type)
.attr("dy", 0);
currentSimulation.on("tick", () => {
link.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y);
linkUp.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y + 10)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y + 10);
linkDown.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y - 10)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y - 10);
node.attr("transform", d => `translate(${d.x},${d.y})`);
});
const tooltip = d3.select("#tooltip");
function showTooltip(event, d) {
tooltip.transition().style("opacity", 0.9);
const params = Object.entries(d.params)
.filter(([k]) => k !== 'type')
.map(([k, v]) => `${k}: ${v}`)
.join('<br/>');
tooltip.html(`<strong>${d.id}</strong><br/>`)
.style("left", (event.pageX + 15) + "px")
.style("top", (event.pageY - 15) + "px");
}
function hideTooltip() { tooltip.transition().style("opacity", 0); }
function dragstart(event, d) {
if (!event.active) currentSimulation.alphaTarget(0.3).restart();
d.fx = d.x;
d.fy = d.y;
}
function dragging(event, d) {
d.fx = event.x;
d.fy = event.y;
}
function dragend(event, d) {
if (!event.active) currentSimulation.alphaTarget(0);
d.fx = null;
d.fy = null;
}
}
reset();
createGraph(nodes, edges);
repaint();
function parseInput(input) {
try {
// 先确保输入是合法 JSON
const sanitizedInput = input
.replace(/"/g, '\\"') // 先转义所有双引号
.replace(/\\\\"/g, '"') // 但保留正确的 JSON 引号
.replace(/'\[/g, '[') // 处理单引号包裹的 JSON 数组
.replace(/\]'/g, ']')
.replace(/'/g, '"'); // 把所有单引号变成 JSON 标准的双引号
// 解析 JSON
const parsed = JSON.parse(sanitizedInput);
// 确保是字符串数组
if (Array.isArray(parsed) && parsed.every(item => typeof item === 'string')) {
return parsed;
}
// 如果是字典且只包含一个元素
if (typeof parsed === 'object' && parsed !== null && Object.keys(parsed).length === 1) {
const key = Object.keys(parsed)[0];
const value = parsed[key];
return [`<span style="background-color: lightgray; border-radius: 5px; padding: 2px;">${key}</span>: ${value}`];
}
} catch (e) {
}
return [input.replace(/\n/g, '<br>')];
}
function formatDocumentText(d) {
const match = d.match(/Document \[([\d]+)\]\(Title:(.*?)\)(.*)/);
if (match) {
const number = match[1];
const title = match[2];
const content = match[3];
console.log(content);
console.log(title);
return `[${number}] <strong>${title}</strong>: ${content}`;
}
return d;
}
function updateInputOutput(currentResult) {
currentInputGlobal = currentLogsIndices[currentInput];
currentInputGlobalPrev = currentInputGlobal - 1;
if (currentInputGlobalPrev >= 0) {
const inputList = d3.select("#input-panel")
.html("")
.selectAll(".input-item")
.data(parseInput(currentLogsAll[currentInputGlobalPrev].split(':').slice(1).join(':')))
.enter()
.append("div")
.classed("input-item", true)
.html(d => `
<div class="input-text">${d}</div>
`)
} else {
question = currentResult.data.question;
docs = currentResult.data.docs;
combined = [question, ...docs];
d3.select("#input-panel").html("").selectAll(".input-item")
.data(combined)
.enter()
.append("div")
.classed("input-item", true)
.html(d => `
<div class="input-text">${d}</div>
`)
}
const outputList = d3.select("#output-panel")
.html("")
.selectAll(".output-item")
.data(parseInput(currentLogs[currentInput].split(':').slice(1).join(':')))
.enter()
.append("div")
.classed("output-item", true)
.html(d => `
<div class="output-text">${d}</div>
`)
}
function promptVis(rawValue) {
if (typeof rawValue === 'number') {
return rawValue;
}
if (typeof rawValue !== 'string') {
return '';
}
const formattedString = rawValue.replace(/{([^}]+)}/g, '<span style="background-color: lightgray; border-radius: 5px; padding: 2px;">$1</span>').replace(/\n/g, '<br>');
return formattedString;
}
const allResults = [{ "data": { "question": "Who has the highest goals in world football?", "answer": "The players with the highest all-time goals and highest men's and women's international football goals differ. The player with the highest all-time men's football goals is Josef Bican, who in 2020 was recognized by FIFA, the international governing body of football, as the record scorer with an estimated 805 goals. Christine Sinclair has the highest goals in women's international football with 187 and is the all-time leader for international goals scored for men or women. Cristiano Ronaldo and Ali Daei are currently tied for leading goalscorer in the history of men's international football with 109.", "qa_pairs": [{ "context": "No context provided", "question": "Who has the highest goals in men's world international football?", "short_answers": ["Daei", "Ali Daei"], "wikipage": null }, { "context": "No context provided", "question": "Who has the highest goals all-time in men's football?", "short_answers": ["Bican", "Josef Bican"], "wikipage": null }, { "context": "The first player to reach 100 international goals was Italian Elisabetta Vignotto. Abby Wambach scored 100 goals in 9 years, while Christine Sinclair reached the milestone in just under 10 years while Mia Hamm is the youngest player to score 100 international goals at the age of 26 years 185 days. Most played exclusively in the forward position, with Kristine Lilly and Michelle Akers having also played as midfielder. All players scored at a high average rate of more than one goal every three matches. International goals in this list should not include goals scored in penalty-shoot-out; see Penalty shootout (association football). Players who are currently active at international level are indicated in bold type background.", "question": "Who has the highest goals in women's world international football?", "short_answers": ["Sinclair", "Christine Sinclair"], "wikipage": "List of women's footballers with 100 or more international goals ..." }], "docs": ["Document [1](Title:Argentina\u2013Brazil football rivalry): \"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n", "Document [2](Title:Godfrey Chitalu): have beaten Gerd M\u00fcller's record of 85 goals in a year, the Football Association of Zambia claimed that the world record actually pertained to Godfrey Chitalu who had scored 116 goals (possibly 117) during the 1972 calendar year and 107 during the 1972 season. The difference of goals is due to first 9 goals being scored before the season officially started. The Football Association of Zambia presented the evidence to FIFA but a spokesperson responded that they would ratify neither Lionel Messi's nor Chitalu's records as they do not keep statistical track of domestic competitions. Nonetheless, it could constitute the\n", "Document [3](Title:Godfrey Chitalu): highest official tally claimed by a national football association. Chitalu made his international debut on 29 June 1968 in a friendly match against Uganda in Lusaka which Zambia won 2\u20131. He scored his first goal in a 2\u20132 draw against the same team five days later. Chitalu played a prominent role during the World Cup qualification matches against Sudan with Zambia being eliminated on a strange rule which was peculiar to Africa and favoured the team that won the second leg. Despite the aggregate score being tied at 6\u20136 after Zambia won the first leg 4\u20132 and lost the return\n", "Document [4](Title:Wartan Ghazarian): goals (4 in World Cup qualifiers, 3 in Asian Cup qualifiers, 12 in friendlies). His record was later broken by Roda Antar, after Roda scored his 20th goal in 2018 FIFA World Cup qualification match against Laos. On 16 November 2008, during Round 6 of the Lebanese Football League, at the age of 39 years, Vartan scored his 130th goal in the Lebanese first division against Tadamon Tyre, becoming officially the highest all-time scorer in the history of Lebanese football. Some officials do not recognize the 12 goals he scored in the 2000\u20132001 season which was canceled. However, his remaining\n", "Document [5](Title:Josef Bican): for Christmas, but died less than 2 weeks before that, at the age of 88. Josef Bican Josef \"Pepi\" Bican (25 September 1913 \u2013 12 December 2001) was a Czech-Austrian professional footballer who played as a striker. Rec.Sport.Soccer Statistics Foundation (RSSSF) estimates that he scored at least 805 goals in all competitive matches, which would make him the most prolific scorer of all time. Having scored a record 600 league goals and at least 1468 goals overall, the International Federation of Football History & Statistics (IFFHS) awarded Bican the \"Golden Ball\" as the greatest goalscorer of the last century. He\n"] }, "doc_cache": ["Document [1](Title:Humberto Suazo)announced his retirement from football on January 14, 2016. Suazo had also become a fixture with his international side. In 2006, he scored 17 goals in national and international matches, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\". His four international goals all came in friendlies. He scored goals against New Zealand and Sweden. His other two goals came in the form of penalties versus Ivory Coast and Colombia. In January 2007, he was awarded world's top goal scorer of 2006 by the International Federation of Football History & Statistics in Salzburg, Austria. He was\n", "Document [2](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "Document [3](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "Document [4](Title:Oktay Dereliog\u0306lu)Oktay Derelio\u011flu Oktay Derelio\u011flu (born 17 December 1975) is Turkish former international footballer and current football coach. Derelio\u011flu played as a forward and is notable for his goal against Belgium during the qualifying rounds of the 1998 FIFA World Cup. The goal started at midfield before Derelio\u011flu jinked past six Belgian defenders, one of them twice, mimicking Diego Maradona's \"Goal of the Century\". Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14. Derelio\u011flu was born in Istanbul and began his club career with local club Fatih Karag\u00fcmr\u00fck. He made his debut at the age of\n", "Document [5](Title:FIFA World Cup top goalscorers)Germany or West Germany. In total, 64 footballers came from UEFA (Europe), 29 from CONMEBOL (South America), and only four from elsewhere: Cameroon, Ghana, Australia, and the United States. Fontaine holds the record for the most goals scored at a single tournament, with 13 goals in 1958. The players that came closest to this record were Kocsis in 1954, M\u00fcller in 1970 and Portugal's Eus\u00e9bio in 1966, with 11, 10 and 9, respectively. The lowest scoring tournament's top scorer was in 1962, when six players tied at only four goals each. Across the 21 editions of the World Cup, 30\n", "Document [6](Title:Argentina\u2013Brazil football rivalry)\"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n"], "log": ["gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Top goal scorers in international football history\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [1](Title:Humberto Suazo)announced his retirement from football on January 14, 2016. Suazo had also become a fixture with his international side. In 2006, he scored 17 goals in national and international matches, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\". His four international goals all came in friendlies. He scored goals against New Zealand and Sweden. His other two goals came in the form of penalties versus Ivory Coast and Colombia. In January 2007, he was awarded world's top goal scorer of 2006 by the International Federation of Football History & Statistics in Salzburg, Austria. He was\n\nDocument [2](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['Humberto Suazo was awarded the title of the world\\'s top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World\\'s Top Goal Scorer Award\"[1]. ', 'Ferenc Pusk\u00e1s holds the record for the highest number of goals in world football, scoring 84 goals in 85 internationals and a total of 512 goals in 528 matches[2]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'Humberto Suazo was awarded the title of the world\\'s top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World\\'s Top Goal Scorer Award\"[1]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Current leading goal scorers in top European football leagues\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [3](Title:FIFA Puska\u0301s Award)forward European football produced in first-division football, and scored a once world record of 84 goals in 85 internationals. He is one of the top scorers of the 20th century, with 512 goals in 528 matches. \"It is important to preserve the memory of those footballing greats who have left their mark on our history. Ferenc Pusk\u00e1s was not only a player with immense talent who won many honours, but also a remarkable man. FIFA is therefore delighted to pay tribute to him by dedicating this award to his memory,\" said Blatter at the inauguration of the award in Budapest.\n\nDocument [4](Title:Oktay Dereliog\u0306lu)Oktay Derelio\u011flu Oktay Derelio\u011flu (born 17 December 1975) is Turkish former international footballer and current football coach. Derelio\u011flu played as a forward and is notable for his goal against Belgium during the qualifying rounds of the 1998 FIFA World Cup. The goal started at midfield before Derelio\u011flu jinked past six Belgian defenders, one of them twice, mimicking Diego Maradona's \"Goal of the Century\". Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14. Derelio\u011flu was born in Istanbul and began his club career with local club Fatih Karag\u00fcmr\u00fck. He made his debut at the age of\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century[3]. ', 'Oktay Derelio\u011flu holds the record for most goals in European competitions for Be\u015fikta\u015f with 14[4]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century[3]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Players with most goals in FIFA World Cup history\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [5](Title:FIFA World Cup top goalscorers)Germany or West Germany. In total, 64 footballers came from UEFA (Europe), 29 from CONMEBOL (South America), and only four from elsewhere: Cameroon, Ghana, Australia, and the United States. Fontaine holds the record for the most goals scored at a single tournament, with 13 goals in 1958. The players that came closest to this record were Kocsis in 1954, M\u00fcller in 1970 and Portugal's Eus\u00e9bio in 1966, with 11, 10 and 9, respectively. The lowest scoring tournament's top scorer was in 1962, when six players tied at only four goals each. Across the 21 editions of the World Cup, 30\n\nDocument [6](Title:Argentina\u2013Brazil football rivalry)\"Football Player of the Century\", by IFFHS International Federation of Football History and Statistics, 1999, \"South America Football Player of the Century\", by IFFHS International Federation of Football History and Statistics. Pel\u00e9's 1281 goals are recognized by FIFA as the highest total achieved by a professional footballer, although the Soccer Statistic Foundation (rssf) recognizes only 767 goals in official mode, occupying the third place after Josef Bican (805) and Romario (772). For his part, Maradona has been named the best soccer player in World Cup history both by The Times and FourFourTwo, publication that also rewarded him as the \"Best\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958[5]. ', 'Pel\u00e9 holds the record for the highest number of goals in world football, with 1281 goals recognized by FIFA[6]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958[5]. '}"], "output": ["Humberto Suazo was awarded the title of the world's top goal scorer of 2006, surpassing Peter Crouch by one goal for the \"World's Top Goal Scorer Award\" [1].", "Ferenc Pusk\u00e1s holds the once world record of scoring 84 goals in 85 internationals in European football, making him one of the top scorers of the 20th century [3]. ", "At the FIFA World Cup, Just Fontaine holds the record for the most goals scored at a single tournament with 13 goals in 1958 [5]. "], "result": { "length": 82 }, "token_used": 4774, "doc_level": [[40.26881932384719, 8.825529539172306, 3.83012398388533, 4.343860109575428, 4.394790017828353, 10.279436272837943], [22.228460874531144, 26.421876193866893, 11.044212662720987, 5.969680179870909, 5.3435141062568965, 7.781571638922963], [8.049273749573228, 7.793571645501094, 4.311910267732405, 11.157443460889896, 13.934891548252414, 4.181971346641625]], "span_level": [[[[34, 0.310100532820032], [94, 0.10706984868310372], [155, 1.0], [299, 0.03546586090029468], [352, 0.06782192653370361], [400, 0.06589344200218025], [483, 0.3675333851063783], [634, 0.06589344200218025]], [[38, 0.08257354591334747], [166, 0.04493381980072218], [247, 0.06589344200218025], [356, 0.06668646512164718], [461, 0.04491493083171277]], [[38, 0.05495716646558315], [166, 0.041740006091755204], [247, 0.051047455940630745], [356, 0.05093126673037013], [461, 0.01406617729908423]], [[37, 0.07185622091401767], [166, 0.10302305068952847], [298, 0.06589344200218025], [449, 0.06589344200218025], [539, 0.019307101596016153], [631, 0.07349275810118132]], [[50, 0.0], [75, 0.06589344200218025], [240, 0.06589344200218025], [339, 0.08224379518090785], [485, 0.0752296227182542], [588, 0.062239812790974944]], [[53, 0.043231425091250976], [281, 0.09100532378324357], [543, 0.017929320149162466]]], [[[34, 0.1734130270251284], [94, 0.03484000788049954], [155, 0.29529677219349004], [299, 0.04558746553646283], [352, 0.1734130270251284], [400, 0.34318206077358787], [483, 0.0], [634, 0.1734130270251284]], [[38, 0.8819636197735287], [166, 0.5297819878957586], [247, 0.1734130270251284], [356, 0.32397273025519646], [461, 0.269664988140138]], [[38, 1.0], [166, 0.47517529927283775], [247, 0.1734130270251284], [356, 0.2198477642656767], [461, 0.1734130270251284]], [[37, 0.1734130270251284], [166, 0.1734130270251284], [298, 0.1734130270251284], [449, 0.16808944315079566], [539, 0.1734130270251284], [631, 0.1734130270251284]], [[50, 0.1734130270251284], [75, 0.1734130270251284], [240, 0.1734130270251284], [339, 0.15904147641491576], [485, 0.35354139382652855], [588, 0.22558150709651104]], [[53, 0.2533070705115283], [281, 0.1734130270251284], [543, 0.1734130270251284]]], [[[34, 0.1996714230673918], [94, 0.1412741804239454], [155, 0.14753661922979144], [299, 0.11907617442220175], [352, 0.129636582219201], [400, 0.129636582219201], [483, 0.129636582219201], [634, 0.129636582219201]], [[38, 0.03171152928410699], [166, 0.129636582219201], [247, 0.129636582219201], [356, 0.20729877762759913], [461, 0.129636582219201]], [[38, 0.10033127618370548], [166, 0.06296244210866726], [247, 0.08337349874433016], [356, 0.129636582219201], [461, 0.129636582219201]], [[37, 0.129636582219201], [166, 0.129636582219201], [298, 0.129636582219201], [449, 0.129636582219201], [539, 0.129636582219201], [631, 0.129636582219201]], [[50, 0.3728266338850687], [75, 0.129636582219201], [240, 1.0], [339, 0.129636582219201], [485, 0.129636582219201], [588, 0.129636582219201]], [[53, 0.22465722077639674], [281, 0.0], [543, 0.129636582219201]]]], "word_level": [[[[34, 0.7423517979193768], [44, 0.47162545970108244], [48, 0.31580439107045594], [52, 0.18294903249569974], [59, 0.295131876861345], [64, 0.2204413947942175], [73, 0.28710581080681163], [76, 0.548746336212872], [84, 0.7187088090777372], [85, 0.6937555710788005], [86, 0.35366477968085996], [87, 0.335986908544757], [88, 0.7485523966451578], [89, 0.5951779925355786], [90, 1.0], [91, 0.13276714493632932], [92, 0.1259525954002936], [93, 0.14791806316797212], [94, 0.3984920556101129], [97, 0.2722425800709327], [99, 0.33598733607941994], [100, 0.5406839927196779], [104, 0.15932246184699334], [109, 0.11872395684088231], [116, 0.13076922690215478], [118, 0.12338337339992629], [121, 0.23762631823387695], [126, 0.2942826795480639], [131, 0.19645750275026325], [135, 0.15577603831546102], [149, 0.20792119027379705], [154, 0.2771737882743407], [155, 0.3356937500357473], [158, 0.19933048946950319], [159, 0.17348352181859975], [160, 0.21358576219578082], [161, 0.20915429758422702], [162, 0.2533109925543075], [163, 0.3017466109357132], [164, 0.23481498080284927], [167, 0.12036962532306318], [174, 0.22606806328732165], [175, 0.12770639325565283], [176, 0.09444738515056936], [177, 0.09702637453856006], [183, 0.2593483149479328], [186, 0.1507453722160918], [195, 0.15834666009415652], [199, 0.1632275338774342], [213, 0.1634568116209597], [221, 0.18364451430654768], [222, 0.3003281705292554], [226, 0.272212637409329], [230, 0.36337911586634536], [233, 0.34016031999215857], [239, 0.2707219245104401], [242, 0.23215628231849322], [246, 0.5611762930460374], [249, 0.502711960794718], [253, 0.3633164326873983], [258, 0.35940388771734316], [262, 0.5798633991492949], [266, 0.39579923289396635], [268, 0.6224840125155091], [273, 0.7414838885029874], [274, 0.5504228489030549], [275, 0.8802490964066966], [279, 0.6936274465633004], [282, 0.299524527995799], [284, 0.470117072935924], [287, 0.35187314284253496], [291, 0.7499634874052027], [297, 0.6984375776369368], [299, 0.2754218344774752], [303, 0.07889925323911777], [308, 0.07313104096199602], [322, 0.10973492230502614], [328, 0.0892090366062252], [332, 0.09457197233755958], [337, 0.07896513890191591], [340, 0.09516329021867309], [347, 0.13354199032005576], [351, 0.18243337940891702], [352, 0.16098045777012523], [355, 0.0630151177385007], [362, 0.06947915170128052], [368, 0.06222266726457613], [376, 0.060847501666786354], [380, 0.023798060705191113], [388, 0.05709727085726285], [392, 0.07492618331180319], [399, 0.038865557239153324], [400, 0.15949869345268966], [404, 0.04491930074561086], [410, 0.05574528910355522], [414, 0.05425652120882553], [420, 0.06273621807622874], [425, 0.05242579981190442], [428, 0.10879485183645103], [432, 0.11259126406122237], [437, 0.07281768304411491], [440, 0.1172653875248608], [444, 0.07124797415008338], [447, 0.10523003014389597], [450, 0.08593402579797235], [457, 0.13528875419753458], [459, 0.07346475879627404], [460, 0.07455308144078408], [463, 0.06351294768899551], [469, 0.07538128548732616], [473, 0.11366385081014459], [482, 0.08430950418866226], [483, 0.32184082212582105], [486, 0.17231453851510758], [494, 0.18730406761207216], [495, 0.2618645342403321], [496, 0.19785399842057358], [497, 0.16806000376178873], [498, 0.16751690208717654], [499, 0.2532635930575263], [500, 0.33787299503558654], [503, 0.19401635170289677], [507, 0.263351207212771], [515, 0.6026991416747501], [521, 0.5740791861179315], [522, 0.4782816493759387], [523, 0.5942182748171905], [527, 0.4711557061758322], [532, 0.350819285271437], [535, 0.2780810428631198], [539, 0.5216862046635118], [542, 0.7122371446202002], [543, 0.4417943201099585], [544, 0.2392060269477877], [545, 0.20532403347012182], [546, 0.21470404950096775], [547, 0.3087589753504834], [550, 0.2925406018202022], [554, 0.13252812925399096], [568, 0.14349371509093353], [579, 0.20751121976798828], [582, 0.15932062696798432], [591, 0.11716763960836975], [599, 0.16564250637005115], [601, 0.12092569155167976], [612, 0.22055211613656997], [615, 0.15688804573739024], [619, 0.11094261560350796], [624, 0.09346239831279682], [625, 0.16809868397997682], [633, 0.056379310224156806], [634, 0.3376625620516877], [637, 0.0910552836072831]], [[38, 0.26573916457286295], [46, 0.20410353427219982], [55, 0.14717035529673086], [64, 0.10081906292884171], [73, 0.1537326204575549], [76, 0.09485670051100298], [82, 0.07728333027614688], [83, 0.06603065843544301], [86, 0.097955688486728], [91, 0.09063738265056218], [100, 0.05811564767736924], [101, 0.07440960996798521], [105, 0.062440661181138314], [112, 0.08817702006381856], [114, 0.07941047819371924], [119, 0.14979104873889712], [125, 0.1010836794423532], [132, 0.09649378168198543], [135, 0.06581898608619607], [136, 0.03844436665641519], [137, 0.03110355386466389], [138, 0.0500814716007232], [144, 0.06637574205181376], [147, 0.044253501461319976], [148, 0.04214166766706768], [149, 0.025073346505166322], [150, 0.03607224311669594], [164, 0.08492428531472532], [165, 0.09387981322082904], [166, 0.15220690018800584], [169, 0.07877581682997556], [172, 0.057867638165826955], [176, 0.054743588766733894], [179, 0.06323969138016954], [183, 0.07835197524828803], [187, 0.11071847528857617], [190, 0.10646216874295249], [192, 0.09397187462336454], [195, 0.13705887871724207], [198, 0.12462120769674698], [202, 0.08246497550400543], [203, 0.060459528916359105], [204, 0.10257609983094247], [205, 0.0787297428437372], [207, 0.09027059603598143], [215, 0.0789991324843744], [216, 0.036760768550188255], [221, 0.02424170692023076], [222, 0.03583404535389662], [223, 0.016007345804093718], [224, 0.017514275115853357], [225, 0.021830896427656073], [231, 0.0228084921729929], [234, 0.019871160338492094], [235, 0.01854793073609042], [236, 0.0069036398971930165], [237, 0.009151014708427167], [238, 0.008990863041453285], [246, 0.020607577277920716], [247, 0.10966915822297629], [249, 0.11371437971392943], [251, 0.02691008241276809], [254, 0.018841233138663496], [264, 0.02280412513782389], [267, 0.031858969489752344], [276, 0.034382723351460906], [280, 0.027754410790921856], [287, 0.04312847837373204], [290, 0.033207693632221674], [296, 0.030380734987592927], [305, 0.03467151600851958], [308, 0.03370069120747949], [312, 0.03174407788254364], [315, 0.06627119324885739], [319, 0.024122778883324005], [324, 0.012104565833240174], [329, 0.02005366457937669], [335, 0.013427145425185184], [340, 0.021140433242510897], [343, 0.01755874645548037], [347, 0.025685152680455594], [355, 0.027686867523006004], [356, 0.11216409899631304], [360, 0.10203019030446389], [363, 0.17620660963177934], [365, 0.11466487341942568], [368, 0.24587769169930734], [370, 0.2500955612386283], [374, 0.09901112839745763], [378, 0.02737550447013178], [383, 0.022525210236619898], [385, 0.017028408441706916], [392, 0.018160277001071867], [397, 0.016696070366599643], [405, 0.018741207498796795], [412, 0.020430416055987787], [416, 0.030991879407650327], [420, 0.021109368143477438], [425, 0.0286542096555472], [429, 0.06046599492269248], [433, 0.07649604744944283], [434, 0.05876083866496317], [438, 0.02250020349759404], [443, 0.01075444083433503], [445, 0.020416542142337735], [456, 0.014436887418380687], [460, 0.021589352734303013], [461, 0.12077580932000448], [466, 0.07202659267893337], [469, 0.04999352508486141], [479, 0.04702763111324074], [487, 0.12656009247783204], [489, 0.044485724688627964], [492, 0.06444298199247864], [496, 0.09320197217442808], [498, 0.17218344919280265], [504, 0.050427739096946214], [507, 0.03344339277249486], [511, 0.030329563697174673], [514, 0.04032551146803328], [520, 0.05389235181263687], [525, 0.04702126152531226], [530, 0.04994044300207609], [536, 0.11832233997494493], [539, 0.06961842197991688], [543, 0.017804625545389866], [550, 0.02541043308302861], [552, 0.13068280753053746], [557, 0.06922186674363455], [560, 0.02625534389387657], [565, 0.06685348370858278], [568, 0.0470766501254746], [572, 0.02864753216917734], [578, 0.03811724344838082], [585, 0.04415141420051529], [588, 0.03775440919557288], [592, 0.04116150762727335], [598, 0.0710935070572577], [601, 0.03551251729717409], [610, 0.03675814865412302]], [[38, 0.09777642564189748], [46, 0.055786009986053084], [55, 0.02884273529291827], [64, 0.024467311075759057], [73, 0.042486511332944094], [76, 0.061197459189146666], [82, 0.09692835492629774], [83, 0.10417947831568257], [86, 0.25948168499407115], [91, 0.009170757285336143], [100, 0.0064730005628359484], [101, 0.029481839775000945], [105, 0.02049338786995914], [112, 0.017571284613609187], [114, 0.02085033755049227], [119, 0.01980678120073724], [125, 0.019920180707867788], [132, 0.018226999312711555], [135, 0.029091401817002406], [136, 0.018560741276034846], [137, 0.009479093287345055], [138, 0.011737728922214575], [144, 0.010381107798629925], [147, 0.020987957318774873], [148, 0.04045930819993191], [149, 0.004746920341251568], [150, 0.003417844787957876], [164, 0.010814031060384519], [165, 0.01896996987990645], [166, 0.07289861370086093], [169, 0.021222244299710116], [172, 0.03043712954105095], [176, 0.038380075020365945], [179, 0.028053911822352017], [183, 0.02997902183388207], [187, 0.03139578251789759], [190, 0.02412848573933566], [192, 0.02929452000338167], [195, 0.05065901716558448], [198, 0.057116970796283015], [202, 0.04314267263754603], [203, 0.04628442403819695], [204, 0.07465387768882241], [205, 0.05001567868534023], [207, 0.01606047867881368], [215, 0.03957823185825022], [216, 0.036548331835531675], [221, 0.013555666461428714], [222, 0.025952461906053437], [223, 0.006071091514904644], [224, 0.01544448264015016], [225, 0.02024912131088837], [231, 0.009267439180772006], [234, 0.018489579692186703], [235, 0.020401657515083715], [236, 0.004357952620304992], [237, 0.012321949971727015], [238, 0.0005765206851194844], [246, 0.00419201356598297], [247, 0.0885686725653421], [249, 0.04717428453709242], [251, 0.007178368161743234], [254, 0.01621895631965919], [264, 0.00673553888067508], [267, 0.02293100520446059], [276, 0.009815333833254785], [280, 0.02756188884145721], [287, 0.008785708671874663], [290, 0.03385881144591061], [296, 0.007223483159170808], [305, 0.013849611796247366], [308, 0.013886842637640047], [312, 0.025421978195397196], [315, 0.01330894438390536], [319, 0.006805341669819796], [324, 0.0060221772584062895], [329, 0.0028520816076724933], [335, 0.0071676030645380666], [340, 0.008515928987289869], [343, 0.009014423462435509], [347, 0.008817245361526256], [355, 0.008509284870414443], [356, 0.08360881404019443], [360, 0.03732284369936419], [363, 0.021884976374894196], [365, 0.020521109766129815], [368, 0.025368612522315245], [370, 0.03752925712944213], [374, 0.07349874605082816], [378, 0.01418027604261575], [383, 0.014877862055502908], [385, 0.03737010031374906], [392, 0.011679130058421697], [397, 0.018893958316983074], [405, 0.015787149072611122], [412, 0.014882310039106271], [416, 0.03543905626616242], [420, 0.03106140158979849], [425, 0.04046108032708879], [429, 0.15896821467952216], [433, 0.003898231259286039], [434, 0.029232032729497454], [438, 0.006523402892528652], [443, 0.0019845565505948485], [445, 0.016753412777458013], [456, 0.004977703753273391], [460, 0.004329112902864339], [461, 0.032505199497726026], [466, 0.014187587005486616], [469, 0.019010292656709005], [479, 0.019234552891930098], [487, 0.05285560592897845], [489, 0.009636605870550666], [492, 0.03361567219519632], [496, 0.025068441825973366], [498, 0.05392031283037838], [504, 0.005237806417412054], [507, 0.02381962793562248], [511, 0.00768684238596138], [514, 0.014822237521374754], [520, 0.01056636145818534], [525, 0.007965315868347362], [530, 0.013639298220569772], [536, 0.031626625464621624], [539, 0.029666572527303516], [543, 0.008324701038941326], [550, 0.0055568391720447405], [552, 0.04936613133366966], [557, 0.021504997042087172], [560, 0.007392988396848058], [565, 0.02299637947987005], [568, 0.009604861013862617], [572, 0.022252613215697208], [578, 0.008525938517527885], [585, 0.007611795400905437], [588, 0.021259674831420744], [592, 0.02265287742104393], [598, 0.028149071938025128], [601, 0.02328771201296067], [610, 0.02279952919136897]], [[38, 0.09555358279458208], [44, 0.07805509367949183], [46, 0.10657666279955702], [48, 0.14740873706466945], [50, 0.03706112849154146], [52, 0.040310326851894895], [54, 0.03050072148388395], [58, 0.033571992949306184], [60, 0.033131757195789355], [62, 0.048838564107303285], [63, 0.07061039022635926], [65, 0.04963170354503914], [67, 0.042595443771051095], [69, 0.02484199491522697], [71, 0.0222536357026174], [75, 0.01569418214727559], [77, 0.005623798981601849], [79, 0.0088093193559555], [80, 0.015147102678334112], [82, 0.01291613806028977], [84, 0.04987408357450714], [88, 0.06775033206275084], [89, 0.019100975048209352], [90, 0.02346126093775466], [91, 0.007494311335486865], [100, 0.02214013073492355], [101, 0.04602691446437271], [102, 0.04816118260476756], [103, 0.013194389026050819], [104, 0.02088771500751439], [105, 0.009101951418913878], [106, 0.04559236312252918], [109, 0.06508620306496428], [117, 0.04058848438437119], [124, 0.03042183345521235], [138, 0.02235711429944551], [149, 0.06558485661724439], [153, 0.017939691287382563], [161, 0.008647363850272836], [170, 0.010435113392406424], [176, 0.013878578586623263], [177, 0.049581885959539926], [181, 0.013832902528777703], [183, 0.014035481190120613], [185, 0.014373407629762991], [186, 0.018340109452462658], [188, 0.025496522589381475], [195, 0.01669030646431921], [198, 0.017533105469867947], [200, 0.013384171401317922], [208, 0.03670050570347242], [212, 0.011931164422887008], [215, 0.019691671822233928], [223, 0.026957327967280124], [227, 0.014691037630983667], [231, 0.012535506974201242], [236, 0.018424882838222984], [244, 0.022378625736886315], [249, 0.012725901177683034], [252, 0.011050673404655438], [259, 0.015427114367415836], [263, 0.0265942492047646], [268, 0.02344899675719435], [274, 0.04309762514743034], [276, 0.07131560637054195], [281, 0.0205015821526815], [284, 0.015132090570495206], [288, 0.0193786673202882], [289, 0.016861659599920302], [290, 0.01970933996982308], [291, 0.005989049317829957], [292, 0.011210512517635558], [293, 0.013163386257219242], [298, 0.026926869174101406], [304, 0.023114287049947464], [308, 0.023336817696082784], [309, 0.04834414186429376], [313, 0.012800474523483638], [318, 0.012441329744135003], [326, 0.01825679603148259], [329, 0.01036623205762324], [333, 0.004907074645600937], [338, 0.011989180019819736], [345, 0.012207749358993457], [349, 0.00869228407348638], [351, 0.006617629453996615], [353, 0.008362549702795301], [354, 0.010691344723229478], [356, 0.00522308867253006], [358, 0.01551877173563287], [361, 0.030424147676553152], [363, 0.015496175703912278], [368, 0.01437397289596441], [372, 0.010726912507048242], [377, 0.00431525703717977], [380, 0.0008279043022156964], [384, 0.005063266139143926], [390, 0.008077616889479037], [391, 0.03421845608646221], [395, 0.008017077270137446], [398, 0.014115326849611646], [403, 0.010486278243556713], [409, 0.01004133952125865], [410, 0.0459900895352217], [412, 0.010021345889813264], [414, 0.012657209669814871], [417, 0.01884366391990619], [420, 0.020720752866579654], [426, 0.016197263354953726], [430, 0.014042538723991756], [432, 0.018710352451380183], [435, 0.03279441700698089], [436, 0.035258324830917405], [437, 0.02708703867123504], [439, 0.04031959480897805], [441, 0.031516893205994996], [443, 0.055076668531694434], [446, 0.054021945466095365], [450, 0.04146708726128062], [458, 0.09059772462018324], [460, 0.06166379574008092], [464, 0.01591088918380651], [466, 0.016866482707183123], [468, 0.02058975888695258], [469, 0.018386736180058694], [471, 0.009655490478506076], [477, 0.028275819167607432], [481, 0.018895552066535315], [488, 0.023205091774610845], [492, 0.014469397208926132], [497, 0.009168205635250636], [503, 0.013806254199172587], [506, 0.01573821357663833], [515, 0.013645924448557436], [522, 0.007712281726057167], [528, 0.011963332321060902], [532, 0.017964114729377246], [535, 0.012856218865058623], [536, 0.02394526868051914], [538, 0.015215151094759568], [540, 0.01465972367464166], [541, 0.016116002191652178], [546, 0.021262086612035932], [547, 0.027849074731128697], [548, 0.015391330538558515], [549, 0.010827135910416227], [550, 0.04980754222675555], [554, 0.016279818465446134], [556, 0.013246975296364835], [558, 0.022488948552226766], [559, 0.006725543219306291], [561, 0.00569885095590751], [565, 0.039120103363707665], [570, 0.018661355380971436], [573, 0.013005300169899179], [577, 0.003565732010842468], [579, 0.003991717828935963], [582, 0.002562164325205204], [586, 0.015421367158602626], [592, 0.011910058968454842], [596, 0.009427380117463982], [601, 0.010904379251804026], [608, 0.00901166897999721], [613, 0.008964488048561042], [619, 0.004780525996718402], [624, 0.005916483629686252], [626, 0.010658949543370929], [629, 0.008105933951947157], [630, 0.01292626549813427], [634, 0.008903768733120147], [636, 0.005908605855994874], [637, 0.011353826275354594], [638, 0.008392627396959361], [639, 0.007713530130584125], [641, 0.020404684363881456], [642, 0.0785692154560366], [645, 0.02640218148500958], [650, 0.014333627587028221], [654, 0.01451183259825999], [660, 0.02585711321571367], [663, 0.029553953262352883], [667, 0.03892452176796582], [671, 0.04346427871815588]], [[50, 0.14952797590779024], [58, 0.04188328138058224], [61, 0.05696754202968993], [66, 0.018872559136373018], [74, 0.04205910459936244], [75, 0.0816792064617901], [78, 0.016764560834818174], [84, 0.027018655195484728], [85, 0.031760500235684594], [86, 0.02587956584018805], [87, 0.010293182954649671], [88, 0.00935847836692483], [97, 0.03813237660794181], [100, 0.04921850878866112], [105, 0.018259468559738028], [110, 0.019285185656800284], [115, 0.035779860964164696], [117, 0.022704891200456236], [123, 0.009898609230872976], [125, 0.017701050796255263], [126, 0.014272590823609767], [127, 0.005840809420830757], [128, 0.0029060724137749618], [133, 0.01276489305313263], [137, 0.012043331406683155], [139, 0.0136342388900076], [140, 0.014979384400456252], [142, 0.02361632161042504], [144, 0.019399081985885025], [145, 0.007681821074336641], [149, 0.0036346044924857367], [157, 0.008712341376203402], [159, 0.01205981655709109], [163, 0.014755051405077787], [168, 0.012819181412572699], [173, 0.01150654304743093], [178, 0.01146831585745559], [188, 0.02330489272874648], [189, 0.032014204375456524], [193, 0.004182423363006721], [196, 0.007318430506007416], [198, 0.009015409733015073], [199, 0.028952091568255445], [202, 0.002750335754971184], [205, 0.005766171393831841], [206, 0.0371912348447707], [216, 0.0022943562800718346], [217, 0.053040060644839994], [221, 0.0302574691231625], [225, 0.027298440579667578], [232, 0.005571341414051026], [239, 0.014908539222522273], [240, 0.07934571829225905], [245, 0.06234266173840855], [249, 0.10736031324366202], [255, 0.04103872007650427], [259, 0.02816150255669958], [266, 0.02215401710624014], [270, 0.01910688945289406], [274, 0.033125608663742055], [279, 0.010841948879551817], [285, 0.014686745875932126], [292, 0.011868278176444008], [295, 0.014688943201241622], [297, 0.02118715261995736], [304, 0.014755476005945331], [315, 0.02344531181997354], [316, 0.042758381423338924], [321, 0.014150544887231364], [322, 0.024179227648608814], [323, 0.02072422540724841], [324, 0.008439608565317098], [330, 0.009127615173654176], [333, 0.027554363050910854], [334, 0.03073944170690945], [335, 0.013030395195140425], [336, 0.01229881457978351], [337, 0.015561222324680503], [338, 0.016433782314748013], [339, 0.0524697013443448], [343, 0.017878184346080152], [351, 0.017291343683528665], [356, 0.02140664587928988], [361, 0.012629354836620393], [369, 0.023775449112309523], [372, 0.024028969241244473], [377, 0.015978912009286694], [384, 0.019647208990829744], [389, 0.018999338545601492], [391, 0.017823320734655066], [394, 0.03387824801039092], [396, 0.02938448288342455], [399, 0.03516773681781941], [400, 0.04003310477358288], [401, 0.04612575695494055], [402, 0.009125092911410082], [403, 0.012144222732087557], [404, 0.015323731202697637], [405, 0.058279032252813605], [412, 0.031975870689657876], [415, 0.038876363150447714], [416, 0.051596346107640016], [417, 0.05673242409963918], [418, 0.006254456013095028], [419, 0.007944886853551767], [420, 0.005842373721527728], [424, 0.02261053526336687], [433, 0.019367398977006633], [434, 0.039934667345791035], [435, 0.018233116345824373], [437, 0.010828702983622733], [439, 0.010384575374510593], [441, 0.016158407117345158], [443, 0.014975095448496161], [446, 0.02223102449925272], [447, 0.025924603349301484], [448, 0.04061515326648575], [449, 0.0], [450, 0.0017006549591153922], [451, 0.002746245458484491], [452, 0.027479730396616043], [457, 0.009473403745529057], [458, 0.01938969549057547], [459, 0.013445073717884365], [460, 0.012266785949248292], [461, 0.030435650373780494], [462, 0.019102944427902144], [463, 0.010883949417585442], [464, 0.0022954438192473075], [468, 0.015713255419453023], [469, 0.019427768404086453], [470, 0.00018928553815300933], [471, 0.028988985989613254], [484, 0.013367212238231048], [485, 0.05581498079365006], [489, 0.020718602753813372], [496, 0.03151000498084113], [504, 0.03176600390631882], [515, 0.03676208355707476], [516, 0.05332906065107892], [517, 0.04697805217895809], [521, 0.03515107667923654], [524, 0.04031562218337914], [528, 0.05368712545514409], [532, 0.020567194721569662], [535, 0.023161327962420392], [536, 0.01542950815094039], [537, 0.012081680322082369], [538, 0.0016455365832258684], [539, 0.005773730793460711], [540, 0.012913166179191879], [541, 0.03423293888131687], [546, 0.009994147034804174], [550, 0.005390437780575983], [558, 0.00833308795894995], [563, 0.011042741419038753], [566, 0.014552314507105276], [571, 0.009248821569300954], [576, 0.007702576499268388], [582, 0.012809246029462196], [587, 0.009400686258175535], [588, 0.06646295874688969], [591, 0.015048553338865131], [595, 0.026190945815689464], [599, 0.028941391737332848], [600, 0.03809235517302197], [601, 0.025318298760690392], [602, 0.025882698523730013], [605, 0.02798952280038141], [611, 0.033936669009264654], [614, 0.036703270121215215], [618, 0.034481675265128096], [624, 0.05326719466155242], [628, 0.036156503958040244], [629, 0.08034315466294706], [630, 0.07457108084947009], [631, 0.03419878990363247]], [[53, 0.1653110496220016], [55, 0.1150447625520526], [59, 0.04586750762677693], [63, 0.06976875209928621], [70, 0.11942331852402567], [73, 0.13348619620895233], [77, 0.10299365614112917], [85, 0.21509767715833358], [87, 0.11912283216282682], [90, 0.09590926791519888], [92, 0.1147784468164974], [94, 0.1628603058763143], [96, 0.23336609493814625], [110, 0.030029926898326946], [121, 0.04196818791262307], [124, 0.028068291370792864], [133, 0.025543970512330295], [141, 0.036766154402293486], [145, 0.03527329234230061], [156, 0.03493198757940743], [157, 0.06347677240607501], [158, 0.052731231069453745], [159, 0.03141416129779044], [160, 0.014976938079226823], [161, 0.018114413235422618], [162, 0.019851287821416166], [163, 0.06860532042659788], [165, 0.058208355719076836], [166, 0.020654017777152974], [170, 0.01951290716944005], [178, 0.03396106745094845], [187, 0.024435197397249888], [194, 0.03442779338593183], [197, 0.0387558803081043], [201, 0.03282387517965037], [209, 0.04814081565852347], [211, 0.03995078203559335], [214, 0.03553786099552493], [216, 0.01887023183725319], [218, 0.015157914142068485], [220, 0.01833102951065534], [234, 0.01072026151404156], [245, 0.011170823300043941], [248, 0.02806983860561214], [257, 0.011918483262897522], [265, 0.021037300858309856], [269, 0.03129213514116633], [280, 0.02316199706139873], [281, 0.11001761748246355], [285, 0.07869752066648784], [286, 0.13484382392371738], [287, 0.050549301880647], [288, 0.06253891232483343], [289, 0.05691146615892838], [290, 0.036708533552962073], [291, 0.044328290451824834], [292, 0.03629068078584501], [293, 0.043969909686260945], [299, 0.07739572163201427], [303, 0.06200946428974888], [314, 0.06980308335904498], [317, 0.05065780995842184], [322, 0.054455912788484606], [325, 0.06860100336215896], [329, 0.09340308821706135], [337, 0.15242005231355885], [343, 0.031973864664750044], [352, 0.026147560291060974], [355, 0.037392622151749016], [357, 0.04797414999529663], [370, 0.025808434332275924], [381, 0.06392990310076785], [382, 0.0980858347242883], [391, 0.028892996003199705], [395, 0.05220637481043301], [402, 0.04359343234067911], [407, 0.03515895599676712], [412, 0.04471453028038585], [423, 0.05454060937252718], [425, 0.09355851721891416], [426, 0.03811105062150514], [428, 0.03907865193067236], [429, 0.04677748601584033], [430, 0.041373727504744044], [437, 0.02714844861730892], [441, 0.02416959716311297], [446, 0.021540830620775844], [447, 0.08933337020387747], [448, 0.012741429268466773], [449, 0.02302852209203591], [450, 0.03264847429444528], [456, 0.03405077537903846], [459, 0.08278429057166643], [468, 0.02484645673602757], [473, 0.04810436388868152], [474, 0.13427367777140875], [480, 0.03191470125958986], [484, 0.03166535174967805], [488, 0.10279591965266965], [494, 0.02324265635961077], [500, 0.04175797459534665], [506, 0.03441778010762977], [512, 0.0448337857948162], [514, 0.07925238665801428], [518, 0.05863357571660499], [520, 0.10048110460253278], [521, 0.017974452402202808], [522, 0.02472769244610225], [523, 0.03491328836615003], [524, 0.054106949121071765], [528, 0.058875080528556466], [532, 0.022109758091984177], [536, 0.02817318045262252], [538, 0.1114272155077592], [539, 0.03466163277248415], [540, 0.03884974629953251], [541, 0.08197837881635738], [543, 0.17356450853065458], [547, 0.05398825206255534], [551, 0.06731419301667367], [556, 0.08112785764968784], [557, 0.15335721150001497], [561, 0.04899465952812126], [563, 0.058498426959110485], [566, 0.0718867826692353], [570, 0.0791704811615376], [575, 0.03981526681374504], [581, 0.07595309841845856], [585, 0.1888010328011789], [590, 0.06750038174158583], [592, 0.0768285934974478], [597, 0.06187808023476149], [604, 0.07357200219367885], [607, 0.13743582347930583], [613, 0.08069325055430183], [617, 0.08186566852109027], [625, 0.0507284879680699], [630, 0.046962989876525724], [633, 0.11309411197054611], [637, 0.10465733020918558], [643, 0.07027309411893581], [647, 0.07377153006820798], [652, 0.04124802250592743], [653, 0.06274413279801173], [656, 0.050680564565177603], [659, 0.07678889633757928], [660, 0.22070944078936056], [672, 0.10870160683284254], [677, 0.15207554801548737], [682, 0.06702125048495751], [689, 0.10082150278507064], [691, 0.08186451754961079], [695, 0.07421881531279825], [698, 0.13607397845864025], [702, 0.20670296738840263], [704, 0.25274780006473435]]], [[[34, 0.5716908827565584], [44, 0.3924504752718826], [48, 0.21535288300353655], [52, 0.09926851082158503], [59, 0.17268115104671256], [64, 0.13087768180750994], [73, 0.1702302200507761], [76, 0.28270980052253186], [84, 0.37451326410104985], [85, 0.35326046832378755], [86, 0.18737795998023754], [87, 0.17694104776698918], [88, 0.4315951555465408], [89, 0.31349795754971294], [90, 0.515759189218006], [91, 0.07401003924842206], [92, 0.07462546638715732], [93, 0.08608175885553622], [94, 0.2586115269393087], [97, 0.12454297176088198], [99, 0.12715498806458309], [100, 0.20229941700424506], [104, 0.10964918479258932], [109, 0.07460730741713358], [116, 0.07790588969950421], [118, 0.08734139770371281], [121, 0.10843369332289607], [126, 0.17025612199635146], [131, 0.12734656769053934], [135, 0.09480088354269967], [149, 0.13434042952163752], [154, 0.15490424178768294], [155, 0.21047960499431684], [158, 0.1337542896864907], [159, 0.10277215905699096], [160, 0.11028292696054916], [161, 0.0894101189664121], [162, 0.10119877834062481], [163, 0.1389338299113583], [164, 0.15102994018770408], [167, 0.07825902215952336], [174, 0.13889353893464843], [175, 0.11299627887810876], [176, 0.08390329511075556], [177, 0.08312570301412064], [183, 0.14825903805773086], [186, 0.12871864537297387], [195, 0.11863142470207734], [199, 0.10726942511709137], [213, 0.11004213302972764], [221, 0.11009497009347155], [222, 0.19287327304609317], [226, 0.14887431285650501], [230, 0.14851159412477083], [233, 0.1305897741030244], [239, 0.10624197512070184], [242, 0.08932544345369406], [246, 0.19241577257227638], [249, 0.1842441650118921], [253, 0.12553061995278955], [258, 0.13019056998012704], [262, 0.2172496530308525], [266, 0.16436012643198242], [268, 0.23524442310662086], [273, 0.30514765915269865], [274, 0.24718691449001007], [275, 0.41609753034743524], [279, 0.30574584084287376], [282, 0.13523041740500347], [284, 0.20983640970782655], [287, 0.13060103143338211], [291, 0.26666262028198756], [297, 0.2620427409280188], [299, 0.24748816032384516], [303, 0.07121990030599806], [308, 0.07563185568383057], [322, 0.10741031256205305], [328, 0.07537762526298547], [332, 0.07745050506418284], [337, 0.0663812099563656], [340, 0.1094608770380603], [347, 0.11663046347401983], [351, 0.1434389132857846], [352, 0.16517240313247453], [355, 0.05158265870959522], [362, 0.07493871462259466], [368, 0.057703503892975266], [376, 0.05207069203899052], [380, 0.022242187170158405], [388, 0.04680119059685], [392, 0.06194889900628718], [399, 0.030004037661710684], [400, 0.14474608023005722], [404, 0.03691470955936197], [410, 0.04749521740505922], [414, 0.04155271300878815], [420, 0.042554497010829424], [425, 0.04186561033578674], [428, 0.09090536326054743], [432, 0.0968843953747808], [437, 0.06297336830483176], [440, 0.09510056912728199], [444, 0.045653984267413676], [447, 0.06322414411996027], [450, 0.06297975257810257], [457, 0.10636173929804049], [459, 0.05604529272708605], [460, 0.04882331800723544], [463, 0.0464847802764387], [469, 0.05016051539078063], [473, 0.07241069284236011], [482, 0.060863340434798914], [483, 0.21284578249196115], [486, 0.11954108530811047], [494, 0.0920025892963023], [495, 0.13602904713091743], [496, 0.10295585994200834], [497, 0.07180933326828068], [498, 0.07227502213246104], [499, 0.11821718034258841], [500, 0.16434086990932914], [503, 0.09941631738486248], [507, 0.12932047250957632], [515, 0.2795004520691131], [521, 0.29637471512633845], [522, 0.1688796369723881], [523, 0.28234634836345873], [527, 0.21813806500406172], [532, 0.17563106734234252], [535, 0.14626574840167475], [539, 0.27444017057406433], [542, 0.3477990166988768], [543, 0.2112200985361805], [544, 0.12683566577687755], [545, 0.13587362883529175], [546, 0.08024149652236003], [547, 0.13958611067299273], [550, 0.1448892428787622], [554, 0.11416623154272411], [568, 0.08897888877230076], [579, 0.10873956951764281], [582, 0.11067855635365016], [591, 0.10958533189550897], [599, 0.12688142431565175], [601, 0.08749584145753092], [612, 0.10913700516822253], [615, 0.10590083530303641], [619, 0.058692080772949885], [624, 0.09514829533874088], [625, 0.17679717678947143], [633, 0.062890357721761], [634, 0.3553624228920308], [637, 0.12690111639289714]], [[38, 0.5824066603188724], [46, 0.6076611861422152], [55, 0.49532771828119704], [64, 0.46091057634010685], [73, 0.6423058672305112], [76, 0.3805855687141709], [82, 0.29179316713420195], [83, 0.23078563451148998], [86, 0.27708643681415646], [91, 0.3395416827167004], [100, 0.26316157977782], [101, 0.34683582396520657], [105, 0.2921652447477125], [112, 0.42455762415980597], [114, 0.4568852824952685], [119, 0.847019852564724], [125, 0.5691272400127964], [132, 0.6822365752799179], [135, 0.450416026625774], [136, 0.2309990042295552], [137, 0.17312557966817999], [138, 0.21907026030944005], [144, 0.32785456352536063], [147, 0.22045664693298392], [148, 0.23348454469065377], [149, 0.1752634878400634], [150, 0.22482506564396706], [164, 0.5052581604390307], [165, 0.5210916601616108], [166, 0.4018004933387983], [169, 0.20250706966630197], [172, 0.1850041279827192], [176, 0.19761407701034764], [179, 0.23634300274011402], [183, 0.23296415014858826], [187, 0.3519047475348073], [190, 0.267075601335698], [192, 0.33795878659231565], [195, 0.46502723603072044], [198, 0.26230440237935376], [202, 0.19779975451165582], [203, 0.19409554133044532], [204, 0.26862326122063157], [205, 0.30410442484606953], [207, 0.41092512683015914], [215, 0.4059090792828707], [216, 0.1636842432939559], [221, 0.11561540791290628], [222, 0.10524309123798788], [223, 0.09560182413601295], [224, 0.1137962309887848], [225, 0.12821106236536584], [231, 0.11951642929468374], [234, 0.08872877681102857], [235, 0.06516310491271161], [236, 0.042077316382124114], [237, 0.052890938679803524], [238, 0.05169640370740829], [246, 0.11297730875369338], [247, 0.2631464031016141], [249, 0.1967105877296337], [251, 0.07334664418979014], [254, 0.044359855724812436], [264, 0.05698777757928743], [267, 0.0671496817123212], [276, 0.0807829663013317], [280, 0.06870992127598699], [287, 0.1078196854045018], [290, 0.07733144590505679], [296, 0.0686258815567349], [305, 0.10057499871457316], [308, 0.09524321764578676], [312, 0.11088191107107487], [315, 0.1417525859950558], [319, 0.05378865655147664], [324, 0.027316031829989002], [329, 0.04587021988894219], [335, 0.04163775118949702], [340, 0.057118037064246945], [343, 0.05338976158863588], [347, 0.06483508054953076], [355, 0.08560547287998148], [356, 0.317952213867184], [360, 0.4189711013177721], [363, 0.6382824474270218], [365, 0.5119152271751035], [368, 0.9923108571192213], [370, 1.0], [374, 0.13914630569427866], [378, 0.037037157657487545], [383, 0.0414803841690623], [385, 0.03182805736406186], [392, 0.036249599255969364], [397, 0.03059737479028235], [405, 0.04867161187054028], [412, 0.03114003771305968], [416, 0.03103057490693281], [420, 0.02487477865914826], [425, 0.026508809128032045], [429, 0.044251338710902186], [433, 0.05400915181138789], [434, 0.06588423722636792], [438, 0.02707821728560955], [443, 0.01661965519662476], [445, 0.03244434685198587], [456, 0.03377146093987024], [460, 0.03950284050519202], [461, 0.10771054490789328], [466, 0.0861457646283142], [469, 0.0731987894546089], [479, 0.057520344237523766], [487, 0.1382733106004499], [489, 0.042613889658134244], [492, 0.0493793701928253], [496, 0.04354180560396223], [498, 0.07326967046940812], [504, 0.04725785171120181], [507, 0.05266437374818949], [511, 0.060979300511150365], [514, 0.04862623396276319], [520, 0.04198413236134811], [525, 0.036254509255632984], [530, 0.04294462989963341], [536, 0.07996993486967789], [539, 0.06487728708253397], [543, 0.03334076015745533], [550, 0.04490539757891978], [552, 0.14414328456635092], [557, 0.08086403474067091], [560, 0.0445273223045127], [565, 0.11002564948588191], [568, 0.05719659514998664], [572, 0.05031549053955103], [578, 0.050691435960693705], [585, 0.056348620580767145], [588, 0.05599853433727981], [592, 0.05154968453818366], [598, 0.06281599122652896], [601, 0.06239231911688778], [610, 0.06560522580345932]], [[38, 0.279700990719261], [46, 0.27511329132412626], [55, 0.1753389935175335], [64, 0.1466722061141323], [73, 0.2120250343546789], [76, 0.1593042577912718], [82, 0.2402228752572076], [83, 0.20694408231052122], [86, 0.34558523199174124], [91, 0.09490186963916938], [100, 0.08847661461463235], [101, 0.1856147921036817], [105, 0.15032779552035566], [112, 0.23652031992311803], [114, 0.2895225196814683], [119, 0.5930101252216381], [125, 0.24004954330393535], [132, 0.30231581155117987], [135, 0.1963237087533671], [136, 0.14265280945681524], [137, 0.09596837996112997], [138, 0.11730822984676295], [144, 0.10970365389888273], [147, 0.10822716111367331], [148, 0.10214869623761524], [149, 0.08514085288757758], [150, 0.10250456740101951], [164, 0.2026666742538171], [165, 0.19521881890166967], [166, 0.16544385130424907], [169, 0.1130640829367265], [172, 0.1417676478225664], [176, 0.1623963216878444], [179, 0.16777223809193562], [183, 0.17499684744337193], [187, 0.19413804273507868], [190, 0.10677421970370032], [192, 0.13860959786855243], [195, 0.19329182726248187], [198, 0.13847749703036788], [202, 0.12201840108813182], [203, 0.12970628691687133], [204, 0.13262952518041712], [205, 0.18497884033740994], [207, 0.19818341698642872], [215, 0.119870366399358], [216, 0.06632050110414824], [221, 0.054747865261182964], [222, 0.04781611352523079], [223, 0.037272619109351944], [224, 0.039838873659611605], [225, 0.06168363719877053], [231, 0.019979655031159657], [234, 0.03019428255329549], [235, 0.021752988840973705], [236, 0.009123027060112742], [237, 0.017487152070051897], [238, 0.014375243055219075], [246, 0.0338128239341552], [247, 0.0609443585179329], [249, 0.07034456371594389], [251, 0.016229578765033198], [254, 0.021796181108123425], [264, 0.02203924452473928], [267, 0.020696337495521383], [276, 0.020091359368609087], [280, 0.02570001793926113], [287, 0.0229124401805864], [290, 0.03037057215996438], [296, 0.016679313106000328], [305, 0.023866699421678798], [308, 0.022088576855707566], [312, 0.0489689391044442], [315, 0.017825671053359405], [319, 0.015286184332729356], [324, 0.006171593034186132], [329, 0.0065980120886211455], [335, 0.014596402022334405], [340, 0.01045167060017895], [343, 0.014075623159171682], [347, 0.02221660496329968], [355, 0.022205534236679602], [356, 0.10331905545969733], [360, 0.17626999526255735], [363, 0.12147824326188882], [365, 0.07783501504236215], [368, 0.15656587949463802], [370, 0.15876723705068085], [374, 0.04977862718708479], [378, 0.01476796151304849], [383, 0.009112407425136826], [385, 0.024116380069404083], [392, 0.007009582819427568], [397, 0.00909876940905552], [405, 0.008318902261288723], [412, 0.006299974017037828], [416, 0.01624937306157449], [420, 0.012188339835717597], [425, 0.01628575242393103], [429, 0.06891827357611355], [433, 0.005152078834965462], [434, 0.04390048223271836], [438, 0.013144309907946758], [443, 0.002161849411131845], [445, 0.022243164483641126], [456, 0.005358608963316669], [460, 0.007234114443158532], [461, 0.04958619072550476], [466, 0.022733205002533056], [469, 0.020011651411648596], [479, 0.010952097701156157], [487, 0.027437285136457525], [489, 0.006859656433512093], [492, 0.029067768779092507], [496, 0.010468573046147333], [498, 0.02957835721260399], [504, 0.004957317493211571], [507, 0.024091567358096106], [511, 0.006229190509719735], [514, 0.017051635021719604], [520, 0.006702339350203911], [525, 0.005117978996206662], [530, 0.012505220409992985], [536, 0.01842232206191901], [539, 0.027320157493301918], [543, 0.014118398037656688], [550, 0.006556817327810737], [552, 0.04993720611768223], [557, 0.026877377191135924], [560, 0.010930568312243948], [565, 0.021292551070103503], [568, 0.01207022369411008], [572, 0.034896186035175907], [578, 0.007179215185866637], [585, 0.006773063488657674], [588, 0.023636532679802615], [592, 0.026441483590077915], [598, 0.01720428697164959], [601, 0.022621043245291086], [610, 0.02882163957832113]], [[38, 0.09471980989102333], [44, 0.1004161147593335], [46, 0.18342539658181334], [48, 0.16607103019433112], [50, 0.035638331448391035], [52, 0.045907262926870404], [54, 0.03172134168186466], [58, 0.03682730170458534], [60, 0.03701086075399419], [62, 0.04815817727392703], [63, 0.0643689876285472], [65, 0.06061758274748526], [67, 0.03719934858034916], [69, 0.027669950679617156], [71, 0.023057514492359096], [75, 0.014264682133727434], [77, 0.005750348960009351], [79, 0.008754382067339013], [80, 0.014384003169879348], [82, 0.014978505328651357], [84, 0.05459884098456184], [88, 0.06025074518339438], [89, 0.020876676620783206], [90, 0.021696706029278045], [91, 0.008083818489549421], [100, 0.020970530530367244], [101, 0.03807120602151569], [102, 0.0446384667327335], [103, 0.012108007367297832], [104, 0.02127688501425852], [105, 0.011086086100493798], [106, 0.05791865890043558], [109, 0.05731666200294397], [117, 0.044079167350024026], [124, 0.03809141970971301], [138, 0.04212043122552697], [149, 0.08647366699074659], [153, 0.016689634113593095], [161, 0.013455606535882052], [170, 0.017100411983348843], [176, 0.020505340313993647], [177, 0.055053882218025665], [181, 0.018202595217200166], [183, 0.01627417136234516], [185, 0.01956879579289293], [186, 0.02038970109790123], [188, 0.034139177843062016], [195, 0.021898013478027896], [198, 0.024064278820419362], [200, 0.016045003748783405], [208, 0.03449777190293725], [212, 0.019834311290696967], [215, 0.02604020592742407], [223, 0.05401216372067639], [227, 0.023547694613331793], [231, 0.01916838400561878], [236, 0.0375845320227031], [244, 0.045988121032069555], [249, 0.018305057564932774], [252, 0.01587966425086663], [259, 0.01886172327883033], [263, 0.030021179278795825], [268, 0.022792471360899274], [274, 0.035231309802056264], [276, 0.05290992054054545], [281, 0.02563162048178128], [284, 0.014349434600574187], [288, 0.017187171669787903], [289, 0.016634079649747276], [290, 0.021840958529593887], [291, 0.00818737683000685], [292, 0.012870607446336916], [293, 0.01700812528028654], [298, 0.03002339760269621], [304, 0.021265637182088806], [308, 0.028596608827968533], [309, 0.06146321189249581], [313, 0.01968427596629522], [318, 0.022541456364994182], [326, 0.031845711185887464], [329, 0.016988288682080573], [333, 0.010857202670316344], [338, 0.023531001721888205], [345, 0.01993393216642834], [349, 0.012188098942134821], [351, 0.008483228313001311], [353, 0.009616856293105394], [354, 0.012807136082814093], [356, 0.008782722368071691], [358, 0.022317369637332034], [361, 0.04833923725253281], [363, 0.021253145463500094], [368, 0.029112300225920335], [372, 0.021253903927185385], [377, 0.01430324598137434], [380, 0.005946986336943746], [384, 0.011873825472261531], [390, 0.023509290989915412], [391, 0.04288767912092285], [395, 0.017176799521434964], [398, 0.027289690341361663], [403, 0.025432553525323205], [409, 0.022650664199015957], [410, 0.046786110672283346], [412, 0.017530527977414726], [414, 0.022999684548103406], [417, 0.029236851893950318], [420, 0.03498244682799738], [426, 0.03793217874165881], [430, 0.024858982800579056], [432, 0.02843777859816054], [435, 0.052869883579195504], [436, 0.03912650505370352], [437, 0.01804122370405875], [439, 0.05632702465533196], [441, 0.024101712403288827], [443, 0.03978305711102538], [446, 0.04429875278550177], [450, 0.038397901584527334], [458, 0.05797776908577974], [460, 0.08936930651520425], [464, 0.03571679853502351], [466, 0.01813796118049904], [468, 0.029017737486296977], [469, 0.029782135803986812], [471, 0.037554112626527], [477, 0.17196499125945172], [481, 0.11958875379065069], [488, 0.17960757325629437], [492, 0.04112869509481132], [497, 0.03628103734645263], [503, 0.039306309521307786], [506, 0.06819358441242639], [515, 0.1129402909118637], [522, 0.08520591404949754], [528, 0.0475634707219241], [532, 0.04667742993059545], [535, 0.028970577991838872], [536, 0.03294626077113513], [538, 0.020844624832998624], [540, 0.022004859612560174], [541, 0.03287803732503792], [546, 0.04160985831726932], [547, 0.026707140372774954], [548, 0.015558467938921454], [549, 0.011313638340078706], [550, 0.053281539444314026], [554, 0.011998346752899942], [556, 0.002920133823742357], [558, 0.005107610014326933], [559, 0.004919958864108814], [561, 0.003606528329816395], [565, 0.028058987039994564], [570, 0.016936159999897664], [573, 0.012850816974828826], [577, 0.0028635791494446474], [579, 0.00393126824863983], [582, 0.0023603927545492813], [586, 0.011343783706053049], [592, 0.011812125351469015], [596, 0.010803499183625678], [601, 0.012610483076084488], [608, 0.010278934185214451], [613, 0.009369559954184217], [619, 0.006510833240892881], [624, 0.017635405226270297], [626, 0.051093089106477065], [629, 0.05743940355198198], [630, 0.014042762950431482], [634, 0.010969999683100256], [636, 0.009368699866185739], [637, 0.01259027997725161], [638, 0.006812336663932239], [639, 0.00775953499663645], [641, 0.02167740769039433], [642, 0.08706441130430369], [645, 0.015443554302315473], [650, 0.026767107020126097], [654, 0.017917030599188574], [660, 0.023197363121709447], [663, 0.020153580547657562], [667, 0.03302981838706842], [671, 0.03627103069281074]], [[50, 0.11952989875533765], [58, 0.04702711988760892], [61, 0.06883807842936548], [66, 0.02842680351928862], [74, 0.059766529638612356], [75, 0.09993279563655195], [78, 0.024866812479056036], [84, 0.03595551635723541], [85, 0.04921985300630596], [86, 0.04017369248006882], [87, 0.018187623502931582], [88, 0.019107690698849922], [97, 0.05096740950704762], [100, 0.062294230660220266], [105, 0.029575952499938926], [110, 0.02680567748605069], [115, 0.056354178776564505], [117, 0.044102005414783145], [123, 0.03458337701508666], [125, 0.03419819000234385], [126, 0.023396430200512217], [127, 0.012494379095678451], [128, 0.006180758955260848], [133, 0.01694082958907095], [137, 0.01812902049212094], [139, 0.02130130060813259], [140, 0.025212095387416374], [142, 0.04469615734539109], [144, 0.028925654844144163], [145, 0.008475998900784772], [149, 0.009780888559099171], [157, 0.01801642977765276], [159, 0.023085420875015195], [163, 0.02097148987527269], [168, 0.018081787992592316], [173, 0.017518481817752087], [178, 0.013012414394620175], [188, 0.030139216938543836], [189, 0.03541308353492513], [193, 0.006635263832511705], [196, 0.008410341345251725], [198, 0.008032754170465154], [199, 0.028895607065570057], [202, 0.0008449422124077409], [205, 0.0032222958280893918], [206, 0.03262707067689851], [216, 0.005687756390586233], [217, 0.031925963727117763], [221, 0.021091795867998704], [225, 0.03392676297918908], [232, 0.01410343884063082], [239, 0.020429372342858767], [240, 0.1279739639879179], [245, 0.13409448200337618], [249, 0.1781058433296602], [255, 0.1535643138472216], [259, 0.10179393389221408], [266, 0.09040052195235464], [270, 0.028343987452103744], [274, 0.029785846979493588], [279, 0.018003578478962112], [285, 0.017029295432089097], [292, 0.01951212922255984], [295, 0.01955793869784631], [297, 0.024189563523523343], [304, 0.02109954947939541], [315, 0.03544908030288965], [316, 0.04053525876735071], [321, 0.01629981716535561], [322, 0.0261831408906538], [323, 0.01855514525270847], [324, 0.00988434740993036], [330, 0.015439226215819075], [333, 0.031023020091781258], [334, 0.03186742141198891], [335, 0.013712641750490561], [336, 0.008972233377493335], [337, 0.012958467728455644], [338, 0.011109276749927195], [339, 0.05315945386372414], [343, 0.024376667883320022], [351, 0.018252605365030598], [356, 0.022226723806983976], [361, 0.014328130450071743], [369, 0.028465260557233793], [372, 0.030038042160749998], [377, 0.022535424924274315], [384, 0.03982324738518809], [389, 0.024132717434821368], [391, 0.02511803007751624], [394, 0.054629947057583304], [396, 0.047359363108585815], [399, 0.04849269686994622], [400, 0.05599873936777883], [401, 0.0549051731138588], [402, 0.011022167011674888], [403, 0.015100809030113056], [404, 0.014608477572762188], [405, 0.05773379718428702], [412, 0.04641887256222109], [415, 0.05470631805807932], [416, 0.06468037475478344], [417, 0.08360075961857863], [418, 0.005766001912986807], [419, 0.010917285207706072], [420, 0.011587423187936612], [424, 0.030144507808560213], [433, 0.024971221362246988], [434, 0.05530815672685021], [435, 0.02644900636210617], [437, 0.019173567996846583], [439, 0.013601752723060929], [441, 0.019891079535404952], [443, 0.019358840521878015], [446, 0.029574430881567176], [447, 0.03419639224037182], [448, 0.057109908820299704], [449, 0.0], [450, 0.00044092215215581394], [451, 0.0014819572850303796], [452, 0.03444338647614231], [457, 0.00852171584390689], [458, 0.014772211519983017], [459, 0.008224099005758661], [460, 0.00980911545578589], [461, 0.029190716683915433], [462, 0.01635932751115488], [463, 0.006227298716281944], [464, 0.00179984449601019], [468, 0.01242885133596501], [469, 0.010822170493580863], [470, 4.275378014408762e-05], [471, 0.03705146327381599], [484, 0.013552976432126992], [485, 0.06491134659882095], [489, 0.027490153338815892], [496, 0.033523343869920195], [504, 0.031786968971288715], [515, 0.038986504409218234], [516, 0.06388667007099785], [517, 0.042755610590837746], [521, 0.019691157265230744], [524, 0.02132518594488311], [528, 0.03466540586411137], [532, 0.016987393620895325], [535, 0.014992862270596654], [536, 0.014122283807903438], [537, 0.007583333260505301], [538, 3.622029176837567e-05], [539, 0.0015289152116480034], [540, 0.010051978539605324], [541, 0.029425068399199252], [546, 0.008666979474470858], [550, 0.004560855965431509], [558, 0.0053586486992879346], [563, 0.009064630666429596], [566, 0.010095730991940655], [571, 0.009278053134792366], [576, 0.009950060530658158], [582, 0.013697488113665633], [587, 0.007789440593788413], [588, 0.06252395325234351], [591, 0.015128850238577955], [595, 0.021266473573987227], [599, 0.031293777651036664], [600, 0.026890921924956124], [601, 0.024213108735762236], [602, 0.02009290032370432], [605, 0.021396852257890276], [611, 0.025523076195874076], [614, 0.026200919104243922], [618, 0.03424109395596898], [624, 0.028998863364890375], [628, 0.023833744732495214], [629, 0.08387530985672015], [630, 0.056581088056616456], [631, 0.02134603195599998]], [[53, 0.11000656643598238], [55, 0.10031268076045635], [59, 0.02626381937760842], [63, 0.042203267945608774], [70, 0.06942750055015252], [73, 0.08847714918539519], [77, 0.0638669806473036], [85, 0.12204204236448811], [87, 0.08912860776151359], [90, 0.07649326480442432], [92, 0.06748215580974551], [94, 0.07834530574342365], [96, 0.10727518069344734], [110, 0.02867413675976712], [121, 0.0314790070621931], [124, 0.035629672939737476], [133, 0.017595708233669995], [141, 0.022998545069553282], [145, 0.028650177253305913], [156, 0.01929213649815104], [157, 0.05686715132151934], [158, 0.05265058473000127], [159, 0.021749461782999732], [160, 0.0105701647019079], [161, 0.012028327551787267], [162, 0.01145354913153482], [163, 0.05440669820612122], [165, 0.05813559927171784], [166, 0.02413806479027722], [170, 0.020791921792747723], [178, 0.037163744843350555], [187, 0.01698179524994528], [194, 0.02152384571909769], [197, 0.044104675597016835], [201, 0.04353140686788319], [209, 0.03031462206785901], [211, 0.04801135922063449], [214, 0.03986707523792462], [216, 0.026739286277642126], [218, 0.01333160818317984], [220, 0.016870187793753766], [234, 0.016557923809731895], [245, 0.01332596627969605], [248, 0.03808414402490816], [257, 0.012622684201919934], [265, 0.021166015798590804], [269, 0.030943850315640554], [280, 0.021503930913171026], [281, 0.12049888930166774], [285, 0.0944584931046925], [286, 0.15822908785393025], [287, 0.051157362332838706], [288, 0.06125738559775487], [289, 0.06754291264978729], [290, 0.03135232764040187], [291, 0.042997537663572706], [292, 0.04312485457056989], [293, 0.040425952821049965], [299, 0.07524135587493658], [303, 0.060275598855173904], [314, 0.06224926895855023], [317, 0.05470502946008866], [322, 0.047254678722804026], [325, 0.06377322961666373], [329, 0.08121735342471947], [337, 0.15501805129538765], [343, 0.021779306241263605], [352, 0.020259816167486445], [355, 0.035469843397475734], [357, 0.04092487566124325], [370, 0.018371114906376856], [381, 0.05867777112204954], [382, 0.07781796246141326], [391, 0.02937350380084462], [395, 0.05590475337068549], [402, 0.03559224456189626], [407, 0.024074764969964395], [412, 0.033460087293942106], [423, 0.03897583546092269], [425, 0.07605919935393533], [426, 0.03058152291621904], [428, 0.03615757097815088], [429, 0.03904095205690599], [430, 0.03521287325027789], [437, 0.01803492498762497], [441, 0.018658304655344415], [446, 0.019014459124812578], [447, 0.048937277872655005], [448, 0.014422413544975827], [449, 0.016901875058153805], [450, 0.02011157788063185], [456, 0.02665512407885708], [459, 0.058884188772071], [468, 0.028268646302822494], [473, 0.05507816779149667], [474, 0.1013745833251236], [480, 0.026398432434729124], [484, 0.03391606120591162], [488, 0.07122375663509427], [494, 0.026867703688197575], [500, 0.039322567028475856], [506, 0.021886400703302337], [512, 0.034919302520753086], [514, 0.05026265363588136], [518, 0.0875804582802586], [520, 0.06908068505355573], [521, 0.02024328000271156], [522, 0.018306012872350497], [523, 0.02034730003928189], [524, 0.038614260252246665], [528, 0.03683579368024396], [532, 0.029762624172420624], [536, 0.053166380536815036], [538, 0.06422511501540878], [539, 0.016747032942595715], [540, 0.016362195509693925], [541, 0.04289579058733115], [543, 0.10707742592319387], [547, 0.04600589729686783], [551, 0.04873244077789021], [556, 0.07015164919082996], [557, 0.0844375238000484], [561, 0.04062294499171813], [563, 0.05529955119752526], [566, 0.08076552291922513], [570, 0.047221152426260626], [575, 0.020501461609812043], [581, 0.04525351039565938], [585, 0.10201193278240277], [590, 0.04330406272280892], [592, 0.04188974452620135], [597, 0.048328856880782235], [604, 0.03788460240022792], [607, 0.061940367958859946], [613, 0.05006962946869445], [617, 0.04428054794698584], [625, 0.03300859115148993], [630, 0.03490503432557652], [633, 0.06911425270952211], [637, 0.06557454852301403], [643, 0.04565626107466241], [647, 0.0503219889545903], [652, 0.03511504364528956], [653, 0.10150916539850464], [656, 0.030889618599222898], [659, 0.05458027042928202], [660, 0.1430711115650997], [672, 0.0741579147574963], [677, 0.10484360570760894], [682, 0.04150972250738138], [689, 0.06353564137842072], [691, 0.052707414632093504], [695, 0.045822389238129174], [698, 0.09324362804514415], [702, 0.11018376400773343], [704, 0.15114457757074753]]], [[[34, 0.29119826832188767], [44, 0.1786254845496532], [48, 0.08472966410961448], [52, 0.03450072319312403], [59, 0.05920850828378877], [64, 0.04418670236170798], [73, 0.050380672024744486], [76, 0.10591307556149185], [84, 0.137751751055482], [85, 0.14644047536414065], [86, 0.07117583164497246], [87, 0.06258550992543178], [88, 0.14947532829155646], [89, 0.11895872610810455], [90, 0.19502003030721027], [91, 0.025986164193534098], [92, 0.030370886289193294], [93, 0.03369749923030468], [94, 0.12007806330653614], [97, 0.04998019999669657], [99, 0.04194908831312995], [100, 0.0670481067519458], [104, 0.04367570637636502], [109, 0.02185275513860407], [116, 0.026462069373570433], [118, 0.03659406927624335], [121, 0.04730271692855021], [126, 0.05371540655111497], [131, 0.03891383625307938], [135, 0.026215454606474266], [149, 0.037821850347588684], [154, 0.04035728579923427], [155, 0.08258552343500825], [158, 0.04049908296326256], [159, 0.03951285162458616], [160, 0.046629380723889925], [161, 0.02318624558817968], [162, 0.03337566953792678], [163, 0.05655876559253803], [164, 0.05500491923846641], [167, 0.02640280234897987], [174, 0.04088881143593388], [175, 0.03176970608041106], [176, 0.032744238115437876], [177, 0.02857729719711409], [183, 0.047646564001061424], [186, 0.03534114450643721], [195, 0.02754084598547732], [199, 0.02684499395326208], [213, 0.024653307329417], [221, 0.030628284502414053], [222, 0.08152836676753636], [226, 0.07321107323053112], [230, 0.06038395706654283], [233, 0.059960702976354495], [239, 0.032923856570808506], [242, 0.026463449782875445], [246, 0.06049842322940625], [249, 0.06751122830697813], [253, 0.0345574390972542], [258, 0.035386564494898444], [262, 0.06707162507904206], [266, 0.05815776654724593], [268, 0.07137581602295084], [273, 0.062279705677880694], [274, 0.06354414068939439], [275, 0.06346110849638094], [279, 0.07066273101262555], [282, 0.05083496857745888], [284, 0.07538611567011709], [287, 0.0415736258267813], [291, 0.07562149500646403], [297, 0.08325642320441898], [299, 0.10549388298760722], [303, 0.033160110481493525], [308, 0.02790383319480322], [322, 0.031475672461697676], [328, 0.02462861227661737], [332, 0.023666477491327623], [337, 0.023698893284577183], [340, 0.04448025829084871], [347, 0.036997052527435556], [351, 0.05090063258207621], [352, 0.08423738678453574], [355, 0.019574121492314623], [362, 0.02212395039466766], [368, 0.019534961198071903], [376, 0.021568484951037255], [380, 0.005005851384564624], [388, 0.016552202373767717], [392, 0.024628290272225663], [399, 0.01145802392815774], [400, 0.0831294991116946], [404, 0.013986750130240656], [410, 0.0166896333051494], [414, 0.01689309686295039], [420, 0.017079674430145977], [425, 0.01870399320570063], [428, 0.04911789389864092], [432, 0.043551291899437496], [437, 0.01992977690301146], [440, 0.04434779687521114], [444, 0.015766552762275593], [447, 0.028370398590215024], [450, 0.020858899836084927], [457, 0.03785923572094982], [459, 0.026720112274716986], [460, 0.021286042595323525], [463, 0.01237618611822263], [469, 0.01590620405128512], [473, 0.02591895907350622], [482, 0.01927631215538718], [483, 0.09632425431476094], [486, 0.03671905786230835], [494, 0.03684428586222056], [495, 0.038391522884862826], [496, 0.037023733590391704], [497, 0.033770326295174714], [498, 0.03036215735622864], [499, 0.03994550627594275], [500, 0.0699761483727808], [503, 0.03471463591620697], [507, 0.04329867055383179], [515, 0.09976479612515803], [521, 0.07052579264311515], [522, 0.046093506676448334], [523, 0.059200040437063686], [527, 0.06194559132312284], [532, 0.04884080828805502], [535, 0.0398820880811605], [539, 0.09004538820998229], [542, 0.11446979965971045], [543, 0.06839336912559003], [544, 0.07663642836452929], [545, 0.06670223334135679], [546, 0.03661971792402739], [547, 0.06534612366092338], [550, 0.0710894223903232], [554, 0.047754460902421476], [568, 0.028189599646665953], [579, 0.03482202892544647], [582, 0.058858379600595784], [591, 0.03505058933362602], [599, 0.039427445851016305], [601, 0.041304522881500945], [612, 0.03235415010820491], [615, 0.05739661376304966], [619, 0.016874786305517565], [624, 0.033959699312775496], [625, 0.10225627559994326], [633, 0.024777014560866797], [634, 0.20514969919382023], [637, 0.08510314256569713]], [[38, 0.24568178137764485], [46, 0.18441693604135345], [55, 0.11869530668946014], [64, 0.10946019923080712], [73, 0.15432760309092283], [76, 0.09899753804404955], [82, 0.06315001892110639], [83, 0.07062740838042479], [86, 0.094281228164081], [91, 0.07839399162764324], [100, 0.06089035067788617], [101, 0.0980532418865881], [105, 0.07675040060382124], [112, 0.09793934877434583], [114, 0.09596774484297867], [119, 0.19306923084262442], [125, 0.13203623923303223], [132, 0.1311193823950852], [135, 0.08814099573187559], [136, 0.03962886754622773], [137, 0.03058020130977785], [138, 0.05080686833864711], [144, 0.07082017915682101], [147, 0.06025314880615542], [148, 0.05091089987999044], [149, 0.025851460541112287], [150, 0.038401976357378735], [164, 0.09364010200326725], [165, 0.09576110486755443], [166, 0.13594471349702136], [169, 0.055039950357009815], [172, 0.03682301609962393], [176, 0.039742340527856225], [179, 0.04863979363926047], [183, 0.03635760955730507], [187, 0.05737471904128502], [190, 0.04835715749230414], [192, 0.056666766664355966], [195, 0.0896322323375275], [198, 0.06652664321074944], [202, 0.0407094281264538], [203, 0.046628987896639], [204, 0.07082540446412136], [205, 0.06359482803155707], [207, 0.07194981394685794], [215, 0.070048966395205], [216, 0.05209206770209028], [221, 0.028965842878171454], [222, 0.021966079017084153], [223, 0.019029192477325516], [224, 0.026509985861053843], [225, 0.03245304623574046], [231, 0.025449851237257574], [234, 0.023563273419952544], [235, 0.01492834521601918], [236, 0.006938751229475881], [237, 0.013151719721734859], [238, 0.009853336858191114], [246, 0.025221945691003327], [247, 0.11191535528891468], [249, 0.12104649750628431], [251, 0.026672641022601636], [254, 0.01520717153946584], [264, 0.016356526566751822], [267, 0.023028926917947355], [276, 0.03024465544964313], [280, 0.025787297455346397], [287, 0.0343272157127951], [290, 0.02537979762278314], [296, 0.018795189872931186], [305, 0.022716251522090985], [308, 0.024777854091457947], [312, 0.020243131094191045], [315, 0.04414534868821026], [319, 0.018145025084183926], [324, 0.00695619441299056], [329, 0.012565021907795414], [335, 0.009348028108232046], [340, 0.015123984784549292], [343, 0.014107168829088449], [347, 0.02193975615891047], [355, 0.02304108587422509], [356, 0.1590108532305986], [360, 0.12744244763162], [363, 0.16477903968457233], [365, 0.13440183374760076], [368, 0.25276021131837584], [370, 0.23570245297802073], [374, 0.063410082399049], [378, 0.01570586114064431], [383, 0.01330514927155653], [385, 0.011012172460521018], [392, 0.011787577317685125], [397, 0.013028584067679573], [405, 0.011096944390899801], [412, 0.010661791655899268], [416, 0.011875545436480834], [420, 0.008456017384645844], [425, 0.008991961665721667], [429, 0.01831464247688259], [433, 0.027178108827837943], [434, 0.029343973484529925], [438, 0.010742842738170789], [443, 0.0056262969678291894], [445, 0.01321472595203222], [456, 0.01070034858940944], [460, 0.019194139070393457], [461, 0.08368836246558102], [466, 0.055144431428344395], [469, 0.030670576108585507], [479, 0.03034795185902927], [487, 0.053918503739449626], [489, 0.02874250370348885], [492, 0.029421724789992384], [496, 0.027040459764461684], [498, 0.04620325249131818], [504, 0.02739053721811886], [507, 0.026873935900124213], [511, 0.02602999731774113], [514, 0.025301889236154024], [520, 0.021488490603409138], [525, 0.0207858117398847], [530, 0.023252168646732557], [536, 0.052382092579511624], [539, 0.03391239559772952], [543, 0.02049903712059742], [550, 0.022125357989897725], [552, 0.13104785213643613], [557, 0.08786151653164863], [560, 0.04321996499906998], [565, 0.10247860288321535], [568, 0.0899346561668768], [572, 0.0859810343482551], [578, 0.10547585538138325], [585, 0.07850019210804844], [588, 0.049121744159890644], [592, 0.033089759400291234], [598, 0.04542153914414653], [601, 0.044815039311210385], [610, 0.058151115037527866]], [[38, 0.19775668129061072], [46, 0.09713075572124531], [55, 0.04322899476741379], [64, 0.039046881881443826], [73, 0.06080688215231252], [76, 0.06400735322349622], [82, 0.09723367743306673], [83, 0.11556673076528345], [86, 0.30095337590257953], [91, 0.017502480536738443], [100, 0.016212496303097255], [101, 0.04542624490805006], [105, 0.031774249800416786], [112, 0.04409324015641001], [114, 0.05700879240363166], [119, 0.12516453756148962], [125, 0.0738919406620762], [132, 0.07775591253488956], [135, 0.061093103180838076], [136, 0.026805428583560373], [137, 0.015392872195259122], [138, 0.030998247983141523], [144, 0.02610442045351392], [147, 0.029071804937301944], [148, 0.018183467127689642], [149, 0.011679679634194754], [150, 0.019968417122760138], [164, 0.04411132235517252], [165, 0.04255057923691114], [166, 0.05874282813589076], [169, 0.031193505037795482], [172, 0.033102404782119545], [176, 0.038326818617987375], [179, 0.027006753639306713], [183, 0.01992107603820015], [187, 0.029240187183471184], [190, 0.019684140940612386], [192, 0.027649754794799506], [195, 0.043789976356143574], [198, 0.035646844674433034], [202, 0.04460707165577876], [203, 0.05337156709918555], [204, 0.05834258839450455], [205, 0.048276387274553516], [207, 0.04009546266784609], [215, 0.03275487224876004], [216, 0.034403766085660266], [221, 0.01455167116370024], [222, 0.01372381179004998], [223, 0.010130489602592618], [224, 0.014459592994091148], [225, 0.023637474230256434], [231, 0.00918059240263635], [234, 0.009941877613423094], [235, 0.008333734137629318], [236, 0.0003745986414750035], [237, 0.005872770155282096], [238, 0.004930218699953233], [246, 0.01413918098805331], [247, 0.05928415620818444], [249, 0.0590491263154205], [251, 0.006298971224495013], [254, 0.006877138224438865], [264, 0.004199060171736915], [267, 0.012900252806652152], [276, 0.013094754768605547], [280, 0.01382189292006056], [287, 0.00442138870393478], [290, 0.012775783404839815], [296, 0.0026662825240349104], [305, 0.008303095717530198], [308, 0.007730218551951529], [312, 0.018309865605063952], [315, 0.004894255613497823], [319, 0.003096614162108561], [324, 0.001145087670676645], [329, 0.0], [335, 0.0039389813360468], [340, 0.002499628081700996], [343, 0.005988739783452478], [347, 0.006922220137004577], [355, 0.005261184948064146], [356, 0.048686399571633496], [360, 0.06381754095945975], [363, 0.042699129124678534], [365, 0.03010599578089195], [368, 0.055524398264670385], [370, 0.054103666004397054], [374, 0.027129286618339944], [378, 0.006263982327458464], [383, 0.0047669272770339876], [385, 0.012310124258204875], [392, 0.00316447048687345], [397, 0.006892157393062177], [405, 0.0033749943196175994], [412, 0.0019814633849707555], [416, 0.007916570182138273], [420, 0.005308726400250697], [425, 0.0066059777648985974], [429, 0.0409281265739829], [433, 0.0009068643945377229], [434, 0.022233072402152946], [438, 0.005414592264051577], [443, 0.0017699333057766477], [445, 0.01879724443364423], [456, 0.0026761143500738426], [460, 0.003736538180216758], [461, 0.046416417790754984], [466, 0.023354645904528046], [469, 0.01610054944346476], [479, 0.012951733998082478], [487, 0.02474731067089867], [489, 0.008095132127494799], [492, 0.016213624505194008], [496, 0.009384314734899889], [498, 0.018969184746818468], [504, 0.005003096546348428], [507, 0.019891702909225508], [511, 0.004802201318502065], [514, 0.016439616407262277], [520, 0.007441211857137397], [525, 0.00429995370824931], [530, 0.0112600638772338], [536, 0.018672017203645648], [539, 0.020602351301445124], [543, 0.011291046637495902], [550, 0.011705147727969985], [552, 0.0928859236700557], [557, 0.045679008308961426], [560, 0.023308457944488437], [565, 0.04113307008838682], [568, 0.04639936790522754], [572, 0.0504695690365267], [578, 0.08939654117000018], [585, 0.0632453884229079], [588, 0.03391694846106723], [592, 0.03375859999922791], [598, 0.023666443777491244], [601, 0.03962247759250033], [610, 0.04424156417560825]], [[38, 0.09335225117384503], [44, 0.10669113255504324], [46, 0.2030181996672398], [48, 0.22989593444485873], [50, 0.07117797495238638], [52, 0.08530100287451306], [54, 0.041911261741816835], [58, 0.05405967869792357], [60, 0.05014590142118573], [62, 0.05936895105442981], [63, 0.07142445083972583], [65, 0.08293263288735982], [67, 0.045560419275782506], [69, 0.03857393599826209], [71, 0.036019997743548283], [75, 0.02786652581614995], [77, 0.011265256912922957], [79, 0.01644147855695496], [80, 0.022743048626703673], [82, 0.021536513613915405], [84, 0.08492556599590445], [88, 0.09954879624883309], [89, 0.03569779253456257], [90, 0.03518349797253526], [91, 0.014831997048107656], [100, 0.03892715127349997], [101, 0.06567679301432297], [102, 0.05293930722423166], [103, 0.029961478432774198], [104, 0.03947848715929853], [105, 0.024045641454199455], [106, 0.08501116632445653], [109, 0.08478398523028427], [117, 0.07705665429177459], [124, 0.06948249474477826], [138, 0.062426460830097855], [149, 0.1033341910086039], [153, 0.03754216315114028], [161, 0.03874284789798564], [170, 0.0312797375869532], [176, 0.05655273117365714], [177, 0.12289986306946098], [181, 0.042016168695063374], [183, 0.033564803919869796], [185, 0.04367665121606128], [186, 0.046885037468392045], [188, 0.07350060375219948], [195, 0.04523277443293237], [198, 0.05003736578917397], [200, 0.04357389149822006], [208, 0.05913332505619694], [212, 0.034135300026181405], [215, 0.052405429416118206], [223, 0.08615424515620318], [227, 0.05850302761363816], [231, 0.05265870533491519], [236, 0.07880856824336697], [244, 0.10435949042265744], [249, 0.05379977044986065], [252, 0.05635355440132346], [259, 0.06955177159429114], [263, 0.07891097534864437], [268, 0.11649981254094323], [274, 0.07914302838327161], [276, 0.0720053860202094], [281, 0.07821861862030041], [284, 0.07101207023470393], [288, 0.0692915983453962], [289, 0.04886978049865768], [290, 0.0699338050230534], [291, 0.04565352192418728], [292, 0.06067731213295301], [293, 0.09016779699370954], [298, 0.15720632710388535], [304, 0.12321108036527652], [308, 0.18677221448770295], [309, 0.2350034824012281], [313, 0.05136726366960387], [318, 0.05215676866126647], [326, 0.074015260406147], [329, 0.08466521727448323], [333, 0.07648989803628936], [338, 0.06502013807824855], [345, 0.027460621623490184], [349, 0.02812566032557282], [351, 0.020070768010154946], [353, 0.028079289249699494], [354, 0.02948805546651891], [356, 0.016642604345889662], [358, 0.03140064927683247], [361, 0.057015085230014896], [363, 0.029995240852395896], [368, 0.03690883774241898], [372, 0.027301154930205004], [377, 0.017799590927386887], [380, 0.008988088558884113], [384, 0.013625378010300079], [390, 0.028794502346504908], [391, 0.08146693544858727], [395, 0.019138828233822614], [398, 0.048421353761465995], [403, 0.023341023904131758], [409, 0.023315501488818127], [410, 0.10098691825928796], [412, 0.03369253240275587], [414, 0.026699167878595255], [417, 0.033626835322196826], [420, 0.03936188687938082], [426, 0.033075826086544226], [430, 0.0201305069589642], [432, 0.02671236845104507], [435, 0.04931491712834639], [436, 0.05653154205770771], [437, 0.02362177436116446], [439, 0.06143384497792668], [441, 0.030336492048044207], [443, 0.04602112779668372], [446, 0.08391538747286684], [450, 0.05707014541391731], [458, 0.0716280029178907], [460, 0.11139046087803882], [464, 0.06084157233008299], [466, 0.041175217421333864], [468, 0.05565134712073881], [469, 0.05073860637901746], [471, 0.03996127996649803], [477, 0.13616878346490027], [481, 0.13350608022745736], [488, 0.13336936495451174], [492, 0.06656000622607945], [497, 0.06391147941617742], [503, 0.06640614731653255], [506, 0.099415517793383], [515, 0.08800335016680509], [522, 0.06394057230158011], [528, 0.07892435260451687], [532, 0.0701664592106093], [535, 0.06422295584776715], [536, 0.08626955861867878], [538, 0.058245888910573744], [540, 0.054250802760281935], [541, 0.08186477956605798], [546, 0.0913622794552797], [547, 0.06546118686324069], [548, 0.031996600810322746], [549, 0.04415919174485423], [550, 0.13184049042307067], [554, 0.04263820612317855], [556, 0.030027946280823888], [558, 0.04453728064753549], [559, 0.018140462338470702], [561, 0.018047561368686883], [565, 0.05148137722305615], [570, 0.05178398795317717], [573, 0.07369905914133401], [577, 0.04022025188621331], [579, 0.020334088729969644], [582, 0.021040995127532384], [586, 0.04085893792220843], [592, 0.05038373887699718], [596, 0.07827136394910134], [601, 0.12872657111267682], [608, 0.03543135179930833], [613, 0.025732431773618603], [619, 0.020607650832439723], [624, 0.02122116141606114], [626, 0.04079383480906776], [629, 0.02858282833483984], [630, 0.039082523383472366], [634, 0.020025926394058823], [636, 0.02399122560210001], [637, 0.02438095829950986], [638, 0.02143897407657204], [639, 0.03461890160394527], [641, 0.05995573515281777], [642, 0.24596899907822345], [645, 0.06216575106423831], [650, 0.041178162460402026], [654, 0.05891175437615892], [660, 0.08559970847025625], [663, 0.100740393637637], [667, 0.16937869244552892], [671, 0.09584469471501812]], [[50, 0.28905132430095937], [58, 0.17146625394746492], [61, 0.17150735622767432], [66, 0.073105283659904], [74, 0.1627284376859081], [75, 0.17398025603518624], [78, 0.056036674679838916], [84, 0.09663737387577782], [85, 0.10202401489066915], [86, 0.06381717303453405], [87, 0.04193815872029378], [88, 0.053137417284834294], [97, 0.125606402742357], [100, 0.15472322593359505], [105, 0.09898148465402438], [110, 0.0970497071226382], [115, 0.10556015609046228], [117, 0.07443485560532355], [123, 0.04805533810571751], [125, 0.07032634745138051], [126, 0.04221346748344062], [127, 0.022102130148943987], [128, 0.015034981353257615], [133, 0.03975067268639969], [137, 0.03642576073291738], [139, 0.0454713352812586], [140, 0.05351406424331306], [142, 0.07702648415361547], [144, 0.056412660311534885], [145, 0.01828358660451286], [149, 0.014425842276473642], [157, 0.029871006117790384], [159, 0.06001883469898613], [163, 0.05107675280104663], [168, 0.056806988401964936], [173, 0.042758007347480295], [178, 0.04432835177903355], [188, 0.07221164345193826], [189, 0.09132341063633659], [193, 0.04017370614096198], [196, 0.04261128558095683], [198, 0.03910943619739532], [199, 0.07003561264948151], [202, 0.015824389956094146], [205, 0.025731168564847133], [206, 0.08767265954823585], [216, 0.03737810828095259], [217, 0.12649086410615382], [221, 0.0669701900093695], [225, 0.07001869102596989], [232, 0.06139192523439312], [239, 0.06500628982675649], [240, 0.3177138975365322], [245, 0.5638136208166263], [249, 1.0], [255, 0.23919838315992895], [259, 0.10619573109986793], [266, 0.14187467598243364], [270, 0.07883050649067067], [274, 0.12529469442029384], [279, 0.12154637972352154], [285, 0.10861953715140461], [292, 0.14286513681704224], [295, 0.21016025045279718], [297, 0.1581196218468694], [304, 0.2280692040172734], [315, 0.2467666047572641], [316, 0.15300031532464978], [321, 0.06445791455064599], [322, 0.04190703896716105], [323, 0.0647012685234431], [324, 0.049134129446212815], [330, 0.05999437477775857], [333, 0.06728493941778527], [334, 0.04908617827701661], [335, 0.04192040982858619], [336, 0.05819142090900926], [337, 0.06519359434322879], [338, 0.07498784599795756], [339, 0.1322213419446804], [343, 0.03073798266487114], [351, 0.038584487161928555], [356, 0.0478303061167596], [361, 0.04495745003900177], [369, 0.07640123712592607], [372, 0.04552635257883026], [377, 0.043837399133650395], [384, 0.06513211615242091], [389, 0.06595569130847143], [391, 0.08003044788793601], [394, 0.13630633623100988], [396, 0.1329670208427703], [399, 0.14932937623505824], [400, 0.21152689196669208], [401, 0.19886311194793707], [402, 0.04419489388917436], [403, 0.05034911356060825], [404, 0.042650904276865825], [405, 0.09714949287283575], [412, 0.14892853402475723], [415, 0.17395230274124257], [416, 0.18529682052828375], [417, 0.2538251120585823], [418, 0.011786039961991039], [419, 0.020871030046117837], [420, 0.023000263839689422], [424, 0.057791267032894895], [433, 0.04265536466807171], [434, 0.06585899444941935], [435, 0.05834423081562693], [437, 0.01639033459479102], [439, 0.02409972673591192], [441, 0.03851393905271997], [443, 0.0414093982311129], [446, 0.0743992838899695], [447, 0.10441829588474535], [448, 0.14916831260795227], [449, 8.937233154860228e-05], [450, 0.002137410729985719], [451, 0.0065359346303661536], [452, 0.04094358544486861], [457, 0.011128193857206167], [458, 0.014846833922042136], [459, 0.006193479505027122], [460, 0.007732945106186351], [461, 0.023088861281504183], [462, 0.01802467917008925], [463, 0.0029830889005067135], [464, 0.00304174328507291], [468, 0.014704137992019868], [469, 0.011258885312460148], [470, 0.00087215419287152], [471, 0.023853445180370383], [484, 0.018426825898621112], [485, 0.06582980136358607], [489, 0.03617015377178502], [496, 0.09274035697917482], [504, 0.10034064999859509], [515, 0.11297188772916852], [516, 0.06241601337580807], [517, 0.05999916814879623], [521, 0.03204595450522043], [524, 0.038541554454543804], [528, 0.0356129159584576], [532, 0.027948254284885485], [535, 0.022495852205290115], [536, 0.02625251982397205], [537, 0.03205172363374709], [538, 0.0038096958637493785], [539, 0.008102748174862484], [540, 0.01821400294001517], [541, 0.0344895464410648], [546, 0.01584394520864066], [550, 0.013118172880690011], [558, 0.015285184579899913], [563, 0.03485377603773391], [566, 0.035266340485285], [571, 0.03042234389717452], [576, 0.013870054484282666], [582, 0.015802255659038193], [587, 0.012217735744041013], [588, 0.08444720330618677], [591, 0.03810339734773291], [595, 0.06812060099941482], [599, 0.057837742493215064], [600, 0.06829521726480511], [601, 0.06502769073581932], [602, 0.06627705613432555], [605, 0.09063345442488599], [611, 0.06903734882331831], [614, 0.04691378137103019], [618, 0.05005913352050852], [624, 0.07681070438339568], [628, 0.09053550917760439], [629, 0.11233692682526351], [630, 0.05636386781550132], [631, 0.03969129884151369]], [[53, 0.15606500137849408], [55, 0.057081821814836516], [59, 0.015389768225182327], [63, 0.02634363914279659], [70, 0.044826629718254185], [73, 0.05548331124296435], [77, 0.029249513524754692], [85, 0.08066382374077875], [87, 0.04751925795393234], [90, 0.04165030029104498], [92, 0.03401040532806962], [94, 0.048463255063853676], [96, 0.06574505138277381], [110, 0.009388851815139411], [121, 0.011257753458101183], [124, 0.010175417811312884], [133, 0.003660344679924684], [141, 0.007355951502270009], [145, 0.01199640173422007], [156, 0.00843035863662214], [157, 0.028016575896861465], [158, 0.02130687131326782], [159, 0.009358968429284693], [160, 0.0054945431310665085], [161, 0.005255050645860922], [162, 0.005086412538250776], [163, 0.04031374456556264], [165, 0.027381765723156624], [166, 0.0035242897415834577], [170, 0.0061432436236824465], [178, 0.016351662557812875], [187, 0.0057311343432670985], [194, 0.009012361450999127], [197, 0.013378234487641336], [201, 0.00865247454227936], [209, 0.018910811212323332], [211, 0.022208190118862575], [214, 0.018900795431966003], [216, 0.009636476084956512], [218, 0.006852567456665582], [220, 0.00815700234096034], [234, 0.003051125753861837], [245, 0.003418006916149645], [248, 0.009930293104409044], [257, 0.003083463022488574], [265, 0.006621495907705816], [269, 0.015397012234477944], [280, 0.013046513078455854], [281, 0.09006458508658144], [285, 0.06869480821529975], [286, 0.11073588108029753], [287, 0.029567966269781875], [288, 0.037065305647967985], [289, 0.03837745114298221], [290, 0.02578867633677809], [291, 0.037937895312616286], [292, 0.029822457791965226], [293, 0.030026925777835438], [299, 0.05983226357641826], [303, 0.032965991485302125], [314, 0.04617659488701707], [317, 0.02632535905954648], [322, 0.03476018800167102], [325, 0.04278524445175932], [329, 0.04277058992610943], [337, 0.1330198774765709], [343, 0.01169012331287325], [352, 0.007930212162194084], [355, 0.011267989640522622], [357, 0.011543511767217523], [370, 0.011172652119890556], [381, 0.030917195827247043], [382, 0.025847018224289118], [391, 0.014636119185461404], [395, 0.014738445327377416], [402, 0.016581668746626897], [407, 0.010701120493445522], [412, 0.015604775019188053], [423, 0.015840778150965608], [425, 0.017681971530088818], [426, 0.012698332955905825], [428, 0.01825620994448742], [429, 0.019976838976833392], [430, 0.0176525163507309], [437, 0.005184273952958635], [441, 0.007600014341291207], [446, 0.006352087660601401], [447, 0.012323019805873432], [448, 0.0004892320308676404], [449, 0.0035327968331487817], [450, 0.001729386453822885], [456, 0.007682593213464114], [459, 0.014956422059361105], [468, 0.010786545964903067], [473, 0.028548955413892182], [474, 0.03493450860209689], [480, 0.010032565938508466], [484, 0.015442490347543558], [488, 0.020557266586004944], [494, 0.01031177958683913], [500, 0.02939000129018508], [506, 0.010900408668643682], [512, 0.02637220052243846], [514, 0.016026505986641286], [518, 0.03489055862691103], [520, 0.023828872929518283], [521, 0.008480267317084988], [522, 0.0066978263299986235], [523, 0.005754601774487439], [524, 0.02036309681229493], [528, 0.020433141644026518], [532, 0.007229877426515514], [536, 0.010924277878789534], [538, 0.030674089122703592], [539, 0.0034968103939162303], [540, 0.0028916203333690157], [541, 0.02329404721230028], [543, 0.0672853032605004], [547, 0.0244572690613532], [551, 0.026683789393471494], [556, 0.040013585268572016], [557, 0.049952318322717695], [561, 0.019922159037263038], [563, 0.026413537708408395], [566, 0.046680265248803525], [570, 0.0248054334346308], [575, 0.008388438401268647], [581, 0.019063467894042008], [585, 0.038080900358825734], [590, 0.01774343176657899], [592, 0.01903980251698794], [597, 0.019561487496958588], [604, 0.017787388169052752], [607, 0.044966599344812], [613, 0.02986317157908693], [617, 0.049301719333943596], [625, 0.025100709968763284], [630, 0.013570985582307427], [633, 0.03580499250106106], [637, 0.03794428162104366], [643, 0.022159684109781842], [647, 0.026415971154380564], [652, 0.01760559624538423], [653, 0.036239363030210615], [656, 0.01670997033950983], [659, 0.03721628779944808], [660, 0.08425154557644356], [672, 0.03697986694242934], [677, 0.053529916958455555], [682, 0.026356550732806565], [689, 0.03253967932363351], [691, 0.025366493413731272], [695, 0.028161399754415634], [698, 0.05155357305253677], [702, 0.09041458297693516], [704, 0.11149419953903285]]]] }, { "data": { "question": "Who is the original artist of sound of silence?", "answer": "There are several songs with the title \"Sound of Silence\". Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which was recorded in March 1964 and originally was released as \"The Sounds of Silence\". Another \"Sound of Silence\" is a song performed by Australian recording artist Dami Im, and is best known as Australia's entry at the Eurovision Song Contest 2016.", "qa_pairs": [{ "context": "Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on June 15, 1965. This new version was released as a single in September 1965, and opens the album.", "question": "Who is the original artist of sound of silence, the song, released in 1964?", "short_answers": ["Simon & Garfunkel", "Paul Simon and Art Garfunkel", "Art Garfunkel", "Paul Simon"], "wikipage": "Sounds of Silence" }, { "context": "Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on June 15, 1965. This new version was released as a single in September 1965, and opens the album.", "question": "Who is the original artist of sound of silence, the album?", "short_answers": ["Simon & Garfunkel", "Paul Simon and Art Garfunkel", "Art Garfunkel", "Paul Simon"], "wikipage": "Sounds of Silence" }, { "context": "\"Sound of Silence\" is a song performed by Australian recording artist Dami Im. Written by Anthony Egizii and David Musumeci of DNA Songs, it is best known as Australia's entry at the Eurovision Song Contest 2016 which was held in Stockholm, Sweden, where it finished 2nd, receiving a total of 511 points. The song also won the Marcel Bezen\u00e7on Award in the composer category. The song was leaked on 10 March 2016, one day before its initial release date. It is Dami Im's fourth Australian top 20 hit and worldwide, it reached the top 40 in more than six countries after the Eurovision Song Contest 2016 Final.", "question": "Who is the original artist of sound of silence, the song, released in 2016?", "short_answers": ["Dami Im"], "wikipage": "Sound of Silence (Dami Im song)" }], "docs": ["Document [1](Title:The Sound of Silence): The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on their debut album, \"Wednesday Morning, 3 A.M.\". Released in October 1964, the album was a commercial failure and led to the duo breaking apart, with Paul Simon\n", "Document [2](Title:Sounds of Silence): Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album \"Wednesday Morning, 3 A.M.\", and later on the soundtrack to the movie \"The Graduate\". Without the knowledge of Paul Simon or Art Garfunkel, electric guitars, bass and drums were overdubbed by Columbia Records staff producer Tom Wilson on\n", "Document [3](Title:The Sound of Silence): downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "Document [4](Title:Immortalized (Disturbed album)): 1964 song \"The Sound of Silence\" by Simon & Garfunkel, which marked Disturbed's highest ranked single on the \"Billboard\" Hot 100 at number 42 and has since become Disturbed's biggest song since \"Down with the Sickness\". In 2011, following the tour of their fifth studio album, \"Asylum\", Disturbed announced that they would go on a hiatus. During the hiatus, the band released a compilation album of previously recorded B-sides, \"The Lost Children\" (2011), and a box set of their five studio albums, \"The Collection\" (2012). In January 2014, band members David Draiman (vocals), Dan Donegan (guitar), Mike Wengren (drums) met\n", "Document [5](Title:Sounds of Silence): Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n"] }, "doc_cache": ["Document [1](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n", "Document [2](Title:Live at Benaroya Hall with the Seattle Symphony)proud of, believing it truly represents their live act. Overall, critical reception of the album was positive. Nick Vissey of \"The Seattle Times\" wrote that \"standout\" tracks included \"Dreams\" and \"Pride and Joy\", which highlighted Carlile's \"unique folk-rock style\" and \"enthralling, emotional and fun\" voice. The Hanseroth brothers' cover of Paul Simon's \"The Sound of Silence\" was deemed \"spot-on\" by Allmusic's Andrew Leahey and \"breathtaking\" by Gene Stout of the \"Seattle Post-Intelligencer\". \"The Source Weekly\" contributor Mike Bookey complimented the album for capturing Carlile's live act and recommended this album for first-time listeners of her music. \"Glide\" magazine's reviewer complimented\n", "Document [3](Title:Sounds of Silence)Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n", "Document [4](Title:The Sound of Silence)downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "Document [5](Title:Paul Simon in Concert: Live Rhymin')UK. Further, two of the live performances were released as a single as part of the promotion for the album: the breakthrough Simon & Garfunkel \"The Sound of Silence\" as the A-side, along with Simon's debut single \"Mother and Child Reunion\" on the B-side. All tracks composed by Paul Simon, except where indicated. Paul Simon in Concert: Live Rhymin' Paul Simon in Concert: Live Rhymin' is a live album by Paul Simon, released in March 1974 by Columbia Records. It was recorded in the wake of the release of \"There Goes Rhymin' Simon\" \u2013 which produced a number of hit\n", "Document [6](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n"], "log": ["gpt-3.5-turbo-[1] -> retriever-[4]\n: Query: \"Who wrote the song 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [1](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n\nDocument [2](Title:Live at Benaroya Hall with the Seattle Symphony)proud of, believing it truly represents their live act. Overall, critical reception of the album was positive. Nick Vissey of \"The Seattle Times\" wrote that \"standout\" tracks included \"Dreams\" and \"Pride and Joy\", which highlighted Carlile's \"unique folk-rock style\" and \"enthralling, emotional and fun\" voice. The Hanseroth brothers' cover of Paul Simon's \"The Sound of Silence\" was deemed \"spot-on\" by Allmusic's Andrew Leahey and \"breathtaking\" by Gene Stout of the \"Seattle Post-Intelligencer\". \"The Source Weekly\" contributor Mike Bookey complimented the album for capturing Carlile's live act and recommended this album for first-time listeners of her music. \"Glide\" magazine's reviewer complimented\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Simon & Garfunkel[1]. ', 'The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers[2]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers[2]. ', 'ans': 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel[1]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: \"Who recorded the original version of 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [3](Title:Sounds of Silence)Angeles, California. \"The Sound of Silence\" (electric overdubs) personnel \"The Sound of Silence\" overdubs were recorded at Columbia's \"Studio A\" at 799 Seventh Avenue near 52nd Street by Columbia Records staff producer Tom Wilson on June 15, 1965. Sounds of Silence Sounds of Silence is the second studio album by Simon & Garfunkel, released on January 17, 1966. The album's title is a slight modification of the title of the duo's first major hit, \"The Sound of Silence\", which originally was released as \"The Sounds of Silence\". The song had earlier been released in an acoustic version on the album\n\nDocument [4](Title:The Sound of Silence)downloadable content for the video game, \"Rock Band 4\". The Disturbed version was used in the episode \"Ian Garvey\" of \"The Blacklist\" in November 2017. Notes Bibliography The Sound of Silence \"The Sound of Silence\", originally \"The Sounds of Silence\", is a song by the American music duo Simon & Garfunkel. The song was written by Paul Simon over a period of several months in 1963 and 1964. A studio audition led to the duo signing a record deal with Columbia Records, and the song was recorded in March 1964 at Columbia Studios in New York City for inclusion on\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Simon & Garfunkel[3]. ', '\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel[4]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': '\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel[4]. ', 'ans': 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel[3]. '}", "gpt-3.5-turbo-[1] -> retriever-[4]\n: \"Who composed the song 'The Sound of Silence'?\"", "retriever-[4] -> gpt-3.5-turbo-[3]\n: Document [5](Title:Paul Simon in Concert: Live Rhymin')UK. Further, two of the live performances were released as a single as part of the promotion for the album: the breakthrough Simon & Garfunkel \"The Sound of Silence\" as the A-side, along with Simon's debut single \"Mother and Child Reunion\" on the B-side. All tracks composed by Paul Simon, except where indicated. Paul Simon in Concert: Live Rhymin' Paul Simon in Concert: Live Rhymin' is a live album by Paul Simon, released in March 1974 by Columbia Records. It was recorded in the wake of the release of \"There Goes Rhymin' Simon\" \u2013 which produced a number of hit\n\nDocument [6](Title:The Sound of Silence)attention of Columbia Records producer Tom Wilson, who worked with Bob Dylan. Simon convinced Wilson to let him and his partner have a studio audition, where a performance of \"The Sound of Silence\" got the duo signed to Columbia. The song's origin and basis remain unclear, with multiple answers coming forward over the years. Many believe that the song commented on the John F. Kennedy assassination, as the song was released three months after the assassination. Simon stated unambiguously in interviews, however, \"I wrote The Sound of Silence when I was 21 years old\", which places the timeframe firmly prior\n", "gpt-3.5-turbo-[3] -> evaluator-[2]\n: ['The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel[5]. ', 'The original artist of \"The Sound of Silence\" is Simon & Garfunkel, with Paul Simon specifically writing the song[6]. ']", "evaluator-[2] -> gpt-3.5-turbo-[1]\n: {'answer': 'The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel[5]. '}"], "output": ["The original artist of \"Sound of Silence\" is Paul Simon, covered by the Hanseroth brothers [2].", "\"The Sound of Silence\" was originally performed by the American music duo Simon & Garfunkel [4].", "The original artist of \"The Sound of Silence\" is Paul Simon, from the duo Simon & Garfunkel [5]."], "result": { "length": 50 }, "token_used": 4669, "doc_level": [[4.180976302542247, 8.463331750750388, 3.300796087016517, 2.9043618407464247, 1.1453728027973347, 1.8512924191769387], [11.253950008014444, 12.70247463791847, 15.294540364377717, 14.251656052016504, 6.532508835514661, 8.927341057947325], [21.45106259808697, 17.9456787242759, 23.83122802494382, 16.80053659827254, 12.10210966565777, 17.23673995319806]], "span_level": [[[[40, 0.031000953369108266], [118, 0.06542317999698267], [270, 0.06542317999698267], [367, 0.06542317999698267], [505, 0.06542317999698267]], [[67, 0.04353641338263766], [123, 0.07570848979384534], [178, 0.0], [378, 1.0], [566, 0.020709522745889254], [732, 0.06542317999698267]], [[37, 0.06519448453622809], [58, 0.008892985874469022], [285, 0.06542317999698267], [400, 0.047967124258308194], [568, 0.06542317999698267]], [[40, 0.06542317999698267], [96, 0.04966344778422236], [192, 0.03581467576098593], [347, 0.06542317999698267], [432, 0.06542317999698267]], [[55, 0.02825097206201647], [59, 0.047919885204251916], [310, 0.047071907555204295], [369, 0.06542317999698267], [516, 0.08653700174069713]], [[40, 0.06542317999698267], [118, 0.028427837801681895], [270, 0.05971952133444869], [367, 0.06542317999698267], [505, 0.06542317999698267]]], [[[40, 0.08450978976638523], [118, 0.11957626372490102], [270, 0.08450978976638523], [367, 0.12849268616454287], [505, 0.08450978976638523]], [[67, 0.14237234755766012], [123, 0.08450978976638523], [178, 0.08450978976638523], [378, 0.18703871319873405], [566, 0.08450978976638523], [732, 0.10202343369474869]], [[37, 0.0832069520975214], [58, 0.08450978976638523], [285, 0.13088314244940977], [400, 0.05906399611785642], [568, 0.10618799058788225]], [[40, 0.08450978976638523], [96, 0.08450978976638523], [192, 1.0], [347, 0.08450978976638523], [432, 0.08450978976638523]], [[55, 0.08450978976638523], [59, 0.10881207395974353], [310, 0.08450978976638523], [369, 0.08450978976638523], [516, 0.08450978976638523]], [[40, 0.08450978976638523], [118, 0.08450978976638523], [270, 0.0], [367, 0.10724035575992644], [505, 0.05831909332546213]]], [[[40, 1.0], [118, 0.2333871100088499], [270, 0.2333871100088499], [367, 0.2333871100088499], [505, 0.2333871100088499]], [[67, 0.2333871100088499], [123, 0.2333871100088499], [178, 0.2707555163782165], [378, 0.7470623769593163], [566, 0.2333871100088499], [732, 0.2333871100088499]], [[37, 0.2333871100088499], [58, 0.2333871100088499], [285, 0.2333871100088499], [400, 0.32359201765287404], [568, 0.24270611289371452]], [[40, 0.2333871100088499], [96, 0.2333871100088499], [192, 0.2333871100088499], [347, 0.2333871100088499], [432, 0.2333871100088499]], [[55, 0.2333871100088499], [59, 0.2766348955746465], [310, 0.2333871100088499], [369, 0.0], [516, 0.2333871100088499]], [[40, 0.2333871100088499], [118, 0.2333871100088499], [270, 0.2333871100088499], [367, 0.2333871100088499], [505, 0.2333871100088499]]]], "word_level": [[[[40, 0.10255381394964937], [50, 0.06902830108221512], [53, 0.060717098655539294], [62, 0.03767967619521473], [70, 0.04478095845073791], [79, 0.03515315700361297], [83, 0.04623622613158126], [90, 0.09238525050117485], [91, 0.05953430544077806], [95, 0.03109741624762864], [102, 0.025783960628521646], [107, 0.03339663197474021], [111, 0.03550432695862534], [113, 0.047981051651367713], [115, 0.048761354857171056], [117, 0.05066762430301497], [118, 0.0738826049645051], [124, 0.09284920923509431], [134, 0.06367989986949303], [141, 0.012280397851537287], [144, 0.02533569314180589], [148, 0.019339459940436773], [152, 0.020463068635394027], [156, 0.027300469324058566], [160, 0.015093618344535504], [168, 0.031415155005681095], [173, 0.020720646570264113], [175, 0.01898151603036411], [182, 0.01764898487949319], [186, 0.015441004131437251], [191, 0.024566677801984665], [192, 0.048977519814676615], [198, 0.020244580526536993], [200, 0.018975892013180565], [212, 0.018019553502264436], [215, 0.025606646391279665], [217, 0.029793936544930455], [220, 0.022639294961033608], [226, 0.043070600699525355], [229, 0.041677583288309734], [233, 0.028065250006074727], [237, 0.07111737855315035], [238, 0.02361942527250614], [242, 0.02817185363887523], [246, 0.0319065510588951], [249, 0.061877936666779314], [250, 0.028006821148370952], [257, 0.026431354486258753], [260, 0.024087349425218212], [269, 0.017119168552102836], [270, 0.05563706174071462], [274, 0.026456872988671443], [279, 0.038208735205951916], [280, 0.025278560629654112], [281, 0.03133462877304336], [288, 0.042262677279247984], [292, 0.03134483198439903], [298, 0.04752338192750865], [305, 0.024684164895320874], [313, 0.03352925080620528], [314, 0.052040466046280764], [319, 0.03106417163612764], [328, 0.03282612350644009], [336, 0.07246855104596019], [343, 0.01734534073230483], [351, 0.025881243180558212], [356, 0.013238249493831226], [360, 0.026090573390190074], [366, 0.02273186682062923], [367, 0.05178821659659821], [372, 0.01639676620830216], [380, 0.02520585391373152], [385, 0.01620821703582978], [389, 0.026756785900243146], [394, 0.02467138598691709], [404, 0.028664661946716696], [407, 0.020922643121993663], [411, 0.0216289602891625], [416, 0.012571766045123667], [418, 0.016859336180571578], [419, 0.029747663237785528], [427, 0.022225723988240322], [434, 0.018744249585138328], [441, 0.017402282675822923], [442, 0.034818871039985426], [445, 0.014370199016365697], [449, 0.01792747491448666], [454, 0.013797647929718014], [458, 0.011290261624644528], [467, 0.01048884041497929], [473, 0.00746624498978204], [480, 0.009599300076913002], [486, 0.01260575469170288], [490, 0.019954961814990534], [497, 0.012537204509487143], [504, 0.008802637535988441], [505, 0.0560669940790336], [511, 0.07412833885331101], [518, 0.03227120853723076], [521, 0.017050970715699033], [527, 0.02770230849690102], [532, 0.019152513584103917], [535, 0.027950525429703645], [541, 0.01617149959429952], [546, 0.018889234237258166], [547, 0.04471596649806749], [555, 0.025335402885536946], [556, 0.04991451935053243], [558, 0.04036707728436104], [559, 0.02153257803100176], [565, 0.035557214151294855], [569, 0.026413209182256155], [575, 0.03013100244959466], [578, 0.035178077269631625], [582, 0.01872934661489437], [586, 0.04621278679683139], [591, 0.031121579127733827], [593, 0.018857077871681917], [597, 0.02064649275083733], [598, 0.024779937857904354], [599, 0.01809829727417103], [600, 0.02634143359126304], [606, 0.013365310631437284], [610, 0.017089166336048227], [612, 0.056619648611395], [618, 0.018860877498462797], [625, 0.02779329109373206], [629, 0.03185287735038824], [634, 0.025527301076299955], [639, 0.0297215074108551], [644, 0.04619951109443559], [646, 0.02756229926216888]], [[67, 0.07955017834931245], [73, 0.042125408354819364], [76, 0.04394352348963662], [77, 0.044518501878266586], [81, 0.025011824838067038], [87, 0.026047105775584545], [90, 0.017173345203760158], [96, 0.01941315041500515], [107, 0.030114986754228266], [113, 0.028582715112902255], [118, 0.027142452104693474], [122, 0.035761167568316016], [123, 0.04683742746074881], [128, 0.01569598608921209], [131, 0.01939680388622594], [132, 0.03662001853459193], [141, 0.026337430089012678], [151, 0.0413586732325226], [154, 0.02688109670549356], [158, 0.028675074965372416], [164, 0.050956705475515146], [168, 0.020768137225925732], [177, 0.016231954076744517], [178, 0.0540590402622549], [183, 0.03192850028783977], [185, 0.04844323323672405], [189, 0.11452370772343981], [190, 0.05983928981821698], [193, 0.03689178307106285], [195, 0.02357344825947356], [198, 0.01484862558980214], [206, 0.028691409943311368], [212, 0.02773459573096074], [213, 0.022306969255290576], [219, 0.029283073849974077], [224, 0.03588571570591129], [226, 0.025301588144857296], [231, 0.021178652066871882], [234, 0.02644179696140472], [235, 0.021510521935641926], [242, 0.02625495121975476], [251, 0.02515702608360827], [253, 0.020458631704447325], [254, 0.01763159468801974], [258, 0.019397415079455745], [259, 0.026102432856845933], [260, 0.019200944625638285], [264, 0.024349315355081752], [266, 0.026743476487398585], [267, 0.019372154467342], [271, 0.03729414592547445], [275, 0.03970092581600769], [279, 0.05487098074111545], [281, 0.033820427209836176], [287, 0.02353994987086359], [297, 0.03287956646408517], [299, 0.0351480989491825], [304, 0.15395293703747212], [307, 0.31167169437577086], [308, 0.05833670028416546], [309, 0.02634902852504834], [311, 0.03398682390293921], [317, 0.016446676669089662], [322, 0.026326866439840977], [323, 0.03833072371015], [327, 0.022758106593931963], [333, 0.01620928150359717], [334, 0.025856545093547477], [338, 0.035463235175986145], [340, 0.0607439577806465], [343, 0.021183442198837332], [345, 0.014552478634357827], [351, 0.023018391629950993], [352, 0.05340776918038935], [357, 0.023207409875261844], [362, 0.021389034948097584], [366, 0.03996560366578111], [370, 0.03179826553326655], [371, 0.037689547920406026], [377, 0.04537240036769951], [378, 0.17998560081521223], [382, 0.15480353639285946], [387, 0.5308535029090882], [389, 0.827950556140948], [392, 1.0], [401, 0.16052908851146214], [402, 0.06997850202164184], [408, 0.15141255821373065], [411, 0.07738571397635992], [416, 0.06578630007421157], [422, 0.11605305201580322], [423, 0.07896050099588363], [424, 0.026359766655716724], [426, 0.025741176893345274], [429, 0.019401942786006928], [435, 0.03906185355872593], [438, 0.02727955587609117], [442, 0.01720016682333864], [446, 0.03941122145352515], [447, 0.02801570909839977], [451, 0.024258150939191644], [454, 0.013002879132099923], [458, 0.01777680066435696], [460, 0.019766868482595252], [464, 0.030023626067452538], [465, 0.021039520963358753], [467, 0.034498927310758494], [468, 0.01344738559727042], [471, 0.020384746263995637], [475, 0.023843712114803375], [480, 0.05070075810453067], [481, 0.0785483119502498], [482, 0.009158579263610979], [489, 0.011955284670550877], [492, 0.014159453054321449], [493, 0.018798867326437735], [495, 0.023250348780430773], [496, 0.03204864686258939], [500, 0.032258874232760824], [502, 0.035055259854713396], [505, 0.04341248198747999], [507, 0.054692014803403466], [509, 0.10914649389697705], [514, 0.006978440896768804], [515, 0.0054215075793586824], [518, 0.009275925290526716], [523, 0.016737713226457458], [526, 0.0118530848543611], [529, 0.03575776519153621], [532, 0.014585852573714097], [536, 0.010566978311587835], [538, 0.009212292375892191], [540, 0.0035394225526790895], [545, 0.009883532748854422], [550, 0.009822729291440721], [551, 0.010495355763248617], [554, 0.009521768165646642], [557, 0.00888669952173317], [561, 0.014849878114543252], [564, 0.030947511901507324], [566, 0.036087130859531844], [568, 0.01579217426454051], [571, 0.014270250678038728], [578, 0.04232288181391993], [583, 0.02848015432281524], [585, 0.037601446454855844], [586, 0.010191462576265546], [594, 0.01890884719830247], [598, 0.015598075926122973], [603, 0.011618356021892906], [606, 0.014470299868810842], [607, 0.027390232822643964], [610, 0.026347040549397367], [616, 0.015572210373216211], [621, 0.011193383965719316], [623, 0.013477220876138861], [627, 0.01291766270197068], [633, 0.022446975351672865], [637, 0.021357817879127737], [642, 0.028727585731104704], [647, 0.010266943401164061], [652, 0.03199139327061116], [655, 0.06032706217113095], [656, 0.02691409912427885], [657, 0.005987164962705503], [662, 0.004188071505033506], [666, 0.00667957683744167], [670, 0.010179032101748312], [682, 0.00932969503723032], [687, 0.0075290971056864355], [693, 0.009481914175237766], [697, 0.008905704827260235], [703, 0.005245832019922719], [704, 0.006364788780782046], [708, 0.005124076054085263], [715, 0.006645234155123597], [718, 0.009358679006667925], [721, 0.014445251159530837], [725, 0.015651522413864333], [731, 0.0055502921156673725], [732, 0.03457620583475485], [734, 0.018877898748215778], [735, 0.011812220118810045], [739, 0.026525115089482347], [740, 0.009383758957351036], [749, 0.015351862711849348], [750, 0.024659634612355246], [751, 0.012409301435283085], [755, 0.006917494101352759], [760, 0.012316801594472973], [766, 0.013970105161738825], [771, 0.0143353780079212]], [[37, 0.04371981391438937], [45, 0.04894169629704269], [46, 0.02230335564831948], [57, 0.012924904941612882], [58, 0.041388301410920196], [60, 0.018802740245339254], [63, 0.010292419786432118], [69, 0.017258729692582245], [72, 0.013717587231254828], [76, 0.007464171179630085], [80, 0.016020744005348444], [81, 0.015232332134631063], [83, 0.017365850047504534], [88, 0.010090152910739534], [91, 0.01552426113324435], [96, 0.02005942707302517], [97, 0.016224692244096166], [100, 0.03535935716059762], [101, 0.019333110636697712], [111, 0.043664602354290614], [113, 0.019606831035280867], [116, 0.010607132321490407], [122, 0.008951052994968893], [125, 0.011350514731409638], [129, 0.008340066946734379], [133, 0.009252985858030114], [134, 0.010351007659693913], [139, 0.017913483817872566], [140, 0.011647558525076781], [143, 0.020139313513475077], [148, 0.016571414927276647], [157, 0.013857803637772574], [160, 0.01122296529045238], [169, 0.014848711867726109], [170, 0.03561371191569736], [171, 0.00539781553187526], [173, 0.006516050503198408], [179, 0.005674589230133644], [181, 0.005264126406924553], [182, 0.004009206543094393], [185, 0.006437133981029115], [186, 0.008136041269614251], [187, 0.0025743716444875625], [188, 0.002995470314183931], [189, 0.002855848088740398], [192, 0.002962724083965807], [196, 0.003146926926423847], [197, 0.005761296378284435], [204, 0.005905160607665737], [209, 0.006542557024680385], [210, 0.013227942515115136], [211, 0.0033542001749823375], [212, 0.008998367756671476], [214, 0.003398294549216839], [221, 0.0059525863837652715], [224, 0.017392090309209036], [233, 0.007589855901841427], [241, 0.012310299406207224], [247, 0.009850437895158335], [256, 0.011878025332563082], [260, 0.016932473175412598], [267, 0.028115205180795824], [270, 0.03486864286921539], [275, 0.027010214658005467], [276, 0.043896632657277945], [277, 0.027324374957551543], [278, 0.031930310792796825], [279, 0.05768702477885035], [280, 0.04457429328683392], [281, 0.07923191183999788], [282, 0.011471747911895008], [283, 0.016238955825925435], [284, 0.01385198426166138], [285, 0.052112730084947975], [287, 0.022108971037913754], [292, 0.031480324593787766], [295, 0.0323545802935561], [299, 0.012419202179410298], [303, 0.03063579975386782], [305, 0.0340750388408327], [310, 0.02000647119697052], [313, 0.027910621259745545], [317, 0.010041539187511418], [321, 0.016273220354302197], [324, 0.04231283552800992], [328, 0.028291492428498037], [335, 0.023326792672644498], [342, 0.025817142588397537], [348, 0.034503635215449795], [351, 0.04697907385503736], [357, 0.09759319665910812], [359, 0.10313474778711706], [363, 0.10752843286287764], [364, 0.07773082447059233], [367, 0.10836262344046758], [369, 0.14754264092003058], [370, 0.046672084902236205], [379, 0.019110455811645125], [382, 0.01495843592749045], [390, 0.0211730934689627], [391, 0.014884473455591008], [392, 0.015989843795938527], [393, 0.020031033939366415], [394, 0.07364902490577771], [395, 0.029163216592503177], [396, 0.07126808829556278], [397, 0.00721805161869431], [398, 0.00945727183294942], [399, 0.010858001933564084], [400, 0.020520597067410013], [404, 0.005284681477794561], [410, 0.008326434255725192], [411, 0.013823088117484094], [412, 0.004814472602811418], [418, 0.008608398875921823], [421, 0.0065779306400503505], [423, 0.005422324961190311], [430, 0.00608700278771401], [443, 0.010226731709075015], [446, 0.00959567680180743], [450, 0.006825545238804294], [456, 0.007389618242547857], [459, 0.01161950501899832], [463, 0.0106472616944522], [466, 0.02267452236348007], [467, 0.015935962976607786], [468, 0.014028166758879513], [469, 0.006670834220120934], [475, 0.005628677161938676], [481, 0.0049733868063659035], [485, 0.009578951573810942], [486, 0.01666870838965011], [488, 0.010140567116641668], [491, 0.011775683736465013], [497, 0.02855007585822954], [500, 0.011738337246938757], [504, 0.005814318775591877], [508, 0.014451132680005856], [510, 0.01541365422694122], [516, 0.004946651617703491], [527, 0.008907480655376516], [531, 0.006804144449068379], [540, 0.005031453097840301], [543, 0.0071753198029031245], [545, 0.008617284793883248], [548, 0.008666876641446478], [550, 0.013242874816543994], [555, 0.0169181181436478], [558, 0.010699734049719191], [562, 0.0038974285636273172], [566, 0.0134131191644139], [568, 0.0145785820042654], [572, 0.005511158788703109], [577, 0.010313595243035857], [581, 0.006213536514715978], [589, 0.005425910596877934], [594, 0.0028338394941600227], [603, 0.0041041188913272094], [606, 0.006589804055971788], [609, 0.004832841273428775], [612, 0.0043467352347982425], [616, 0.009369065432618609], [618, 0.004289729132704222], [626, 0.010635505912182213], [629, 0.008938813079580266], [633, 0.01047710644525406]], [[40, 0.0410747113686329], [49, 0.03329380224496642], [53, 0.02376253511478726], [61, 0.02561993560468618], [65, 0.013582102878795072], [69, 0.01430227770889689], [75, 0.012314406318532934], [80, 0.02179178922811392], [81, 0.023444345534312645], [83, 0.020192545597629515], [84, 0.008440619987472532], [87, 0.021044937491937737], [92, 0.03702482790133808], [93, 0.02251402948317657], [94, 0.01926984374507185], [96, 0.04042283728231019], [100, 0.03494116768215378], [105, 0.04581173031378336], [110, 0.12451916698012332], [118, 0.08790724396950607], [122, 0.007261756827858317], [127, 0.006513274682819252], [130, 0.00814352201118462], [134, 0.008077413096713264], [142, 0.011930650280210208], [144, 0.007581760656976536], [145, 0.011132737260650788], [147, 0.018808131681468457], [151, 0.012296651028060225], [154, 0.022442386289843026], [155, 0.005419867707136313], [158, 0.007363917673051278], [160, 0.007398999888672382], [163, 0.0057022556565584645], [169, 0.007059880863462968], [173, 0.012717344452117344], [174, 0.0074443754376562], [177, 0.020868271786942862], [186, 0.009981127041235403], [187, 0.019581773858598737], [188, 0.02754101252249109], [189, 0.004879278998911332], [190, 0.006960610950947476], [191, 0.0067193514289042655], [192, 0.0329516823965314], [198, 0.03191702117948913], [204, 0.03925527584104963], [211, 0.03197380514393195], [215, 0.0301547336988915], [221, 0.014812792994499328], [224, 0.017340554835750782], [228, 0.008759879653227845], [232, 0.01916120693441941], [234, 0.023770741705097426], [237, 0.007631480111067235], [243, 0.010788637081763577], [246, 0.011076023796661852], [250, 0.005887921041085736], [254, 0.01280062676733846], [256, 0.019848277435117568], [267, 0.02577046056410345], [269, 0.01904851715044393], [272, 0.008976627187587807], [274, 0.014069946353518993], [279, 0.019377352292249576], [282, 0.01358820637431312], [286, 0.008551654667472321], [290, 0.019558394608966828], [292, 0.017148747337790676], [295, 0.026821601935028628], [297, 0.02267827650440298], [302, 0.028035727772064672], [305, 0.03636083824854486], [309, 0.020429004917930375], [318, 0.025261555088147557], [324, 0.02542665712332001], [327, 0.050168690558681055], [328, 0.058491757373563776], [334, 0.08002255247586884], [336, 0.09712737207282587], [340, 0.03348770805368532], [341, 0.032432734377120485], [344, 0.05023777170241289], [346, 0.0677034375268297], [347, 0.03458838023773768], [351, 0.012291522225572745], [356, 0.018488777653785687], [360, 0.017262130265721265], [368, 0.04181629691180639], [371, 0.052224818624896766], [376, 0.09449658201371741], [382, 0.082989657211573], [387, 0.049470851308613756], [389, 0.005819190456903164], [396, 0.006034531782976438], [399, 0.009212450811191878], [407, 0.005921879253752107], [414, 0.010246058310975796], [417, 0.025249754621109743], [418, 0.019998858289313318], [419, 0.0523639346898571], [420, 0.007802623217089243], [421, 0.0067419979572862125], [422, 0.006605946928182385], [426, 0.016826280322925196], [427, 0.009669381882662212], [428, 0.02209121121158302], [429, 0.0], [430, 0.0003657944816876641], [431, 0.0010809056129700918], [432, 0.012205505599937607], [434, 0.0021641472509236247], [441, 0.004350457957683867], [445, 0.0035882005427736686], [450, 0.005035388648683393], [454, 0.0038593229625800626], [457, 0.005586998965261707], [461, 0.00583928896400767], [464, 0.005894792045305087], [465, 0.006767296088314802], [473, 0.005625291317536564], [475, 0.0036246941620063054], [482, 0.0014160752635893276], [487, 0.0025718596645859806], [492, 0.0027752591507281417], [501, 0.0030945169114767867], [509, 0.003497215975524422], [510, 0.010400272265384711], [514, 0.0036903331354428597], [518, 0.004734893043560297], [523, 0.004127364462016259], [527, 0.0027842776679316747], [536, 0.0035045334731707593], [539, 0.006503719513369234], [545, 0.005625410489163555], [546, 0.007318714515254646], [547, 0.013988972225343406], [548, 0.003960064784350944], [549, 0.0024486427845565022], [550, 0.0027334391090152316], [553, 0.007705259954935642], [562, 0.00912602143208642], [570, 0.014611784381171151], [573, 0.0182970690128833], [577, 0.02826628524961553], [582, 0.0013045886653519315], [587, 0.0008208753635035105], [591, 0.00448326331861666], [601, 0.006362466743397102]], [[55, 0.036634837458048956], [58, 0.010645640594106356], [59, 0.01787467453874618], [67, 0.008750983660707676], [68, 0.016143492894234345], [72, 0.00539012689554392], [75, 0.009040817428374755], [79, 0.0061960049816435275], [84, 0.0036149243420224033], [97, 0.005768231898321081], [102, 0.008942731231548753], [111, 0.0056076380779114775], [114, 0.005772072856417559], [116, 0.010798515171937598], [123, 0.005139049191426142], [126, 0.0052330832114133455], [131, 0.002251770957465038], [134, 0.00658976502059806], [138, 0.005477133469636769], [148, 0.004526991202119372], [152, 0.0036221559551149873], [156, 0.004115043641293285], [162, 0.008658840933126239], [163, 0.010256090357718196], [167, 0.008123734307576035], [173, 0.00849856532112454], [180, 0.014033535220306667], [186, 0.016592668146886654], [188, 0.015712942814248898], [192, 0.013579807275527827], [193, 0.013285098629450093], [196, 0.017130831744728913], [198, 0.02635652411325309], [200, 0.01065068089623265], [203, 0.003732922772920581], [209, 0.007820155027303382], [212, 0.006400534556933672], [216, 0.0037785093878702023], [220, 0.007287802532441928], [221, 0.004408170127182533], [224, 0.006783854764422597], [228, 0.007456248067463946], [230, 0.0025571115175997985], [231, 0.0038435119022973154], [235, 0.00468940740562835], [236, 0.011268215193769108], [242, 0.0022961322153169624], [247, 0.005865254561433833], [253, 0.004959228742773975], [254, 0.021168410112643567], [255, 0.0032332122301360917], [261, 0.0035053509446567733], [268, 0.0021473017815808633], [270, 0.0030450120331703824], [271, 0.0015028454227149059], [276, 0.0030493612299141272], [280, 0.004300998531458461], [286, 0.00408802200762779], [289, 0.0018722659893000832], [294, 0.009806712757570881], [295, 0.0031222307952432416], [298, 0.004452988876563184], [302, 0.0057485570986637625], [304, 0.005790698119252038], [305, 0.004160673151949435], [309, 0.0037519541370729585], [310, 0.020418036830593567], [314, 0.005353019226482776], [321, 0.012967499047895103], [330, 0.00921699781097597], [333, 0.011255127680977445], [338, 0.009950788627555808], [344, 0.008510752277554845], [345, 0.015221247616326634], [352, 0.007838575864886007], [358, 0.005818728064700087], [368, 0.009093186659936582], [369, 0.018971861446360976], [374, 0.007639965814773526], [380, 0.007023274394379356], [383, 0.015063415009361652], [387, 0.006711354735268549], [391, 0.005434584894606389], [392, 0.01220888889777649], [397, 0.00476271438940842], [400, 0.007431206485162395], [402, 0.01143925731413717], [404, 0.02037295349601594], [405, 0.023373434747584427], [410, 0.007097581509298428], [416, 0.005280532904323235], [419, 0.005214524234014409], [423, 0.0030812881630269263], [427, 0.004132513054393821], [428, 0.008899628438480666], [433, 0.004573351903658595], [436, 0.0052227150351971206], [438, 0.0018240785440009385], [440, 0.005817261572869568], [441, 0.008901008919409476], [444, 0.01385026621315289], [446, 0.006101372936566522], [451, 0.0056460483439959306], [457, 0.01100122580719538], [460, 0.010908465197921713], [465, 0.014457121193736003], [471, 0.007699391686710134], [472, 0.015098390816359174], [481, 0.006905676449922183], [484, 0.012186437140882751], [490, 0.01032856756032646], [491, 0.012049366754022], [492, 0.03427578991245836], [493, 0.001606489503518018], [494, 0.004091307337972439], [495, 0.0022943412898174314], [498, 0.004390329522083138], [507, 0.0017984983292401373], [515, 0.004265017362069898], [516, 0.012649443621010996], [519, 0.001199285379470051], [523, 0.0018750229220708752], [532, 0.0021917600414118484], [535, 0.0036158065596686314], [539, 0.004928703344454485], [541, 0.003159840480628099], [544, 0.0024471809734132517], [547, 0.004735330911291137], [551, 0.005214105074552534], [559, 0.0017410806775079155], [562, 0.006728497586886617], [564, 0.006468480724133729], [569, 0.004082180488875684], [572, 0.002138770327232527], [574, 0.0039382396763014095], [577, 0.002350972212319802], [579, 0.003488427333757566], [581, 0.0067224760900410985], [582, 0.004473489977805676], [588, 0.00608957815768408], [589, 0.004306404729811009], [591, 0.011718268751442397], [597, 0.0029652463614051466], [606, 0.0030519734304859237], [608, 0.00656761312070654], [615, 0.0029077989930576366], [618, 0.009632707446875548]], [[40, 0.033648521324387115], [50, 0.022058611517385654], [53, 0.020846532117859317], [62, 0.006910842370224113], [70, 0.009122475978724462], [79, 0.011035636866211684], [83, 0.009271131945638101], [90, 0.018604288530091086], [91, 0.01926270452205978], [95, 0.01085477364156193], [102, 0.00973494249935743], [107, 0.013772763206024096], [111, 0.015809946859597614], [113, 0.02412277004923904], [115, 0.010426759628607103], [117, 0.010899623813933288], [118, 0.028709687257185708], [124, 0.011281283022042631], [134, 0.010797521451644709], [141, 0.0032593933308514133], [144, 0.00989322785949639], [148, 0.004233280931016132], [152, 0.006331976760040479], [156, 0.01002581645083078], [160, 0.0050155688377562], [168, 0.006559385351038319], [173, 0.006208407427501305], [175, 0.008152460332490532], [182, 0.004681774668107681], [186, 0.003924336564566305], [191, 0.0059126147665836725], [192, 0.01100244977471456], [198, 0.004774375980907763], [200, 0.009305447324062457], [212, 0.005099587870851734], [215, 0.010760225394095733], [217, 0.010916001696642997], [220, 0.010598504103879948], [226, 0.01136867897322833], [229, 0.014819961648566533], [233, 0.0057763225984517885], [237, 0.01023537178021747], [238, 0.00911380078905929], [242, 0.0080144123382586], [246, 0.011438216227496972], [249, 0.01883620023261085], [250, 0.006281631724939288], [257, 0.00661419159664657], [260, 0.010507552415638844], [269, 0.0043772582115951175], [270, 0.022739908348808183], [274, 0.012159870241897706], [279, 0.021095864357286824], [280, 0.008923885164850385], [281, 0.009466494013741394], [288, 0.01104890598113278], [292, 0.011790266023556812], [298, 0.010857469836509996], [305, 0.00663394114856083], [313, 0.00892275584641028], [314, 0.016148542475120844], [319, 0.006710898534218691], [328, 0.0065250913618723075], [336, 0.016748926453089553], [343, 0.004562989957423785], [351, 0.004322358314491055], [356, 0.00559708742374426], [360, 0.015406742910428501], [366, 0.00523621482193483], [367, 0.02235080211226992], [372, 0.008457120210400416], [380, 0.007049366548182395], [385, 0.008756161649970303], [389, 0.013842598522190261], [394, 0.016812590276581503], [404, 0.008713831767126205], [407, 0.009088308117743759], [411, 0.017027865279269163], [416, 0.006721385613908886], [418, 0.010158888205768204], [419, 0.016032500176059613], [427, 0.00987868386192923], [434, 0.012432623585960671], [441, 0.006181017169379252], [442, 0.024863670931976473], [445, 0.009217912123569465], [449, 0.014235256960893486], [454, 0.015054601056839244], [458, 0.01130107903901762], [467, 0.00878039977066209], [473, 0.006914655172523494], [480, 0.003980598137021344], [486, 0.004582930449670824], [490, 0.01816172668014044], [497, 0.011887783446665641], [504, 0.007038967908665432], [505, 0.04184510314796626], [511, 0.013453939978113016], [518, 0.015659863487379022], [521, 0.014082080553637865], [527, 0.015393264724401891], [532, 0.009842397535972894], [535, 0.027451542075091533], [541, 0.010967044353229502], [546, 0.013545929349878404], [547, 0.03436838898311191], [555, 0.014509208419130979], [556, 0.046278189935747414], [558, 0.0311137570299062], [559, 0.02430150881534545], [565, 0.022251478222979727], [569, 0.023072801946413504], [575, 0.018996197432740586], [578, 0.025754159695883922], [582, 0.013231502461319284], [586, 0.01367350212001839], [591, 0.016009351089640994], [593, 0.022830850256250586], [597, 0.018201565710218925], [598, 0.03332696492153945], [599, 0.02132757285509858], [600, 0.014711339019629576], [606, 0.010048949819932134], [610, 0.013072402143781109], [612, 0.04083741362422403], [618, 0.01567990891138872], [625, 0.01910361206594988], [629, 0.04791075246481015], [634, 0.016236644471072665], [639, 0.01952869406731113], [644, 0.02731376501663525], [646, 0.01972998391780356]]], [[[40, 0.360812223959027], [50, 0.21230692810802923], [53, 0.18539513015257], [62, 0.09848703803942889], [70, 0.12230935648835455], [79, 0.10163228601161978], [83, 0.1187485816631872], [90, 0.2638427266230431], [91, 0.17442895456709534], [95, 0.08144301805400911], [102, 0.057817264832783676], [107, 0.07512397660080002], [111, 0.08421939224254173], [113, 0.15301878756261986], [115, 0.1558357063094943], [117, 0.1360440136210002], [118, 0.23270048713191208], [124, 0.17620450670020701], [134, 0.14103569890170717], [141, 0.0276325318625915], [144, 0.06769072645135954], [148, 0.05754909388030614], [152, 0.04791388185357717], [156, 0.06765358230752389], [160, 0.031716801921897575], [168, 0.07652325180477546], [173, 0.07501221639373504], [175, 0.04457471031367646], [182, 0.0631912705492474], [186, 0.06362516680297142], [191, 0.10449748230369522], [192, 0.10648411765176707], [198, 0.06379135391353948], [200, 0.05378903459697048], [212, 0.09879692794027589], [215, 0.08852502954041046], [217, 0.08498469323879768], [220, 0.08517229387870073], [226, 0.12378575267256653], [229, 0.12250483979146852], [233, 0.08060481802572066], [237, 0.2128817082904716], [238, 0.07361368658997844], [242, 0.10424102007066625], [246, 0.08883344219274832], [249, 0.2092483572969886], [250, 0.12378032591743422], [257, 0.09479233101182798], [260, 0.06017595841103427], [269, 0.04002577545227328], [270, 0.12272885604459627], [274, 0.06805455945886425], [279, 0.09221994476754483], [280, 0.0648202157426809], [281, 0.06377720153300769], [288, 0.12413793208467312], [292, 0.07013420336205804], [298, 0.13217749085740935], [305, 0.056429885521848834], [313, 0.08490923291039501], [314, 0.11821393096524309], [319, 0.05952452286966678], [328, 0.07701109232976099], [336, 0.1765915069117501], [343, 0.04500598944680368], [351, 0.06047159552147308], [356, 0.0269573289972127], [360, 0.03984455923394722], [366, 0.05257423160412262], [367, 0.12275842956185344], [372, 0.041988239425981996], [380, 0.06152329276798034], [385, 0.03426966460211232], [389, 0.05179797131065802], [394, 0.059976974266838234], [404, 0.07790913793127098], [407, 0.04904555238578462], [411, 0.02908643878236413], [416, 0.022729473426615555], [418, 0.02901293368883832], [419, 0.06923784770587874], [427, 0.0538256019570806], [434, 0.04146521394667109], [441, 0.0456558222029317], [442, 0.06954868343954125], [445, 0.034900887627693736], [449, 0.038476952116703135], [454, 0.03625138042506428], [458, 0.030235345347972974], [467, 0.033992495618613894], [473, 0.024940569590599898], [480, 0.020933958770490105], [486, 0.02107590154308219], [490, 0.03755385354333584], [497, 0.01685786026571169], [504, 0.012331141494648147], [505, 0.12281293019073652], [511, 0.1288208291434594], [518, 0.07420770371532352], [521, 0.0293796093452086], [527, 0.0707423713011178], [532, 0.04393910837089148], [535, 0.07077448107715914], [541, 0.02788909829329975], [546, 0.04497422491586279], [547, 0.08770763760925854], [555, 0.06740932671004427], [556, 0.10334859396577913], [558, 0.11458699451152829], [559, 0.04287268188378857], [565, 0.0891232281380386], [569, 0.06799793037720687], [575, 0.08445424974889068], [578, 0.08427354118551418], [582, 0.04563344462063568], [586, 0.129159221026725], [591, 0.0945784914578683], [593, 0.04079659726579547], [597, 0.04561742633561581], [598, 0.0562026732982023], [599, 0.04442197065929756], [600, 0.06457506466110968], [606, 0.02692592813505432], [610, 0.03994478508256533], [612, 0.18786608118443957], [618, 0.052908198161223635], [625, 0.10918037997132192], [629, 0.08375154345044247], [634, 0.10756098377277125], [639, 0.11925757848470935], [644, 0.2773640089017922], [646, 0.09490692665396486]], [[67, 0.24309689785568908], [73, 0.11533959470957503], [76, 0.09994722514585574], [77, 0.10370461301568099], [81, 0.07464924263694916], [87, 0.05400130574887776], [90, 0.029009984021320937], [96, 0.03971364894601082], [107, 0.059092165759965155], [113, 0.05386303029733196], [118, 0.057633601200403776], [122, 0.07429465180400852], [123, 0.12665379388327042], [128, 0.025838751519248467], [131, 0.03540641665357104], [132, 0.07159552748305825], [141, 0.03662531325670267], [151, 0.06702627464447149], [154, 0.04321866063435629], [158, 0.04208809451907284], [164, 0.10209146656415263], [168, 0.03708437709689146], [177, 0.025995131779312713], [178, 0.10401516829962769], [183, 0.032302341540560046], [185, 0.03671095509456658], [189, 0.10754117244351467], [190, 0.061706118823719666], [193, 0.07129531988818155], [195, 0.05661758042417504], [198, 0.03316519467521174], [206, 0.040482228486791075], [212, 0.043403066742695076], [213, 0.046908280842551456], [219, 0.04916212521021206], [224, 0.05747655212048431], [226, 0.048746004325024864], [231, 0.044273140250444626], [234, 0.048570173061410864], [235, 0.03934205873026751], [242, 0.046884485788202555], [251, 0.039139412313526654], [253, 0.03208892045593226], [254, 0.017721541249789582], [258, 0.020551285226836455], [259, 0.0315457035521264], [260, 0.03328051050346866], [264, 0.022483513016163886], [266, 0.028332784729448113], [267, 0.01201830943329996], [271, 0.01912747535743561], [275, 0.02801759641938423], [279, 0.03366141595781342], [281, 0.057669191377590356], [287, 0.024813212578052853], [297, 0.03378404517743172], [299, 0.04164072811604748], [304, 0.14226233136756902], [307, 0.28378020535781595], [308, 0.11915755753354], [309, 0.05111763532429077], [311, 0.04529780218374784], [317, 0.01718676910778984], [322, 0.03796501641119648], [323, 0.02481984197401124], [327, 0.02752643360997814], [333, 0.018288570236234595], [334, 0.03275545124840828], [338, 0.03481089467302404], [340, 0.03369295438719404], [343, 0.015485203102110686], [345, 0.006371847466681981], [351, 0.024829110630229412], [352, 0.09897641335081372], [357, 0.012752471332114691], [362, 0.009078565478152847], [366, 0.04990539374003627], [370, 0.02526844727646754], [371, 0.04655047519467571], [377, 0.05023727445969088], [378, 0.2507649038522691], [382, 0.1568682576816144], [387, 0.4625029619173708], [389, 0.6804716229309529], [392, 1.0], [401, 0.2540666667815042], [402, 0.1760132451667015], [408, 0.3768251714756593], [411, 0.18051051792424186], [416, 0.11552026554579294], [422, 0.23269150055159696], [423, 0.19733860948146634], [424, 0.05872965064264585], [426, 0.06136517728331382], [429, 0.06336740303993757], [435, 0.12144411782944398], [438, 0.0752471496879876], [442, 0.05451632466783455], [446, 0.11778385492902356], [447, 0.06553995082098474], [451, 0.06642216632422578], [454, 0.06401374854968721], [458, 0.034817099277938926], [460, 0.04357941251590531], [464, 0.049060109673768754], [465, 0.035999705327629555], [467, 0.05908520638901479], [468, 0.029664830094151808], [471, 0.0419549456373335], [475, 0.044521342127979875], [480, 0.10513034793337202], [481, 0.15114713271941888], [482, 0.0197775928934682], [489, 0.011317350617247706], [492, 0.014676079453799852], [493, 0.017535759578599923], [495, 0.025174367010061403], [496, 0.04138616049718606], [500, 0.041819944131520674], [502, 0.053696306426916376], [505, 0.05605038047138428], [507, 0.0745544728038822], [509, 0.15086811383717635], [514, 0.010624589662077499], [515, 0.014892308314558372], [518, 0.024652815942405065], [523, 0.013513469450544532], [526, 0.01247593376355609], [529, 0.033348364126784054], [532, 0.031110195362696373], [536, 0.02693716885951782], [538, 0.023904876297556492], [540, 0.0], [545, 0.009271026740918892], [550, 0.007817464969502471], [551, 0.022159285588619397], [554, 0.0010439304052641144], [557, 0.002044734799445779], [561, 0.009690603640310417], [564, 0.02180541683318075], [566, 0.09172288006044706], [568, 0.07547057802264537], [571, 0.06206800616351341], [578, 0.09642665922518563], [583, 0.03076687985015481], [585, 0.042811810483931026], [586, 0.03587702810644858], [594, 0.023575921597017803], [598, 0.024662464462073312], [603, 0.013045381493627082], [606, 0.009951678437714103], [607, 0.03349183612991444], [610, 0.03595444236331684], [616, 0.03200829413407825], [621, 0.022868227921463428], [623, 0.0264650191239026], [627, 0.04838099120454341], [633, 0.0514847952191505], [637, 0.03555452018225443], [642, 0.03207843407716934], [647, 0.016937159437769956], [652, 0.053373725496591806], [655, 0.10854428559360488], [656, 0.1308436854796957], [657, 0.025734749330014562], [662, 0.011171435122387852], [666, 0.020737332601968674], [670, 0.04976798640050313], [682, 0.029941766215138037], [687, 0.02486461260974002], [693, 0.03681449440066591], [697, 0.047782385910185174], [703, 0.015178433405348538], [704, 0.026640077321122887], [708, 0.011163362317258329], [715, 0.01556153685598333], [718, 0.03035953749598486], [721, 0.052207603425129076], [725, 0.042216267685204395], [731, 0.03473413767208174], [732, 0.10057701609433606], [734, 0.08690793559499019], [735, 0.04091140979895053], [739, 0.05714022864457586], [740, 0.03358320360010079], [749, 0.0397525199166494], [750, 0.09079011868395702], [751, 0.03244719168179187], [755, 0.014844523497985988], [760, 0.03687731576374023], [766, 0.0450775142305037], [771, 0.04464907928346743]], [[37, 0.19285801680474093], [45, 0.18607652667220168], [46, 0.07851442232002474], [57, 0.05367634142043569], [58, 0.17840149481310635], [60, 0.17341474675135127], [63, 0.07272621775907837], [69, 0.07379471065758131], [72, 0.08588022033186647], [76, 0.029721429718251396], [80, 0.07176786092043194], [81, 0.09648118572677788], [83, 0.10550697363951465], [88, 0.04853385937536354], [91, 0.08279684959930547], [96, 0.08294177894768325], [97, 0.0673713752969553], [100, 0.1421677721415075], [101, 0.07759714872751752], [111, 0.21937290793804853], [113, 0.09113609540291419], [116, 0.05986859372359196], [122, 0.03520748299212026], [125, 0.04594413583249371], [129, 0.027668404280320646], [133, 0.03754467132415956], [134, 0.058165747461773526], [139, 0.07670372129190367], [140, 0.04186685123961016], [143, 0.08021840218392266], [148, 0.06421226019270797], [157, 0.060649459692079265], [160, 0.041635157704183946], [169, 0.05174605809364993], [170, 0.14178985706735747], [171, 0.015164406457147348], [173, 0.038231039025352694], [179, 0.028066660545193703], [181, 0.027391799806636884], [182, 0.018595532472398982], [185, 0.02216663641986281], [186, 0.02068096612159988], [187, 0.005393824791844359], [188, 0.00875855545215751], [189, 0.01337076196116697], [192, 0.014838780890174081], [196, 0.009161791313430513], [197, 0.01776778864715599], [204, 0.02007495196367439], [209, 0.021792270679062375], [210, 0.037577469335867815], [211, 0.0081408998381113], [212, 0.030730052968171162], [214, 0.00811044632486004], [221, 0.016539583344033635], [224, 0.07026351853147252], [233, 0.025413839349487884], [241, 0.038853832566361934], [247, 0.032096448799350905], [256, 0.035031679752768094], [260, 0.04906364949382077], [267, 0.09192896257958293], [270, 0.09436690906075997], [275, 0.08948912041974928], [276, 0.13124063490277502], [277, 0.10323308175297002], [278, 0.12231238911230817], [279, 0.20952512524908276], [280, 0.18066128490198666], [281, 0.3051163238711034], [282, 0.05514564029245754], [283, 0.08875811227623358], [284, 0.10015466491816777], [285, 0.2315017534670793], [287, 0.058196745637263764], [292, 0.12040761518588619], [295, 0.12254183423579562], [299, 0.05341982007091201], [303, 0.12962971398715536], [305, 0.12570043179428458], [310, 0.07452138895885854], [313, 0.11891624354091761], [317, 0.03359465389864694], [321, 0.051520506329505875], [324, 0.16672325415768616], [328, 0.10038351236709948], [335, 0.08545672988146975], [342, 0.10452318915872894], [348, 0.1434562458957633], [351, 0.17077514834714605], [357, 0.3180786600604748], [359, 0.282226402796784], [363, 0.35933926069598565], [364, 0.3241356613472779], [367, 0.5239354249218435], [369, 0.5827513977189293], [370, 0.2371058398460209], [379, 0.10224432582088558], [382, 0.08540628158149266], [390, 0.12315100258275118], [391, 0.084079833610313], [392, 0.08738770764095902], [393, 0.11877433743596308], [394, 0.40382143112046426], [395, 0.17580802754926234], [396, 0.4236887103145839], [397, 0.019955794987278737], [398, 0.019666610518754735], [399, 0.03178541744549005], [400, 0.13114497238134942], [404, 0.023499185644875152], [410, 0.05895769845895737], [411, 0.05082139330393582], [412, 0.023818773133931756], [418, 0.06908636005718408], [421, 0.04078644805682695], [423, 0.048398070681788946], [430, 0.04681020887309958], [443, 0.08059790628539105], [446, 0.061544230645724236], [450, 0.050322139444007666], [456, 0.05224396574798363], [459, 0.07191099359475016], [463, 0.05999009690072384], [466, 0.1385579164046516], [467, 0.12054109073179115], [468, 0.04384572467047435], [469, 0.036432984307792064], [475, 0.03410046211055167], [481, 0.04572734385022792], [485, 0.08093944940094602], [486, 0.0746843140245537], [488, 0.0561347564713126], [491, 0.05635637359576566], [497, 0.1471382836678781], [500, 0.10441056066096613], [504, 0.07068611489239679], [508, 0.17768362017081257], [510, 0.11617396098831752], [516, 0.05639153590000034], [527, 0.15504131600676757], [531, 0.07668053647928497], [540, 0.09584489642288743], [543, 0.05083801285984885], [545, 0.06540978847414834], [548, 0.053999507376726916], [550, 0.08578263438800197], [555, 0.14168021608453374], [558, 0.09290345611086276], [562, 0.04738813270416324], [566, 0.13862540871441553], [568, 0.08022801915889327], [572, 0.0261852288607416], [577, 0.07085620803373312], [581, 0.041781300272555486], [589, 0.044579457320888465], [594, 0.021277036770547278], [603, 0.04072915009141292], [606, 0.03346771332020066], [609, 0.02723329768075319], [612, 0.03840078792815574], [616, 0.04139552197643989], [618, 0.027915726404153535], [626, 0.0539431446126078], [629, 0.03412686468041611], [633, 0.04471097744301165]], [[40, 0.16747713321089272], [49, 0.14238643898660178], [53, 0.09783714233884841], [61, 0.09974860362011449], [65, 0.05426471851575773], [69, 0.06977898574180294], [75, 0.04542102502182252], [80, 0.0785370378420714], [81, 0.0813610481104633], [83, 0.076780324581133], [84, 0.022421490108124106], [87, 0.05454966945176864], [92, 0.0979718628598455], [93, 0.06481935247742851], [94, 0.04074653341411119], [96, 0.09945358472536545], [100, 0.07743724398882405], [105, 0.07749957384835225], [110, 0.22973559448347125], [118, 0.1532718891133882], [122, 0.04487207145093013], [127, 0.0287576004696084], [130, 0.03915666428842719], [134, 0.03689643700560641], [142, 0.051354464862488854], [144, 0.04040061095206336], [145, 0.03595822891208376], [147, 0.04762610300926328], [151, 0.038380912772203665], [154, 0.053960122286880664], [155, 0.03678034580309092], [158, 0.04960126181604117], [160, 0.045157883332571015], [163, 0.03236891709361344], [169, 0.023155516762392244], [173, 0.045856083212250306], [174, 0.04471619271241155], [177, 0.0839263220823101], [186, 0.04039066039425959], [187, 0.046448190727020576], [188, 0.09858424050275658], [189, 0.024060033253874635], [190, 0.04961356411412715], [191, 0.0312588706747464], [192, 0.17325430401507066], [198, 0.23445362388909224], [204, 0.23514633984946798], [211, 0.22465265984758107], [215, 0.15113559210879055], [221, 0.09755011427465772], [224, 0.1032099388957251], [228, 0.06697277107614594], [232, 0.1333374388743715], [234, 0.22583368345657223], [237, 0.08990497562904037], [243, 0.07632180373253368], [246, 0.10027947590166862], [250, 0.04622308957385826], [254, 0.10348472165490044], [256, 0.23349032388613644], [267, 0.272593989664124], [269, 0.17114479140087002], [272, 0.06505994730961623], [274, 0.0954357515033106], [279, 0.12499640527571926], [282, 0.08140859900701058], [286, 0.06716595640785471], [290, 0.1389840033753127], [292, 0.1191289512100222], [295, 0.16595047081724937], [297, 0.1475879859762511], [302, 0.2818767082424392], [305, 0.4076556431269098], [309, 0.28891051088484315], [318, 0.38036673936062226], [324, 0.4898073469726118], [327, 0.745006345496517], [328, 0.4896391862587267], [334, 0.18793761683628962], [336, 0.17498877483000044], [340, 0.1523818642204375], [341, 0.1583354389024977], [344, 0.25420771793715063], [346, 0.30109563883078116], [347, 0.17257593577237745], [351, 0.035698836875166826], [356, 0.0705328143964783], [360, 0.07207313175871714], [368, 0.1454321905080162], [371, 0.08605954808167168], [376, 0.11004134601944092], [382, 0.13411012287850602], [387, 0.12049725302825134], [389, 0.04421246962080135], [396, 0.02978582828896721], [399, 0.050010459838867406], [407, 0.019285520856296576], [414, 0.04251657218273124], [417, 0.0867155008641148], [418, 0.05925967788225831], [419, 0.10531130126925808], [420, 0.033044601750280345], [421, 0.0344141866010172], [422, 0.04641821513371984], [426, 0.05814462982614042], [427, 0.04216136600809813], [428, 0.06351045042859697], [429, 0.00681666443440626], [430, 0.010144471290323573], [431, 0.016974721282619683], [432, 0.1007048521463929], [434, 0.03948210034225414], [441, 0.053337309004677466], [445, 0.05437841369870983], [450, 0.0655110790061609], [454, 0.05093977857243318], [457, 0.08560276215509086], [461, 0.06862444823712191], [464, 0.07928815304263324], [465, 0.09461523749977777], [473, 0.03542666776152177], [475, 0.028595653487884485], [482, 0.01563951055567368], [487, 0.025135396806803607], [492, 0.012325844315720692], [501, 0.015140708108970318], [509, 0.01721484939639924], [510, 0.05493078540232896], [514, 0.015247091824061677], [518, 0.04832844519164126], [523, 0.020120074491582575], [527, 0.025852193630492425], [536, 0.02644866903624227], [539, 0.04975944744521054], [545, 0.021685312037802978], [546, 0.04203730477717631], [547, 0.03639585472030965], [548, 0.02909898203001847], [549, 0.01894716970135894], [550, 0.03779321958765999], [553, 0.024431463005276658], [562, 0.032117135986408266], [570, 0.054878855535560815], [573, 0.07283868138916039], [577, 0.08139196044468062], [582, 0.004512364713066288], [587, 0.005995030206309244], [591, 0.02008254391455284], [601, 0.03335509448626962]], [[55, 0.1739710497104678], [58, 0.06929333966398692], [59, 0.10467649390246604], [67, 0.04730099998058756], [68, 0.07173574256577106], [72, 0.033810759108588884], [75, 0.042231325621889734], [79, 0.05027412408360862], [84, 0.029183952123483518], [97, 0.05231132160261946], [102, 0.03676983131190308], [111, 0.028673387057714186], [114, 0.04179921146743318], [116, 0.032761522904790535], [123, 0.03756170266345464], [126, 0.05184909217881764], [131, 0.03346575944616327], [134, 0.05018377756691626], [138, 0.04950163493593823], [148, 0.027199049029485157], [152, 0.025845015494128806], [156, 0.03897710482232702], [162, 0.04161655466776149], [163, 0.0840425838853169], [167, 0.08075196080396818], [173, 0.07239444660327901], [180, 0.12398271614411238], [186, 0.13295000252938313], [188, 0.1329771966259771], [192, 0.128687447230847], [193, 0.1287579152526995], [196, 0.16105884385299105], [198, 0.21636958769603867], [200, 0.07356626276189253], [203, 0.02630382097845879], [209, 0.04546508879675603], [212, 0.03956304850917176], [216, 0.02343856544882303], [220, 0.04989558331284324], [221, 0.041857354419016966], [224, 0.04874138381670783], [228, 0.03776935239303776], [230, 0.01423908247450969], [231, 0.0300308126428404], [235, 0.027106786101685997], [236, 0.04315115023930429], [242, 0.009637284982958171], [247, 0.022039282561396967], [253, 0.026672744799799215], [254, 0.09485512918859935], [255, 0.011934102554787152], [261, 0.016995337944087193], [268, 0.012324960708309634], [270, 0.016865355758327507], [271, 0.004800602757380355], [276, 0.006012994080906379], [280, 0.012556640526839304], [286, 0.01775337676035651], [289, 0.011596864492999502], [294, 0.0432635502336337], [295, 0.00878936493617247], [298, 0.008486517849643327], [302, 0.027258526053720162], [304, 0.016062523273826637], [305, 0.03378853657473297], [309, 0.021087561414561355], [310, 0.10171292431072444], [314, 0.024749091357183353], [321, 0.05145360161212049], [330, 0.04963820211526406], [333, 0.052716494152920554], [338, 0.030843860271140798], [344, 0.025258012533258805], [345, 0.06746869594957158], [352, 0.027454264326035864], [358, 0.028873064265928415], [368, 0.04177411715117007], [369, 0.09114338571292478], [374, 0.036755540090468615], [380, 0.02223366824919018], [383, 0.05282116602046137], [387, 0.02510620746040173], [391, 0.023817191001116345], [392, 0.0607679625285879], [397, 0.02188412963607297], [400, 0.03192744833446293], [402, 0.056700138212405576], [404, 0.104594100072224], [405, 0.10794787901203909], [410, 0.05399945549215868], [416, 0.024104460277009417], [419, 0.04137414221028373], [423, 0.015974723164266492], [427, 0.012793952562817167], [428, 0.04373372930667859], [433, 0.016353170883093193], [436, 0.020573091964161527], [438, 0.010607086206941802], [440, 0.029699679922483877], [441, 0.03894764733878953], [444, 0.05646919450868868], [446, 0.05481952525312318], [451, 0.03331555901396814], [457, 0.05420999803746598], [460, 0.05650499734393041], [465, 0.06320421638763561], [471, 0.03261179976536371], [472, 0.09460327153619129], [481, 0.03495333053492958], [484, 0.08583485748667828], [490, 0.04382499031683567], [491, 0.062046091686476665], [492, 0.15204180936317746], [493, 0.008558306911425222], [494, 0.01850919650342623], [495, 0.01211365011048684], [498, 0.04845637725879003], [507, 0.01347269340265335], [515, 0.012543364909000525], [516, 0.07217839154226446], [519, 0.014114689116106355], [523, 0.02207843198609657], [532, 0.009151866283615263], [535, 0.03460995655163009], [539, 0.033587694557930314], [541, 0.024768045219280558], [544, 0.013813907045223395], [547, 0.04240908905693117], [551, 0.04414935945332297], [559, 0.004587320174246008], [562, 0.04126447964634491], [564, 0.04105982274552398], [569, 0.018532589146342295], [572, 0.009015435270954011], [574, 0.019318453603795905], [577, 0.005835076244669565], [579, 0.013293093759819333], [581, 0.025826888616418128], [582, 0.03561416826234572], [588, 0.023184520491638952], [589, 0.022714886094785357], [591, 0.0695796589858282], [597, 0.01673237457553962], [606, 0.018367544881664137], [608, 0.0454314186814344], [615, 0.014839926131319268], [618, 0.05567923147198325]], [[40, 0.16501252288948193], [50, 0.07652262424010291], [53, 0.09619166437228344], [62, 0.02382007361406429], [70, 0.029158797986742313], [79, 0.03698875734124583], [83, 0.028429363019119972], [90, 0.06233941029221461], [91, 0.07164790942933946], [95, 0.03139024840835806], [102, 0.02793563718667593], [107, 0.03691199117895659], [111, 0.03610830731605136], [113, 0.0536870929831133], [115, 0.03922091078288894], [117, 0.036826204229610755], [118, 0.11144665958138707], [124, 0.04392941295559225], [134, 0.045894749797435505], [141, 0.007438373065405676], [144, 0.05997080679980014], [148, 0.027975130050864556], [152, 0.029481864669833928], [156, 0.04202046349186816], [160, 0.01667897596580577], [168, 0.03257830026005143], [173, 0.03037411255586378], [175, 0.034257177747571685], [182, 0.033711761951444666], [186, 0.024080804317496787], [191, 0.039482343362206886], [192, 0.07457307958075625], [198, 0.033785125769202576], [200, 0.04635994984455387], [212, 0.09475307070807912], [215, 0.09298189828269757], [217, 0.06352663807273304], [220, 0.04838365372857171], [226, 0.04956300728924566], [229, 0.0691608506113115], [233, 0.02459218123329741], [237, 0.06276614994492144], [238, 0.042435973318715486], [242, 0.044230686593501], [246, 0.03910020111670107], [249, 0.10301417271853726], [250, 0.035351226449009274], [257, 0.039307053469967226], [260, 0.07100808212860371], [269, 0.014031827884427363], [270, 0.06610773862213305], [274, 0.03797515262166327], [279, 0.08116392149535136], [280, 0.047973251566288705], [281, 0.06206290838575658], [288, 0.05475456522065798], [292, 0.05576456830992823], [298, 0.03416913577969149], [305, 0.02202217746657025], [313, 0.03834303060945271], [314, 0.0723199572073354], [319, 0.037272372761134605], [328, 0.029879379649700055], [336, 0.07035156930723359], [343, 0.01340891531872641], [351, 0.014484380570265649], [356, 0.025537162890459937], [360, 0.04603794680421124], [366, 0.023111021741522124], [367, 0.08661858234191805], [372, 0.0383687693482163], [380, 0.02348427057428997], [385, 0.059864268592681534], [389, 0.05845048805806022], [394, 0.06936185241420431], [404, 0.05286661127797547], [407, 0.05278464881990898], [411, 0.046836156046436005], [416, 0.03508029353563103], [418, 0.05898468178495521], [419, 0.11634887901719834], [427, 0.0317799217119368], [434, 0.041171990048434325], [441, 0.02408762232684901], [442, 0.11062295278814925], [445, 0.06062003014859705], [449, 0.05939764883625804], [454, 0.0670709493916496], [458, 0.03787455708270492], [467, 0.04768040611058697], [473, 0.032859350794959004], [480, 0.025259332211131885], [486, 0.021716710979577405], [490, 0.06953324145702275], [497, 0.04298301158582501], [504, 0.03593767380389845], [505, 0.18478665978484807], [511, 0.056493355856885426], [518, 0.06110816023824213], [521, 0.041663544280311424], [527, 0.09700888403505664], [532, 0.05344572169776655], [535, 0.10044453061569228], [541, 0.03731492609862717], [546, 0.05836604393575889], [547, 0.16840802982590192], [555, 0.07224547588601107], [556, 0.19709390526197473], [558, 0.1757735074702292], [559, 0.07027543463682345], [565, 0.13295113190603192], [569, 0.13291739059913452], [575, 0.0703254229986715], [578, 0.15227215734071306], [582, 0.05336172412454347], [586, 0.05841639789895276], [591, 0.08562537328915377], [593, 0.13588288015741146], [597, 0.13351208100793277], [598, 0.22302962680307906], [599, 0.11880963180343784], [600, 0.09424090136187356], [606, 0.06160869437607786], [610, 0.055199708501771125], [612, 0.3108672063266497], [618, 0.10282175777252678], [625, 0.10147598237602311], [629, 0.39183992673920165], [634, 0.08363401368848726], [639, 0.1034259739363576], [644, 0.1284509566583799], [646, 0.1014226006519397]]], [[[40, 0.4644254329729697], [50, 0.4066114164824197], [53, 0.32521553369112177], [62, 0.22479991331836974], [70, 0.23234673864240182], [79, 0.18036273328337513], [83, 0.17714233096483778], [90, 0.3809326619030912], [91, 0.2378480813519428], [95, 0.15706997563310227], [102, 0.123756006087067], [107, 0.1579822057819905], [111, 0.15425729240809313], [113, 0.20391424104080766], [115, 0.1800331970808897], [117, 0.19731771801345138], [118, 0.542764304117603], [124, 0.4279077142294807], [134, 0.38683012575086473], [141, 0.07521321874888676], [144, 0.09227292943396623], [148, 0.06280408152295065], [152, 0.05456594505954222], [156, 0.08269350734719966], [160, 0.05150367163268408], [168, 0.11323741822008129], [173, 0.08263772145771353], [175, 0.10485193124981415], [182, 0.06533502534461431], [186, 0.05231880678527906], [191, 0.09303383519226323], [192, 0.12710798045902938], [198, 0.09785668374271596], [200, 0.16345321749680347], [212, 0.09644658174803122], [215, 0.18407993305280032], [217, 0.17327092797743798], [220, 0.13748076742719764], [226, 0.14918777380605586], [229, 0.22519363772949846], [233, 0.08736994892991214], [237, 0.23012814070468562], [238, 0.14419938579391317], [242, 0.12853444631463004], [246, 0.18712753685686767], [249, 0.17945314779887733], [250, 0.10330166204243539], [257, 0.12979697052661002], [260, 0.11112729284525479], [269, 0.06797170064472131], [270, 0.2813694499216871], [274, 0.1648090350000154], [279, 0.13243589103659015], [280, 0.1132526388146201], [281, 0.09144362053315366], [288, 0.15526707210496674], [292, 0.11377352750518976], [298, 0.1942492186058407], [305, 0.10375823855571847], [313, 0.13676918741464134], [314, 0.1413583137495878], [319, 0.1098944660104926], [328, 0.10106083239468695], [336, 0.25112520569540187], [343, 0.0737176334874981], [351, 0.1060535179864641], [356, 0.07770591135694475], [360, 0.07944863499590378], [366, 0.09356268542459166], [367, 0.17123078978890258], [372, 0.07974436908164872], [380, 0.11963524706081108], [385, 0.060613514272914525], [389, 0.11477840355350606], [394, 0.08595715406080899], [404, 0.16315291034555002], [407, 0.10462377384896276], [411, 0.09450279474392925], [416, 0.07737116158429377], [418, 0.07468465777672603], [419, 0.15802434134641966], [427, 0.12619351887456168], [434, 0.09554100458300022], [441, 0.12244337099460542], [442, 0.13650452813548422], [445, 0.07895651391772714], [449, 0.10245888188238396], [454, 0.05312317044020043], [458, 0.07096715497283941], [467, 0.055185836486082634], [473, 0.053505090281628004], [480, 0.047553459023878135], [486, 0.05279915084234196], [490, 0.11571393980733517], [497, 0.03815800640377245], [504, 0.03821490801104829], [505, 0.4094112069685254], [511, 0.2896640265535324], [518, 0.23093974963809336], [521, 0.10004008836002794], [527, 0.20005829281093956], [532, 0.1613810816240023], [535, 0.20631073398166294], [541, 0.1444284522981488], [546, 0.1961490242901577], [547, 0.15275163813800957], [555, 0.19967768152741353], [556, 0.2270560875293003], [558, 0.30135575724067704], [559, 0.12440195159014149], [565, 0.2846770710679346], [569, 0.28116900639976067], [575, 0.1866950791318538], [578, 0.20027901209319282], [582, 0.12274910521757676], [586, 0.2519041420041525], [591, 0.34172385939937916], [593, 0.10549159567496132], [597, 0.20931512782639253], [598, 0.21921603504097673], [599, 0.3182622977798094], [600, 0.44447177073004945], [606, 0.11792847432840978], [610, 0.17134880793732654], [612, 0.41615088623030866], [618, 0.11116244484277789], [625, 0.14706194573641101], [629, 0.07673571898016576], [634, 0.1531055410660508], [639, 0.16786898057123822], [644, 0.17958162063621982], [646, 0.17277211947966986]], [[67, 0.37083447925413165], [73, 0.1732961073863221], [76, 0.1630632534678549], [77, 0.18055865883696787], [81, 0.1233880258308641], [87, 0.09624488476537807], [90, 0.04971069248315959], [96, 0.06703898812110076], [107, 0.09872519428339951], [113, 0.0587191838703434], [118, 0.07025805433314916], [122, 0.08965030391343352], [123, 0.23766736261859517], [128, 0.044991784752969145], [131, 0.04543292028301421], [132, 0.09750885527819657], [141, 0.06216990615384305], [151, 0.09739001067215058], [154, 0.09085144987268506], [158, 0.08764897479739865], [164, 0.15900938241180754], [168, 0.05438067392212665], [177, 0.03767163609321567], [178, 0.24500958458400332], [183, 0.03979649996230148], [185, 0.06439141046753], [189, 0.11183362485191127], [190, 0.06771783352467836], [193, 0.1320050173553518], [195, 0.1548920669589767], [198, 0.1393436855529853], [206, 0.05172835791152299], [212, 0.05872971431787726], [213, 0.0707520142795348], [219, 0.11016073688201265], [224, 0.07961461523499212], [226, 0.10396815879171069], [231, 0.057262800248825727], [234, 0.06372630492191844], [235, 0.08227512695034744], [242, 0.06417290195941566], [251, 0.06349742437064779], [253, 0.08894779427327885], [254, 0.03644616473128944], [258, 0.01726738571119855], [259, 0.03158759943727189], [260, 0.03282917294853375], [264, 0.04078433720931053], [266, 0.06784756670989442], [267, 0.03302695803177602], [271, 0.0228697008807094], [275, 0.03482411079229169], [279, 0.03618975625405879], [281, 0.1002673504317888], [287, 0.04031190648397844], [297, 0.06228317905808728], [299, 0.048863945326522475], [304, 0.10682147618313564], [307, 0.202035606445908], [308, 0.2326886992578049], [309, 0.06565969922142355], [311, 0.06639280156788653], [317, 0.033297884614566765], [322, 0.04178719532359974], [323, 0.051816892184281524], [327, 0.03193444648336514], [333, 0.019434994657209742], [334, 0.062171290470359936], [338, 0.06429587196642489], [340, 0.06477687030243855], [343, 0.020263824901316226], [345, 0.005204121000076395], [351, 0.03315632619820902], [352, 0.17192659823517206], [357, 0.011906316965127776], [362, 0.004739665590796761], [366, 0.0988839567925889], [370, 0.017442112626786563], [371, 0.09549561828525781], [377, 0.06247757566507929], [378, 0.25327451893580566], [382, 0.1647197500282502], [387, 0.4744596202533978], [389, 0.633678554438841], [392, 0.8276353206844109], [401, 0.2493662008412891], [402, 0.1788242824199912], [408, 0.5255752528146779], [411, 0.3060046089131078], [416, 0.3910324699187074], [422, 0.6012449413260715], [423, 0.3877142425663107], [424, 0.13630143994916735], [426, 0.07525551271769346], [429, 0.11655344168548594], [435, 0.13814773250245876], [438, 0.09792682244623777], [442, 0.0417804596939803], [446, 0.12061286378189452], [447, 0.08861792060059777], [451, 0.09274447860450151], [454, 0.05751150889587793], [458, 0.051572770377031514], [460, 0.027769351449261452], [464, 0.0582565742164196], [465, 0.049881459289308774], [467, 0.05670339174592324], [468, 0.03736165250063779], [471, 0.05227748390417823], [475, 0.07998622501758504], [480, 0.18040196247183352], [481, 0.28537663989638423], [482, 0.032992708250490284], [489, 0.010697829307333987], [492, 0.007166823553002268], [493, 0.01681299586704039], [495, 0.02248578721026871], [496, 0.030325726060669255], [500, 0.06065161396928949], [502, 0.08524801209823764], [505, 0.08052372550635724], [507, 0.11164698317227252], [509, 0.21383439094369117], [514, 0.016719681914367866], [515, 0.0284745918431422], [518, 0.03635592244611208], [523, 0.017705645857433686], [526, 0.01814350654915151], [529, 0.04992834009791767], [532, 0.06391044656725059], [536, 0.05524430836284031], [538, 0.027898041231729714], [540, 0.005641248210654681], [545, 0.019596298523586835], [550, 0.027105182555621502], [551, 0.027380014150676275], [554, 0.002418407842132407], [557, 0.004357177559754048], [561, 0.015365207404791694], [564, 0.03146920249577116], [566, 0.17733441349048815], [568, 0.15663492834087273], [571, 0.05963015367135806], [578, 0.10404537748219445], [583, 0.05904203265323734], [585, 0.05027247016457853], [586, 0.042141786966325964], [594, 0.040548025426588585], [598, 0.04270223542840283], [603, 0.027926171783039102], [606, 0.016917174293869013], [607, 0.04522007989675754], [610, 0.05052305900272082], [616, 0.12022458021677743], [621, 0.04722211150177112], [623, 0.04703288025491672], [627, 0.061245403109267876], [633, 0.06893957894015866], [637, 0.043038362630423835], [642, 0.031734264673019014], [647, 0.040855922213670876], [652, 0.0828227033349614], [655, 0.13974848449624902], [656, 0.32399177034161436], [657, 0.052019443173144095], [662, 0.019069404240963844], [666, 0.03945844435916244], [670, 0.06452621259282776], [682, 0.06894511620622618], [687, 0.057613535089315875], [693, 0.047285790061547504], [697, 0.07053646035741916], [703, 0.020664464007882476], [704, 0.025672401186359255], [708, 0.0264048251488575], [715, 0.026161491919921835], [718, 0.048055056816120566], [721, 0.04859365236124194], [725, 0.04856748809035826], [731, 0.018545702150905893], [732, 0.17664288884955945], [734, 0.06603641237983242], [735, 0.03389730055352171], [739, 0.05812657243247639], [740, 0.04360126291677935], [749, 0.057477569036200445], [750, 0.09262728691369955], [751, 0.054022473414450954], [755, 0.03430329097319052], [760, 0.07217471286580844], [766, 0.07563685403878562], [771, 0.08450393163969554]], [[37, 0.37106919321878434], [45, 0.2994158959102796], [46, 0.13933577910840134], [57, 0.0738689785395299], [58, 0.43280987516305963], [60, 0.24207083902304927], [63, 0.08755819531476697], [69, 0.1139599487961293], [72, 0.1086603857150037], [76, 0.04584419314431708], [80, 0.09188523816347824], [81, 0.1513202824081453], [83, 0.14897570478024638], [88, 0.06235625168616725], [91, 0.09371991898718032], [96, 0.14401007190129658], [97, 0.11226701922889679], [100, 0.2225249234222446], [101, 0.14717088662528652], [111, 0.3214847386938144], [113, 0.15695005663214764], [116, 0.07868291512195855], [122, 0.10365599197358132], [125, 0.1045851782780146], [129, 0.049968746988487425], [133, 0.13298267539931635], [134, 0.18122525200629905], [139, 0.1304175437806886], [140, 0.0769272229854807], [143, 0.1334332325462524], [148, 0.111685289483053], [157, 0.08380644961674147], [160, 0.06012312875574412], [169, 0.0823321249776792], [170, 0.24182838390533698], [171, 0.024430176839720062], [173, 0.033272360848340156], [179, 0.02926970605984383], [181, 0.030628195776033634], [182, 0.03657927261846207], [185, 0.04261456893614742], [186, 0.03381722369709515], [187, 0.01490404749527985], [188, 0.028665992541254397], [189, 0.03811274407467334], [192, 0.024507502280979993], [196, 0.020483948445366926], [197, 0.04615998948883648], [204, 0.049300989891338555], [209, 0.06841502628746472], [210, 0.07768633808559666], [211, 0.018111935867990474], [212, 0.08528688315505982], [214, 0.021374057078572515], [221, 0.03733461356210415], [224, 0.12309545983267023], [233, 0.04617214530302697], [241, 0.0822102706884597], [247, 0.07261483598526654], [256, 0.07260798327415065], [260, 0.06925539594611861], [267, 0.1282839470093968], [270, 0.1872127997348724], [275, 0.19374404638438306], [276, 0.2543656909341542], [277, 0.1824214805426996], [278, 0.2703873983945682], [279, 0.4179098910844214], [280, 0.431632999509308], [281, 0.737639925947331], [282, 0.08544841429728298], [283, 0.11259497138760668], [284, 0.11004667195588066], [285, 0.6348867252878797], [287, 0.1305673943218539], [292, 0.2078621326811251], [295, 0.20556639869868737], [299, 0.0653816306673492], [303, 0.13782187403639132], [305, 0.1739530447757694], [310, 0.1494486451544454], [313, 0.17962850833197555], [317, 0.06312286000205616], [321, 0.08078916303310843], [324, 0.330052376923974], [328, 0.14983942186672225], [335, 0.11598704272853055], [342, 0.13629688065795256], [348, 0.22182970727060425], [351, 0.22976606962048016], [357, 0.30036913213151356], [359, 0.2859178594444555], [363, 0.3144019142273698], [364, 0.3394467758106116], [367, 0.3770621129219008], [369, 0.5105103077946851], [370, 0.5387791805614137], [379, 0.21800502668743577], [382, 0.19715731636331166], [390, 0.2789999683707781], [391, 0.17600542831140434], [392, 0.19465746112252952], [393, 0.25952168455204183], [394, 0.8212939664478522], [395, 0.3848687489737075], [396, 1.0], [397, 0.02147652060583545], [398, 0.025448073039156548], [399, 0.029045395130508248], [400, 0.2221311714625285], [404, 0.05929487358839962], [410, 0.062338000747014385], [411, 0.14540612411640705], [412, 0.028493293890413753], [418, 0.061481274114591415], [421, 0.05143247230854735], [423, 0.05676384712097375], [430, 0.058071551016290635], [443, 0.09702718200179158], [446, 0.06232533528395698], [450, 0.07186986019763392], [456, 0.06785032845578132], [459, 0.1740225911846621], [463, 0.1692128144389309], [466, 0.0957638451064833], [467, 0.12145786160323171], [468, 0.19957053129671906], [469, 0.05235187197730658], [475, 0.05173062378283669], [481, 0.04365952817913152], [485, 0.08037782130033706], [486, 0.1277569700810116], [488, 0.10583312928725967], [491, 0.14015422009148437], [497, 0.13005387487841388], [500, 0.12913729205271635], [504, 0.04660491294964912], [508, 0.12360954402215196], [510, 0.15592155767013538], [516, 0.05730959841167242], [527, 0.1331353221221028], [531, 0.06957252839712694], [540, 0.051566144941761684], [543, 0.041970930627267734], [545, 0.06210099336246057], [548, 0.08029059558548006], [550, 0.08916355480979998], [555, 0.12064370442548945], [558, 0.10020564159601157], [562, 0.03658655233268267], [566, 0.1210992340924513], [568, 0.12883048343483638], [572, 0.04682716806564994], [577, 0.08155998628286962], [581, 0.05110606287073188], [589, 0.057124265289935194], [594, 0.024208589776963708], [603, 0.03412100885750791], [606, 0.04401954689357566], [609, 0.048681814728070566], [612, 0.028244933044277484], [616, 0.06447435926419307], [618, 0.02293761159222519], [626, 0.060212083144460506], [629, 0.07923221329328503], [633, 0.14101963141608537]], [[40, 0.3680516586978647], [49, 0.1991534043605936], [53, 0.11138630466399478], [61, 0.08898691326738764], [65, 0.0798820018243019], [69, 0.0522012018656661], [75, 0.056559271310937236], [80, 0.11590881851460669], [81, 0.21757865720023742], [83, 0.14230349200900708], [84, 0.02053878735216115], [87, 0.059317160395606666], [92, 0.10695702900744006], [93, 0.052123514849196535], [94, 0.06957506286716779], [96, 0.21563615120544957], [100, 0.108391525276268], [105, 0.10789224845251406], [110, 0.28309286200087835], [118, 0.22820075888438068], [122, 0.07519341131454577], [127, 0.043239846111524635], [130, 0.04338718284408965], [134, 0.07570069100293955], [142, 0.09336417030378327], [144, 0.04652008396189596], [145, 0.031747763480845285], [147, 0.06950086763415125], [151, 0.049943188786526566], [154, 0.060776161132927393], [155, 0.06118410750230164], [158, 0.052266312951987304], [160, 0.07409155735143266], [163, 0.09281190377216436], [169, 0.040822078774049295], [173, 0.06487012915793627], [174, 0.0698614924175182], [177, 0.045748826821883214], [186, 0.06083348974330795], [187, 0.12268373241967524], [188, 0.19416300530157068], [189, 0.03654766750156678], [190, 0.04594267934427406], [191, 0.06191163125981601], [192, 0.5936477020870965], [198, 0.3876842697032189], [204, 0.44495486275870555], [211, 0.33525925278279045], [215, 0.20139459213997823], [221, 0.10412036473709875], [224, 0.11512059833190204], [228, 0.07562863078544656], [232, 0.12820597073275955], [234, 0.24540408035557926], [237, 0.11896359872569189], [243, 0.07501819541153139], [246, 0.056602081815757696], [250, 0.0364340295785395], [254, 0.0974006306525935], [256, 0.22997312480338272], [267, 0.27169342182605366], [269, 0.17417994871589404], [272, 0.0846813169939677], [274, 0.09312900178743844], [279, 0.12921766505645746], [282, 0.07401180419090805], [286, 0.029231158698923607], [290, 0.10846238024306222], [292, 0.11456698191950052], [295, 0.15797942337466303], [297, 0.11947053405674317], [302, 0.14424397318262097], [305, 0.14791261856675272], [309, 0.14423300884483556], [318, 0.1321899785711591], [324, 0.12318260978891188], [327, 0.19612238480614136], [328, 0.20884531421686348], [334, 0.17751233604221464], [336, 0.15481006858857893], [340, 0.13792867990974325], [341, 0.1498365705879263], [344, 0.19176207703814394], [346, 0.2526657778000156], [347, 0.27700330185316074], [351, 0.1124419803074777], [356, 0.17843762422153073], [360, 0.21991433663440596], [368, 0.4236266361988473], [371, 0.2698310822206014], [376, 0.4100638054554571], [382, 0.37910329795675746], [387, 0.44447298286789505], [389, 0.03039369531293327], [396, 0.05714222696892036], [399, 0.05607072466197582], [407, 0.03872839990590091], [414, 0.06964162714147437], [417, 0.15381020638316956], [418, 0.11789920395429669], [419, 0.32219532695722425], [420, 0.051619802702871115], [421, 0.04834546713735035], [422, 0.0542761339200884], [426, 0.17193987665429913], [427, 0.07720475434210074], [428, 0.1678735811853341], [429, 0.0], [430, 0.003039304792112936], [431, 0.018654556950445756], [432, 0.08288266972258555], [434, 0.02476661740692275], [441, 0.03668659502782778], [445, 0.033783869244899935], [450, 0.054450550914068155], [454, 0.03843917417392935], [457, 0.03550666148087466], [461, 0.020356863368114746], [464, 0.025454381665671273], [465, 0.034818614849105284], [473, 0.05038676925370343], [475, 0.014706696302289135], [482, 0.012804187412833472], [487, 0.015309796864808906], [492, 0.007543498832103464], [501, 0.01084454275310906], [509, 0.018682229506489612], [510, 0.09261640522167634], [514, 0.023466988691287653], [518, 0.022943651620012762], [523, 0.030667480061666825], [527, 0.02316672975006217], [536, 0.029294403368448428], [539, 0.02937541343327318], [545, 0.04448991147485271], [546, 0.03429955813959775], [547, 0.08050524729135831], [548, 0.022643382348067002], [549, 0.008237754226758242], [550, 0.012398558568374294], [553, 0.05342989641231819], [562, 0.04770012081605183], [570, 0.0817228673058754], [573, 0.09765856807642488], [577, 0.16433949687636037], [582, 0.01845404800062425], [587, 0.019644787480985235], [591, 0.057533995430343626], [601, 0.07426385310418257]], [[55, 0.26714054943212634], [58, 0.08811951155734696], [59, 0.14205807541814924], [67, 0.09897762198975078], [68, 0.1552598819236552], [72, 0.038332547366395506], [75, 0.03118589971009072], [79, 0.025084380031867862], [84, 0.03171185045359524], [97, 0.06062751584246086], [102, 0.04118410164822682], [111, 0.04466921834309606], [114, 0.054987197396630945], [116, 0.03289064073417123], [123, 0.033792925843007866], [126, 0.04092165314320859], [131, 0.023462453505086838], [134, 0.049830852534253955], [138, 0.06539450963195896], [148, 0.04105697869166696], [152, 0.04882250536392519], [156, 0.027236448131011715], [162, 0.0821557107111129], [163, 0.08866598599846488], [167, 0.09403679661375519], [173, 0.06609672312479908], [180, 0.09910856042566563], [186, 0.10088000346698972], [188, 0.10145494248603928], [192, 0.08033906732501132], [193, 0.07251279601753488], [196, 0.1060484628206761], [198, 0.16420016989558206], [200, 0.13895609070255321], [203, 0.1517926029391278], [209, 0.10282228907307836], [212, 0.06475663586499285], [216, 0.02681455873283936], [220, 0.07271391447985262], [221, 0.08768230858815332], [224, 0.06014743349697826], [228, 0.06750736920408498], [230, 0.051535338733901016], [231, 0.032485676499383095], [235, 0.044822540006273844], [236, 0.07989074850080156], [242, 0.044971350588264784], [247, 0.04212319166983059], [253, 0.056024215759296836], [254, 0.10790372243916639], [255, 0.03588796836623257], [261, 0.04830802171992615], [268, 0.02222201981662868], [270, 0.020951782000176552], [271, 0.009684709344238073], [276, 0.014524782648963003], [280, 0.051730761525773696], [286, 0.028177552643069155], [289, 0.0061715929538495905], [294, 0.03555168964698086], [295, 0.041619417539183516], [298, 0.024937704465400463], [302, 0.09743612700745911], [304, 0.06722614633675328], [305, 0.03920057580679955], [309, 0.04725425381612072], [310, 0.24064575059681861], [314, 0.14781351252357922], [321, 0.2621425194143935], [330, 0.3623914157361973], [333, 0.1573006675039945], [338, 0.1199696593632664], [344, 0.13742094566965735], [345, 0.2909266058626872], [352, 0.30296542120249137], [358, 0.09656701039785275], [368, 0.11028681299225129], [369, 0.1416979602836492], [374, 0.12105595526164503], [380, 0.08152149401912419], [383, 0.11597219403992165], [387, 0.08579359121026506], [391, 0.04129705774371594], [392, 0.12217449678157602], [397, 0.036505642131487236], [400, 0.05210004345273126], [402, 0.07680401192833174], [404, 0.11148824821167054], [405, 0.1210595090294197], [410, 0.07054621255735896], [416, 0.04344802389936377], [419, 0.126243919015211], [423, 0.014551153534252183], [427, 0.03477527403397736], [428, 0.11983063541694951], [433, 0.06282278701379562], [436, 0.09849955757829527], [438, 0.0368471068723171], [440, 0.04667658059977166], [441, 0.09264267279976277], [444, 0.12287326670099107], [446, 0.08091343471087233], [451, 0.05015118062140075], [457, 0.09180413512217102], [460, 0.08944809728191346], [465, 0.09266187416518096], [471, 0.07822972708492573], [472, 0.17369878508835598], [481, 0.11073119925560962], [484, 0.09416046222259628], [490, 0.04667401858114341], [491, 0.12488268821457485], [492, 0.1587031660885567], [493, 0.014606350572682617], [494, 0.03426074217995037], [495, 0.016534796457175902], [498, 0.09605022644680575], [507, 0.03148199881461872], [515, 0.025975745569373602], [516, 0.15185478010089085], [519, 0.036751947164288735], [523, 0.051099595839839605], [532, 0.027689901323198252], [535, 0.09663538599178091], [539, 0.08505669404588764], [541, 0.06047741047686209], [544, 0.01915034199074667], [547, 0.1185362374893471], [551, 0.07044590815063353], [559, 0.05107819058742938], [562, 0.13416690652590393], [564, 0.10708685172556517], [569, 0.04664940391830101], [572, 0.0295094958517251], [574, 0.030862134936665713], [577, 0.025534461965671256], [579, 0.04972219401839932], [581, 0.06516969938447674], [582, 0.15736913951797857], [588, 0.06282853089426864], [589, 0.0833476210064384], [591, 0.20169031245142946], [597, 0.03784119764866608], [606, 0.03839149445628584], [608, 0.13525043379124882], [615, 0.060143831519175635], [618, 0.12906158853453964]], [[40, 0.2962043366882979], [50, 0.196547225346739], [53, 0.1857755899301855], [62, 0.06663344536597722], [70, 0.07102167362730512], [79, 0.09964479367941739], [83, 0.09542925373820987], [90, 0.17773207734961516], [91, 0.14354050622905415], [95, 0.08223391426359622], [102, 0.08235592007004641], [107, 0.08260986294870472], [111, 0.07895656212775509], [113, 0.1385772976257956], [115, 0.08460801020289482], [117, 0.0783023176127262], [118, 0.4441331985908966], [124, 0.10958363529885215], [134, 0.27300253069932795], [141, 0.027968520849020604], [144, 0.08622948562155718], [148, 0.05345974530676669], [152, 0.05637256764697684], [156, 0.0638239233413723], [160, 0.07015637249705373], [168, 0.045390171762515405], [173, 0.05902575143808361], [175, 0.07497420720459955], [182, 0.06493811907164085], [186, 0.054702262357147015], [191, 0.06153077203900336], [192, 0.1499414618344539], [198, 0.0652275514180179], [200, 0.07084620289985728], [212, 0.1499172604004225], [215, 0.14836784519925317], [217, 0.19944844973165352], [220, 0.30597626141667267], [226, 0.09690572027994254], [229, 0.1370757480952347], [233, 0.0469000616279118], [237, 0.08747909643319314], [238, 0.13670512317464137], [242, 0.07181446687551825], [246, 0.09750852469514776], [249, 0.06737977792153932], [250, 0.06966573215544986], [257, 0.09409062655353587], [260, 0.1943478012258536], [269, 0.039502191515954514], [270, 0.18217442481089144], [274, 0.06279542437936003], [279, 0.13163443375763956], [280, 0.1037595333393263], [281, 0.13687713655437042], [288, 0.11503584510276424], [292, 0.09861966941936169], [298, 0.08292034241585582], [305, 0.06173008606884636], [313, 0.09296267719100759], [314, 0.19493232715331854], [319, 0.0897540243449966], [328, 0.0579979894007843], [336, 0.11081699933106864], [343, 0.03716248310087864], [351, 0.053570711016816125], [356, 0.05553263876572136], [360, 0.15406808870982613], [366, 0.07034706381904035], [367, 0.2009051914848074], [372, 0.046862444031816344], [380, 0.0661977575690906], [385, 0.1480854721783975], [389, 0.20712815566701218], [394, 0.10464073000450781], [404, 0.0727872212709255], [407, 0.06893032950193893], [411, 0.06878046518647991], [416, 0.07628759988321465], [418, 0.15711946667036736], [419, 0.27941724682413427], [427, 0.04689064689816766], [434, 0.04898099927438743], [441, 0.037844462156273045], [442, 0.12026601329222786], [445, 0.1225116639427714], [449, 0.13177804454375863], [454, 0.12020940094511971], [458, 0.10557762991341324], [467, 0.051764632513982674], [473, 0.03040532426038973], [480, 0.07186127192551178], [486, 0.08004286491328058], [490, 0.09498711268472469], [497, 0.044516144617204885], [504, 0.052166531968422504], [505, 0.1866956576521892], [511, 0.12245335735753812], [518, 0.18344255516040742], [521, 0.07154419457167827], [527, 0.1333679423941131], [532, 0.11885666888369663], [535, 0.17520468729572614], [541, 0.24686988559398793], [546, 0.1633414804263068], [547, 0.1787638683678218], [555, 0.10247791795627774], [556, 0.35826146925604335], [558, 0.239838962666206], [559, 0.0822953820492337], [565, 0.1946611250846538], [569, 0.2674758983865533], [575, 0.12340350813698321], [578, 0.23415555134253477], [582, 0.09610572307612417], [586, 0.11467410460160757], [591, 0.22993565872451796], [593, 0.2299084131715788], [597, 0.2004128569050784], [598, 0.294369876253295], [599, 0.27487864459848044], [600, 0.16164782082150816], [606, 0.07505222480411793], [610, 0.08444445423949774], [612, 0.35648045308059756], [618, 0.10821682590926739], [625, 0.1844164390478981], [629, 0.4931336506115623], [634, 0.19004593778602644], [639, 0.20026275842662647], [644, 0.263213883978401], [646, 0.2122294377903223]]]] }];
const fixedResultsCount = allResults.length;
updateResult(0);
function highlightDocsBySentence(sentenceIndex) {
const currentResult = allResults[document.getElementById("result-select").value];
currentSentenceIndex = sentenceIndex;
if (currentGranularity === "Document-level") {
currentDocValues = currentResult.doc_level[sentenceIndex];
const docValues = currentResult.doc_level[sentenceIndex];
const maxVal = Math.max(...docValues);
const minVal = Math.min(...docValues);
const range = maxVal - minVal || 1;
d3.selectAll(".doc-item")
.style("background", (d, j) => {
const normalized = (docValues[j] - minVal) / range;
return getColor(normalized);
});
} else {
const data = currentGranularity === "Span-level"
? currentResult.span_level[sentenceIndex]
: currentResult.word_level[sentenceIndex];
d3.selectAll(".doc-item").each(function (d, j) {
const rawText = d.text;
const formatted = formatDocumentText(rawText);
const matches = rawText.match(/Document \[([\d]+)\]\(Title:(.*?)\)(.*)/);
const offset = matches ? matches[0].length - matches[3].length : 0;
const spans = (data[j] || [])
const sorted = spans.slice().sort((a, b) => a[0] - b[0]);
const values = sorted.map(x => x[1]);
const minVal = Math.min(...values);
const maxVal = Math.max(...values);
const range = maxVal - minVal || 1;
let newContent = rawText;
let cumulativeShift = 0;
sorted.forEach((entry, i) => {
const idx = entry[0] || 0;
const val = entry[1] || 0;
const start = idx;
const end = i < sorted.length - 1
? sorted[i + 1][0]
: rawText.length;
const color = d3.interpolateReds(val);
const span = `<span class="highlight-span" style="background:${color}; color:${val > 0.8 ? '#ffffff' : '#000000'}" data-original-color="${color}" data-value="${val}" onclick="handleSpanClick(event, ${val})">`;
const insertStart = start + cumulativeShift;
const insertEnd = end + cumulativeShift;
newContent = newContent.slice(0, insertStart)
+ span
+ newContent.slice(insertStart, insertEnd)
+ "</span>"
+ newContent.slice(insertEnd);
cumulativeShift += span.length + "</span>".length;
});
newContent = formatDocumentText(newContent)
d3.select(this).select(".doc-content").html(newContent);
setTimeout(applyThresholdFilter, 0);
});
}
}
function updateResult(selectedIndex) {
resultsCount = allResults.length;
const result = allResults[selectedIndex];
currentSentenceIndex = null;
currentDocValues = [];
d3.select(".color-box")
.style("background", "none")
.style("border-color", "#ddd");
d3.select(".value-display")
.text("Click to show value")
.style("color", "#666");
const docList = d3.select("#doc-list")
.html("")
.selectAll(".doc-item")
.data(result.doc_cache.map((d, j) => ({
text: d,
index: j
})))
.enter()
.append("div")
.classed("doc-item", true)
.html(d => `
<div class="doc-content">${formatDocumentText(d.text)}</div>
`)
.on("click", function (event, d) {
if (currentGranularity === "Document-level" && currentSentenceIndex !== null) {
const rawValue = currentDocValues[d.index];
const normalized = (rawValue - Math.min(...currentDocValues)) /
(Math.max(...currentDocValues) - Math.min(...currentDocValues) || 1);
d3.select(".color-box")
.style("background", getColor(normalized))
.style("border-color", "#999");
d3.select(".value-display")
.text(`Value: ${rawValue.toFixed(4)}`)
.style("color", "#333");
} else {
event.stopPropagation();
}
});
currentThreshold = 0;
d3.select("#threshold").property("value", 0);
d3.select("#threshold-value").text("0.00");
d3.select("#current-question").html(`${result.data.question}`);
d3.select("#current-answer").html(`${result.data.answer}`);
d3.select("#output-box")
.html("")
.selectAll(".output-line")
.data(result.output.map((d, i) => ({ text: d, index: i })))
.enter()
.append("div")
.classed("output-line", true)
.html(d => `
<div class="output-text">${d.text}</div>
`)
.on("click", function (event, d) {
clearDocHighlights();
d3.selectAll(".output-line")
.style("font-weight", null)
.style("background-color", null);
if (currentGranularity === "Document-level") {
highlightDocsBySentence(d.index);
d3.select(this)
.style("font-weight", "bold")
.style("background-color", "#f0f0f0");
} else {
highlightDocsBySentence(d.index);
d3.select(this)
.style("font-weight", "bold")
.style("background-color", "#f0f0f0");
}
});
}
d3.select("#custom").on("click", function (event, d) {
d3.select(".control-box").style("display", "none");
const docList = d3.select("#doc-list")
.html("")
.style("display", "flex")
.style("flex-direction", "column")
.style("position", "relative");
// 添加按钮
const button = docList.append("div")
.classed("custom-button", true)
.text("New Document")
.style("margin-top", "auto") // 让按钮始终在底部
.style("color", "white")
.style("padding", "10px")
.style("text-align", "center")
.style("cursor", "pointer");
button.on("click", function () {
docList.insert("div", ".custom-button") // 在按钮上方插入
.classed("doc-item", true)
.style("display", "flex")
.style("flex-direction", "column")
.html(`
<textarea class="doc-content-title" placeholder="Title" rows="1"></textarea>
<textarea class="doc-content-text" placeholder="Content"></textarea>
`);
});
d3.select("#current-question").html('').style("display", "flex")
.style("flex-direction", "column")
.append("textarea")
.attr("id", "current-question-text")
.attr("rows", 1)
.attr("placeholder", "Question");
d3.select("#current-answer").html('').style("display", "flex")
.style("flex-direction", "column")
.append("textarea")
.attr("id", "current-answer-text")
.attr("rows", 5)
.attr("placeholder", "Answer");
d3.select("#output-box")
.html("")
.append("button")
.text("RUN")
.on("click", async function () {
const data = getDataFromCustomInput();
console.log(data);
const output = await getOutput(data);
console.log(output);
allResults.push(output);
d3.select("#result-select")
.html("")
.selectAll("option")
.data(allResults.map((d, i) => ({ text: i >= fixedResultsCount ? `Custom ${i + 1}` : `Result ${i + 1}`, index: i })))
.enter()
.append("option")
.attr("value", d => d.index)
.text(d => d.text);
updateResult(allResults.length - 1);
d3.select("#result-select").property("value", allResults.length - 1);
d3.select(".control-box").style("display", "block");
});
})
function getDataFromCustomInput() {
const docItems = d3.selectAll(".doc-item").nodes();
const docCache = docItems.map(node => {
const title = node.querySelector(".doc-content-title").value;
const content = node.querySelector(".doc-content-text").value;
return `(Title: ${title})${content}`;
});
const question = document.getElementById("current-question-text").value;
const answer = document.getElementById("current-answer-text").value;
return {
docs: docCache,
question: question,
answer: answer
};
}
d3.select("#send-to-helper").on("click", function (event, d) {
const dataPoint = formatDataPoint() || [];
const currentIndex = parseInt(document.getElementById("result-select").value) + 1;
const currentResult = allResults[document.getElementById("result-select").value];
const currentQuestion = currentResult.data.question;
const messageAlreadyExists = d3.select("#results-sent").selectAll(".result-item").nodes().some(node => {
return node.innerText.includes(`Result${currentIndex}, Question: ${currentQuestion}`);
});
//console.log(dataPoint);
if (!messageAlreadyExists) {
d3.select("#result-message")
.append("div")
.html(`Data Point: ${dataPoint}`);
d3.select("#results-sent")
.append("div")
.classed("result-item", true)
.style("background-color", "#7a9980")
.style("border-radius", "10px")
.style("min-height", "50px")
.style("display", "flex")
.style("align-items", "center")
.style("justify-content", "center")
.style("color", "white")
.style("padding", "10px")
.style("margin", "10px")
.html(d => `<div class="result-text">Result${currentIndex}, Question: ${currentQuestion}</div>`)
.on("click", function () {
d3.select(this).remove();
const resultMessageDiv = d3.select("#result-message").selectAll("div");
resultMessageDiv.each(function () {
const div = d3.select(this);
if (div.html().includes(`${currentQuestion}`)) {
div.remove();
}
});
})
.on("mouseover", function () {
d3.select(this)
.style("background-color", "#5a7a60");
})
.on("mouseout", function () {
d3.select(this)
.style("background-color", "#7a9980");
});
}
});
d3.select("#granularity").on("change", function () {
currentGranularity = this.value;
clearDocHighlights();
document.querySelectorAll('.output-line').forEach(function (element) {
element.style.fontWeight = 'normal';
element.style.backgroundColor = 'transparent';
});
currentSentenceIndex = null;
currentDocValues = [];
applyThresholdFilter();
if (currentGranularity === "Document-level") {
document.querySelector('.filter-slider').style.display = 'none';
} else {
document.querySelector('.filter-slider').style.display = 'block';
}
});
function clearDocHighlights() {
d3.selectAll(".doc-item").style("background", "none");
d3.selectAll(".doc-content span").each(function () {
const parent = this.parentNode;
parent.replaceChild(document.createTextNode(this.textContent), this);
parent.normalize();
d3.select(".color-box")
.style("background", "none")
.style("border-color", "#ddd");
d3.select(".value-display")
.text("Click to show value")
.style("color", "#666");
});
}
function getColor(value) {
const alpha = value * 0.8 + 0.2;
return `rgba(255,50,50,${alpha})`;
}
function parseDocumentText(text) {
const match = text.match(/\[(\d+)\]\(Title:(.*?)\)(.*)/);
return {
number: match[1],
title: match[2],
content: match[3]
};
}
async function sendMessage() {
const apiKey = document.getElementById("api_key").value;
const message = document.getElementById("message").value;
const datapoints = document.getElementById("result-message").innerText;
const pipeline = formatPipeline(nodes, edges);
special = message
if (!message) {
special = "Given the pipeline, which is a directed graph described using nodes and edges, and the datapoint provided, please generate an answer explaining the issues leading to the poor performance of this datapoint. Additionally, provide some advice for improvement, either in the pipeline design or other relevant areas. Important: Only provide specific advice based on the information provided in the pipeline and datapoint, and give advice that can solve similar issues in the future. Do not provide general advice that is not directly related to the pipeline or datapoint."
}
const prompt = formatItemForHelper(pipeline, datapoints, special);
const responseElement = document.getElementById("response");
responseElement.innerText = "";
if (!apiKey) {
alert("请填写 API Key");
return;
}
const response = await fetch("https://shen1017-citelab.hf.space/chat", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ api_key: apiKey, message: prompt })
});
const reader = response.body.getReader();
const decoder = new TextDecoder();
while (true) {
const { value, done } = await reader.read();
if (done) break;
responseElement.innerText += decoder.decode(value); // 逐步添加文本
}
}
function formatDataPoint() {
const currentResult = allResults[document.getElementById("result-select").value];
//console.log(currentResult);
const question = currentResult.data.question;
const answer = currentResult.data.answer;
const docs = currentResult.doc_cache;
const output = currentResult.output;
const dataPoint = {
question: question,
answer: answer,
documents: docs,
output: output
};
return JSON.stringify(dataPoint, null, 2)
}
function formatPipeline(nodes, edges) {
let pipeline = {
nodes: JSON.parse(JSON.stringify(nodes, (key, value) => {
return ["x", "y", "vx", "vy", "index"].includes(key) ? undefined : value;
})),
edges: JSON.parse(JSON.stringify(edges, (key, value) => {
return ["x", "y", "vx", "vy", "weight", "index"].includes(key) ? undefined : value;
}))
};
return JSON.stringify(pipeline, null, 2)
}
function formatItemForHelper(pipeline, dataPoint, special = "Please generate an answer explaining the issues leading to the poor performance of this datapoint. Additionally, provide some advice for improvement, either in the pipeline design or other relevant areas. Important: Only provide specific advice based on the information provided in the pipeline and datapoint, and give advice that can solve similar issues in the future. Do not provide general advice that is not directly related to the pipeline or datapoint.") {
const prompt = `
You are given a pipeline, which is a directed graph described using nodes and edges as well as datapoints as below.
Instruction: ${special}
Pipeline: ${JSON.stringify(pipeline, null, 2)}
Datapoint(s): ${JSON.stringify(dataPoint, null, 2)}
`;
return prompt
}
function getTextOffset(formattedHtml) {
const temp = document.createElement('div');
temp.innerHTML = formattedHtml;
return temp.textContent.length - temp.querySelector('strong').nextSibling.textContent.length;
}
function getOutput(data) {
return fetch("https://shen1017-citelab.hf.space/run_pipeline", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(data)
})
.then(response => response.json())
.catch(error => {
console.error("Error:", error);
throw error; // 确保错误能被外部 `catch`
});
}
document.addEventListener('keydown', function (event) {
if (event.key === 'r' || event.key === 'R') {
repaint();
}
});
// document.getElementById('refresh-btn').addEventListener('click', repaint);
async function repaint() {
try {
// 从后端获取最新数据
const response = await fetch('https://shen1017-citelab.hf.space/get_nodes', {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({})
});
const { nodes: newNodes, edges: newEdges } = await response.json();
// 更新数据引用
currentNodes = JSON.parse(newNodes);
currentEdges = JSON.parse(newEdges);
console.log(currentNodes, currentEdges);
// 重新创建图表
createGraph(currentNodes, currentEdges);
} catch (error) {
console.error("Error:", error);
throw error; // 确保错误能被外部 `catch`
}
}
async function getConfigForDisplay(module_name, config) {
data = {
module_name: module_name,
config: config
}
try {
const response = await fetch('https://shen1017-citelab.hf.space/get_config', {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(data)
});
return await response.json()
} catch (error) {
console.error("Error:", error);
throw error; // 确保错误能被外部 `catch`
}
}
async function editAndUpdate(updateInfo, o) {
data = {
update_info: updateInfo,
update_object: o
}
try {
const response = await fetch('https://shen1017-citelab.hf.space/update', {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(data)
});
} catch (error) {
console.error("Error:", error);
throw error; // 确保错误能被外部 `catch`
}
}
</script>
</body>
</html>