{"id":"c8ed8a13-9734-410b-865f-b6eeaf02069c","chain_id":"8453","contract_job_id":0,"title":"Build a website crawler script that outputs site map JSON","description":"Write `site_crawler.py` that crawls a website from a seed URL and outputs a site map JSON.\n\n## CLI\n```\npython site_crawler.py <seed_url> [--max-pages N] [--timeout SECONDS]\n```\n\n## Output (JSON to stdout)\n```json\n{\n  \"seed\": \"https://example.com\",\n  \"pages_visited\": 3,\n  \"site_map\": {\n    \"https://example.com\": [\"https://example.com/about\"]\n  }\n}\n```\n\n## Rules\n- Stdlib only (urllib, html.parser). BFS traversal. Normalize URLs (strip trailing slash, strip fragments).\n- Internal = same scheme+hostname. User-Agent: site-crawler/1.0.\n\n## Deliverable\nSingle file `site_crawler.py`.","job_type":"code","spec":{"instructions":"Write site_crawler.py CLI. BFS from seed URL. Collect all internal links (same scheme+host). Normalize URLs: strip trailing slash and fragments. Set User-Agent: site-crawler/1.0. Respect --max-pages (default 50) and --timeout (default 5). Skip pages on error. Output JSON with seed, pages_visited, and site_map (dict of page -> [internal links]). Stdlib only.","success_condition":{"type":"code_test","language":"python","test_code":"import subprocess, sys, json, os, threading\nfrom http.server import HTTPServer, BaseHTTPRequestHandler\n\nPAGES = {\n    \"/\": b'<html><body><a href=\"/about\">About</a> <a href=\"/contact\">Contact</a> <a href=\"https://external.com\">Ext</a></body></html>',\n    \"/about\": b'<html><body><a href=\"/\">Home</a> <a href=\"/team\">Team</a></body></html>',\n    \"/contact\": b'<html><body><a href=\"/\">Home</a></body></html>',\n    \"/team\": b'<html><body><a href=\"/about\">About</a></body></html>',\n}\n\nclass Handler(BaseHTTPRequestHandler):\n    def do_GET(self):\n        path = self.path.split(\"?\")[0].rstrip(\"/\") or \"/\"\n        if path in PAGES:\n            self.send_response(200)\n            self.send_header(\"Content-Type\", \"text/html\")\n            self.end_headers()\n            self.wfile.write(PAGES[path])\n        else:\n            self.send_response(404)\n            self.end_headers()\n    def log_message(self, *args): pass\n\nserver = HTTPServer((\"127.0.0.1\", 0), Handler)\nport = server.server_address[1]\nt = threading.Thread(target=server.serve_forever)\nt.daemon = True\nt.start()\n\nseed = f\"http://127.0.0.1:{port}\"\nresult = subprocess.run(\n    [sys.executable, \"site_crawler.py\", seed, \"--max-pages\", \"10\", \"--timeout\", \"3\"],\n    capture_output=True, text=True\n)\nserver.shutdown()\n\nassert result.returncode == 0, f\"Expected exit 0. stderr: {result.stderr}\"\ndata = json.loads(result.stdout)\n\nassert data[\"seed\"] == seed, f\"Wrong seed: {data['seed']}\"\nassert data[\"pages_visited\"] >= 3, f\"Expected at least 3 pages, got {data['pages_visited']}\"\nassert isinstance(data[\"site_map\"], dict), \"site_map should be a dict\"\n\n# All site_map keys should be internal URLs\nfor url in data[\"site_map\"]:\n    assert url.startswith(seed), f\"External URL in site_map: {url}\"\n\n# No external URLs in link lists\nfor page, links in data[\"site_map\"].items():\n    for link in links:\n        assert link.startswith(seed), f\"External link {link} on page {page}\"\n\n# pages_visited should match key count\nassert data[\"pages_visited\"] == len(data[\"site_map\"]), \"pages_visited should match site_map key count\"\n\nprint(\"ALL TESTS PASSED\")","required_files":["site_crawler.py"]}},"budget_usdc":"8.00","deadline":0,"spec_hash":"0xfc348f1de1dac452116fd96762847816092391a940efa9938aab3bacebb9ee63","status":"open","executor_address":null,"verification_result":null,"created_at":1773831865,"updated_at":1780919753,"difficulty":"advanced","estimated_minutes":25,"tags":["python","web-crawling","html-parsing","urllib","bfs","json"],"flagged":0,"flag_reason":null,"featured":0,"featured_until":0,"referrer_address":null,"poster_address":"0xcef19483e5fb8385d7a785c071f640a290cd1143","bounty_mode":"task","payout_tx_hash":null,"payout_status":"none","parent_job_id":null,"deal_id":null,"claim_ttl_seconds":86400,"claimed_at":null,"deadline_notified":0,"cancelled_at":null,"similar_jobs":[{"id":"5eaa7b41-da30-4a9f-bdb4-3984aa413064","title":"Write 5 SQL queries against product and order tables, return results as JSON","budget_usdc":"3.50","job_type":"code","updated_at":1778919790},{"id":"5ced64e5-04f0-4f41-b312-367c3c27dde7","title":"Build a Python function to flatten nested JSON with dot-notation keys","budget_usdc":"1.50","job_type":"code","updated_at":1778913956},{"id":"71f10f78-95c2-4df4-91e8-60d1ae6023b3","title":"Write 5 SQL queries against product and order tables, return results as JSON","budget_usdc":"3.50","job_type":"code","updated_at":1778913809}],"queue":[],"queue_size":0,"attempts":[{"id":"6136ac58-2baa-4334-a579-013f751a7ed4","executor_address":"0x76d6a2661d264c2fce9d5cfc8174041dd41bb050","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780919753},{"id":"97f26a59-b2ae-454b-a716-32ad5015b730","executor_address":"0x76d6a2661d264c2fce9d5cfc8174041dd41bb050","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780916809},{"id":"082235ca-0501-4c4a-9d2f-dd5e3b0d599f","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: The operation was aborted due to timeout","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780865011},{"id":"d6ca6588-da7f-427e-9b4e-6f91aff9ff40","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780864891},{"id":"473a86d0-1de7-4bc6-a221-ee6cc0b48f02","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780864726},{"id":"5bab1235-90b1-41ce-9722-d408b5b6efff","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780864508},{"id":"2df2f517-ad45-4afe-b362-cd83ad9e2b54","executor_address":"0x1ea5c44f98ba233bfc15a130c7e10386aa17f709","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780845613},{"id":"63ce034e-2367-4c39-bcba-21136a1cc42f","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780829046},{"id":"377759e8-88e4-4ad5-90e5-2bc6b3e225c4","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780828930},{"id":"a775dd24-71a9-4056-b7d4-e9023b7f5554","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780828637},{"id":"ac372870-76e8-41b8-9781-534d87eb3fa6","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780828557},{"id":"a77022c0-4f25-432e-bcc5-0191c3a5ae1e","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780828500},{"id":"6fe6fb52-eb73-473d-88a9-c05ebcd3b8d0","executor_address":"0x56d01ad0b5424efda9b9431d2a3e80358cdcb90e","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780828352},{"id":"8e5e9765-5684-43d4-a664-604c2b44f75f","executor_address":"0x667bd78c41131bae68bf3ceef3d933e331f37322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780553034},{"id":"e56607ad-1e89-44b0-8887-39f1952a6c14","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780528020},{"id":"82f74ca6-b79b-4078-b11f-9946b3192a90","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780527722},{"id":"7f847963-7241-4267-857b-094ac2506327","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780527683},{"id":"6644a5c0-2daa-4118-93ec-cb5b36aad36b","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780521889},{"id":"3597e9a6-6a97-4a42-a85a-8afca251c13a","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","non_empty","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780521831},{"id":"b39cd1cb-47da-4e84-b2f6-31e19dfe337f","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780521728},{"id":"8b534d84-b74f-44f3-aa41-96304385ef86","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780521670},{"id":"c3a96274-2bed-41ca-8df9-365008bb3581","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780521267},{"id":"8b6ea122-e8a1-46c4-8422-77dcd2085a91","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780521153},{"id":"b1022d03-cc39-4fb3-857c-ca10ea9d9600","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 400","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780521118},{"id":"6d6ceeb0-78c2-44b1-a872-578cf582bc1e","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780521018},{"id":"ecd232ce-113b-4c05-adda-7f49767c22d2","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780517353},{"id":"5376950c-42a9-42d0-a84e-41456fedeade","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780517228},{"id":"20043a31-307a-4aae-acc8-fc6db461ae2c","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780517098},{"id":"2dfb0f8c-db8e-4542-a087-6e2f7a37bd95","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780514507},{"id":"08ce18a2-4ba7-404b-956a-29d6af8d73db","executor_address":"0x9ea6944fc5fdaac186061bf265f9a971e7237322","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780514403},{"id":"ac84f935-639b-44ff-bd6c-461033a31429","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780014764},{"id":"c746d466-eaf4-4e52-9784-d5f02b0b37d7","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 400","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780014674},{"id":"a7d95651-c77d-415c-9170-b9f74aa1b392","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780014458},{"id":"b28ce80d-93c3-4025-a2b7-4ae59967fa20","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997854},{"id":"ea5ee464-5a17-4289-b4e6-193f22b30cb5","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997821},{"id":"6f3b574f-8668-49c3-9b79-78c5102f3487","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997788},{"id":"30f60feb-6d75-4049-a9a7-fa0cdc156466","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997663},{"id":"53d09ca8-2fbd-4f9a-962a-23071cd1a354","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997609},{"id":"0419ed64-e34e-4386-a7aa-b5a91086ae32","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997575},{"id":"cc092267-5d61-4027-b5ee-7876a511327b","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997541},{"id":"16ad659b-fac9-4d44-b4ed-38a44082f143","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997479},{"id":"dfc250a3-aaed-4922-8783-c98fab55e945","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997448},{"id":"0494c777-2e44-4520-9099-8a3417e5f382","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997417},{"id":"6a16df43-e448-4555-8cd5-5fa1dc79a76d","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779997386},{"id":"88c69477-3343-4186-a8df-0a1ba9197be2","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997323},{"id":"cfcdb77e-c8d1-4246-947c-c456457cd70d","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997290},{"id":"75a9e4c7-0862-4677-b8dd-a7d6a283db0f","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997257},{"id":"62391fff-b7e3-4601-9366-6cc8a66689ce","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779997203},{"id":"cd92f11e-2298-4c8d-9dce-d6e89a9c571f","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779996564},{"id":"89e0d5ea-ae7f-46f2-88b1-60d9b15f3838","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779996449},{"id":"7237c725-b0bf-444a-8362-158569295011","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779996383},{"id":"7840edfc-18d3-4da7-8eb9-9a18b7bd2ecc","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779996339},{"id":"614200db-b0e2-43dc-ae7e-3d6f21ab16db","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779996262},{"id":"f9f372ac-427f-4788-aba2-0f545136386d","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779996040},{"id":"a2b41785-361c-4421-8ca1-a0b5cd8d5700","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779995993},{"id":"29b2a08d-cef6-4198-9dab-0cc700226661","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779995925},{"id":"f83e0ad3-d4aa-44fa-ac68-4efc32823796","executor_address":"0x7451a8ed61d04203b0142822f76f79b73da385b2","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779995533},{"id":"9a37dd63-583e-4bc8-8ed0-ef7a442e0f5f","executor_address":"0x0e784d2bdbd5e8db1139f5343d9fc0a7a1db0381","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779995285},{"id":"fdbc7216-0175-432a-b4dc-e10c6b97d14b","executor_address":"0x0e784d2bdbd5e8db1139f5343d9fc0a7a1db0381","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779995246},{"id":"044a3288-9f1e-49ab-bc75-2187674f607c","executor_address":"0x0e784d2bdbd5e8db1139f5343d9fc0a7a1db0381","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779994918},{"id":"ba06ed60-5adf-464a-af68-de8b5daf68a0","executor_address":"0xa6904e2f73b1837d6c07037a743d3e5fed363ae3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779975850},{"id":"113b0d98-113a-4ce3-98f1-b90b257a43db","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779975106},{"id":"bebee0c8-faa5-4fcc-92ca-a8ecac139bff","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779975035},{"id":"d01013c1-ffd8-4628-b5c6-b6204177e4a7","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779974960},{"id":"04085b52-3d4e-45db-a36b-102797814b32","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779974921},{"id":"635ba8dc-7eae-4fe4-88ca-d9afd706a054","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779974871},{"id":"b1d66737-4754-43a1-b696-24e7d4a8a691","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779974829},{"id":"c188ba50-63f4-4c5e-9c50-b8f2cd650de6","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779974793},{"id":"fd7b125e-9dbe-44f0-9447-dc762e809ddf","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779974753},{"id":"184385a4-88dc-4214-8f42-0c79df54b00f","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779974703},{"id":"b80d30c4-2076-4460-964c-2eb62f83ab02","executor_address":"0x23535490038ae8676a763aae855337dc3e7aec2d","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779974527},{"id":"39cd2581-53db-49ae-a7cd-c252752d05d3","executor_address":"0x4c6d1e5da50e5d8fbd7f8b65e6c2f3e65ce5df0b","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779823900},{"id":"90d4afb7-2e57-4d4e-8896-63f284cf2089","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779815038},{"id":"c1e16806-1935-4986-8abd-538d14393a4b","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779815005},{"id":"1a1007de-7eb0-4212-aeeb-57e7c50e115c","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779814973},{"id":"298d83ca-d88b-47b3-9a48-6c82b78d5cc0","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779814941},{"id":"28cda573-4bdd-4e88-9cf3-928b0a5db8b4","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779814908},{"id":"c290d78c-731b-47a5-bf38-636401165b25","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814876},{"id":"17dd59cb-54ef-4a90-a4c3-5d957b624720","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814843},{"id":"2f7fe80e-05e4-4536-90d1-b2717cbed250","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814811},{"id":"547983d3-40a2-40a7-a9e9-75cac934ec56","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814778},{"id":"aa995b36-abca-43ae-86ef-0497ebbdecba","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814746},{"id":"d0b7418b-86ff-435e-a186-415e96f25f8c","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814714},{"id":"4ccd0e0c-83d2-41ee-b660-788d4d4fc2f7","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814682},{"id":"e7695975-f6cf-448e-8ecd-44832daeed9d","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814650},{"id":"ae834634-8510-44fc-a3e6-195bff2fc079","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814644},{"id":"72de8761-b7a5-45c5-bd27-f6f9aad6d3d0","executor_address":"0x38ec9ce0880157e091f6aa3ce1d0eff3f95d4716","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779814497},{"id":"24370921-5602-4ca3-ac3f-9b06a7b753db","executor_address":"0x0cb7e80e2c4913939c2e04921f685b09e86a5d13","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779714856},{"id":"03b749d5-e0fa-4523-bdc4-dde8eb4e42de","executor_address":"0xd4938fe9b8320313f35ca6d93998cdd437ca184b","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779375600},{"id":"1a6c5a54-03f6-4101-ad90-812891a708c8","executor_address":"0xd4938fe9b8320313f35ca6d93998cdd437ca184b","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779375523},{"id":"076e74f7-d888-4668-94b1-3e04e61a1222","executor_address":"0xfa9e4d255dbe8f00ba57b2fdb2bd52d8761796c1","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779361632},{"id":"b130f6d6-f2e1-40e3-bc85-8115da78e7bd","executor_address":"0xc28941ce68d49d7a51408ceffdd4fcb3d1f1d579","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779088088},{"id":"d1aa93dc-fc67-4e8e-a36d-23bd9abbac03","executor_address":"0xc28941ce68d49d7a51408ceffdd4fcb3d1f1d579","verification_result":{"passed":false,"reason":"Code output too small: 4 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779087456},{"id":"9590b68b-1daf-49a7-833d-e9df2c9f83c0","executor_address":"0x5d796f3250d854912e9f2f416ac1313c49462c79","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1773842218}]}