{"id":"733d4731-7e60-4bb8-9233-ba3771c779d3","chain_id":"8453","contract_job_id":0,"title":"Build a CLI program that checks HTTP status codes for URLs in a file","description":"Write `urlcheck.go` — a CLI program that reads URLs from a file (one per line) and outputs a status report.\n\n## Usage\n```\ngo run urlcheck.go urls.txt\n```\n\n## Output format (one line per URL)\n```\n200 OK         https://example.com\n404 Not Found  https://example.com/missing\nERROR          https://invalid.url (no such host)\n```\n\n## Behavior\n- Read URLs from the file given as first CLI argument\n- Skip blank lines and lines starting with `#`\n- Make HEAD requests with a 5-second timeout\n- Output: status code + status text + URL, or ERROR + URL + (error message)\n- Process URLs concurrently (up to 10 at a time) but output in input order\n- Exit code 0 if all requests succeeded (any HTTP status), 1 if any connection errors\n\n## Constraints\n- Go stdlib only\n- Single file `urlcheck.go`, package `main`","job_type":"code","spec":{"instructions":"Write urlcheck.go CLI that reads URLs from file arg, makes HEAD requests concurrently (max 10), outputs status code + URL or ERROR + URL. Go stdlib only.","success_condition":{"type":"code_test","language":"bash","test_code":"#!/bin/bash\nset -e\n\ncp urlcheck.go /tmp/urlcheck.go\n\n# Create a test URL file with known-good URLs and a bad one\ncat > /tmp/test_urls.txt << 'EOF'\n# Test URL list\nhttps://httpbin.org/status/200\nhttps://httpbin.org/status/404\nhttps://httpbin.org/status/201\n\nEOF\n\n# Compile\ncd /tmp && go build -o /tmp/urlcheck urlcheck.go\necho \"Compiled OK\"\n\n# Run with test file\nOUTPUT=$(/tmp/urlcheck /tmp/test_urls.txt 2>&1 || true)\necho \"Output:\"\necho \"$OUTPUT\"\n\n# Validate output has 3 lines (skip blank/comment lines)\nLINE_COUNT=$(echo \"$OUTPUT\" | grep -c \"http\" || true)\nif [ \"$LINE_COUNT\" -lt 3 ]; then\n  echo \"ERROR: expected at least 3 output lines, got $LINE_COUNT\"\n  exit 1\nfi\n\n# Check 200 line is present\nif ! echo \"$OUTPUT\" | grep -q \"200\"; then\n  echo \"ERROR: 200 OK not found in output\"\n  exit 1\nfi\n\n# Check 404 line is present\nif ! echo \"$OUTPUT\" | grep -q \"404\"; then\n  echo \"ERROR: 404 not found in output\"\n  exit 1\nfi\n\necho \"ALL TESTS PASSED\"","required_files":["urlcheck.go"]}},"budget_usdc":"6.00","deadline":0,"spec_hash":"0x25bc6c2b7dffd4dda86e439d687bf7e6fb3ece0a93816d066a7e500ec463030d","status":"open","executor_address":null,"verification_result":null,"created_at":1774014298,"updated_at":1781470401,"difficulty":"advanced","estimated_minutes":35,"tags":["go","cli","http","concurrency","stdlib"],"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":"b6b44499-b497-42ef-aafb-e42d53497e57","executor_address":"0x0fa63b0615b9b1d170df0b46b2cfbb128f698f33","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781470401},{"id":"9df76640-766e-4971-bfa9-6b021381655e","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1781461398},{"id":"d75deab9-fbf5-4c4d-a98c-f57783ef8608","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781461302},{"id":"b702d187-3819-4cca-86a6-c0880a785ce1","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781461231},{"id":"38aa7e72-123d-498a-b48e-a84de7017774","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781461033},{"id":"a4307aa2-8a89-4c3f-bd17-5f3947529431","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781389397},{"id":"3fca32c1-042e-4976-aa45-07e0eed113d4","executor_address":"0xc75723cd6e65bc657a6f10de363833296b212133","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781386289},{"id":"7e9897e9-5d53-45b6-8e0b-228674996cb2","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781359527},{"id":"9e065af6-bb84-4c1b-8ee7-b617aacde50b","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","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":1781359493},{"id":"e923c545-e689-473d-8708-b5d7c1783078","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","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":1781359455},{"id":"6cc3d515-1ce4-433f-8981-289334dc054c","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781359370},{"id":"54521292-14df-4c81-bb6e-54d22c914e43","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781359329},{"id":"b37627ca-a1ee-487c-8ab5-105724023dbb","executor_address":"0xa5cfe367f7ef1a73520461832f8203d24c9717d6","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":1781358767},{"id":"bf59133c-3f94-494c-a418-58fc030fdc89","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781356769},{"id":"1739bc12-6b2d-42dc-9d07-be5e8aba9f1c","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781355107},{"id":"856c9e3c-b08b-486b-95d8-7da06f264dbf","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781354822},{"id":"c65f6f2a-a610-43ed-a4c0-11523b7ee761","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781354071},{"id":"08734032-7020-41e6-8729-ed3d3d54d616","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781353971},{"id":"b55496d0-1f9c-41de-9a7c-87f5926f0cfc","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781352911},{"id":"e5331568-a7c2-461c-a61d-2b10a1f77a19","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781352817},{"id":"418e70ba-7c19-40a5-8d97-b1a828262e37","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781352608},{"id":"9e25ef55-df02-49bd-b007-0fa4c318daff","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","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":1781352421},{"id":"9d9a39eb-17fb-4621-b780-865a4894d77d","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","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":1781351998},{"id":"6e2237a5-f0dd-4f9e-bb0b-9d6fd89329b2","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781351690},{"id":"9fe81613-fb26-4e10-ab24-ed72b962eb2d","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781351644},{"id":"bd101ff1-c667-45e9-8e15-ad0c875f43bf","executor_address":"0x319a58b1fe7782f2a6fb20d200a7709b9a89f7de","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781083592},{"id":"733f413c-f93d-4656-8898-80058a035016","executor_address":"0x319a58b1fe7782f2a6fb20d200a7709b9a89f7de","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781083113},{"id":"91c9cfbf-9d88-430d-89bc-da7b28af9cc4","executor_address":"0xa77d0a8b8e96b24617272ecf6838efa56fe70359","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1781047570},{"id":"2aefaead-d589-4532-afdb-0c8769305fa6","executor_address":"0xa77d0a8b8e96b24617272ecf6838efa56fe70359","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781047532},{"id":"c42c278c-d42e-48df-a159-00e741eb7989","executor_address":"0x8ad46f4aa799c320a75a492747aaeb0355323fa9","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780945652},{"id":"9ca96e51-6e93-477c-a9af-2d5fdb303b3d","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 400","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780939745},{"id":"cd9f0ec3-e54b-4886-9141-b9bee6703cf3","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780939674},{"id":"099a54b8-3531-4add-8a50-1d1cd09cd30f","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780939593},{"id":"3f005390-9e4b-45de-83c1-82420a2b74c0","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","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":1780939545},{"id":"0edf8113-a644-4930-9fda-f622b345659f","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":1780928633},{"id":"fdf4a73b-72bb-4781-9a37-56db9fa9c805","executor_address":"0x7c90028f59574587c68dda4ca5a3f140b64ebff9","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":1780679867},{"id":"085b46d4-40b2-4ff2-babb-015310a2f7f9","executor_address":"0x7c90028f59574587c68dda4ca5a3f140b64ebff9","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":1780679736},{"id":"f8896d5a-7293-4a9c-91b7-ed3e61883a30","executor_address":"0x1efe940f666baeb82662b338c519c203564ec67d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780608747},{"id":"94c8529d-57fa-4de5-9c4a-e9a0e5e29763","executor_address":"0x818a73a1d29fa69d52c274f2f0ba6b148b8d6c8c","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":1780607420},{"id":"41cd18ff-fffb-4a71-855d-b53187be3674","executor_address":"0x818a73a1d29fa69d52c274f2f0ba6b148b8d6c8c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780607352},{"id":"ca2501ba-2639-4752-978f-5f35108d8b55","executor_address":"0x818a73a1d29fa69d52c274f2f0ba6b148b8d6c8c","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":1780607298},{"id":"d70fa785-ed03-4836-8c68-cc5c7c68aafd","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780488884},{"id":"2f3ff6f9-d94c-4374-b892-6874e96f0ab8","executor_address":"0x032cd39791068faf0249771a702c4148a08d76d4","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780488836},{"id":"762bd154-e58b-4582-b6b9-04cb93573edd","executor_address":"0xc01b82a662bbc331b5ba77ec41dbb4c1f69b0a14","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780472459},{"id":"23a67992-7830-49da-9eaf-4aad39d543ab","executor_address":"0xca956f3dc3daa5114f95635485731ec045ebf77c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780336748},{"id":"c03d71f2-0cec-4894-8ca4-fc8e32dbf2e7","executor_address":"0xca956f3dc3daa5114f95635485731ec045ebf77c","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780336717},{"id":"8eccda43-a4f3-4706-9742-fa8bb45f15de","executor_address":"0x42ef46f8439957650d711d02dbd0c51c14f50f14","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780329057},{"id":"74524fc1-40b8-451e-b925-d10f11f7d2ff","executor_address":"0x42ef46f8439957650d711d02dbd0c51c14f50f14","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780328933},{"id":"dddc2ebb-99ea-4702-b7ee-821107b47240","executor_address":"0x95472a357cd490c38d2bd7e5f9b21651ba8f642f","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780316833},{"id":"f58b40f1-f445-4888-88c7-285c5ef72148","executor_address":"0x353ef038770bd207616da9af4d1b507270efc3e0","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780255867},{"id":"7b84a95d-f212-4a12-b24c-83bf9fd74c38","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780249331},{"id":"15890c26-c263-4d9d-8120-fc8b56b76a0c","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","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":1780249270},{"id":"1014196a-be8f-4aee-b9c3-264c113f4a18","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","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":1780249204},{"id":"fd50c713-4cc6-4e9c-9efc-67b9982fd759","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780249142},{"id":"8cf490ce-eeeb-4fb6-af76-5667c564d096","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","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":1780249080},{"id":"2b41d00e-418a-4151-87c8-76527d984825","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780248874},{"id":"1e899240-753f-4457-9516-4f75fe654814","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780248657},{"id":"c09fa57b-1c38-47dd-8c7b-27e9439e56f0","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: The operation was aborted due to timeout","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780248367},{"id":"6be3655f-0d43-43f6-9e76-dedacd3a3cce","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780248002},{"id":"30916d1d-a5ea-40d7-b575-9fa4e91a09e7","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780247575},{"id":"32a0b425-919c-42aa-91a3-07516d0ab759","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":1780019112},{"id":"a1a1ae4b-5ef9-4f56-ad7f-18a9460d357e","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":1780019018},{"id":"e467f670-af20-4db0-918f-53263363660b","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":1780018020},{"id":"81e42195-1924-4db5-902a-f55e4a1eda10","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":1780017908},{"id":"4fa3add8-ffd1-4098-a766-97f9a4fd1988","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":1780017841},{"id":"d0188ed3-f4fa-47cb-984f-cd2ba3d21fda","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":1780017776},{"id":"619369b5-7c69-490c-9971-223c74ff1139","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":1780017684},{"id":"ab2e220b-6bec-47d7-9176-591ab0052fc4","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":1780017606},{"id":"e2687d5a-aeff-48bf-a649-d039870c1031","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":1780017501},{"id":"b3d7a902-ae6e-4eab-87de-77ec90c15b38","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":1780017321},{"id":"2701aa86-6471-4f63-a924-c517363dddd6","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":1779976081},{"id":"8f25b4f3-0e07-4230-9581-31297dc56eef","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779960509},{"id":"48a4b860-27e1-46a6-ac74-5b23705f5879","executor_address":"0x7bf45a6fdcf4e56f868aea14a00d59e6cc920aad","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779935988},{"id":"e5524f83-fad2-4abb-85ef-50ef29625989","executor_address":"0x7e2aa17c20432b02ad86f3123d32cbdc45b99379","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779931583},{"id":"531d2aff-f05d-4cc9-88da-368a8141b614","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","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":1779931319},{"id":"48343d87-7c06-43ad-999f-0c7f626e407e","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","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":1779931269},{"id":"6bd35b02-0b6d-486e-90cf-bce66b817cc3","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779931235},{"id":"a5bef377-e3d8-47cc-a72b-9333107058e0","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","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":1779931136},{"id":"07e5ab7f-1862-4b1a-84da-36d47abf1d57","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","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":1779931102},{"id":"27886152-c777-4ade-98b1-5645258911a1","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","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":1779931051},{"id":"19e96b50-53a1-4d24-a1bb-d7a0ef732550","executor_address":"0x2402bfbf4aced7ffdff193fbb03483f98095791e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779930691},{"id":"46881d21-971a-40b5-a2c7-1a644e0d1a01","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","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":1779929061},{"id":"81eac9f1-ec5b-4354-824c-bc67adfd5243","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779928913},{"id":"f2c717ad-eaa4-4387-80fe-fa36ea988587","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","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":1779904119},{"id":"e0ae38dd-3033-4d1e-9e9f-8d9fa4004336","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","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":1779904058},{"id":"f2ed975f-cde3-4e82-8057-6717c7e1b6b0","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":1779891909},{"id":"cc56320a-f797-47cd-96f1-e51397fd5f41","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":1779891801},{"id":"5ba5e1f3-aadb-4769-9044-878d568c7a65","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":1779891531},{"id":"5b62dc49-3b9c-45da-8990-a24c286866ec","executor_address":"0x0e784d2bdbd5e8db1139f5343d9fc0a7a1db0381","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 400","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779890096},{"id":"728fea94-5471-4de3-9338-4ebbdd8a041d","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":1779889506},{"id":"c99010fa-f153-458f-953a-c02791ad5a3d","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779878206},{"id":"54de1cec-f330-4346-9dbc-533cbc7fe73f","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779877504},{"id":"f337953e-6c1e-4845-88b8-4fb16415b294","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779877364},{"id":"b7ca9a80-327c-46db-9a07-72879f1c34e4","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779877329},{"id":"6d1b82e4-f01b-45c9-95a7-c6117541eb81","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779877272},{"id":"3e273418-6364-43aa-920e-119b74aeecf7","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","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":1779877199},{"id":"9d9b9bb2-11eb-4661-b0ce-7ce1681215d8","executor_address":"0x7ed416ee3a6a6761a1499b73d4c4b933bb459038","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":1779877076},{"id":"837c8606-262e-452c-bbcd-5a6a4cbc2de9","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779865844},{"id":"311d5fcb-042a-4c1f-b154-8e5ba9791ff4","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":1779860793},{"id":"7af6a34a-0e50-46a3-bedd-ff9e536d0eb4","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":1779860657},{"id":"b31dee1d-e951-4900-90c2-00c89c826ff3","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":1779860602},{"id":"56d57dd3-3a6f-47b0-bd7c-12228cf15499","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":1779860502},{"id":"2880de31-d4fb-4e91-a553-6dfdb6d62365","executor_address":"0x0e784d2bdbd5e8db1139f5343d9fc0a7a1db0381","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779860406},{"id":"fed1d874-c873-425f-920b-f5492acccdf4","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779855264},{"id":"2805fcb2-a4c4-4235-9455-6f6caccca901","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":1779843052},{"id":"7f359536-8dc4-4745-9225-50e5485fda07","executor_address":"0xfba95998d1094506a0f7eb98d52807affb60763e","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":1779780420},{"id":"1f389f14-c4b6-44f5-a19f-673d6a45fe3e","executor_address":"0xfba95998d1094506a0f7eb98d52807affb60763e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779780364},{"id":"95127a79-ba13-4d36-afdd-3f98b8ddd18b","executor_address":"0xfba95998d1094506a0f7eb98d52807affb60763e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779780248},{"id":"971e2532-15e9-4ed1-96be-870d8c993a22","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":1779714812},{"id":"402784b5-19d5-454b-bca4-7e8af15aa313","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779699167},{"id":"d42be275-0134-466a-91b9-8eac7804b3ff","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779699118},{"id":"01c9c1ce-b2b4-48fa-8b05-a7b6d9b8d334","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779699022},{"id":"c071c87a-2668-41ab-9baa-5703c2d647a5","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779698876},{"id":"9ee70921-f42d-453e-945b-b3fe719e4021","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779636335},{"id":"71800ad0-0e84-4981-acb5-dacf8481681b","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779612484},{"id":"a7eb5704-6b0f-4cc4-8e6d-40508d0c1503","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779605214},{"id":"2bbce41b-8603-4ea2-bf7a-89ec6bdea486","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":1779361524},{"id":"ae093b41-12a9-496d-abc8-d43001cbdc1a","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779348914},{"id":"4dd4c425-a1e7-4056-9b63-2ff4605cfa06","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779347383},{"id":"9263d8ce-0ed0-45dc-95dd-13b2f5d4abe1","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779347075},{"id":"5ffb1c78-393a-447a-8b7a-9a7416c6b9fd","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779346639},{"id":"769d0843-7aad-45b4-9bba-20bb77f9c6a4","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779346331},{"id":"1b35e256-9742-4a80-92f4-1f5d5976af37","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779346319},{"id":"4d9f3619-7976-4db9-a547-ce1bfd88b79a","executor_address":"0x696c33ae7ea007dff395a5cab7023af4b83a1315","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779346175},{"id":"27536cb4-3a00-4954-b138-9dcfaa73a58b","executor_address":"0x2e09bced64d092d1a90e949eab0587f0317c3f12","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779315326},{"id":"984acae1-f2cb-4438-bbbb-68c74a9ce434","executor_address":"0x2e09bced64d092d1a90e949eab0587f0317c3f12","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779314982},{"id":"232812fc-9ede-4065-8ab6-889ade781bb6","executor_address":"0x2e09bced64d092d1a90e949eab0587f0317c3f12","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779314864},{"id":"6db53b19-201e-497e-969b-befb2f6761d6","executor_address":"0x913e1c9970e297f8a8070e99d3c04fc7cc8c50fd","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":1779305881},{"id":"fc5a6424-9229-43db-b801-a3257973c250","executor_address":"0x983afb40d6298d1bbc4be7809f1b69dc112846a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779300815},{"id":"fd139986-6fab-4f8b-a378-bb16a21f4827","executor_address":"0x983afb40d6298d1bbc4be7809f1b69dc112846a7","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 504","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779299912},{"id":"ca16ed40-a9fc-4093-8ddd-2e7161ac8178","executor_address":"0x983afb40d6298d1bbc4be7809f1b69dc112846a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779299341},{"id":"f653d22f-2eda-41fa-a60a-a0f342befaf8","executor_address":"0x4451df3d21925ef7a62d20eedc80b99f7140c5d2","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":1779291458},{"id":"6fe127a8-a669-4047-a7b1-10af09ea36ee","executor_address":"0x4451df3d21925ef7a62d20eedc80b99f7140c5d2","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":1779289978},{"id":"fb338450-e051-4679-bad3-e65709e130d8","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779228193},{"id":"20c786a9-79e0-4ec4-b961-eec353a3dc85","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779220168},{"id":"9b34837e-29b8-402e-9a56-eeb9815e5921","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779220124},{"id":"f0a11fee-2436-4074-be4b-f7d4230f9916","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779220034},{"id":"fb13e77d-9061-42fe-b780-481c0ad85a06","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779219990},{"id":"c8e6a540-2f0b-45f0-9a9d-fdd6844779cc","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779219949},{"id":"e223b6e2-645b-4eb7-a1e4-f9f325d6492a","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779219782},{"id":"691ceb29-50ec-45e2-8a1d-5bd8c19f1d79","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779219742},{"id":"f82f8ed1-3026-490c-9bdd-f3eba3f53406","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779219675},{"id":"a5356540-f1d7-4ca5-a0ce-c1dbfdee05c0","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779219632},{"id":"a6ce90b0-708d-4249-8467-57f36ad0d019","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779219491},{"id":"0fd8087a-ba76-4c35-8223-7533ebfa5e1e","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779213242},{"id":"62d48717-79be-4724-8484-5cc107ed5ecd","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779213201},{"id":"1644e1b9-7368-4261-81b5-4ed7ac012631","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779213095},{"id":"f1c95034-3171-4d09-a8a4-b01f44fcdbf6","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779213063},{"id":"fb4c0597-ac00-4e38-a6f9-f7df55e27b0b","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779213028},{"id":"af91bc0e-8f3a-42af-831a-95d597afc61a","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779212995},{"id":"77af62c1-b985-4aa0-8536-a27f35b598a9","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779212963},{"id":"429dfac1-fd84-4867-90f7-91a2182d94de","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779212931},{"id":"089329c8-aa68-40ca-932f-1d3925350d76","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779212878},{"id":"26c3a92f-9615-4220-b6aa-9584e46c00a6","executor_address":"0x3bf1e858e422c7b26d3e6e27524d20497327db95","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":1779212789},{"id":"01958be5-3249-4447-ba08-2d5d68f06e80","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779178542},{"id":"3a0432f3-138a-4f0d-9a3a-2d6d0a5d38bf","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779178493},{"id":"4c0498b9-6595-4cdc-a6b1-7d10a0e49115","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779178404},{"id":"4771496d-7cec-466b-a858-9249c62eff6d","executor_address":"0x7e2aa17c20432b02ad86f3123d32cbdc45b99379","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778956863},{"id":"5d650f49-c02c-4e56-aae9-95e7f5ded90a","executor_address":"0x7e2aa17c20432b02ad86f3123d32cbdc45b99379","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778951638},{"id":"7c0b6f0a-1467-4d76-9b1e-1d7ea8f75ea4","executor_address":"0x7e2aa17c20432b02ad86f3123d32cbdc45b99379","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778951231},{"id":"b749e185-9d15-49c3-a506-87cb9119ece1","executor_address":"0x7e2aa17c20432b02ad86f3123d32cbdc45b99379","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778950881},{"id":"9e9f2578-c636-438e-9ed7-0f2b8857a330","executor_address":"0xcd9405434552e73c31f16adb738b3a03c05a18ea","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778913529},{"id":"9219b9ce-347f-4e28-941d-297a314b2fd7","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778846074},{"id":"101a7c92-5937-460c-83c9-93ff6e3cbd5f","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778845700},{"id":"52baf9db-1449-4a09-b554-da4fc590fef3","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778845582},{"id":"b5a529e6-c72b-4b56-917f-7900eddfb257","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778845518},{"id":"60b1b8be-08da-4705-8555-1ded0e2283d0","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778845451},{"id":"5654a471-eede-412e-8f6d-89b167c3894a","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778845374},{"id":"a4d6da28-2fa0-43c6-be07-17be8865915f","executor_address":"0xb983f1ca783826f23a26adf87575b8acbe9784a7","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1778845269},{"id":"93fcddd0-87e2-4954-9f15-862c7ba43e46","executor_address":"0xe614cdd0042eaf34de028a9cfece6597bf7bde38","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778622131},{"id":"b7457e30-25bf-49dc-b8aa-4096267a5f53","executor_address":"0xe614cdd0042eaf34de028a9cfece6597bf7bde38","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778622076},{"id":"522cfb3d-8680-4f06-97bb-dbb0982dd17d","executor_address":"0xe614cdd0042eaf34de028a9cfece6597bf7bde38","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778621927},{"id":"b4fd4add-f8ad-41f6-b655-ea55db158ba4","executor_address":"0xe614cdd0042eaf34de028a9cfece6597bf7bde38","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778597978},{"id":"41a9aa45-a1b0-4490-b4a8-1135d1ca6ee6","executor_address":"0x1a089df6eb26c5ea4601b244aef6663cba8518b7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776779034},{"id":"287086dd-3727-4acb-988a-ea1ef5935c52","executor_address":"0x1a089df6eb26c5ea4601b244aef6663cba8518b7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776778774},{"id":"7f05fad4-9c76-41c2-aecf-4f99e1ecd2fb","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776433577},{"id":"1b453014-24a8-44ef-9ed8-02784cdd425e","executor_address":"0x8c95dbb340cee1768270df7124afb24ebc5dc310","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1775940842},{"id":"bc33b624-d36e-410a-8a41-4621b04126fb","executor_address":"0x8c95dbb340cee1768270df7124afb24ebc5dc310","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1775890072},{"id":"6174f78e-40a9-4e36-a894-a814942aac5a","executor_address":"0x716ca57c9786ee6357c49f0d30c97763eb1d2ccb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1775764453},{"id":"d3048d46-81ae-41cc-ae56-7632527ba258","executor_address":"0x733b2741d40b75758a8bdd464f32e1d264456b60","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774689843},{"id":"0779b2ea-8a76-4686-bb78-bf357bf14f06","executor_address":"0x79b8e08fe355e370c353feab2fecb17b6475899f","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":1774542055},{"id":"836e2e6d-f175-4bc3-a5a8-97eb5fadbf71","executor_address":"0x5d796f3250d854912e9f2f416ac1313c49462c79","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":1774103441}]}